Full Code of FutaGuard/LowTechFilter for AI

master 79ba47ed01e5 cached
28 files
701.5 KB
255.9k tokens
44 symbols
1 requests
Download .txt
Showing preview only (726K chars total). Download the full file or copy to clipboard to get everything.
Repository: FutaGuard/LowTechFilter
Branch: master
Commit: 79ba47ed01e5
Files: 28
Total size: 701.5 KB

Directory structure:
gitextract_33_j22ti/

├── .github/
│   ├── FUNDING.yml
│   ├── ISSUE_TEMPLATE/
│   │   ├── update filter.md
│   │   └── 清單更新請求.md
│   └── workflows/
│       └── tw165.yml
├── .gitignore
├── AutoBuild/
│   ├── build.sh
│   ├── builder.py
│   ├── nrdlist.py
│   ├── requirements.txt
│   ├── tw_165.py
│   ├── twnic_rpz.py
│   └── whitelist.py
├── LICENSE
├── PureView/
│   ├── news.txt
│   └── news_mobile.txt
├── README.en.md
├── README.md
├── Surge/
│   ├── biggo.sgmodule
│   ├── check_futadns.js
│   ├── check_futadns.sgmodule
│   ├── filters.txt
│   └── futadns.sgmodule
├── TW165.txt
├── TWNIC-RPZ.txt
├── experimental.txt
├── filter.txt
├── hosts.txt
└── nofarm.txt

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/FUNDING.yml
================================================
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: https://core.newebpay.com/EPG/futaguard/FMaZ4E


================================================
FILE: .github/ISSUE_TEMPLATE/update filter.md
================================================
---
name: request to update filter
about: any suggest on filter(add, delete, modify)
title: "\U0001F680  request to update filter (paste domain here)"
labels: request to update
assignees: ''

---

## what does `FutaFilter` do currently?
<!--- allow or block -->

## supposed to be 
<!--- add, delete, modify, update -->

## reason
<!--- Please provide a meaningful rationale and suggest attaching screenshot. -->


================================================
FILE: .github/ISSUE_TEMPLATE/清單更新請求.md
================================================
---
name: 清單更新請求
about: 對現有清單進行建議(新增、刪除、更改)
title: "\U0001F680  更新清單請求 (這裡貼上你的網域)"
labels: 更新請求
assignees: ''

---

## 現在 `FutaFilter` 對他的處置是?
<!--- 白名單或黑名單? -->

## 建議對此網域做出何種改變
<!--- 新增、刪除、更改 -->

## 提出更改的理由
<!--- 請提出有意義的理由,建議附上證據。 -->


================================================
FILE: .github/workflows/tw165.yml
================================================
name: TW165

on:
  schedule:
    - cron:  '0 0 * * *'
  workflow_dispatch:

jobs:
  update_165_data:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-python@v4
        with:
          python-version: '3.9'
          cache: 'pip' # caching pip dependencies
      - run: pip install -r AutoBuild/requirements.txt && python AutoBuild/tw_165.py
        env:
          tw165npa: ${{ vars.TW165NPA }}
      - name: push
        uses: github-actions-x/commit@v2.9
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          push-branch: 'master'
          commit-message: '🤖 自動更新 165 詐騙網址'
          files: TW165.txt
          name: tdc
          email: tdc@sudo.host



================================================
FILE: .gitignore
================================================
.venv/
.idea/
**/target/
.python-version
node_modules


================================================
FILE: AutoBuild/build.sh
================================================
#!/bin/bash

# Get the first argument
arg=$1

# Check the argument value
if [ "$arg" == "build" ]; then
    pip install -r AutoBuild/requirements.txt && python AutoBuild/builder.py
elif [ "$arg" == "nrdlist" ]; then
    pip install -r AutoBuild/requirements.txt && python AutoBuild/nrdlist.py
else
    echo "Invalid argument. Please use 'build' or 'nrdlist'."
fi

================================================
FILE: AutoBuild/builder.py
================================================
import re
from datetime import datetime, timedelta, timezone
import requests
from glob import glob
import asyncio
import time
from urllib.parse import urlparse

# Domain 驗證相關
DOMAIN_PATTERN = re.compile(r"^(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z]{2,}$", re.IGNORECASE)

filterlist = {
    "abp": [
        "experimental.txt",
        "filter.txt",
        "PureView/news.txt",
        "PureView/news_mobile.txt",
    ],
"hosts": ["hosts.txt", "nofarm.txt", "TWNIC-RPZ.txt", "TW165.txt"],
}
url = "https://filter.futa.gg/"
tz = timezone(timedelta(hours=+8))
today = datetime.now(tz).date()

WHITELIST = [
    "google.com",
    "line.me",
    "apple.com",
    "bit.ly",
    "tinyurl.com",
]

#  新增 nrd 清單
for files in glob("nrd/past-*.txt"):
    filterlist["hosts"].append(files)


class HEAD:
    abp: str = (
        "[Adblock Plus]\n"
        "! Title: LowTechFilter {name}\n"
        "! Version: {version}\n"
        "! Expires: 1 hour\n"
        "! Homepage: https://t.me/AdBlock_TW\n"
        "! ----------------------------------------------------------------------\n"
    )
    hosts: str = (
        "! FutaHosts\n"
        "! Title: LowTechFilter {name}\n"
        "! URL: <https://github.com/FutaGuard/LowTechFilter>\n"
        "! Version: {version}\n"
        "! --------------------------------------------------\n"
    )


def is_valid_domain(hostname: str) -> bool:
    """檢查是否為合法的完整 domain"""
    if not hostname or len(hostname) > 253:
        return False
    if hostname.startswith(".") or hostname.endswith("."):
        return False
    if ".." in hostname:
        return False
    if not DOMAIN_PATTERN.match(hostname):
        return False
    parts = hostname.split(".")
    if len(parts) < 2:
        return False
    tld = parts[-1]
    if len(tld) < 2 or not tld.isalpha():
        return False
    return True


def strip_bang_comments(text: str) -> str:
    lines = text.splitlines(keepends=True)
    return "".join(line for line in lines if not line.lstrip().startswith("!"))


def update_version(filename: str) -> str:
    pattern = r"(?<=Version: )(\d+\.\d+\.)(\d+)"
    newversion = ""

    r = requests.get(url + filename)
    first = None
    version = None
    if r.status_code != 200:
        pass
    else:
        first = "\n".join(r.text.splitlines()[:5])

    try:
        version = re.findall(pattern, first, re.MULTILINE)[0]
    except:
        # https://www.ptt.cc/bbs/Battlegirlhs/M.1506615677.A.1A4.html
        version = ("2017.0929.", "1")

    dt = datetime.strptime(version[0], "%Y.%m%d.").date()
    newversion = today.strftime("%Y.%m%d.")
    if dt != today:
        newversion += "1"
    else:
        newversion += str(int(version[1]) + 1)
    return newversion


# make hosts formats
async def to_hosts(filename: str, data: str, newversion: str):
    data = data.splitlines()
    newdata = "\n".join(data)
    name = filename.split(".txt")[0].split("_")[0]
    heads: str = HEAD().__getattribute__("hosts")
    newhead = heads.format(name=name + " hosts", version=newversion)
    newfilename = name + "_hosts.txt" if name != "hosts" else "hosts.txt"
    with open(newfilename, "w") as output:
        if name == "hosts":
            pattern = r"(?<=^\|\|)\S+\.\S{2,}(?=\^)"
            newoutput = ""
            for e in re.findall(pattern, newdata, re.MULTILINE):
                if "*" not in e:
                    newoutput += "0.0.0.0 " + e + "\n"
        elif name == "TW165":
            # 只處理沒有 path 的 domain
            domains = []
            for line in data:
                parsed = parse_url(line)
                domain = parsed['domain']
                if (
                    not parsed['has_path']
                    and not parsed['is_ip']
                    and not is_whitelisted_domain(domain)
                ):
                    domains.append(parsed['domain'])
            newoutput = "\n".join("0.0.0.0 " + d for d in sorted(set(domains)))
        else:
            newoutput = "\n".join("0.0.0.0 " + e for e in data)
        output.write(newhead)
        output.write(newoutput)


async def to_abp(filename: str, data: str, newversion: str):
    data = data.splitlines()
    newdata = "\n".join(data)
    name = filename.split(".txt")[0].split("_")[0]
    heads: str = HEAD().__getattribute__("abp")
    newhead = heads.format(name=name + " abp", version=newversion)

    with open(name + "_abp.txt", "w") as output:
        if name == "hosts":
            output.write(newhead + newdata)
        elif name == "TW165":
            # 排除 IP,保留完整 URL (domain + path)
            rules = []
            for line in data:
                parsed = parse_url(line)
                if parsed['is_ip']:
                    continue
                domain = parsed['domain']
                if is_whitelisted_domain(domain):
                    continue
                rules.append(f"||{parsed['full']}^")
            newoutput = "\n".join(sorted(set(rules)))
            output.write(newhead)
            output.write(newoutput)
        else:
            newoutput = "\n".join(f"||{e}^" for e in data)
            output.write(newhead)
            output.write(newoutput)


def parse_url(url: str) -> dict:
    """解析 URL,返回 domain 和 path 信息"""
    # 移除 http:// 或 https://
    url = url.strip()
    if url.startswith('http://'):
        url = url[7:]
    elif url.startswith('https://'):
        url = url[8:]
    
    # 分離 domain 和 path
    if '/' in url:
        parts = url.split('/', 1)
        domain = parts[0]
        path = '/' + parts[1]
    else:
        domain = url
        path = ''
    
    # 檢查是否為 IP
    is_ip = bool(re.match(r'^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$', domain))
    
    # 檢查是否為合法 domain
    is_valid = is_valid_domain(domain) if not is_ip else True
    
    return {
        'domain': domain,
        'path': path,
        'has_path': bool(path),
        'is_ip': is_ip,
        'is_valid': is_valid,
        'full': domain + path
    }


def is_whitelisted_domain(domain: str) -> bool:
    if not domain:
        return False
    domain = domain.lower()
    for item in WHITELIST:
        entry = item.lower()
        if domain == entry or domain.endswith('.' + entry):
            return True
    return False


async def to_pure_domain(filename: str, data: str):
    data = data.splitlines()
    newdata = "\n".join(data)
    name = filename.split(".txt")[0].split("_")[0]
    with open(name + "_domains.txt", "w") as output:
        if name == "hosts":
            pattern = r"(?<=^\|\|)\S+\.\S{2,}(?=\^)"
            newoutput = "\n".join(re.findall(pattern, newdata, re.MULTILINE))
        elif name == "TW165":
            # 只保留沒有 path 的 domain,與 hosts 格式一致
            domains = []
            for line in data:
                line = line.strip()
                if not line:
                    continue
                parsed = parse_url(line)
                domain = parsed['domain']
                if (
                    not parsed['has_path']
                    and not parsed['is_ip']
                    and parsed['is_valid']
                    and not is_whitelisted_domain(domain)
                ):
                    domains.append(parsed['domain'])
            newoutput = "\n".join(sorted(set(domains)))
        else:
            newoutput = "\n".join(data)
        output.write(newoutput)


async def run():
    import time
    # task = []

    for category in filterlist:
        for filename in filterlist[category]:
            newversion = update_version(filename)

            with open(f"{filename}", "r") as files:
                data = strip_bang_comments(files.read())
                with open(f"{filename}", "w") as output:
                    heads: str = HEAD().__getattribute__(category)
                    newhead = heads.format(
                        name=filename.split(".")[0]
                        .replace("_", " ")
                        .replace("/", " ")
                        .title(),
                        version=newversion,
                    )
                    output.write(newhead)
                    output.write(data)

                # hide farm site from google 轉換 abp
                if filename == "nofarm.txt":
                    domain_list = ""
                    for domains in data.splitlines():
                        if not domains.startswith("!"):
                            domain = domains[2:-1]
                            domain_list += 'google.*##div.g:has(div[data-hveid] a[href*="{domain}"])\n'.format(
                                domain=domain
                            )
                    heads: str = HEAD().__getattribute__("abp")
                    newhead = heads.format(
                        name="hide farm content from google", version=newversion
                    )
                    with open("hide_farm_from_search.txt", "w") as f:
                        f.write(newhead + domain_list)

                if filename == "TW165.txt":
                    # 生成 redirect 格式:只處理沒有 path 的 domain
                    newfilename = "TW165_redirect.txt"
                    heads: str = HEAD().__getattribute__("abp")
                    newhead = heads.format(name="TW165 redirect", version=newversion)
                    with open(newfilename, "w") as f:
                        f.write(newhead)
                        domains = []
                        for line in data.splitlines():
                            parsed = parse_url(line)
                            domain = parsed['domain']
                            if (
                                not parsed['has_path']
                                and not parsed['is_ip']
                                and not is_whitelisted_domain(domain)
                            ):
                                domains.append(domain)
                        f.write(
                            "\n".join(
                                f"||{d}^$dnsrewrite=NOERROR;A;34.102.218.71"
                                for d in sorted(set(domains))
                            )
                        )

                if category == "hosts":
                    task = [
                        asyncio.create_task(to_pure_domain(filename, data)),
                        asyncio.create_task(to_abp(filename, data, newversion)),
                        asyncio.create_task(to_hosts(filename, data, newversion)),
                    ]

    await asyncio.gather(*task)


if __name__ == "__main__":
    asyncio.run(run())


================================================
FILE: AutoBuild/nrdlist.py
================================================
import asyncio
import csv
import gzip
import logging
import os
import pathlib
from base64 import b64encode
from io import BytesIO, TextIOWrapper
from itertools import chain, islice
from typing import Dict, List, Set
from zipfile import ZipFile, BadZipfile

import arrow
import httpx

logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)


class Phase1:
    def __init__(self):
        self.base_url = os.getenv("PHASE1_URL", "")
        if not self.base_url:
            raise ValueError("PHASE1_URL not set")
        self.data: Dict[str, List[bytes]] = {}

    async def fetch(self, date: arrow.Arrow) -> bool:
        logger.info("Downloading: %s", date.format("YYYY-MM-DD"))
        url = self.base_url.format(
            args=b64encode(date.strftime("%Y-%m-%d.zip").encode()).decode()
        )
        async with httpx.AsyncClient() as client:
            r = await client.get(url)
            if r.status_code != 200:
                logger.error("Download failed: %s", url)
                return False
            zip_file = BytesIO(r.content)
            try:
                with ZipFile(zip_file, "r") as zip_obj:
                    # print(zip_obj.read('domain-names.txt'))
                    self.data[date.format("YYYY-MM-DD")] = zip_obj.read(
                        "domain-names.txt"
                    ).splitlines()
            except BadZipfile:
                logger.error("Bad Zipfile: %s", url)
                return False
            return True

    async def run(self):
        today = arrow.utcnow()
        for i in range(1, 31, 5):
            task = [
                asyncio.create_task(self.fetch(today.shift(days=-j)))
                for j in range(i, i + 5)
            ]
            await asyncio.gather(*task)


class Phase2:
    def __init__(self):
        self.base_url = os.getenv("PHASE2_URL", "")
        if not self.base_url:
            raise ValueError("PHASE2_URL not set")
        self.data: Dict[str, List[bytes]] = {}

    async def fetch(self):
        now = arrow.utcnow()
        async with httpx.AsyncClient() as client:
            for files in ["nrd-1m.csv", "nrd-1w.csv"]:
                url = self.base_url + files
                logger.info("Downloading: %s", files)
                r = await client.get(url)
                if r.status_code != 200:
                    logger.error("Download failed: %s", files)
                    return False
                if files == "nrd-1m.csv":
                    self.data[now.shift(months=-1).date().strftime("%Y-%m-%d")] = (
                        BytesIO(r.content).getvalue().splitlines()
                    )
                else:
                    self.data[now.shift(weeks=-1).date().strftime("%Y-%m-%d")] = (
                        BytesIO(r.content).getvalue().splitlines()
                    )

    async def run(self):
        await self.fetch()


class Phase3:
    def __init__(self):
        self.base_url = os.getenv("PHASE3_URL", "")
        if not self.base_url:
            raise ValueError("PHASE3_URL not set")
        self.data: Dict[str, List[bytes]] = {}

    async def fetch(self):
        async with httpx.AsyncClient() as client:
            logger.info("Downloading: %s", self.base_url)
            r = await client.get(self.base_url)
            if r.status_code != 200:
                logger.error("Download failed: %s", self.base_url)
                return False

            with gzip.GzipFile(fileobj=BytesIO(r.content), mode="rb") as f:
                data_file = TextIOWrapper(BytesIO(f.read()))

        reader = csv.DictReader(data_file)
        for row in reader:
            if row["create_date"]:
                self.data.setdefault(row["create_date"], []).append(
                    row["domain_name"].encode()
                )

    async def run(self):
        for _ in range(5):
            try:
                await self.fetch()
            except httpx.ReadTimeout:
                logger.error("Phase3: Timeout, retrying")
                continue
            finally:
                break


class Phase4:
    def __init__(self):
        self.base_url = os.getenv("PHASE4_URL", "")
        if not self.base_url:
            raise ValueError("PHASE4_URL not set")
        self.data: Dict[str, List[bytes]] = {}

    async def fetch(self):
        now = arrow.utcnow()
        async with httpx.AsyncClient() as client:
            logger.info("Downloading: %s", self.base_url)
            r = await client.get(self.base_url)
            if r.status_code != 200:
                logger.error("Download failed: %s", self.base_url)
                return False
            date = now.shift(days=-7).date().strftime("%Y-%m-%d")
            self.data[date] = r.content.splitlines()[2:-1]

    async def run(self):
        for _ in range(5):
            try:
                await self.fetch()
            except httpx.ReadTimeout:
                logger.error("Phase4: Timeout, retrying")
                continue
            finally:
                break


async def write_files(datalist: List[Dict[str, List[bytes]]]):
    base_path = pathlib.Path("nrd")
    if not base_path.exists():
        base_path.mkdir()

    sorted_date = sorted(set(chain.from_iterable(datalist)), reverse=True)
    # combine only the first 30 days
    combined_data: Dict[str, Set[bytes]] = {
        date: set() for date in islice(sorted_date, 30)
    }
    for data in datalist:
        for key, value in data.items():
            if key not in combined_data:
                continue
            combined_data[key].update(value)

    dataset = set()
    # combined_data is ordered by insertion (sorted date)
    for i, data in enumerate(combined_data.values(), start=1):
        dataset.update(data)
        # accumulate = "\n".join(sorted(set(accumulate.split("\n"))))
        base_path.joinpath(f"past-{i:02d}day.txt").write_bytes(
            b"\n".join(dataset)
        )


async def main():
    import time

    start = time.time()
    ph1 = Phase1()
    ph2 = Phase2()
    ph3 = Phase3()
    ph4 = Phase4()

    task = [
        asyncio.create_task(ph1.run()),
        asyncio.create_task(ph2.run()),
        asyncio.create_task(ph3.run()),
        asyncio.create_task(ph4.run()),
    ]
    await asyncio.gather(*task)
    logger.info("Download Complete, Now writing")
    await write_files([ph1.data, ph2.data, ph3.data, ph4.data])
    end = time.time() - start
    logger.info(f"Time taken: {end:.2f} seconds")


if __name__ == "__main__":
    asyncio.run(main())


================================================
FILE: AutoBuild/requirements.txt
================================================
anyio==4.3.0
arrow==1.3.0
certifi==2023.7.22
charset-normalizer==2.1.1
cssselect==1.2.0
h11==0.14.0
httpcore==1.0.5
httpx==0.27.0
idna==3.7
lxml==5.2.1
python-dateutil==2.9.0.post0
requests==2.32.0
ruff==0.3.5
six==1.16.0
sniffio==1.3.1
types-python-dateutil==2.9.0.20240316
urllib3==1.26.19


================================================
FILE: AutoBuild/tw_165.py
================================================
from __future__ import annotations

import os
import logging
import re
from abc import ABC, abstractmethod
from html.parser import HTMLParser
from json.decoder import JSONDecodeError
from urllib.parse import urlparse

import requests

logger = logging.getLogger(__name__)

OUTPUT_FILE = "TW165.txt"
URL_PATTERN = re.compile(
    r'(https?://[^\s<>"\']+ |(?:[A-Za-z0-9-]+\.)+[A-Za-z]{2,}(?:/[^\s<>"\']*)?)',
    re.IGNORECASE,
)
TRAILING_PUNCT = "。、,,;;::))]}]>〉>"


class BaseContentParser(ABC):
    """Abstract base parser for extracting URLs from various content sources."""

    @staticmethod
    def normalize_url(raw: str) -> str | None:
        """Normalize a raw URL string and return full URL with protocol."""
        candidate = raw.strip()
        if not candidate:
            return None
        if candidate.startswith("http//"):
            candidate = "http://" + candidate[6:]
        elif candidate.startswith("https//"):
            candidate = "https://" + candidate[7:]
        if not candidate.startswith(("http://", "https://")):
            candidate = "http://" + candidate
        parsed = urlparse(candidate)
        if not parsed.hostname:
            return None
        return candidate

    @abstractmethod
    def extract(self, payload: object) -> list[str]:
        """Extract URLs from the given payload."""


class NPA165Parser(BaseContentParser):
    """Parser for NPA 165 API responses containing HTML tables with scam URLs."""

    class _TableParser(HTMLParser):
        """Internal HTML table parser for NPA165 content."""

        def __init__(self) -> None:
            super().__init__()
            self._in_table = False
            self._row: list[str] | None = None
            self._cell: list[str] | None = None
            self.rows: list[list[str]] = []

        def handle_starttag(self, tag, attrs):
            if tag == "table":
                self._in_table = True
            elif self._in_table and tag == "tr":
                self._row = []
            elif self._in_table and self._row is not None and tag in {"td", "th"}:
                self._cell = []

        def handle_endtag(self, tag):
            if tag == "table":
                self._in_table = False
                self._row = None
                self._cell = None
            elif self._in_table and tag in {"td", "th"} and self._cell is not None:
                text = "".join(self._cell).replace("\xa0", " ").strip()
                if self._row is not None:
                    self._row.append(text)
                self._cell = None
            elif self._in_table and tag == "tr" and self._row is not None:
                if self._row:
                    self.rows.append(self._row)
                self._row = None

        def handle_data(self, data):
            if self._cell is not None and data:
                self._cell.append(data)

    def extract(self, payload: object) -> list[str]:
        if not isinstance(payload, list):
            logger.warning("Unexpected payload type: %s", type(payload).__name__)
            return []

        results: list[str] = []
        for record in payload:
            content = (record or {}).get("content") or ""
            parser = self._TableParser()
            parser.feed(content)
            parser.close()

            for row in parser.rows:
                for cell in row:
                    cell_text = cell.replace('、', '\n')
                    for match in URL_PATTERN.findall(cell_text):
                        cleaned = match.strip().strip(TRAILING_PUNCT)
                        if cleaned:
                            url = self.normalize_url(cleaned)
                            if url:
                                results.append(url)
        return results


class TW165Collector:
    """Collect and deduplicate URLs from TW165 sources."""

    def __init__(self, sources: dict[str, type[BaseContentParser]]):
        self.sources = sources

    def _fetch(self, url: str) -> object | None:
        try:
            response = requests.get(url, timeout=10)
        except requests.RequestException as exc:
            logger.critical("Fetch error: %s", exc)
            return None

        if response.status_code != 200:
            logger.critical("HTTP %s from %s", response.status_code, url)
            return None

        try:
            return response.json()
        except (JSONDecodeError, ValueError):
            logger.critical("JSON parse error")
            return None

    def collect(self) -> list[str]:
        """Collect all URLs."""
        seen: set[str] = set()
        result: list[str] = []

        for url, parser_cls in self.sources.items():
            if not url:
                continue
            payload = self._fetch(url)
            if payload is None:
                continue

            parser = parser_cls()
            for entry in parser.extract(payload):
                if entry and entry not in seen:
                    seen.add(entry)
                    result.append(entry)

        return result



SOURCES = {
    os.getenv("tw165npa", None): NPA165Parser,
}


def main() -> None:
    existing: set[str] = set()

    if os.path.exists(OUTPUT_FILE):
        try:
            with open(OUTPUT_FILE, "r", encoding="utf-8") as f:
                for line in f:
                    entry = line.strip()
                    if entry:
                        existing.add(entry)
        except Exception as exc:
            logger.warning("Failed to read %s: %s", OUTPUT_FILE, exc)

    collector = TW165Collector(SOURCES)
    new_entries = collector.collect()

    all_entries = sorted(existing | set(new_entries))

    with open(OUTPUT_FILE, "w", encoding="utf-8") as f:
        f.write("\n".join(all_entries))

    logger.info("Total: %d (existing: %d, new: %d)",
                len(all_entries), len(existing), len(new_entries))


if __name__ == "__main__":
    main()


================================================
FILE: AutoBuild/twnic_rpz.py
================================================
import requests
import json
import logging
from json.decoder import JSONDecodeError
import sys
from typing import List

logger = logging.getLogger(__name__)


def main():
    r = requests.get("https://rpz.twnic.tw/e.html")
    if r.status_code != 200:
        logger.critical("Fetch Data Err")
        sys.exit(1)

    # split text from <script> tag
    raw: str = r.text.split("<script>")[1].split(";")[0].split("= ")[1]
    parse_data: List[dict] = [dict()]
    try:
        parse_data = json.loads(raw)
    except JSONDecodeError:
        logger.critical("Parse JSON Err")
        sys.exit(1)

    output = [domain for in_dic in parse_data for domain in in_dic["domains"]]
    with open("TWNIC-RPZ.txt", "w") as f:
        f.write("\n".join(output))


if __name__ == "__main__":
    main()


================================================
FILE: AutoBuild/whitelist.py
================================================
WHITELIST = [
    "google.com",
    "line.me",
    "apple.com",
]


================================================
FILE: LICENSE
================================================
                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "{}"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright 2022 tasi788

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.


================================================
FILE: PureView/news.txt
================================================
! 中央社 CNA https://www.cna.com.tw

! 首頁右側、文章列表右側、內文中:訂閱提醒
www.cna.com.tw#%#//scriptlet('set-cookie-reload', 'CnaCloseLanguage', '1')
www.cna.com.tw#$#div[class="centralContent"] { max-width: unset !important; }
www.cna.com.tw##div[class^="paragraph moreArticle"]
www.cna.com.tw##div[class="paragraph bottomBox"]
www.cna.com.tw##div[class="paragraph BtnShareGroup appDownload"]
www.cna.com.tw##div[class="nav"]
www.cna.com.tw##.mySubscriptionInner
www.cna.com.tw##div[class^="jsNextLine"]
||imgcdn.cna.com.tw/www/website/bundle_js/site_footer.min.js*^$domain=www.cna.com.tw
||imgcdn.cna.com.tw/www/website/js/infinite-scroll.pkgd.min.js*^$domain=www.cna.com.tw


! 聯合新聞網 UDN https://udn.com
udn.com###ultraDesktopBanner
udn.com##div[class="tools-box"]
udn.com##section[class^="breaking-news__wrapper"]
udn.com##aside
udn.com##section[class="more-news article-section context-box"]
udn.com##section[class="related-news more-news context-box article-section"]
udn.com##section[class="facebook-comment article-section context-box"]
udn.com##section[class="discuss-board article-section context-box"]
udn.com#$#.wrapper-left { width: unset !important; }
udn.com#$#.footer { margin-top: unset !important; }
udn.com##div[id="taboola-below-discuss-thumbnails"]
[$path=/news]udn.com##a[href^="https://udn.com/vote2024/story/"]:nth-ancestor(2)
udn.com##a[class="udn--event__holder"]
udn.com##section[class^="ec-section"]

! UDN 寵物
pets.udn.com##div[class="story variety extend"]
pets.udn.com##div[class="story-list__header"]
pets.udn.com##div[id="comments"]
pets.udn.com#$#section[class="article-content__wrapper"] { width: unset !important; }
pets.udn.com#$#.article-content__cover picture { height: unset !important; width: unset !important; }

! UDN money
money.udn.com##div[class="breaking-news-container "]
money.udn.com##section[class="article-switch"]
money.udn.com##div[class="story-flex-bt-wrapper"]
money.udn.com##section[class="article-comments"]
money.udn.com##section[class="sitemap toggle-list"]
money.udn.com##a[id="goTop"]

! 自由時報 ltn.com.tw
ltn.com.tw##p[class="appE1121"]
ltn.com.tw##div[class="whitecon related boxTitle"]
ltn.com.tw##div[class="whitecon todaynews boxTitle boxText"]
ltn.com.tw##div[class="caption"]
ltn.com.tw##div[class="softPush_notification"]
ltn.com.tw##a[class="subs_eDM"]

news.ltn.com.tw##div[id="marqueeContent"]
news.ltn.com.tw##aside
news.ltn.com.tw##div[id="marqueeHeader"]
news.ltn.com.tw##div[class="related boxTitle"]
news.ltn.com.tw##div[class="see_more boxTitle"]
news.ltn.com.tw##div[class="todaynews boxTitle"]
news.ltn.com.tw##div[class="footermenu"]
news.ltn.com.tw##div[data-desc="重要專題"]:nth-ancestor(1)

3c.ltn.com.tw##aside
3c.ltn.com.tw##div[class="top boxTitle boxText"]
3c.ltn.com.tw##a[id="preview_links_1"]
3c.ltn.com.tw#$#.whitecon.borderline { border: unset !important;}
3c.ltn.com.tw##.hero_gray

ltn.com.tw#$#section.content940 { max-width: 100% !important; }
ec.ltn.com.tw##div[id="right"]
ec.ltn.com.tw##div[class="ltnheader boxTitle boxText"]
ec.ltn.com.tw##div[id="marquee"]
ec.ltn.com.tw##div[class="captionR"]
ec.ltn.com.tw##ul[class="related boxTitle"]
ec.ltn.com.tw##ul[class="todaynews"]
ec.ltn.com.tw##div[class="top boxTitle"]

! Yahoo 新聞
tw.news.yahoo.com##aside[id="AsideStream"]
tw.news.yahoo.com##div[id="community-bar-container"]
tw.news.yahoo.com##div[id="module-moreStories"]
tw.news.yahoo.com##div[class="_yb_vfqfy"]
tw.news.yahoo.com##div[class="_yb_5m1ny _yb_wmcw7"]
tw.news.yahoo.com##div[id="postArticle"]
tw.news.yahoo.com##iframe[id="mktIframe"]
tw.news.yahoo.com#$#div[class^="W($mainColWidth)"] { width: unset !important;}
tw.news.yahoo.com#$#div[class="caas-body"] { padding-right: unset !important; }

! 鏡新聞
www.mirrormedia.mg##section[class="header-nav-topic"]
www.mirrormedia.mg##aside
www.mirrormedia.mg#$#article[itemprop="articleBody"] { max-width: unset !important; width: unset !important; }
www.mirrormedia.mg#$#div[class="story-wrapper"] { padding-top: unset !important; }
www.mirrormedia.mg##div[class="share-sidebox story__share-sidebox"]
www.mirrormedia.mg##div[class="sns-wrapper"]
www.mirrormedia.mg##div[class="story__list"]
www.mirrormedia.mg##section[class^="related-article-list"]
www.mirrormedia.mg##div[class^="support-mirrormedia-banner__Container"]
www.mirrormedia.mg##div[class^="social-network-service__Wrapper"]
www.mirrormedia.mg##section[class^="normal__StoryEnd"]
www.mirrormedia.mg#$#article { margin: unset !important; max-width: unset !important; }

! ETTODAY
[$path=/news]ettoday.net##div[class="c2"]
ettoday.net##div[class="nav_2"]
ettoday.net##div[class="part_menu_5 clearfix"]
ettoday.net##div[class="text_ticker_1"]
ettoday.net##div[class="et_ad_group_1"]
ettoday.net##div[class="menu_2"]
[$path=/news]ettoday.net#$#div[class="c1"] { width: unset !important; }
ettoday.net##div[id="hot_area"]
ettoday.net##div[class$="hot-news"]
ettoday.net##div[class^="block block_1"]
ettoday.net##div[id="et_sticky_pc"]
ettoday.net##div[id="manau\\al_links"]
ettoday.net##div[class="et_social_3"]
||www.ettoday.net/source/tools/videoLiveShoppingCart/index.php7
ettoday.net##div[id="manual_links"]
ettoday.net##div[class^="block_a"]
ettoday.net##div[class="fb_fans"]
ettoday.net##ui[class="clearfix"]
ettoday.net##div[id="etnews_live_player"]

! 新頭殼
newtalk.tw##div[id="right_column"]
newtalk.tw##div[id="news_marquee"]
newtalk.tw##button[title="留言"]
newtalk.tw##div[class^="gray_box"]
newtalk.tw##div[class="newsBanner"]
newtalk.tw##div[title="選單"]
newtalk.tw#$#div[id="left_column"] { width: unset !important; }
newtalk.tw##div[class="group w3"]

! 三立新聞
www.setn.com##div[class="header-area hidden-print"]
www.setn.com##div[class="hotnav-bar"]
www.setn.com##div[class="coniBtn coniLoginBtn"]
www.setn.com##div[class="col-lg-3 col-md-4 hidden-sm hidden-xs hidden-print contRight"]
www.setn.com##div[class="clearfix"]
www.setn.com##div[class="tagNewsArea hidden-print"]
www.setn.com##div[class="AIProjects"]
www.setn.com##.alert-message.alert-message-warning.hidden-print
www.setn.com##.page-social-area.hidden-print
www.setn.com##.hidden-print.bottom-buffer
www.setn.com##div[id="donateBtn"]
www.setn.com##div[class="social-top-area"]
www.setn.com##div[class="col-lg-3 col-md-4 hidden-sm hidden-xs contRight affix"]
www.setn.com#$#div[class="col-lg-9 col-md-8 col-sm-12 contLeft"] { width: 100% !important; }
setn.com##div[class^="rightFloat "]
setn.com##div[class^="AIProjects"]

! TVBS
news.tvbs.com.tw##div[class="top_icon"]
news.tvbs.com.tw##div[class="good_box"]
news.tvbs.com.tw##aside
news.tvbs.com.tw##div[class="guangxuan"]
news.tvbs.com.tw##div[class="article_issue"]
news.tvbs.com.tw##div[class="article_extended2"]
news.tvbs.com.tw##div[class="newsdetail_content_fb"]
news.tvbs.com.tw#$#article { width: unset !important; }

! 旺旺中時
chinatimes.com##div[class="social-media-links"]
chinatimes.com##div[class="logo-want-want-chinatimes-group"]
chinatimes.com##div[class="promote-banner"]
chinatimes.com##aside
chinatimes.com##div[class="column-left"]:has(> .prev-next-content)
chinatimes.com##div[class="promote-word"]
chinatimes.com#$#div[class="column-left"] { width: unset !important; }
||static.chinatimes.com^$replace=/\.\.\/\.\.\/images\/2020\/logo-chinatimes2020\.svg/https\:\/\/filter\-assets\.futa\.gg\/ct02\.svg/
||static.chinatimes.com^$replace=/\.\.\/\.\.\/images\/2020\/logo-chinatimes-alt2020\.svg/https\:\/\/filter\-assets\.futa\.gg\/ct02-PCview\.svg/
||chinatimes.com^$cookie

! 風傳媒
www.storm.mg##aside
www.storm.mg##div[data-addom="storm_ad_wrapper_not_hide"]
www.storm.mg##div[id="premium_block"]
www.storm.mg##div[id="author_inner"]
www.storm.mg##div[id="related_wrapper"]
www.storm.mg##div[id="news_list_wrapper"]
www.storm.mg##div[id="category_content"]
www.storm.mg##div[id^="dablewidget_"]
www.storm.mg##div[id="more_news_wrapper"]
www.storm.mg##div[id="footer_links_wrapper"]
www.storm.mg##div[id="app_store_wrapper"]
www.storm.mg#$#div[id="article_content"] { margin-right: unset !important; }
www.storm.mg#$#div[id="footer_inner"] { padding-bottom: 10px !important; padding-top: 10px !important}
www.storm.mg##a[href="/support-us"]
www.storm.mg##div[id="donation_block"]
www.storm.mg##a[class$="tag_vip"]
www.storm.mg##a[class="nav_btn event"]
www.storm.mg##a[href="https://www.storm.mg/line/notify/login"]

! Cool3C
www.cool3c.com##div[class$="side-sync-inner"]
www.cool3c.com##aside
www.cool3c.com##a[data-gtm-label="Comment"]
cool3c.com##.header-group-wrapper
cool3c.com##div[class="navigation"]
cool3c.com##div[class="input-group"]
cool3c.com##div[class="row related"]
cool3c.com##div[class="row source"]
cool3c.com##section[class="block comment-area"]
cool3c.com##section[class="block readmore row"]
cool3c.com##div[class="footers-group-custom"]
||www.cool3c.com/article/*/infinite^$jsonprune=\$.result

! 電腦王阿達
kocpc.com.tw##.jeg_sticky_sidebar
||www.kocpc.com.tw/wp-content/plugins/jnews-auto-load-post/assets/js/jquery.autoload.js
www.kocpc.com.tw#$#div[class="jeg_main_content col-md-8"] { width: unset !important; }

! nownews
nownews.com##div[class="subSite"]
nownews.com##button[id="getApp"]
nownews.com##div[class="rightCol-container"]
nownews.com##div[class="topic-container"]
nownews.com##.hotnews-top
nownews.com##div[class="related-item"]
nownews.com##div[id="divRcNews"]
nownews.com##div[class="fbBlk"]
nownews.com#$#div[class="leftCol"] { width: calc(90% - 2em) !important }
nownews.com##div[class="event-holder"]

! technews 科技新報
technews.tw##div[class="tipbar"]
technews.tw##div[id="secondary"]
technews.tw##div[class="googlenews_Content"]
technews.tw##div[class="newsLetter_articleContent newsLetter_articleColumn"]
technews.tw##nav[class="nav-single"]
technews.tw##div[id="fbSEOComments"]
technews.tw##a[id="scrolldown"]
technews.tw##div[class="footer_frame"]
||technews.tw/wp-admin/admin-ajax.php*

! 商周
businessweekly.com.tw##div[class^="Single-right-part"]
businessweekly.com.tw##section[class^="Post-section"]
businessweekly.com.tw##section[class^="Promotion"]
businessweekly.com.tw##div[class="promote_subscribe"]
businessweekly.com.tw##div[class="cover_summary_story"]
businessweekly.com.tw##section[class^="Single-related"]
businessweekly.com.tw##section[class="d-xs-none d-md-block"]
businessweekly.com.tw##section[class^="Single-section"]
businessweekly.com.tw##button[data-label="訂閱"]
businessweekly.com.tw##div[class^="Links"]
businessweekly.com.tw##div[class^="Border"]
businessweekly.com.tw##div img[class="Logo-white lazy"]
businessweekly.com.tw##div[class^="Logos"]
businessweekly.com.tw##section[class^="Single-sidebar"]
businessweekly.com.tw##body .Google-special:not(#style_important)
businessweekly.com.tw#$#.col-lg-8 { flex: unset !important; max-width: unset !important}
businessweekly.com.tw#$#.col-md-7 { flex: unset !important; max-width: unset !important}
||ibw.bwnet.com.tw/file/js/vendor/infinite-scroll.pkgd.min.js

! walkerland
walkerland.com.tw##div[class="right-block"]
walkerland.com.tw#$#div[class="left-block"] { max-width: unset !important; }
walkerland.com.tw##a[rel^="noreferrer"]

! 世界新聞網
worldjournal.com##section[class="breaking-news__wrapper"]
worldjournal.com##div[class="wrapper-side"]
worldjournal.com##section[class="next-page"]
worldjournal.com##div[class^="cate-list__container"]
worldjournal.com##section[class$="facebook-comment"]
worldjournal.com##section[class="footer-social"]
worldjournal.com##div[class="tools-box"]


! INSIDE https://www.inside.com.tw
! 文末附加內容:業配文
||inside.com.tw^*/article.js
www.inside.com.tw##.infinite_article

! 關鍵評論網 https://www.thenewslens.com
! 文末附加內容:業配文
www.thenewslens.com##.ad-section__content
||thenewslens.com^*/gpt-generator.js

! 美麗佳人
marieclaire.com.tw##p[class^="extendArticle"]
marieclaire.com.tw##ul[class^="extendArticle"]
marieclaire.com.tw##div[class="adArticlebottom"]
marieclaire.com.tw##div[class="extendRead"]
marieclaire.com.tw##div[class="magazine"]
marieclaire.com.tw##p[class="subscribeTitle"]
marieclaire.com.tw##div[class="subscribeBox"]

! 電影神搜
news.agentm.tw##aside[class="pside"]
news.agentm.tw##aside[class="aside"]
news.agentm.tw#$#div.container{ display: unset!important; }
news.agentm.tw##div[class="relative"]
news.agentm.tw##footer[id="footer"]

! 經理人
managertoday.com.tw##div[class="w-full hidden lg:block"]
managertoday.com.tw#$#div.main_box{ display: unset!important; }
managertoday.com.tw##div[class="jupiter_event_box"]
managertoday.com.tw##.extend_post_box
managertoday.com.tw##a[title="加入經理人LINE好友"]
managertoday.com.tw##div[id="datamagic"]
managertoday.com.tw##div[class="sidebar1_A"]
managertoday.com.tw##.pumpkinbanner
managertoday.com.tw##div:matches-attr("wire:id")
managertoday.com.tw##div[id="my-idle-wrapper"]
managertoday.com.tw##div[class="edm-form-panel"]
managertoday.com.tw##a[data-dl_item="magazine_list"]:nth-ancestor(3)
managertoday.com.tw##div[x-data="social_share"]:nth-ancestor(1)

! 鉅亨網
news.cnyes.com##img[alt="cookies"]:nth-ancestor(2)
news.cnyes.com##aside
news.cnyes.com##h2[class$="theme-slick"]:nth-ancestor(1)

! 壹蘋新聞
tw.nextapple.com##a[class="app"]
tw.nextapple.com##aside[id="side-bar"]
tw.nextapple.com##div[class="post-related partner"]
tw.nextapple.com##div[class="post-comments"]
tw.nextapple.com##div[class="tags"]
tw.nextapple.com#$#div[id="main-content"] { width: 100% !important;}
tw.nextapple.com##a:has-text(/推薦新聞/)
tw.nextapple.com##a[href^="https://reporting.nextapple.com"]
tw.nextapple.com##hr
tw.nextapple.com##div[class="scrollTool"]
tw.nextapple.com##div#top-slider
tw.nextapple.com##div#marquee

# 花蓮最速報
hsnews.com.tw##div[id="sp-left"]
hsnews.com.tw#$#div[id="sp-component"] { width: unset !important;}

# 遠見雜誌 
gvm.com.tw##div[class="article-right js-article-aside"]:remove()
gvm.com.tw##div[id^="article_end_"]
gvm.com.tw##div[class="media-sec"]
gvm.com.tw##div[class="rights-sec"]
gvm.com.tw##a[class="list-cards"]
gvm.com.tw##div[id="article_recommand"]
gvm.com.tw##div[id="content_area"]
gvm.com.tw##section[class^="newsletter"]
gvm.com.tw##div[class^="article-head_marketing"]
gvm.com.tw#$#div[class="article-left"] { width: 100% !important;}

# 工商時報 www.ctee.com.tw 
ctee.com.tw##div[class="ad-box__idle"]:remove()
ctee.com.tw##aside[class="aside__right"]:remove()
ctee.com.tw##div[class="list-box relatednews"]:remove()
ctee.com.tw##div[class="group-box ad-recommend"]:remove()
ctee.com.tw##div[id="discussion"]:remove()

# 今周刊
www.businesstoday.com.tw##div[class="article__aside"]:remove()
www.businesstoday.com.tw#$#div[class="article__main"] { width: unset !important;}
www.businesstoday.com.tw##a[id="subscription-news"]:remove()
www.businesstoday.com.tw#%#//scriptlet('abort-current-inline-script', 'load_page')
www.businesstoday.com.tw##div[class="article__other"]:remove()

# 賴傳媒
lai-media.net##div[class="page-right"]:remove()
lai-media.net##div[class="marqueebar"]
lai-media.net##.header_btm:remove()
lai-media.net##section[class="sec_more_article"]


================================================
FILE: PureView/news_mobile.txt
================================================
!  三立新聞
www.setn.com##div[class="newsflashBox"]
www.setn.com##div[class="right-area"]
www.setn.com##div[id="coniBox"]
www.setn.com##div[id="donateBtn"]
www.setn.com##div[class="hotnav-bar"]
www.setn.com##div[class="readmoreCont"]
www.setn.com##div[class="tagNewsArea"]
www.setn.com##div[class="newsTextADBox"]
www.setn.com##div[class="extendnews"]
www.setn.com##div[class="ai_area_m"]
www.setn.com##.page-float
www.setn.com##div[id="scroll"]
www.setn.com##div[class="page-pre-area"]
www.setn.com##div[class="page-next-area"]
www.setn.com##.livevodBox setn.com###LiveVOD
||www.setn.com/VOD.aspx?IsLive=true
www.setn.com##div[class="video-container"]
www.setn.com##.news-all-area:has(> .hotnews-title-area)
www.setn.com##.news-all-area:has(> .live-title-area)
www.setn.com##.news-all-area:has(> .page-pre-area)
www.setn.com##div[class="hotnews-title-area"]
www.setn.com##div[id="KeywordCloud"]
www.setn.com##div[data-layid="ChannelArea"]
www.setn.com##div[class="channelBox"]
www.setn.com##div[class="social-media-icon"]
www.setn.com##div[class="video-container livevodBox"]
www.setn.com##.newsTextADBox
www.setn.com##.news-area-ad
www.setn.com##.page-project-area
www.setn.com##.ad
www.setn.com##div[id="KeywordCloud"]

! 自由時報
news.ltn.com.tw#$#div[class="headerP_high"] { height: 100px !important;}
news.ltn.com.tw##div[class="caption"]
news.ltn.com.tw##div[class="related boxTitle"]
news.ltn.com.tw##div[id="todayHotNews"]
news.ltn.com.tw##div[class="see_more boxTitle"]
news.ltn.com.tw##p[class="appE1121"]
news.ltn.com.tw##div[id="marqueeHeader"]

! Yahoo 新聞
tw.news.yahoo.com##div[id="module-view-comments"]
tw.news.yahoo.com##p[class="read-more-vendor"]
tw.news.yahoo.com##p[class="read-more-editor"]
||tw.news.yahoo.com^$cookie=*;maxAge=10;sameSite=lax
tw.news.yahoo.com##ul[class^="caas-list"]
tw.news.yahoo.com##a:matches-attr("data-i13n")
tw.news.yahoo.com##div[id="module-relatedStories"]
tw.news.yahoo.com##div[id="module-originalContents"]

! 旺旺中時
!#if (adguard && adguard_app_android)
||static.chinatimes.com^$replace=/\.\.\/\.\.\/images\/2020\/logo-chinatimes2020\.svg/https\:\/\/filter\-assets\.futa\.gg\/ct02\.svg/
||static.chinatimes.com^$replace=/\.\.\/\.\.\/images\/2020\/logo-chinatimes-alt2020\.svg/https\:\/\/filter\-assets\.futa\.gg\/ct02-PCview\.svg/
!#endif
chinatimes.com#$#div[class="main-header-logo"] { top: 16px !important; }

! 風傳媒
www.storm.mg##div[class="article_ads_p_wrapper"]
www.storm.mg##div[id="premium_block"]
www.storm.mg##div[id="author_inner"]
www.storm.mg##div[id="related_wrapper"]
www.storm.mg##div[id="news_list_wrapper"]
www.storm.mg##div[id="category_content"]
www.storm.mg##div[id^="dablewidget_"]
www.storm.mg##div[id="more_news_wrapper"]
www.storm.mg##div[id="footer_links_wrapper"]
www.storm.mg##div[id="app_store_wrapper"]
www.storm.mg#$#div[id="article_content"] { margin-right: unset !important; }
www.storm.mg#$#div[id="footer_inner"] { padding-bottom: 10px !important; padding-top: 10px !important}
www.storm.mg##a[href="/support-us"]
www.storm.mg##div[id="donation_block"]
www.storm.mg##a[class$="tag_vip"]
www.storm.mg##a[class="nav_btn event"]
www.storm.mg##a[id="prevPage_btn"]
www.storm.mg##div[id="header_btn_wrapper"]

! UDN
udn.com##[class="udn--event__holder"]
udn.com##[class="orange-promotion"]
udn.com##[class^="breaking-news__wrapper"]
udn.com##[class="vip-edn--promotion"]
udn.com##[class="udn-channel--promotion"]
udn.com##[class^="feature-guess"]
udn.com##[class^="mobile-recommendation"]
udn.com##[class="newsletter"]
udn.com##[class="footer-social"]
udn.com##[class="footer"]
udn.com##[class^="related-news"]
udn.com##[class^="more-news"]
udn.com##[class^="facebook-comment"]
udn.com##[class^="discuss-board"]

! UDN Money
money.udn.com##div[class="breaking-news-container "]
money.udn.com##section[class="article-switch"]
money.udn.com##div[class="story-flex-bt-wrapper"]
money.udn.com##section[class="article-comments"]
money.udn.com##section[class="sitemap toggle-list"]
money.udn.com##a[id="goTop"]
money.udn.com##div[class^="edn-ads"]

! UDN pets
pets.udn.com##div[class="story variety extend"]
pets.udn.com##div[class="story-list__header"]
pets.udn.com##div[id="comments"]
pets.udn.com#$#section[class="article-content__wrapper"] { width: unset !important; }
pets.udn.com#$#.article-content__cover picture { height: unset !important; width: unset !important; }

! CNA
cna.com.tw##[id="jsAppInfo"]
cna.com.tw##[class="appInfo"]
cna.com.tw##[class^="Subscription"]
cna.com.tw##[class="articlekeywordGroup"]
cna.com.tw##[class*="moreArticle"]
cna.com.tw##[class="paragraph BtnShareGroup appDownload"]
cna.com.tw##[class*="social-group"]
cna.com.tw##[class*="advertiseBox"]
cna.com.tw##[class^="privacy-bar"]
cna.com.tw##footer

! Dcard
dcard.tw##div[class^="atm"]:has(> div[id^="div-gpt-ad"])
dcard.tw#?#button[-ext-contains="/app 內打開/i"]
dcard.tw##div[class]:has(> button[class]:has-text(/用 App 查看完整內容/))

! technews 科技新報
technews.tw##div[class="tipbar"]
technews.tw##div[id="secondary"]
technews.tw##div[class="googlenews_Content"]
technews.tw##div[class="newsLetter_articleContent newsLetter_articleColumn"]
technews.tw##nav[class="nav-single"]
technews.tw##div[id="fbSEOComments"]
technews.tw##a[id="scrolldown"]
technews.tw##div[class="footer_frame"]
||technews.tw/wp-admin/admin-ajax.php*

! 商周
businessweekly.com.tw##div[class^="Single-right-part"]
businessweekly.com.tw##section[class^="Post-section"]
businessweekly.com.tw##section[class^="Promotion"]
businessweekly.com.tw##div[class="promote_subscribe"]
businessweekly.com.tw##div[class="cover_summary_story"]
businessweekly.com.tw##section[class^="Single-related"]
businessweekly.com.tw##section[class="d-xs-none d-md-block"]
businessweekly.com.tw##section[class^="Single-section"]
businessweekly.com.tw##button[data-label="訂閱"]
businessweekly.com.tw##div[class^="Links"]
businessweekly.com.tw##div[class^="Border"]
businessweekly.com.tw##div img[class="Logo-white lazy"]
businessweekly.com.tw##div[class^="Logos"]
businessweekly.com.tw##section[class^="Single-sidebar"]
businessweekly.com.tw##body .Google-special:not(#style_important)
businessweekly.com.tw#$#.col-lg-8 { flex: unset !important; max-width: unset !important}
businessweekly.com.tw#$#.col-md-7 { flex: unset !important; max-width: unset !important}
||ibw.bwnet.com.tw/file/js/vendor/infinite-scroll.pkgd.min.js

! CTwant
ctwant.com##div[class="m-adpopup"]
ctwant.com##div[class^="l-ad__wrapper"]
ctwant.com##div[class^="l-ad__article"]
ctwant.com##div[class="l-series"]

! NowNews
nownews.com##div[class="subsitetoolsBlk"]
nownews.com##h3[class="hotnews-top"]
nownews.com##section[class="breakingNews sticky"]
nownews.com##section[class="breakingNews"]
nownews.com##div[class="custom-blk"]
nownews.com##div[class="related-item"]
nownews.com##div.keywordBlk 
nownews.com##section.voteBlk
nownews.com##div[class="nnBlk immediate mb-1"]
nownews.com##ul[class="social-media"]
nownews.com##div[class="event-holder"]

! 世界新聞網
worldjournal.com##section[class="breaking-news__wrapper"]
worldjournal.com##div[class$="inline-ads"]
worldjournal.com##section[class="next-page"]
worldjournal.com##div[class^="cate-list__container"]
worldjournal.com##section[class$="facebook-comment"]
worldjournal.com##section[class="footer-social"]

! Ettoday
ettoday.net##div[id="manual_links"]
ettoday.net##div[id="recomm-news"]
ettoday.net##div[class^="etvideo_collect_2"]
ettoday.net##div[class="block block_1"]
ettoday.net##div[class="block block_2"]
ettoday.net##div[id="etnews_live_player"]
ettoday.net##div[class="nav_3"]
ettoday.net##a[class="download_app"]
ettoday.net#%#//scriptlet('set-cookie-reload', 'liveShowClose', '1', '/', 'ettoday.net')
ettoday.net##div[id="hot-news"]
ettoday.net##div[class="part_area_1 margin"]
ettoday.net##div[class="part_area_1"]
ettoday.net##div[class="text_ticker_1"]:remove()
ettoday.net##div[class="gototop"]

! 美麗佳人
marieclaire.com.tw##p[class^="extendArticle"]
marieclaire.com.tw##ul[class^="extendArticle"]
marieclaire.com.tw##div[class="adArticlebottom"]
marieclaire.com.tw##div[class="extendRead"]
marieclaire.com.tw##div[class="magazine"]
marieclaire.com.tw##p[class="subscribeTitle"]
marieclaire.com.tw##div[class="subscribeBox"]

! 電影神搜
news.agentm.tw##div[id="agmn_a_beginArticle_M"]
news.agentm.tw##div[class="relative"]
news.agentm.tw##aside[class="pside"]
news.agentm.tw##aside[class="aside"]
news.agentm.tw##footer[id="footer"]

! CTWant
ctwant.com##div[class="l-header__downloadapp"]
ctwant.com##div[id="article-tag-bottom"]
ctwant.com##div[class="l-section"]
ctwant.com##aside[class="l-sidebar-mobile"]
ctwant.com##div[class="l-footer__social"]

! 鏡傳媒 Mirrormedia
www.mirrormedia.mg##div[class^="gpt-placeholder__Container"]
www.mirrormedia.mg##section[class^="related-article-list"]
www.mirrormedia.mg##div[class^="support-mirrormedia-banner__Container"]
www.mirrormedia.mg##div[class^="social-network-service__Wrapper"]
www.mirrormedia.mg##section[class^="normal__StoryEnd"]
www.mirrormedia.mg#$#article { margin: unset !important; max-width: unset !important; }
||www.mirrormedia.mg^$cookie=/AviviD.+/

! 壹蘋新聞
tw.nextapple.com##a[class="app-m"]
tw.nextapple.com##aside[id="side-bar"]
tw.nextapple.com##div[class="post-related partner"]
tw.nextapple.com##div[class="post-comments"]
tw.nextapple.com##div[class="tags"]
tw.nextapple.com#$#div[id="main-content"] { width: 100% !important;}
tw.nextapple.com##a:has-text(/推薦新聞/)
tw.nextapple.com##a[href^="https://reporting.nextapple.com"]
tw.nextapple.com##hr
tw.nextapple.com##div[class="scrollTool"]
tw.nextapple.com##div#top-slider
tw.nextapple.com##div#marquee

# 遠見雜誌
gvm.com.tw##section[class^="newsletter"]
gvm.com.tw##div[class^="article-head_marketing"]
gvm.com.tw##div[class="media-sec"]
gvm.com.tw##div[class="rights-sec"]
gvm.com.tw##div[id^="article_end_"]
gvm.com.tw##div[data-recommend_placement="article_float_1"]
gvm.com.tw##div[id="content_area"]
gvm.com.tw##a[class="list-cards"]
gvm.com.tw##div[data-recommend_placement="article_1_bottom"]
gvm.com.tw##div[class="show-small"]
||rec.gvm.com.tw/gvm_recommend.php^
||gvm.com.tw/article/next_article^
||gvm.com.tw/recommend/article^

# 賴傳媒
lai-media.net##div[class="page-right"]:remove()
lai-media.net##div[class="marqueebar"]
lai-media.net##.header_btm:remove()
lai-media.net##section[class="sec_more_article"]


================================================
FILE: README.en.md
================================================
# FutaFilter
an advertisement blocking list specialized for Taiwanese users.

## Chat Group
Hey, have any issue? \
feel free join our chat room on telegram. (Chinese) \
https://t.me/adguard_tw


## Subscribe filter list
### Adblock script(AdBlock, AdGuard)
> FutaFilter process site DOM element. e.g. side navigation bar.
- <https://filter.futa.gg/filter.txt>
> hide [farm content](https://en.wikipedia.org/wiki/Content_farm) site from Google search result, with `ff` suffix for [firefox](https://www.mozilla.org/firefox) only.
- <https://filter.futa.gg/hide_farm_from_search.txt>
- <https://filter.futa.gg/hide_farm_from_search_ff.txt>
> removeparam for remove user track url parameters e.g. `fbclid=123abc`
- <https://filter.futa.gg/removeparam.txt>
> experimental a experiment filter list, public test whether the blocking policy has an impact on existing services, **NOT** recommended for users without debugging ability.
> - <https://filter.futa.gg/experimental.txt>
### hosts script(AdGuard Home, Pi-hole, AdAway)
- <https://filter.futa.gg/hosts.txt>
- <https://filter.futa.gg/nofarm_hosts.txt>
### Surge script
> only for Surge.
- <https://filter.futa.gg/Surge/filters.txt>

## How to install ?
Please read [wiki](https://github.com/FutaGuard/FutaFilter/wiki)

## Q&A

Q: after I use thie filter I cann't open any link from plurk.com \
A: please use this userscript [userscript](https://greasyfork.org/en/scripts/40884-plurk-no-redirector)

## buy me a coffe
https://p.ecpay.com.tw/B32C0


================================================
FILE: README.md
================================================
# LowTechFilter(原 FutaFilter)

一款專為臺灣人設計的廣告阻擋規則。

## 為何叫做 LowTechFilter?

這是致敬[美秀集團](https://streetvoice.com/bisiugroup/)。

## 討論群組

嘿,有使用上的問題嗎?
歡迎到 Telegram 群組上討拍喔。
https://t.me/adblock_tw

## 訂閱網址

### DOM 清單(支援:AdBlock, AdGuard)

> LowTechFilter 專門處理網頁上的 DOM 元素處理。例:側邊廣告欄

- <https://filter.futa.gg/filter.txt>

> 隱藏 Google 搜尋結果裡的
> [農場文](https://content-farm-terminator.blogspot.com/2018/12/about-content-farm-terminator.html)
> 專用清單

- <https://filter.futa.gg/hide_farm_from_search.txt>

> experimental 實驗性清單,公開測試封鎖對策是否對現行服務有影響,無偵錯能力使用者不建議使用。

- <https://filter.futa.gg/experimental.txt>

> PureView 實驗性清單,將網頁不必要的元素去除,只保留最純粹的瀏覽體驗。

- <https://filter.futa.gg/PureView/news.txt>
- (行動裝置版)<https://filter.futa.gg/PureView/news_mobile.txt>

### DNS 清單(支援:AdGuard Home, AdGuard 的 DNS 過濾, Pi-hole, AdAway)

- <https://filter.futa.gg/hosts_abp.txt>
- <https://filter.futa.gg/nofarm_abp.txt>

> 由台灣 165 反詐騙提供

- <https://filter.futa.gg/TW165_abp.txt>

> 由台灣 165 反詐騙提供,並帶有覆寫功能(打開符合規則的網址後會提示已被 165 封鎖)。

- <https://filter.futa.gg/TW165_redirect.txt>

> 由台灣 165 反詐騙提供,純 domain 此為特定用途。

- <https://filter.futa.gg/TW165_domains.txt>

> 從網路上羅列的 NRD 清單,經過整理的版本,NRD (Newly Registered Domain
) 意思是近期註冊的網域,通常新註冊的網域有較高的風險,經常為詐騙集團所用,此清單提供過去 1 天致 30 天的清單
- <https://filter.futa.gg/nrd/past-01day_hosts.txt> (過去 1 天,hosts 格式)
- <https://filter.futa.gg/nrd/past-07day_abp.txt> (過去 7 天,adblock 格式)


| hosts 清單一覽 | LowTechHost                                          | TW165 台灣反詐騙                                     | TW RPZ 阻止解析清單                                      | NoFarm 農場文清單                                     | NRD 清單(過去1天)                                             |
| -------------- | ---------------------------------------------------- | ---------------------------------------------------- | -------------------------------------------------------- | ----------------------------------------------------- | ---------------------------------------------------- |
| Adblock 語法            | [訂閱連結](https://filter.futa.gg/hosts_abp.txt)     | [訂閱連結](https://filter.futa.gg/TW165_abp.txt)     | [訂閱連結](https://filter.futa.gg/TWNIC-RPZ_abp.txt)     | [訂閱連結](https://filter.futa.gg/nofarm_abp.txt)     | [訂閱連結](https://filter.futa.gg/nrd/past-01day_abp.txt) |
| hosts          | [訂閱連結](https://filter.futa.gg/hosts.txt)   | [訂閱連結](https://filter.futa.gg/TW165_hosts.txt)   | [訂閱連結](https://filter.futa.gg/TWNIC-RPZ_hosts.txt)   | [訂閱連結](https://filter.futa.gg/nofarm_hosts.txt)   | [訂閱連結](https://filter.futa.gg/nrd/past-01day_hosts.txt) |
| 純網域        | [訂閱連結](https://filter.futa.gg/hosts_domains.txt) | [訂閱連結](https://filter.futa.gg/TW165_domains.txt) | [訂閱連結](https://filter.futa.gg/TWNIC-RPZ_domains.txt) | [訂閱連結](https://filter.futa.gg/nofarm_domains.txt) | [訂閱連結](https://filter.futa.gg/nrd/past-01day_domains.txt) |




### Surge 語法

> Surge 專用的語法。

- <https://filter.futa.gg/Surge/filters.txt>

## 如何安裝

請參考 [wiki](https://github.com/FutaGuard/FutaFilter/wiki)

## Q&A

Q: 我用了這個規則之後發現我的噗浪連結打不開了欸!!!!\
A: 請服用這個 [userscript](https://greasyfork.org/en/scripts/40884-plurk-no-redirector)

## 貢獻
本專案歡迎任何人貢獻,但請注意,提交貢獻前請先[閱讀](https://github.com/FutaGuard/LowTechFilter/wiki/%E5%A6%82%E4%BD%95%E8%B2%A2%E7%8D%BB%E6%88%96%E8%AB%8B%E6%B1%82%E6%96%B0%E5%A2%9E%E5%B0%81%E9%8E%96%E8%A6%8F%E5%89%87%EF%BC%9F),若有任何疑慮,請先開 issue 討論。

## 贊助

[![cloudflare](https://cf-assets.www.cloudflare.com/slt3lc6tev37/7bIgGp4hk4SFO0o3SBbOKJ/b48185dcf20c579960afad879b25ea11/CF_logo_stacked_blktype.jpg)](https://cloudflare.com)
> 由 CloudFlare 提供免費高速 CDN 服務

[![netlify](https://filter-assets.futa.gg/logo-netlify-small-fullcolor-darkmode.png)](https://netlify.com)
> 由 Netlify 提供每日建構

[![Tuta](https://filter-assets.futa.gg/tuta_logotype_rgb.png)](https://tuta.io)
> 由 Tuta.io 提供安全郵件服務,確保成員之間交換資訊安全

歡迎贊助我們,所有贊助金額將完全用做 FutaGuard DNS 運作以及維護清單費用支出。
<https://core.newebpay.com/EPG/futaguard/FMaZ4E>


================================================
FILE: Surge/biggo.sgmodule
================================================
#!name=BigGo 彈跳頁面
#!desc=需開啟 Rewrite 跟 MITM。 v20210320
#!system=ios

[Header Rewrite]
^https://biggo.com.tw header-add Cookie noad=9999999999

[MITM]
hostname = %APPEND% biggo.com.tw

================================================
FILE: Surge/check_futadns.js
================================================
const { v4, v6 } = $network;

let errorMessage = {
  title: 'FutaDNS',
  content: '無已被設定的 FutaGuard DNS 伺服器',
  icon: 'xmark.shield.fill',
  'icon-color': '#FE6245',
};

const successMessage = {
  title: 'FutaDNS',
  content: '已指定的 FutaGuard DNS 伺服器\n正在正確地運作',
  icon: 'checkmark.shield.fill',
  'icon-color': '#1FCFB4',
};

if (!v4.primaryAddress && !v6.primaryAddress) {
  errorMessage.content = '\n錯誤:未連上網路';
  $done(errorMessage);
} else {
  $httpClient.get('https://check.futa.gg', function (error, response, data) {
    if (error) {
      errorMessage.content += '\n錯誤:' + error;
      $done(errorMessage);
    }
    if (data.includes('正在正確地運作')) {
      $done(successMessage);
    }
    $done(errorMessage);
  });
}


================================================
FILE: Surge/check_futadns.sgmodule
================================================
#!name=FutaDNS 檢查面板
#!desc=顯示目前是否成功連上 FutaDNS。 v20211001
#!system=ios

[Panel]
CheckFutaDNSPanel=title="",content="",style=info,script-name=check_futadns.js,update-interval=1

[Script]
check_futadns.js=script-path=https://raw.githubusercontent.com/FutaGuard/FutaFilter/master/Surge/check_futadns.js,type=generic

================================================
FILE: Surge/filters.txt
================================================
#!name=FutaFilter
#!desc=Make Futa Great Again! v20231207.01
#!system=ios

[Rule]
#! Line 廣告
#! 白名單
URL-REGEX,^https:\/\/obs\.line-scdn\.net\/r,DIRECT
DOMAIN,stickershop.line-scdn.net,DIRECT
#! 黑名單
#! UA 偽裝
URL-REGEX,^https:\/\/a\.line\.me\/er\/la.*\/v1\/,REJECT-DROP
URL-REGEX,^https:\/\/a\.line\.me\/lass\/api\/v\d\/ads$,REJECT-DROP
#! 廣告媒體
URL-REGEX,^https:\/\/d\.line-scdn\.net\/lcp\-prod\-photo,REJECT
URL-REGEX,^https:\/\/obs\.line-scdn\.net\/0h.*\/m540x540$,REJECT
URL-REGEX,^https:\/\/obs\.line-scdn\.net\/0h.*\/m1280x720$,REJECT
URL-REGEX,^https:\/\/obs\.line-scdn\.net\/0h.*\/(w750|o1280x720|.*\.mp4),REJECT
#! 廣告資料
URL-REGEX,^https:\/\/sch\.line\.me\/api\/v\d+\/ads,REJECT-DROP
URL-REGEX,^https:\/\/buy\.line\.me\/api\/graphql\?variables,REJECT
URL-REGEX,^https:\/\/scdn\.line-apps\.com\/appresources\/moretab\/list\.json,REJECT
URL-REGEX,^https:\/\/scdn\.line-apps\.com\/lan\/image\/line\/bannerImageEvent\/,REJECT
URL-REGEX,^https:\/\/w\.line\.me\/adp\/api\/ad\/v\d\/,REJECT-DROP
#! Line 新聞
URL-REGEX,^https:\/\/crs-event\.line\.me,REJECT
URL-REGEX,^https:\/\/api\.today\.line\.me\/webapi\/TW\/recommendation\/articles\/articleend,REJECT
#! Line 小紅紅
URL-REGEX,^https:\/\/a\.line\.me\/cs\/v\d\/oa$,REJECT-DROP
URL-REGEX,^https:\/\/a\.line\.me\/oa\/v\d\/e$,REJECT-DROP

#! Dcard 
URL-REGEX,^https:\/\/bilanx\.dcard\.tw\/v\d\/events$,REJECT
URL-REGEX,^https:\/\/bilanx\.dcard\.tw\/v\d\/configs$,REJECT

#! 漫畫人/漫畫社
#! 安裝本模組後,建議移除漫畫人/漫畫社再重新安裝以到最佳阻擋效果(重新安裝後會有一小段時間無法觀看限制內容,等待1-2小時左右即可解除)
URL-REGEX,^https?:\/\/(mangaapi|comicapi).(manhuaren|manhuashe).(com|net)\/.+\/public\/(getShelfActivity|getStartPageAds|getStartPageAds2|getRecommendedGame|getAditem|getAds|getMultiAds|getUpgradeInfo|getVendor|getUserLocation),REJECT
URL-REGEX,^https?:\/\/(mangaapi|comicapi).(manhuaren|manhuashe).(com|net)\/.+\/(manga|comic)\/(getMangaPromotionActivity|getComicPromotionActivity),REJECT
URL-REGEX,^https?:\/\/(mangaapi|comicapi).(manhuaren|manhuashe).(com|net)\/.+\/(ad|ads)\/,REJECT
DOMAIN-SUFFIX,hkadsapi.(manhuaren|manhuashe).(com|net),REJECT
DOMAIN-SUFFIX,adsapi.(manhuaren|manhuashe).(com|net),REJECT
DOMAIN-SUFFIX,videoapi.(manhuaren|manhuashe).(com|net),REJECT
DOMAIN-SUFFIX,bi.(manhuaren|manhuashe).(com|net),REJECT
DOMAIN-SUFFIX,euadsapi.(manhuaren|manhuashe).(com|net),REJECT
DOMAIN-SUFFIX,adlog.(manhuaren|manhuashe).(com|net),REJECT
DOMAIN-SUFFIX,applog.uc.cn,REJECT-TINYGIF

#! 4Gamer
URL-REGEX,^https:\/\/www\.4gamers\.com\.tw\/site\/api\/aols\/media\?,REJECT

#! PTT 相關
URL-REGEX,^https:\/\/pttbrain\.herokuapp\.com\/api\/ptt\/metric\/user\-geo\-distributions,REJECT

#! pixnet
URL-REGEX,^https:\/\/front\.pixfs\.net\/module\/idlePop\/js\/,REJECT

#! Poke Genie 團體戰
DOMAIN-SUFFIX,cloudfunctions.net,DIRECT
DOMAIN-SUFFIX,admob-app-id-4587251595.firebaseio.com,DIRECT

#! 通用阻擋
DOMAIN,itad.linetv.tw,REJECT
DOMAIN,sessions.bugsnag.com,REJECT-DROP
DOMAIN,m.vpon.com,REJECT
DOMAIN-KEYWORD,admarvel,REJECT
DOMAIN-KEYWORD,admaster,REJECT
DOMAIN-KEYWORD,admdfs,REJECT
DOMAIN-KEYWORD,adnewnc,REJECT
DOMAIN-KEYWORD,adsage,REJECT
DOMAIN-KEYWORD,adsame,REJECT
DOMAIN-KEYWORD,adsensor,REJECT
DOMAIN-KEYWORD,adserver,REJECT
DOMAIN-KEYWORD,adservice,REJECT-DROP
DOMAIN-KEYWORD,adsmogo,REJECT
DOMAIN-KEYWORD,adsrvmedia,REJECT
DOMAIN-KEYWORD,adsserving,REJECT
DOMAIN-KEYWORD,adsystem,REJECT
DOMAIN-KEYWORD,advert,REJECT
DOMAIN-KEYWORD,adwords,REJECT
DOMAIN-KEYWORD,allyes,REJECT
DOMAIN-KEYWORD,analysis,REJECT
DOMAIN-KEYWORD,analysys,REJECT
DOMAIN-KEYWORD,analytics,REJECT
DOMAIN-KEYWORD,app-measurement,REJECT
DOMAIN-KEYWORD,applovin,REJECT
DOMAIN-KEYWORD,appsflyer,REJECT
DOMAIN-KEYWORD,crashlytics,REJECT-DROP
DOMAIN-KEYWORD,dnserror,REJECT
DOMAIN-KEYWORD,domob,REJECT
DOMAIN-KEYWORD,doubleclick,REJECT
DOMAIN-KEYWORD,duomeng,REJECT
DOMAIN-KEYWORD,dwtrack,REJECT
DOMAIN-KEYWORD,fenxi,REJECT
DOMAIN-KEYWORD,guanggao,REJECT
DOMAIN-KEYWORD,inmobi,REJECT
DOMAIN-KEYWORD,lianmeng,REJECT
DOMAIN-KEYWORD,meetrics,REJECT
DOMAIN-KEYWORD,mobaders,REJECT
DOMAIN-KEYWORD,omgmta,REJECT
DOMAIN-KEYWORD,openx,REJECT
DOMAIN-KEYWORD,partnerad,REJECT
DOMAIN-KEYWORD,securepubads,REJECT
DOMAIN-KEYWORD,socdm,REJECT
DOMAIN-KEYWORD,supersonicads,REJECT
DOMAIN-KEYWORD,taboola,REJECT
DOMAIN-KEYWORD,uedas,REJECT
DOMAIN-KEYWORD,umtrack,REJECT
DOMAIN-KEYWORD,uploadMobileData,REJECT
DOMAIN-KEYWORD,wlmonitor,REJECT
DOMAIN-KEYWORD,zjtoolbar,REJECT
DOMAIN-SUFFIX,admob.com,REJECT
DOMAIN-SUFFIX,flurry.com,REJECT
DOMAIN-SUFFIX,mopub.com,REJECT

[MITM]
hostname = %APPEND% a.line.me, w.line.me, buy.line.me, crs-event.line.me, obs.line-scdn.net, d.line-scdn.net, api.today.line.me, sch.line.me, scdn.line-apps.com, mangaapi.manhuaren.com, mangaapi.manhuaren.net, comicapi.manhuashe.com, www.4gamers.com.tw, bilanx.dcard.tw, pttbrain.herokuapp.com, front.pixfs.net


================================================
FILE: Surge/futadns.sgmodule
================================================
#!name=FutaDNS (futa.gg)
#!desc=啟用 FutaDNS
 
[General]
doh-server = https://doh.futa.gg/dns-query

================================================
FILE: TW165.txt
================================================
http://0.ones66.top/m/nav
http://0.ones66.xyz
http://0.ones66.xyz/
http://0115.yggaming.net
http://0204net.com/
http://03107111.com
http://03107111.com/
http://0466.shuyaou.com
http://04800.cn
http://0528.transceend.com
http://0551115.com
http://0713.services0701.shop
http://08.effectiven.com/
http://08.goldsand777.top/
http://0857.kimbe777.net/
http://09.goldsand777.top/
http://0963084.space
http://0x5.me/jc07
http://0x7mln01.com
http://1-12.zfjsbj.sbs
http://1-13.zfjsbj.sbs
http://1-20.zfjsbj.sbs
http://1.8m6.cc
http://1.bittrex.com.tw
http://1.ynh090.com
http://1.ynh090.com/
http://1.yoyalaitw.com
http://1011111.com
http://101115.site
http://10bk.criptonitecore.vip
http://11.gooaaa.com
http://11.shopvvv.com
http://110707.click
http://111.boss168.top/
http://111.boss168.xyz/
http://111.boss168.xyz/m
http://111.dyshangcheng.shop
http://1111567.com
http://117.sasa.best
http://11bk.criptonitecorei.vip
http://11stglobal.com
http://12.shopsyx.com
http://122.35852.top/h5
http://122.66821.top
http://122.66821.top/h5
http://128.sasa.best
http://129.era55.com/
http://13.nine-1688.com
http://13.shopsyx.com
http://133.66575.top/h5
http://1387316806.RSC.CDN77.ORG/USER/LOGIN/UCENTER/INDEX
http://15.fm2566.com/Mobi/?t=9a
http://15686556ba9918e1cfa4b772257175aa.bullionv.shop
http://1584761844.rsc.cdn77.org
http://168.63241.top/h5
http://168.66712.cfd/h5
http://168.66821.top/h5
http://168.789745.top/h5
http://1680540220000.mtpro5.xyz
http://168168.ft989.net
http://1688.66712.top/h5
http://1688.loves5288.com
http://1688.loves5288.com/
http://1688.loves5288.com/pc
http://1688selller.shop
http://1689835386.zs2934.vip
http://168swin1.com
http://16k0dl.abacoin8.com/?reg_id=164
http://17-play01.com
http://1718710547.rsc.cdn77.org
http://1734.era55.com/
http://1790.shf668.net/
http://17f84.jssiuhr.com
http://17f84.jssiuhr.com/d1h80
http://17joke.com
http://17oemm.com
http://17play275.com
http://1941487500.rsc.cdn77.org/
http://1979.reform9.com
http://1988220.com/
http://1d.onyx9999.top/m/drawing_record
http://1defiwalletweb3.bio
http://1go6y.com
http://1hc.npk3.cn/
http://1hdtwdown.com
http://1k.mxtrad.net/
http://1kcrown.com
http://1kdex.com
http://1konchain.com
http://1llchdoge.icu
http://1tjpki3yzy4w.com
http://1xideas.xyz
http://2.applettwts.com
http://2.maxnfttw.com
http://2.ordesys.com
http://2021wbf.com/
http://2025.hashkey-x.top
http://2025.xoaohsk.top
http://2025.xodohsk.top
http://2025.xogohsk.top
http://2025edge.edgekf.com
http://2025edge.edgekh.com
http://2025edge.edgeqz.com
http://2025edge.edgerce.com
http://2025edge.edgercq.com
http://2025edge.edgercr.com
http://2025edge.edgercw.com
http://2025edge.edgexxa.com
http://2025edge.edgexxd.com
http://2025edge.edgexxe.com
http://202601112143.airbnb-vip.vip
http://208.winn6668.com
http://222.gsa168.top/m
http://23.yesoss.com
http://2345cps.com/
http://24.auct.it.com
http://24.qyshop.store
http://24.redmart.site
http://24pcbuymore.com
http://24pchomes.com
http://24pcshop.com
http://25.hksyk.top
http://25.hksyv.top
http://25.hksyw.top
http://252b0b.jypwtiuk.com/wl85n7w3
http://268cpxz.com
http://27a8.site
http://28.wns9168.com
http://28game.top
http://28in.cn
http://28lhcf.gp866.cn/
http://296t.com
http://2be-csv.com
http://2bedigital-win.com
http://2d5b.jped6gy8ex.cc
http://2m9oxf6h.com
http://2y.svstrd.com/
http://3.dyshangcheng.top
http://3.scone9988.top/m
http://326469.com
http://3323gmic.lpq2g16i02.com
http://333.hyiiup.com
http://333.hyiiup.net/
http://3523443.space
http://36.shopyyf.com
http://360biki.com/#/
http://369shoptw.com
http://37ani.qfc1.top
http://37trade.com
http://37trading.it.com
http://38.yesuuu.com
http://3989988.com
http://3a1888.com
http://3scasino.com
http://4.scone9988.top/
http://401867.click
http://408r8bs.idgcapital99.com/home/app/reg.html?regld=21123
http://421ru.jsanrhs.com/s37m2
http://49bucheng.icu/m
http://4c2de5ea1d40ef63e76d64e793aa0725.bullionv.shop
http://5.gptgroup88.com
http://5.ydotc.com/
http://500ibc.com
http://50651442.89650.top
http://506gzqh.top/m
http://50bwu.cc
http://50eey.cc
http://50gaa.cc
http://50ncs.cc
http://50vok.cc
http://5168a.ustec8.com
http://5188king.com
http://51n.fun
http://51wrm.cc
http://5379651.com
http://539222.net
http://539666.net
http://539889.net
http://53pok.cc
http://53poo.cc
http://53szo.cc
http://54012.topftem.com
http://54088.topftem.com
http://54moj.xyz
http://55.sasa.sale/maintenance
http://552155.com
http://5533.gs188.cc/casino
http://5533969.com
http://55ind.cc
http://55inr.cc
http://55itj.cc
http://55ytb.cc
http://5688pro.com/
http://56bit.bitmexx03.com
http://56xyb.cc
http://57dance.com
http://57shp.cc
http://58.nine-1688.com/memberinfo
http://5858.boss168.top
http://5858.boss168.top/
http://588.invstexo.net/
http://5889962.com
http://58alm.cc
http://58dvp.cc
http://58sux.cc
http://598x.net
http://59tuq.cc
http://615x.com
http://6255379.com
http://62dhj.dev
http://63311.tw
http://6355539.com
http://6366698.top
http://6375289.com
http://6518526.com
http://6562783.com/
http://666.transceend.com/
http://666.transceend.com/member_center
http://6677.mt1688.cc/
http://66ios.xyz
http://66ss.mayae68.net
http://67.dtgs88.cn/
http://67332.art
http://6833hk.tw
http://68688y.com/
http://68e.me/avl
http://68e.me/bm1
http://690.LA/FEN
http://690.la/Tmu
http://690.la/fen
http://692758.com
http://692758.com/index
http://69555ex.com
http://6985965.com
http://6eiiq0.com
http://6f4obp.idgcapital99.com/home/app/reg.html?regld=20877
http://6wv088u3.com
http://6xc.e5gecnnafj.cc
http://7.macaosand88.com
http://7.rlaza.com
http://700823.com/
http://7055512.com
http://716773.space
http://7366623.com
http://7522935.com
http://7606888.vip
http://7636-gsa8hzeyhfgwg0a0.a03.azurefd.net
http://768959.com/Public.login.do
http://777.bitforeex.com.net
http://777.mscico.com/
http://777gam.com/
http://777gam.com/games
http://777vip.mexa-inv.one
http://77ideal.cn/denglu.php
http://78ok3.com
http://793715.com/
http://7J777.net
http://7c31966faa239597c8f8b0f8908432e7.bullionv.shop
http://7h8j9h4dg54.tt23.life.cdn.cloudflare.net
http://7kbmyc.top
http://7r40s.xyz
http://8.dyshangcheng.cyou
http://8.dyshangcheng.shop
http://8.seashop99.com
http://800.baowang5788.net
http://800.bolee666.com
http://8053b6.aqhdbgbo.com/wl85n7w3
http://81-trustfunds.com
http://81286.com
http://81768478.youtaosc.vip
http://825a489d73605897974c2b79e2bfb896.hosting1023.shop
http://828229.site
http://82ayqs.wphec.com
http://85.sasa.best
http://8588589.com/
http://85992ex.com
http://870530.click
http://870s8.cn/
http://875755.click
http://88.VV6666.TOP
http://88.VV6666.top
http://88.mt1289.com/
http://88.vv6666.top
http://886tw.airbnb-vip.vip
http://888.era55.com/
http://888889936.com
http://888ama.com
http://88dhcanh.cc
http://88win4.com
http://8978819.top
http://8ad.bbitt.top
http://8cky.xyz
http://8f5a7f47.miravia-1.vip
http://8legend.com
http://8legend.com/
http://8t8vd5.wphec.com
http://8z3q9.aqu3cybpdbj6.xyz
http://9.seashop888.com
http://909089.ztzchveo.com/eeplcox0
http://90m9d8.xyz/wXqv.app
http://90nn.xyz
http://91mp4.top
http://9266556.com
http://932ap.lbtechn.com
http://932ap.lbtechn.com/sku8p
http://9491150.cc
http://94dis.com/diss/num/1219.html
http://9598090.com
http://968287.com
http://977138.click
http://982958.top
http://99.goldsand777.top/
http://9996330.com/mobile/#/home
http://9999-9999-04.zfjsdj.sbs
http://9999-9999-11.zfjsdj.sbs
http://99999s23.icu
http://9b0b.site
http://9o.fjjiajiale.cn
http://9x168.com
http://A.MOM
http://A.PC
http://AMBER.CO
http://APP.GMPOOL.NET
http://APP.SA-platform.com
http://APP.WA578.COM/IEGC/
http://ATC.DIGICCY
http://Amber.co
http://B818.VIP
http://BINANCE.ONE
http://Bakkt.co
http://Bata1.wtcetn.com/
http://Bestsgs.io
http://Betexplc.com
http://Bftbit.com
http://Binance.Bo
http://C.R.Ypro
http://C002.kgi888.cc
http://CC86.ITICFX.COM/
http://CEX.IO
http://COINGROUP.BO
http://COMPANYGHJ.com
http://CV.NET
http://CitiGroup.BO
http://Citigroup.BO
http://Citigroup.Bo
http://Coingroup.BO
http://Crypto.com
http://Crypto.web
http://DARV.MOMA.WEBSITE/
http://DFI.Money
http://DFX.Finance
http://DISCOVERFS.NET
http://ETF.COIN
http://Etber.co
http://FXPROTW.COM
http://FdDz.app
http://Future.lmstaoes.com
http://Fxview-tw.com
http://G.ML
http://G005.lhbet88.com
http://GBP.kkerans.com
http://GG868.NET
http://GVEX.BO
http://Gate.io
http://Gates.io
http://Gd.ratex8.com
http://HKEx.one
http://HkexNews.Club
http://INTELLTK.WKFUNDS.COM/
http://Ic.maooam.cn
http://Index.index.do
http://J.P.Morgan
http://J.PMorgan
http://JO.EAGLE777.TOP
http://Lem-Coin.Com
http://Luck02.shf668.net/index
http://Lz7M.app
http://M.AINFXS.COM
http://M.L.Edge
http://Meta.nftstoretww.com
http://MetaBit30.mettbit.com
http://N.kinvestops.com
http://Nirvana.finigm.com
http://OANDA.ME
http://OUD.genesbo.com
http://Pro.Pbvix.com
http://Prosperity.fudingking.com
http://Public.login.do
http://QmFirst.Com
http://Qmcoins.com.tw
http://STBIT.com
http://Savegas.AI
http://Sniper.fujibee777.com
http://Spex.One
http://TJ777.NET
http://Tamia.shopping
http://Twb.icefun.net
http://USport.Ai
http://V.spgex.com
http://WHI2001.MSCICO.COM/
http://WWW.MTR.MONEY/M/USERINFO
http://WWW.pepperstonecrm.com
http://WWW.qhfjdkg.com
http://WWW.teapuer.online
http://Wangwangqiandai.cn/&isCheckCode=false
http://X.AVAINVESTR.COM/
http://XT.COM
http://Z.COM
http://Z.com
http://a-peeloffsexvip.com
http://a.123370.cn/
http://a.201772.cn/
http://a.52502.cn
http://a.5699am.com
http://a.655666am.xyz
http://a.882880.cn
http://a.ainx.com
http://a.anhdty.com
http://a.b.tw3368.top
http://a.b.tw692.top
http://a.b.tw718.top
http://a.bcrol.xyz/kaiya
http://a.bycp23.com
http://a.dbrej.xyz
http://a.dc669.cc
http://a.dfguoji2.com
http://a.diut.top
http://a.diut.top/
http://a.dsawcdaa.xyz
http://a.dsndfbxsa.xyz
http://a.etimtoken-3.xyz
http://a.f968502.xyz/B9F6N09M
http://a.fk520.cn
http://a.gotiwjqqwe.com
http://a.hkhuifa.com/user/login
http://a.js0008.cn/
http://a.keze666.com/s/K4NFLQ
http://a.keze666.com/s/sYBHCD5
http://a.m84.icu
http://a.marketaeg.space
http://a.mazonshopm.com
http://a.mazonshops.com
http://a.mazonshopt.com
http://a.mazonshu.top
http://a.mazonsmum.top
http://a.mazonsmut.top
http://a.mc62.cn
http://a.mf122.cn
http://a.mugame.tw/s/2w7hxy
http://a.mugames.tw/index/user/login/2.html
http://a.mugames.tw/s//YPXLCK
http://a.mugames.tw/s/VSW8KC
http://a.nasdaq118.com
http://a.nsfqn.xyz
http://a.nsfqn.xyz/09LEE8aZus2
http://a.ones66.top/
http://a.opensky.guru
http://a.opensky.ltd
http://a.opensky.red
http://a.opensky.tips
http://a.opento.cc
http://a.qh2279.com
http://a.qh3689.xyz
http://a.qh619.net
http://a.qh7126.com
http://a.qh9352.com
http://a.qt2699.net
http://a.qt5566.net
http://a.qt5725.net
http://a.qt6699.net
http://a.rdnvwd.com
http://a.supernft.cloud
http://a.supernft.rent
http://a.supernft.space
http://a.supernft.work
http://a.svvgs.xyz/taixin
http://a.tcxc2.cn/Index.lotteryHall.do
http://a.tgkuvsa.com
http://a.tog765.cfd
http://a.tp5512.net
http://a.tp6133.net
http://a.usdtjob.com/
http://a.usdtjob.com/s/9NE2JZ
http://a.vnsr1690.com
http://a.wcni.cn
http://a.wns5158.com
http://a.wok999.com
http://a.xd5521.cn
http://a.ylhg68.xyz
http://a.ylhg85.xyz
http://a.ylhg86.xyz
http://a.ylhg99.xyz
http://a001.bellagio.fun
http://a001.bellagio.today
http://a001.starlux.beauty
http://a001.starlux.live
http://a001.starlux.mobi
http://a001.yuangxin.cc
http://a002.8legend.com/
http://a003.baiy.world/
http://a003.jd3168.com
http://a003.leying168.com/
http://a003.leying168.com/center/#/register
http://a004.8legend.com/
http://a004.8legend.net/
http://a004.8legend.online
http://a004.aifund.world/
http://a004.bixintw.com
http://a004.desirxer.com
http://a005.aifund.world/
http://a005.kgi888.cc
http://a006.kgi588.com
http://a007.desirxer.com
http://a008.baiy.world/center/#/login
http://a008.kgi888.com
http://a01.chcura.com
http://a01.chcura.com/_FrontEnd/index.aspx
http://a01.discf.com/
http://a01.dovbs.com
http://a01.ecweb3.com
http://a01.fsdof.com
http://a01.jecaweb.com
http://a01.massf.net/
http://a01.massf.net/_FrontEnd/index.aspx
http://a010.baiy.world/
http://a010.tf7688.net
http://a011.kgi888.com
http://a013.xcravvess.com
http://a015.leying168.com/
http://a015.leying168.com/center/#/register
http://a016.leying168.com/
http://a016.xcraves.com
http://a017.desirxer.com
http://a02.fsinft.com
http://a02.snftf.com
http://a02.trdnf.com
http://a025.desirxer.com
http://a04.dofas.net
http://a04.ffsnf.com
http://a04.snftf.com
http://a06.dofas.net
http://a0808.loves5288.com/m
http://a1.h1jtech.com/
http://a1.jiinstar.com
http://a1.qniuu.com
http://a1.qniuu.com/
http://a1.reform9.com/
http://a1.warnern.com/
http://a1001.tiktkoshop.com/h5
http://a1001.twtkshop.com
http://a1002.tiktok-shopping.org/h5
http://a1026.top
http://a123.topfteams.com
http://a168788.goresx.com
http://a168788.gorsetasx.com
http://a1af30559c63a2a9e08edd04adfeeab2.forless1116.shop
http://a22.tigerking777.com
http://a33.tigerking777.com/
http://a7.m-bitcoin.com
http://a7c8958011f3b97a4b3ca0a1e0dfd5c.trans1017.shop
http://a888rlazan.com
http://a9.acp-tw.website
http://a9t3x.xyz
http://aa-gokx.okxvvx.com
http://aa.803839.com
http://aa.803839.com/
http://aa.885522.net/
http://aa.ntmedg.com
http://aa.ntmedg.com/
http://aa.ntmedg.com/index/login/login/token/bb6adda18bda0a800fcab77875264eab.html
http://aa.qonsbd.com
http://aa11.hcsh669.net/
http://aa11.jsc168.net/
http://aa33.hcsh669.net/
http://aa42.artfunfa.com
http://aa5265.com
http://aa58.tgw8599.net/
http://aa777.reform9.com
http://aa777.reform9.com/
http://aa88.jsc168.net
http://aa8888.vertexxs.com
http://aa95.vip/
http://aa95.vip/#/home
http://aa95.vit/#/dank/trans/1
http://aaa.22233349.com
http://aaa.22233349.com/
http://aaa.bycmqy.com
http://aaa.ctrintel.com
http://aaa.hyllf88888.vip
http://aaa.kpcb99.com
http://aaa.okex004.top
http://aaa.solutfoundy.com
http://aaa888.clf99.net
http://aaa888.clf99.net/page1
http://aaaa.ppp6666.tw
http://aaaa.ppp6666.tw/
http://aachain.app
http://aaex.asia
http://aaex.club
http://aaex.in
http://aaex.win
http://aafg8.com
http://aahongkong.com/
http://aama.gfmm.asia/
http://aap.btkakjndeqs.com
http://aap.vbbzgbswas.com
http://aapier.icu/app_tanx_a/
http://aaronscoin.com
http://aased003.se888.net/
http://aasfexx.shop
http://aat8818.trendcenterr.com/
http://aava5defi.xyz
http://aavadefipro.com
http://aaxpro.vip
http://aayy32.cc
http://ab.exfng.com/
http://ab109.nengli.am888m.com
http://ab109.nengli.am888m.com/
http://ab93.site
http://abakkanetwent.com
http://abakkanetwenta.com
http://abakkanetwentk.com
http://abakkavanetwentas.com
http://abakkavanetwentts.com
http://abc.neijinjsasd.com
http://abc.roleyetf.biz
http://abce-commerce.net
http://abd.tw
http://abit.goldbitgreat.com
http://abroad-h5.dongjiahao.top
http://abroad-nnh5.fengyatech.top
http://abunshop.com
http://abunshope.com
http://ac.88.fotmc.net/
http://ac.dferew.cc
http://ac5888.rgztw.com/
http://ac88.bitomax.net/page1
http://ac88.fotmc.net/page1
http://acclaim.twsiw.com
http://accomplish.tilepm.com
http://account.coach-steps.com
http://acdx.centere.info/h5
http://acdx3.cc
http://acdx6.site
http://ace.fcnworld.com
http://ace.jskouku.com
http://ace.nftsaletw.com
http://ace.nftstoretww.com
http://ace6161.lbcgoal.com/
http://ace6161.mscico.com
http://acecc.online
http://acent-ex.com
http://acent-tw.vip
http://acent.us
http://acentcoin.cc
http://acentcoin.us
http://acenteex.com
http://acentglobal.com
http://acentpro.cc
http://acenttw.us
http://acentvip.com
http://acestops.com
http://acgbtdex.com
http://achieve.rtcmt.com
http://acidifya.com/MS1db1
http://acirobot.com
http://acq168.ubggi.com
http://acquisition.mkrcoinlodsn.com
http://acquisition.mkrcoinnad.com
http://acquisition.mkrcoinnag.com
http://acrynovasthel.com
http://acs168.net
http://acs516.kinvestcap.com
http://acskt.27.tw.rbzat.xyz/?openExternalBrowser=1#/register/ALEuMMWq
http://acting.cyberllsr.com
http://actitradestw.com
http://actitradestw.com/
http://activtradestw.net
http://acwh520.cc
http://acyforex.com
http://acyforextw.com
http://ad-influencer.com
http://ad.28f8l.cn/baili.php?chief_uid=620
http://ad.isthewhy2.cyou
http://ad.xpj10688.com/#/home
http://ada.alcoaiesr.com
http://adc1.bukot.top
http://add.gtsaddlon.com
http://add778.com
http://addmklwhisky.com
http://addtopc24.com/zlkhpiu
http://adimanbike.com
http://adimmunerc.com
http://admc.laiyii.com/
http://admin-bittraderz.com
http://admin.jetswapfx.net
http://admin.joom.zone
http://admin.supersign99.com
http://admin.supersign99.com/
http://admirable.krychs.com
http://adnins.cloud
http://ads-wppmedia.online
http://ads.adsquickdeal.org
http://adsstw.com
http://adsstw.com/
http://advchiprem.com
http://adwing3.com/index/login/login.html
http://adwing8.com
http://adx.global-experade.com/#/
http://adxads.shop/appdown_a
http://ae01.dfint.net/_FrontEnd/index.aspx
http://ae86.kw1688.net/
http://ae888.rlaza.com
http://ae888.rlaza.com/
http://ae888.rlazan.com
http://aed.genesryktae.com
http://aemqs.tkrtsiar.com/eeplcox0
http://aeposcoin.com
http://aerinxr.com
http://aerinxs.com
http://aespa88.vip
http://aespa888.vip
http://aespa996.vip
http://aespa999.vip
http://aetosszonetes.com/
http://aetosszonetw.com
http://aetosszonetw.com/
http://aetosszonetws.com
http://aetosszonetws.com/
http://aetxl-max.com
http://aexbref.com
http://aexdsd.com
http://aexged.com
http://aexhwe.com
http://aexko.net
http://af.jianwei-money.com/?r=site/index
http://af.peipp.cn/app.php/MTA=
http://affiliatetaobao.org
http://afgva.com
http://afrnnc.com
http://ag01.zhyabs.com
http://ag02.zhyabs.com
http://aganki.com
http://agoragroups.com
http://agoz12.jfbdesa.com/pycfnp
http://agwms.org
http://ah.qjzalid.cn
http://ahead.ehobm.cn/mmpnd?p=3795yh7hip0x6u27
http://ahh344.com/
http://ahkebkm.fnvezr.com
http://ai-coinsee.cc
http://ai-crypto.cloud
http://ai-crypto01.shop
http://ai-internationald.com
http://ai-internationale.com
http://ai-internationalf.com
http://ai-internationalgk.com
http://ai-internationalgp.com
http://ai-internationali.com
http://ai-internationall.com
http://ai-internationalo.com
http://ai-staking.cc
http://ai-trustba.cc
http://ai-web3.net
http://ai-web3.org
http://ai-web3.shop
http://ai.gomgmc.com
http://ai.gomgmy.com
http://ai369.com.tw
http://ai369.com.tw/
http://ai6.asi-tw.com/
http://ai698.com
http://aia.boayy.com/login
http://aibotcomp.sentrixinstitution.com
http://aibotcomp.vaixagency.com
http://aibrobot.vip
http://aibuy.life
http://aicryptoexn.com
http://aidapp.link
http://aids.mxtrad.net/register
http://aifeex.com
http://aifeier888.xyz
http://aifund.world/
http://aifxcard.net
http://aigams-in.com
http://aiinvesttron.com
http://aiisaacom.com
http://aiisaacoma.com
http://aiisaacome.com
http://aike.aikearena1000.com
http://aike.aikearena3000.com
http://aike.aikearena7000.com/aike
http://aiko1688.cmnae.com/
http://ailivem.com
http://aimelike.com
http://aimoneygo.com/
http://aims-coins.top
http://aims-tw.com
http://ainestain.com
http://aiofalysetbaay.com
http://aiofalysetwbaay.cfd
http://aipublicglobalaa.com
http://aipublicglobalbb.com
http://aipublicglobalcc.com
http://aipublicglobaldd.com
http://aipublicglobalee.com
http://aipublicglobalgg.com
http://aipublicglobalkk.com
http://air177.holmes.city/register
http://air540.holmes.city/register
http://air666.holmes.city
http://air666.holmes.city/
http://air666.homles.city/
http://aircash.cc
http://aircash.store
http://aircashtrade.shop
http://airtrade.bond
http://airtrade.top
http://aisemiconductoriz.com
http://aish.momanow.xyz/
http://aishang.app
http://aism-tw.top
http://aismex.com
http://aismexd.com
http://aismexit.com/wap
http://aismexmts.com
http://aismexuct.com
http://aisp-tw.top
http://aitech.optixaiplusorganization.com
http://aitechstock.co
http://aiverseatech.com
http://aiverseatech.plus
http://aiwfalycdabay.com
http://aiwfalywdabay1.cfd
http://aix.global-trademax.net/
http://aix.global-trademax.net/_FrontEnd/index.aspx
http://aixeblackswan1000.com
http://aizhiluo.com
http://aj-ind.com
http://aj.eirngpsf.top
http://aj.fdexba.top
http://aj.jmukde.top
http://aj.jmukde.top/wap
http://ajsksf.com
http://ak05.qtint.net
http://ak18.qtint.net/
http://ak20.qtint.net/
http://ak26.qtint.net/
http://akashsystems-agv.com
http://akashsystems-arm.com
http://akashsystems-cv.com
http://akashsystems-kad.com
http://akashsystems-trh.com
http://akashsystems-uav.com
http://akashsystems-vbs.com
http://akashsystems-vhn.com
http://akashsystems-wpm.com
http://akashsystems-znn.com
http://aklp19.com
http://akp9.feiyakp.com/
http://al-stock.icu
http://al.aloile.com/v/1017ts
http://al.central-bank-uk.com/
http://al.eosnrun.top/h890
http://al.iex.aliexpsshos.com
http://al.sfrgdsd.top
http://al.svstrd.net
http://alabama901.gordonusd.com/
http://alabama901.supergiaying.com/
http://alabama909.gordonusd.com/
http://alakline.com
http://albaba.yhj16688.com
http://albb.2570212.com
http://albb.8962552.com
http://albb.fcgcdyw.vip
http://albb8596.com
http://albbyhj0879.vip
http://albbyhj888777.com
http://albloveshop.com
http://alctt02.kjhgc.com/_FrontEnd/login.aspx
http://alcx-sushi.top
http://alibaba18.vip
http://alibabaquan.tw
http://alibabavoucher.com
http://alibba1688.com
http://aliexp-twdapp.vip
http://aliexpress.aepwh.com
http://aliexpress.aepws.com
http://aliexpress.alpwh.com
http://aliexpress.palsorti.cn
http://aliexpressh.com
http://aliexpresswholeoi.com
http://aliexprewhsale.com
http://allemall.com
http://allencapital.online
http://allepro.shop
http://allgame99.net
http://allianceex.co
http://allianzet.com
http://allpurposejobguide.xyz
http://aln8.anshuofinance.com
http://aln8.anshuofinance.com/
http://aln888.ftxenzs.com
http://alowing.xyz
http://alpha-finace.com
http://alphafinace.com
http://alphafinacec.com
http://alphafinaceca.com
http://alphafinacecz.com
http://alphafinaced.com
http://alphafinaceoq.com
http://alphafinaceq.com
http://alphafinacex.com
http://alsdaklmlxzc.yuanpupak.com
http://altitude.haaln.com/login
http://altobb.net/
http://altrmedicp.com
http://alx.iaglim.com
http://am.ls-bit.com/dist/am.html
http://am.wns999.xyz
http://am61868.fit
http://am88.fit
http://ama.aajkq.cyou
http://amacoupon.vip/dist
http://amartmall.com
http://amazinon.com
http://amazomn.cc
http://amazomt.com
http://amazon-giftcard.tw
http://amazon.avaafund.com
http://amazon.cn
http://amazondlj.com
http://amazondlj.com/gicgold
http://amazondw.bihui188.com
http://amazonoffici-al.top
http://amazons6.com
http://amazonsoa.com
http://amazonsprot.com/gicgold
http://amb267.com
http://amber.anygaladay.com/
http://amber.bxanys.com/#/start
http://amber.co
http://ambrose.syins8.com
http://ame.hyhtml5.com/
http://amerany.com
http://america.comextw.com
http://america.istripper.top
http://america.merrilllynch1914.vip/
http://america.nstwexchange.com
http://americamerrilllynch1914.com
http://americamerrillynch1914.com/
http://ameritrade.tdamr.com/
http://ameritradetw.tdamr.com/
http://amerltradetw.tmeri.net/_FrontEnd/index.aspx
http://amg63.hy666.net
http://amg63.hy666.net/WinBet/Home/News
http://amg666.net
http://amgenfinance-group.com
http://amitytpen.com
http://amknl.com/ycXQh
http://amlyyl158.com
http://ammmine.org
http://amsonu.icu
http://amtop-pro.com
http://amtopcoltd.com
http://amtopcotd.com
http://amwns.am-g.live
http://amy.tvm1988.xyz
http://amy169.com/
http://amyh.16868.xyz
http://amyh.16868.xyz/
http://amyh.168yy.live/
http://amyh.aaoc.xyz
http://amyh.am90.xyz/
http://amyh138.com
http://amyh868.com
http://amyhve.top
http://amyl.gzsybj.cn
http://amyl.gzsybj.cn/
http://an.hjsrt.top
http://an.hjsrt.top/?openExternalBrowser=1
http://an.porngvi.top
http://analysisteam.mysterikingly.com/
http://analysisteam.mystrikingly.com
http://analyticsr.com
http://analyze.ffuture9.com
http://analyze.pimco8.com
http://analyze.timco8.com
http://anbo13.com
http://anchoragee.com
http://anchorager.com
http://anda.oandartw.com
http://anda.oandartw.com/
http://andaotc.net/page1
http://aner.platforms.agency
http://aner.platforms.asia
http://aner.platforms.life
http://aner.platforms.world
http://anerica.merrilllynch1914.vip
http://aness.cc
http://anewfujing.newfujing.com
http://angoand.com
http://animated-banoffee-413734.netlify.app
http://ankex-btc.club
http://ankex-btc.life
http://ankex-btc.online
http://anna.zbet8888.com
http://annsunny-dee.shop
http://annsuuny-dee.shop
http://anothejh.com
http://anotheow.com
http://anotheras.com
http://antayfinancial.com
http://antayfund.com
http://antaymarkets.com
http://antaysec.com
http://antaysecurities.com
http://antayshares.com
http://antaystock.com
http://anti178.com
http://anti261.top
http://antsforexpws.com/
http://antsforextw.com
http://antsforextw.com/
http://antsforextws.com
http://antsforextws.com/
http://antsforextws.com/index/index/index/token/72ab9e2f074d55fb90a554bcb7aae716.html
http://anttwo.antinss.com/.page1
http://anybuymall.com
http://anybuyshops.com
http://anybuyshops.vip
http://anying-zhitong.com
http://anzcoins-svipsaz.com
http://aoc6688.vip/h5
http://aolve.online
http://aomego.com/Public.login.do
http://aope.besp.website
http://aope.bsep.online
http://aope.bsep.site
http://aope.bsep.store
http://aope.bsephub.xyz
http://aope.oxeoxe.co
http://aope.p2b.buzz
http://aope.p2b.fun
http://aope.p2b.website
http://ap-ex.club/
http://ap.shenghongcn.com/h5
http://ap888.com.tw/
http://apa.mft-vc.com
http://apa.rgztw.com
http://apaceapace.com
http://apd.mftbinary.com
http://apecoinvc.com
http://apex5210.nwaldens.com
http://apexcoin.tw
http://apgo88.com
http://api-cn.zgsyyqw.cn/H5j/html/home.html
http://api.ahfndbga.com
http://api.ancjknae.com
http://api.bbtc.gold
http://api.cbehbqbnas.com
http://api.g0r0iqwoeiqu.com
http://api.giceth.xyz
http://api.hgfytrd.me
http://api.nrmafg.com
http://api.tbhjascb.com
http://api.znahwbeqhsxiij.com
http://apk.aave-tw.com
http://apk.mercury-energy.vip
http://apk.pgec-energy.com
http://apk03.global-exptrade.com/#/home
http://apk04.global-exptrade.com
http://apk04.global-exptrade.com/#/
http://apk1.tw-azbit.com
http://apkapkttik.top
http://apollodex.vip
http://apowercheck.com
http://app-download.mitokenex.com
http://app-download.mitokenex.com/zuigg
http://app-eth.com
http://app-twdk.bdkcc.com
http://app.1815566.com/
http://app.1818556601.com
http://app.4.icda.cn/smb/
http://app.4icba.cn/ame
http://app.4icba.cn/cc/
http://app.4icba.cn/digital
http://app.4icba.cn/digital/
http://app.4icba.cn/hfctl
http://app.4icba.cn/smb
http://app.4icba.cn/smb/
http://app.4icba.cn/zlgj/
http://app.4icba.sn/simubao/
http://app.500ibt.com
http://app.5849i.cn/
http://app.68fr.com/CC/
http://app.68fr.com/cc/
http://app.88au8.com
http://app.aau9.site
http://app.abwhqnjandsaj.com
http://app.acdxcoin.site
http://app.adhjhlid.com
http://app.admvkgld.com
http://app.aeool.cc
http://app.agw77.com
http://app.ahfcyuqheh.com
http://app.ahxgehiwgha.com
http://app.ajebtn.top/ajebtn/
http://app.ajzchduhquweh.com
http://app.akjkgjgj.com
http://app.aksmcnqjwn.com
http://app.alicfu.com
http://app.amgjiv.top/amgjiv/
http://app.apoiztq.cc
http://app.arqzcdc.com
http://app.asshop.shop/
http://app.atfxib.com
http://app.aurevia
http://app.aurevia.sbs
http://app.axkjgfbd.com
http://app.aycdzu.top
http://app.ayjybtc.com
http://app.ayjybtc.com/
http://app.bakkc.top
http://app.baltld.top
http://app.baltldd.com
http://app.bbzyuv.top/bbzyuv/
http://app.bdbtcglobal.com
http://app.bdbtcglobal.com/
http://app.bdhjfbvv.com
http://app.begonia.today
http://app.benchz.top/benchz/
http://app.bgkgueujrws.com
http://app.bhhyhsds.com
http://app.bhrydt.com
http://app.bht.hffz66.com/ios.html
http://app.bik888.com
http://app.bik888.com/
http://app.bikbit.xyz
http://app.bilaldesk.com
http://app.bingbonup-xh5.vip
http://app.bitcoittw.com
http://app.bitcopromax.com
http://app.bitcryptos.vip
http://app.biticlon.com
http://app.bitmocka.com
http://app.bitspm.com
http://app.bitsypay.com
http://app.bitzai.vip
http://app.bixbane.com
http://app.bkgnxjneknwq.com
http://app.bklsoie.com
http://app.blogkkewije.com
http://app.blzj.tw
http://app.bmfkwekrjww.com
http://app.bngex.cc
http://app.bnsdnbknqwe.com
http://app.bokssy.com
http://app.brjqjejaj.com
http://app.bsdjhbhjc.com
http://app.bshdhuq.com
http://app.bsqyly.top/bsqyly/
http://app.btc-taurus.com
http://app.btccapp.com
http://app.btccapp.com/
http://app.btccapp.com/#pages/currency-details?coin=btc
http://app.btccapp.com/#pages/login
http://app.btcsbs.com
http://app.btcwapp.com
http://app.btcwapp.com/
http://app.btjoqshjxah.com
http://app.btuwqheqhgr.com
http://app.btvcfm.xyz
http://app.bukoa.sbs
http://app.bvfopxht.top
http://app.bvkter.com
http://app.bxchjdfg.com
http://app.cartewd.com
http://app.cbkjfwujfpc.com
http://app.cbvchgbr.com
http://app.ccmqhd.top/ccmqhd/
http://app.cdgdpk.top/cdgdpk/
http://app.chvuke.top/chvuke/
http://app.cjsjjdhh.com
http://app.cksliet.com
http://app.cksloz.com
http://app.clhjye.top
http://app.cliosz.com
http://app.clyra.sbs
http://app.coatue.life
http://app.coatue25.com
http://app.coin-geckor.com/cpt
http://app.cpkujq.top/cpkujq/
http://app.cqcueq.top/cqcueq/
http://app.csaedes.cc
http://app.csased.cc
http://app.cvjjqosheak.com
http://app.cvloe.com
http://app.cxanjheqwk.com
http://app.cxfhzdgfg.com
http://app.cyhhaagehq.com
http://app.dasxinednqcirfv.com
http://app.dasxinmknqlioip.com
http://app.dasxinplnqoikij.com
http://app.dasxinqwnqeizxc.top
http://app.dasxinuhnqbigyt.com
http://app.dasxinyhnqnijum.com
http://app.dasxinzxnqcivbn.com
http://app.dfhgfhg.com
http://app.dfirtq.com
http://app.dgnfihgf.com
http://app.dgydfgyd.com
http://app.dgywgu.com
http://app.dhfujit.com
http://app.dhnuus.com
http://app.didisdbg.com
http://app.dierslp.com
http://app.digitalassethot.com
http://app.dinvgfyen.com
http://app.discovery-pet.com
http://app.discovery-pet.com/
http://app.djdjwo.com
http://app.djgfskyv.com
http://app.djjduhbsk.com
http://app.djjsuuj.com
http://app.djqwiewhq.com
http://app.dklsoi.com
http://app.dmlpoi.top/dmlpoi/
http://app.dmtapp.com/v/ljrei
http://app.down2.cyou
http://app.downdexingyuaninveste.com
http://app.downfuyumknm.com
http://app.downguanfuinvzx.com
http://app.downjizhninnk.com
http://app.downjizhunnitklo.com
http://app.downlechyaninve.com
http://app.downleyuanpuinveelp.com
http://app.downyuanpunwes.com
http://app.downyuanyongxiongewxjkd.com
http://app.dqfrmd.top/dqfrmd/
http://app.draymexyic.cc
http://app.draymexztq.cc
http://app.drudtt.com
http://app.druose.com
http://app.dsfjtr.com
http://app.dsuyreitr.com
http://app.dtcggm.top/dtcggm
http://app.dtcggm.top/dtcggm/
http://app.duaujjjd.com
http://app.duersa.com
http://app.duyres.com
http://app.dvijusxhvfiud.com
http://app.dvjfuhasihe.com
http://app.dvvbhu.com
http://app.dwealthixops.com
http://app.dytroe.com
http://app.ebcibt.com
http://app.ebcibx.com
http://app.ecnyac.com
http://app.eeilkw.top
http://app.efjajijk.com
http://app.eihidhvd.com
http://app.eiufcjbba.com
http://app.ertsyu.com
http://app.ethicj.com
http://app.ethicq.com
http://app.ethicu.com
http://app.ethicw.com
http://app.eto6888.com
http://app.etyopp.top/etyopp/
http://app.excelmcer.xyz/jlnOQ4
http://app.eyingli.com
http://app.fdktie.com
http://app.fdlfrk.com
http://app.fdsilj.com
http://app.fdyreu.com
http://app.fghrus.com
http://app.fgursr.com
http://app.fgyfte.com
http://app.fherut.com
http://app.fhsuifyui.com
http://app.figkkd.top/figkkd/
http://app.fjerys.com
http://app.fjiuoeh.com
http://app.fkgfrp.com
http://app.fkkjbuhihwnkb.com
http://app.flaqlt.top/flaqlt/
http://app.flayce.top/flayce/
http://app.flkliu.top/flkliu
http://app.flkliu.top/flkliu/
http://app.flomj.com
http://app.flqogr.top/flqogr/
http://app.fluixj.top/fluixj/
http://app.fnebbeqnca.com
http://app.folope.com
http://app.foolwe.com
http://app.fopxc.com
http://app.foranny.com
http://app.fqbuio.top/fqbuio/
http://app.frotre.com
http://app.fssgzp.top/fssgzp/
http://app.fstfta.top/fstfta
http://app.fstfta.top/fstfta/
http://app.fsznvz.top/fsznvz/
http://app.fteuts.com
http://app.ftyrtd.com
http://app.fudaiappdown.com
http://app.fudaidownapp.com
http://app.futurecex.com
http://app.fvhurhuquhe.com
http://app.fvwhkjaijd.com
http://app.fxejvg.top/fxejvg/
http://app.gaopsin.com
http://app.gaoqnbo.com
http://app.gatevip.io
http://app.gbjtnnabhof.com
http://app.gbtc.win
http://app.gefvvvnd.com
http://app.ggf6.site
http://app.ghiussf.com
http://app.ghjget.com
http://app.ghklts.com
http://app.gjvqar.top/gjvqar/
http://app.gkrtue.com
http://app.glnhit.com
http://app.glpwgj.top/glpwgj/
http://app.gnfjkdhg.com
http://app.godmkt.com
http://app.goispse.com
http://app.goldenmeta.top
http://app.goldmansachs.cool/
http://app.gopbbl.com
http://app.gptaigu.com
http://app.graborder.org
http://app.gscinsoo.com
http://app.gsygdm.com
http://app.gtuhasjdhhq.com
http://app.guotaiapp.vip
http://app.gusmocc.com
http://app.gyy9.top
http://app.gztigu.com
http://app.gzxshg.top/gzxshg/
http://app.handa.club
http://app.hcaaqz.top/hcaaqz/
http://app.hepsiburad.lat
http://app.hertud.com
http://app.hjbvgf.com
http://app.hk8deep.cn/app.php/OTI=
http://app.hkcp75.cc
http://app.hkeexpro.net
http://app.hkgxau.cc
http://app.hkkgxau.cc
http://app.hkltou.com
http://app.hklusda.com/user/index.
http://app.hklusdt.com/
http://app.hklxau.cc
http://app.hktpdn.com
http://app.hktuetw.vip
http://app.hkutdkr.vip
http://app.hkutrs.com
http://app.hkxau.cc
http://app.hkxauu.cc
http://app.hkxxau.cc
http://app.hkyrridt.com
http://app.hmwkea.top/hmwkea/
http://app.hndhudff.com
http://app.hongtenv.com
http://app.hotforexmax.com
http://app.hprted.com
http://app.hpuesd.com
http://app.hrtyde.com
http://app.hsbjhdd.com
http://app.hueitu.com
http://app.huexst.com
http://app.huidsuic.com
http://app.huiduyg.com
http://app.huifengpro.com
http://app.hurdsd.com
http://app.huridr.com
http://app.hurode.com
http://app.hurtge.com
http://app.hurtse.com
http://app.hut8cz.com
http://app.hutsty.com
http://app.ibki.cc
http://app.idoegc.top/idoegc/
http://app.ifeyhnh.com
http://app.ifuehqej.com
http://app.iiiawdmknals.com
http://app.iiistocks.com
http://app.ikmlkp.top
http://app.ikmlkp.top/ikmlkp/
http://app.iksoeitu.com
http://app.ioajdnde.com
http://app.ioyrzqwe.cc
http://app.irutunehyna.com
http://app.iuwge.top
http://app.ivdgp.com
http://app.ivdhhg.top
http://app.ivdhhg.top/ivdhhg/?openExternalBrowser=1
http://app.ivhtpe.top
http://app.ivhtpe.top/ivhtpe/
http://app.ivrjquwehy.com
http://app.iwqewjqwes.com
http://app.ixjfdks.com
http://app.jdgytwg.com
http://app.jfgurt.com
http://app.jfkskxciljvd.vip
http://app.jgnfjkfnvk.com
http://app.jgrqweaada.com
http://app.jhbxhhbvwhw.com
http://app.jhgyde.com
http://app.jhshydl.com
http://app.jhxbtc.com/
http://app.jiasudlop.com
http://app.jieois.com
http://app.jinchuan.tw/
http://app.jinlhzhunfwhtvnnc.top
http://app.jinlhzhunswltgcnk.com
http://app.jinniuios2.com/apps/index/97ec10a349318152
http://app.jinzhundownload.com
http://app.jioerul.com
http://app.jiuawpoa.com
http://app.joqqdd.com
http://app.jorieuue.com
http://app.jrafxo.com/
http://app.jsdfugd.com
http://app.jwuvbc.top/jwuvbc/
http://app.jyuxww.top/jyuxww/
http://app.k-expro.net
http://app.k9899.vip
http://app.kcvbhnzmamn.com
http://app.kdhdilif.com
http://app.kdhgudi.com
http://app.ke-prox.net
http://app.kelakenxia.xya
http://app.kelakenxia.xyz
http://app.keruer.com
http://app.kerusd.com
http://app.keruts.com
http://app.keusryt.com
http://app.keystu.com
http://app.kgdfs.com
http://app.kgfyus.com
http://app.kghire.com
http://app.kgurer.com
http://app.khfkrt.com
http://app.khorts.com
http://app.khprdr.com
http://app.khrusey.com
http://app.khueri.com
http://app.khutetw.vip
http://app.khyser.com
http://app.kifgh.top/kifgh/
http://app.kingchoice2.me
http://app.kingchoice2023.me
http://app.kkrtrad.pw/
http://app.klhgzczxy.cc
http://app.knhurde.vip
http://app.knruts.com
http://app.kopvc.com
http://app.korbit.xin
http://app.kpcb77.com/
http://app.kpeuyj.top/kpeuyj/
http://app.kpueyt.com
http://app.kpxure.com
http://app.krakentvp.vip
http://app.krqnasjnda.com
http://app.krsrtv.com
http://app.krtudv.com
http://app.krtudyr.com
http://app.krtuety.com
http://app.krturn.com
http://app.krtuvr.com
http://app.krtuvs.com
http://app.krtyud.com
http://app.krudrs.com
http://app.krudru.com
http://app.kryfds.com
http://app.ksdanjskqq.com
http://app.ksloeg.com
http://app.ktruged.com
http://app.ktrury.com
http://app.ktruyet.com
http://app.ktuedt.com
http://app.ktusdu.com
http://app.ktysde.com
http://app.kuyude.com
http://app.kwslpj.top
http://app.kyures.com
http://app.lbibtt.cc
http://app.lbxau.cc
http://app.ldsnvr.com
http://app.lerotd.com
http://app.lforki.com
http://app.lfster.com
http://app.lgenjnjaknnwa.com
http://app.lgirob.com
http://app.lhkeue.com
http://app.liacexs.com
http://app.liytrd.com
http://app.ljdujuss.com
http://app.lkhaxs.top
http://app.lkhutd.com
http://app.lmsder.com
http://app.lopcvs.com
http://app.lpsoev.com
http://app.lqvpma.top
http://app.lreidst.com
http://app.lridut.com
http://app.lrtidie.com
http://app.lrtstud.com
http://app.lrtyud.com
http://app.lsdmejnqhn.com
http://app.ltieds.com
http://app.ltsure.com
http://app.lvo.world
http://app.mbexvip.net
http://app.mbtcet.com
http://app.mdbgughf.com
http://app.meffus.net
http://app.mgaqh.sbs
http://app.mkjudg.com
http://app.mmsvfgt.com
http://app.mngrnhjasq.com
http://app.mozmcg.com
http://app.mrtude.com
http://app.mshgdv.top
http://app.mshgdv.top/mshgdv/
http://app.mtclsapp.cc
http://app.mxccuy.top/mxccuy/
http://app.mxnuier.com
http://app.n-plus.org
http://app.nasjdbwaq.com
http://app.nbshfg.com
http://app.ncxkbnd.com
http://app.ndd60.site
http://app.ndsreu.com
http://app.nenhlp.com
http://app.newcapitaltw.com
http://app.nftcreatoras.com
http://app.nherus.com
http://app.nhkeysu.com
http://app.nkhurst.vip
http://app.nkksius.com
http://app.nrudsr.com
http://app.ntruse.com
http://app.ntsuds.com
http://app.ntuest.com
http://app.ntusrt.com
http://app.nudsrt.com
http://app.nvbhdfs.com
http://app.nvcbfffo.com
http://app.nvxedn.vip
http://app.nysefy.top/e83czz
http://app.oamxjnhg.com
http://app.ocaiwkjemq.com
http://app.ocnecr.top/ocnecr/
http://app.odfhdff.com
http://app.odhgufdg.com
http://app.ogkbf.com
http://app.ohdtgb.top
http://app.ohkptw.top/ohkptw/
http://app.oliveam.net
http://app.ooethyr.com
http://app.oppxing.com
http://app.opuiehg.com
http://app.oslcoinhk.com
http://app.outzqalcco.cc
http://app.oxabhr.top/oxabhr/
http://app.paodayi.com
http://app.paxful50.com
http://app.pdaneb.top
http://app.phktuse.com
http://app.phktys.com
http://app.phsups.com/app/
http://app.pishghya.com
http://app.pjshdhjpp.com
http://app.pkhutd.com
http://app.pkhutdr.com
http://app.poidfgo.com
http://app.proofebaymall.top
http://app.psjfhkod.com
http://app.ptkhusd.com
http://app.ptuedw.com
http://app.ptuers.com
http://app.ptuesd.com
http://app.pturds.com
http://app.pudret.com
http://app.purtdx.com
http://app.putese.com
http://app.putjsv.com
http://app.pvhjdty.com
http://app.pytudr.com
http://app.qcwvw.top/qcwvw
http://app.qcwvw.top/qcwvw/
http://app.qhjdla.top/qhjdla/
http://app.qianff14.xyz
http://app.qianff14.xyz/s/GwIP
http://app.qigmyw.top/qigmyw/
http://app.qmntkq.top
http://app.qoo10888.com
http://app.quantcast.pro
http://app.qvxgg.top/qvxgg/
http://app.qyqyqyb.com
http://app.rfdda.com
http://app.ringwi.com
http://app.rioyimk.com
http://app.rishengyy.com
http://app.rktude.com
http://app.rnfenqwndams.com
http://app.rptsre.com
http://app.rrrrfgnj.com
http://app.rtuidx.com
http://app.rtusws.com
http://app.rtwifjh.com
http://app.rwlmm.com/
http://app.sa-platform.com
http://app.sagyugf.com
http://app.sayuety.com
http://app.scybra.xyz
http://app.sdffcsdc.com
http://app.sdsdfdf.com
http://app.sficx.com
http://app.sgeuu.cc
http://app.sgewe.cc
http://app.sgexx.cc
http://app.sggderg.com
http://app.shdhfjakshd.com
http://app.shenlwqnelasd.com
http://app.shikong.cf
http://app.shiner-pharm.com
http://app.shopapp.tw/pages/shoppp/guide
http://app.sisenseshop.com
http://app.sjaidsd.com
http://app.slgjneqo0s.com
http://app.snjsjhdhs.com
http://app.soccsk.top/soccsk/
http://app.soulcloudai.com
http://app.spnefo.top
http://app.spnefo.top/spnefo/
http://app.ssnvnudhjkwq.com
http://app.st5s.com
http://app.streue.com
http://app.tandjjd.com
http://app.tcpake.com
http://app.tdpues.com
http://app.tduesk.com
http://app.tdweru.com
http://app.telegra.live
http://app.terusv.com
http://app.tggxau.cc
http://app.thkusyer.com
http://app.tioryuo.com
http://app.tiruoutiequ.com
http://app.tiypet.com
http://app.tkgues.com
http://app.tkhusrd.com
http://app.tlsoiew.com
http://app.tmappcloud.com
http://app.tmohj.top/tmohj/
http://app.toplkc.com
http://app.toskoe.com
http://app.tox1.net
http://app.trade-hotforex.com
http://app.trendyos.top
http://app.trexrdt.com
http://app.trustcoin-exchange.com
http://app.tudkfe.com
http://app.tuedru.com
http://app.tuehds.com
http://app.tueosr.com
http://app.tueswn.com
http://app.tusetr.com
http://app.tw-pro.vip
http://app.twuita.com
http://app.twutcenter.com
http://app.tyoekg.com
http://app.typtru.com
http://app.tyuesr.com
http://app.tywsts.com
http://app.uainfbja.com
http://app.udhxyq.top
http://app.udhxyq.top/udhxyq/
http://app.ufhaiuvb.com
http://app.uirhhwjrwm.com
http://app.uisopad.com
http://app.ujlmrh.top/ujlmrh/
http://app.usdtjob.com/YYAxzn
http://app.usndjdf.com
http://app.uthfirygv.com
http://app.uwuyfe.com
http://app.uyvifdjgh.com
http://app.vbckjoy.com
http://app.vckcl.com
http://app.vdbzbnzz.xyz
http://app.vdgmra.top/vdgmra/
http://app.veltrisa.club
http://app.vgacm.top/vgacm/
http://app.vgproxs.com
http://app.vhfvhvruqhy.com
http://app.viking25.com
http://app.viovope.com
http://app.virfhuhuzg.com
http://app.vjkqeqahw.com
http://app.vkfikheuw.com
http://app.vkjsakjaks.com
http://app.vlnn8.com
http://app.vmrkqjnssjdhb.com
http://app.vncklie.com
http://app.vnnkqejajja.com
http://app.volyuse.com
http://app.vpqkuf.top/vpqkuf/
http://app.vrnjwqjshbak.com
http://app.vudsye.com
http://app.wa578.com/
http://app.wa578.com/iegc/
http://app.wa578.com/zdlc415/
http://app.wa578.com/zf88/
http://app.wass1.cn
http://app.wbexgo.com
http://app.weex-ex.com
http://app.wgaytugf.com
http://app.whbhudh.com
http://app.wisecoin-ag.com
http://app.wjaosfjkg.com
http://app.wocrdr.top
http://app.wootxshop.pw
http://app.wrrhuy.com
http://app.wsfulzdj.com
http://app.wsijwqwh.com
http://app.wtmncszz.buzz
http://app.wtyetg.com
http://app.wuiayfg.com
http://app.wxgfvz.top/app999
http://app.wxgfvz.top/wxgfvz/
http://app.xcrsdff.com
http://app.xdolsp.com
http://app.xegryug.com
http://app.xeib.cc
http://app.xexau.cc
http://app.xhcquehkjza.com
http://app.xihciwouqgd.com
http://app.xingjhcxgvbb.com
http://app.xingyuanapp.com
http://app.xinylolo.com
http://app.xioiwrg.com
http://app.xjcuakwjeq.com
http://app.xkjdhwjhfihjb.com
http://app.xkjdqiwhea.com
http://app.xmvip.org
http://app.xnajznbdjm.com
http://app.xoswlpi.com
http://app.xpsturs.com
http://app.xpstwes.com
http://app.xsib.top
http://app.xuopaxs.com
http://app.xvjruhqweqg.com
http://app.xxhxlq.tw
http://app.xzbxfvzsn.xyz
http://app.xzcnxj.top/xzcnxj/
http://app.xzloep.com
http://app.yabfhjsa.com
http://app.yahjio.com
http://app.yccnit.com
http://app.ydjdk.top/ydjdk/
http://app.ydlioocd.com
http://app.ydppiou.cc
http://app.ydzjjys.com
http://app.yeutru.com
http://app.yghhrjqhshdj.com
http://app.yihwd.com
http://app.yijinngtw.com
http://app.ynjkfhg.com
http://app.ypmwzl.top/ypmwzl/
http://app.yspoiqzeco.cc
http://app.yt889.cn/
http://app.yuantongtw.tw
http://app.yurrte.com
http://app.yuying.biz
http://app.yuying.tv
http://app.yuzcqxyic.com
http://app.yzdcoinwel.com
http://app.zajxuhuakjehj.com
http://app.zdapp.tw
http://app.zeroexpro.store
http://app.zhihell.com
http://app.zjhipy.top/zjhipy/
http://app.zjotto.top/zjotto/
http://app.zjyuor.top/zjyuor/
http://app.zlsinsv.com
http://app.zmhuiso.com
http://app.zohcso.top/zohcso/
http://app.zvxyuet.com
http://app.zwfvtp.top/zwfvtp/
http://app.zxjk.vip
http://app.zxmvkfmnqnl.com
http://app.zzeie.cn/
http://app2.mt4.asia
http://app4world.com
http://appdd.me/index/polite/index_trc.html?agent=10333
http://appdown-2.s3.ap-southeast-1.amazonaws.com/appdown-28/258reratt.html
http://appdown.500ibx.com
http://appdown.acexusdt.com/
http://appdown.aexusdt.com/?number=TpaWoGSG#/
http://appglobaleasy.com
http://apphome.sycexchange.com
http://apple-down.com/3th4ti
http://appleaaa.com
http://appleapp2.com/NblT.html
http://applemusic.ibagstation.com
http://applemusic.kuqir.vip
http://applemusic.yjxkz.com
http://appnymex.top
http://apps-gemini.vip
http://apps.apple.com/tw/app/%E9%9B%AA%E5%93%81%E8%B3%BC%E7%89%A9/id1554431914
http://apps.apple.com/tw/app/metatrader-5/id413251709l=en
http://appskqtat3fihbjy.jiabohao.com
http://appvip.7ebit.vip/
http://appwap.futurex-vip.com
http://aprmarkets.com/
http://apuur.com
http://apyjly.jfbdesa.com
http://apzrd.xyz
http://aqq778.com
http://aqraqr.com
http://arbitrons.ai
http://area.montellisgroup.org
http://area.z-pts.pro
http://area.zexpertpro.com
http://arexr99.aresxios.com
http://arexr99.arexious.com
http://arexr99.arexr.com
http://arexr99.arexrs.com
http://arexr99.jobscoiin.com
http://arexr99.jobscoiines.com
http://arexr99.jobscoiinesz.com
http://arexr99.jobscoiineszs.com
http://arexr99.jobscoioeszs.com
http://arexr99.jobscraers.com
http://arexr99.jobscroes.com
http://arexr99.jobsvres.com
http://arexr99.jobsvroes.com
http://arkatia.com
http://arloz.q5kr.cn/indexarlo.html
http://art-charger.info
http://art-charger.pro
http://art-deepgtp.top
http://art.atafinan.com
http://art.awdcx.com
http://art.belgemgiaes.com
http://art.diamantgia.com
http://arta.atafinan.com
http://artc.bstykbt.com
http://artcityfafa.com
http://artfuncity.com
http://artfunfa88.com
http://artificialtelligenceyso.com
http://artificialtelligenceysv.com
http://artisan.siaxna.top
http://artminted-sea.com
http://arv.galmeors.com
http://arv.heronsxe.com
http://arv.herorexe.com
http://arxtrading.store
http://as001.cfd200.com/
http://as01.bmtint.com/
http://as5588.com/
http://as88.andaotc.net/
http://as88.andaotc.net/page1
http://as888.investexo.net
http://as888.invstexo.com/
http://as888.invstexo.net
http://as888.invstexo.net/
http://as88vip.tw-gra.info
http://ascend-code.com
http://ascend6.twmoxy.cc
http://ascend9.twmoxy.xyz
http://ascendex.top
http://ascendexdecred.com
http://ascendextoken.cc
http://asckin.com/
http://ascobook.top
http://asdaeq.chyaninvegepackse.com
http://asdfzxcv.52yangmaozhuan.com/index/login/login/token/bb060f93b2c98e08685f78bb66aebcc5
http://ase888.linexlife.top
http://aseanabs.mystrikingly.com
http://asf.dycoins.com.tw
http://asfggbb.top
http://asia-electricity.com
http://asia-energyltdcc.com
http://asia-finance.online/
http://asia-greenltdss.com
http://asia.11stc.com
http://asia.11stw.com
http://asia.dangdengtw.shop
http://asia.etfuneoro.com
http://asia.etliforo.com
http://asia.exneschanges.com
http://asia.futuoeh.com
http://asia.gmxeh.com
http://asia.goldemakt.com
http://asia.goldexchangetw.com
http://asia.gotoshops.store
http://asia.huidaedh.com
http://asia.huidatw.com
http://asia.huidwhae.com
http://asia.huifucc.com
http://asia.huifura.com
http://asia.huijuxca.com
http://asia.jpdhmstore.com
http://asia.juxinfor.com
http://asia.juxinoim.com
http://asia.royalaitw.com
http://asia.snthui.com
http://asia.vv6666.top/m/login
http://asia.wanhuitrc.com
http://asia.yajecx.com
http://asia.yajewi.com
http://asia.yajhbtae.com
http://asia.yajhdb.com
http://asiadjitw.com
http://asiapacfinancial.online/
http://asiapacfinancial.online/index/login/login.html?lang=zh-tw
http://asiaprotra.com.tw/Pc/Index/index.html
http://asias.wtcetn.com/
http://asiatacfin.online/
http://asis.vv6666.xyz
http://ask.gbay-shop.top
http://asmaighyff.com
http://asn.hubcultures.com
http://aspropex.com
http://aspropluss.com
http://assassin.fasc.cc
http://assets.goldenyuu.com/
http://assos.trans-buys.shop
http://astarwap.com
http://astrasighttai.vaixorganization.com
http://astroepoch.sentrixinstitution.com
http://asu.haiyuex.com
http://asunmt4.com
http://asx.global-trademax.net/_FrontEnd/index.aspx
http://asx.global-trademax.net/_FrontEnd/login.aspx
http://asynaptiq.com
http://asynaptiqn.com
http://at.efm88.net/
http://at168.info
http://at688.xyz
http://at99tw.com
http://ata.atafinan.com
http://atfx-futures.com
http://atfx-tw886.cn.com
http://atfxhfyweb.com
http://atfxrtweb.com
http://atfxwealthbtc.com
http://atheemart.top
http://athenaplace.net
http://athenna-forex.com
http://atm51688.komitdi.com
http://atm777.bonwway.com/
http://atm777.ejrui.com/
http://atm777.ejrui.com/login
http://atm88.aswibm.com
http://atm88.aswibm.com/
http://atm88.cfdsdata.com/
http://atopforex.com
http://atw.tecyen.com
http://audacitycapitaip.com
http://audacitycapitalx.com
http://audacitycapitaux.com
http://audacitycapitram.com
http://audi116.qtint.net/
http://audi168.qtint.net/
http://audi666.qtint.net
http://audi666.qtint.net/
http://audi957.qtint.net/
http://auniswap.top
http://aurevantheonix.com
http://aurionthexxa.com
http://aurora-cryptoglobal.com
http://auroracrypto.lol
http://auroracrypto.pro
http://auroracrypto.xyz
http://aus.global-exptrade.com/#/
http://ausforextw.com
http://ausforextws.com
http://ausglobalvip.com
http://austin1.pvp101.com
http://austin1.pvp101.com/
http://austyn.imtrom.com
http://austyn.imtrone.com
http://autonio-asia.com/
http://auvsn.jfbbi.com/
http://av520.wfinve.com/
http://ava1966.smpstrades.com/
http://avainvestuk.com
http://avartradepor.com/
http://avastonevdu.com
http://avatasia.com/App/index.php
http://avatrade.financesnew.org
http://avatradepor.com/
http://avavshop.com
http://avc721.com/home
http://avinyagw.com
http://avinyatb.com
http://avinyate.com
http://avinyatx.com
http://aw888.rlaza.com
http://awew.orphachip.com
http://awnct.gbc188.com/
http://awp.deervlyon.com
http://awp.oupeidesrn.com
http://awp.zwndvd.com
http://ax006.qeictw.net/
http://axatrading.club/?rnd=0.66114649981612
http://axatrading.club/?rnd=0.6611464998161274
http://axatrading.club/?rnd=0.8382997814670733
http://axexclub.com
http://axexclub.net
http://axexhub.pro
http://axiomaxio.com
http://axiomaxiom.com
http://axiomaxioo.com
http://axiora.icu
http://axiora.xin
http://axslanxiang.com
http://axyn-fintechgroup.com
http://axynfinance.com
http://axynfinancegroup.com
http://az2.asi-tw.com/
http://az888.invstexo.net
http://azbitcsz.com
http://azbitjid.com
http://azbitproe.com/wap
http://azevedioclub.club
http://aztcp.com
http://aztog.com
http://aztradec.com
http://aztraded.com
http://aztradeda.com
http://aztradedb.com
http://aztudb.com
http://aztvp.com
http://azx.upbit.world
http://b-77.com
http://b-77.com/mzlc/
http://b-77.com/mzle/
http://b-77.com/tpylc/
http://b-77.com/zdlc/
http://b-77.com/zf88/
http://b-itopro.com
http://b.885883.cn/
http://b.bingxzs.com
http://b.bycp26.com
http://b.eshop456.com
http://b.fk520.cn
http://b.fpmarkotast.com
http://b.japanbondtw.com
http://b.ydfxm.com/
http://b.ylhg89.xyz
http://b00001.ietoro.com/
http://b00001.zwfxx.com/
http://b002.baiy.world/cemter/#/
http://b003.gmt88.co
http://b004.gmt88.club
http://b005.yuangxin.me
http://b005.yuangxin.xyz
http://b03.cmnae.com/
http://b05.jhgcsp.com/_FrontEnd/index.aspx
http://b1168.net/mobile.index
http://b1168.net/mobile/login.php
http://b2.corechainglobal.com
http://b4c8yn.xyz
http://b518.top
http://b52capital.top
http://b52singapore.top
http://b818.vip/#/home
http://b8252.top
http://bVKV.app
http://baa.guoshuo1680.com
http://bab07f.ssfqsfvd.com/wl85n7w3
http://baby526.top
http://babydreams.cc
http://bac7746.com
http://bac88.tz168168.com
http://baderexchange.com/
http://baetf.live
http://bagmiomio.com/
http://bagmiomio.com/#/login
http://bagmiomio88.com/#/
http://bagmiomio88.com/#/login
http://bagmiomio99.com/#/login
http://bai80.ptlint.net/
http://bai81.hjfint.net
http://bai81.hjfint.net/transfer/
http://bai81.ptlint.net/
http://baiahpcex.com
http://baind.hlm28.com
http://bairdd.com
http://bairdd.com/
http://bais906.club
http://bakin-vip.com
http://bakin68.com
http://bakkt-coin.com
http://baktta.com
http://balance.aredefiar.com
http://balance.aredefie.com
http://balancebit.com
http://baliren5566.com/
http://bancoramm-pro.xyz
http://banhinasia.com
http://banhinmarket.com
http://banhinstock.com
http://bank.maxplusgo.com
http://bankatc.net/
http://bankcex.com
http://bankhlbtw.com/
http://bansxpeer.icu
http://bansxpeer.top
http://bao88.net/
http://baohui9.com/page1
http://baolongfc.com
http://barclays.irnsf.com
http://barist.online
http://barneysmall.top
http://barneysmall.vip
http://bata.wtcent.com/
http://bata1.wtcetn.com/
http://bata1.wtcetn.com/record_withdraw
http://batal.wtcetn.com/
http://battle1688.com
http://bause.royal-33.com/
http://bb.929tw.cc/
http://bb.qbfbsj.com
http://bb.yao988.com/
http://bb.yun188.space
http://bb1.gaom9.com/
http://bb1.nsxaq.com/
http://bb1.reform9.com
http://bb1.send66.com/
http://bb1.yomlin.com/
http://bba-shopping.top
http://bba.topgold66.top/
http://bbb.aiubs.net
http://bbb.ubsintz.com
http://bbb02.acxteh.com/
http://bbb02.draxcv.com
http://bbb03.komitdi.com
http://bbc-sr.vip
http://bbc7799.net
http://bbc7799.net/
http://bbcoinccex.com
http://bbi.marketoke.com
http://bbicone.top
http://bbk61.bkk168.net/
http://bbmy669.icu/m
http://bboilyf.com
http://bbonmarket.com
http://bbq.wqqqd7.com/rk/room2
http://bbs.biblepig.com
http://bbs157.com
http://bbs157.net
http://bbs2001.net
http://bbva1999.co/login
http://bbvsfx.cc
http://bbx.blobltes.com
http://bbz.becauuse.com
http://bc.dferew.cc
http://bc168sss.com
http://bccgrtyd.vip
http://bcdtyang.com
http://bcfoi.xyz
http://bch.dashdeexl.com
http://bch.dashdeexn.com
http://bch.dashdeexo.com
http://bch.dtap000s2.com
http://bch.kavadifig.com
http://bch.lineardifif.com
http://bch.lineardifiq.com
http://bchcoinex.com
http://bchcoinexmc.com
http://bchdefi.dashdeexj.com
http://bckavip.com
http://bckivip.com
http://bckmvip.com
http://bckpvip.com
http://bckvim.com
http://bcl-trade.net
http://bcnex.co
http://bcotgmu.bstmad.com
http://bcrtradingfxr.com
http://bct.jufon88.com
http://bcttal.com
http://bcttan.com
http://bcttina.com
http://bcttnun.com
http://bctw-invest.com/
http://bcwcoin.com
http://bdhujied.site/
http://bdhujied.site/cn/
http://bdiddi.com
http://bdiexchange.ausmetw.com
http://bdntv5.jfbdesa.com/clLT03
http://bdzom.com
http://bdzvg.com
http://be001.clf99.net/
http://be004.clf99.net/
http://be006.clf99.net/
http://bear05.vic1988.top/
http://beautifulswomen.com/
http://bebcloud.com
http://becetw.com/
http://beipaizangyao.com
http://beko688.com/mobile
http://belc.bellagio.casa
http://belc.bellagio.digital
http://belc.bellagio.work
http://belc.bellagio.world
http://belc.bellagioweb.vip
http://bellmoforfx.com
http://bellmonfx.com
http://bellymart.shop
http://belmoria.vip
http://belong.swebtw.com
http://bepumarkets.com
http://ber.rimfxgroup.com
http://bergen1130.vip
http://berks.ikamiia.com/
http://berks.ikamiia.com/login
http://bernankeybe.com
http://berserker.financesnew.site
http://besp.gmofirst.com
http://besp.gmoglobal.com.tw
http://besp.slamne.com
http://bessin.asiawj.net/
http://best-buy2.com
http://best.asxi.top
http://best.bairdd.com
http://best.bairdd.com/
http://bestbuys-app.com
http://bestbuysline.com
http://bestinlansing.com
http://bestlinkpay.com
http://bestsgs.io
http://bestwork.store
http://bestzhfx.com/zh
http://betcity.zfxftw.com/
http://bete-dex.shop
http://bete-dex.today
http://betel.asiawj.net/
http://betexplc.com
http://betexplc.com/
http://betfairos.com
http://betfairse.com
http://betsson.ios03.com
http://bewin-global.com/
http://bex.lotteapp.com
http://bex.shopsvip.link
http://bexcet.com
http://beyond.fuding.com/
http://beyond.fudingking.com/
http://bezbcoin.com
http://bf.suxuhe.com
http://bf.suxuhe.com/xiazai/
http://bf168.cfdsdata.com/
http://bf72j1.yn8q6fe3dqa2.cc
http://bf77.site
http://bflbkd.we888.net
http://bfose.dfcinto.com/
http://bfp.mxproo.com/
http://bfsbanactw.com
http://bfsbanktw.com
http://bfsbanktw.com/
http://bfsforextws.com
http://bfsforextws.com/
http://bftbit.com/
http://bftwtcbk.com/
http://bg77888.dreamer777.net
http://bge-token-tw.pro
http://bgetoken.pro
http://bgk.khdsaghdop.org
http://bglqi.sbs
http://bhhsdjfj.cc
http://bhtopapp.com
http://bhtopapp.com/#/
http://bhwjs138.com
http://bhwjs158.com
http://bhwjs718.com
http://bi.ctiib.top
http://bi.ibkcouser.top
http://bi.ibkr.top
http://bi.ibkrus.top
http://bi.ly/3dkNisD
http://bi.woofr3e.xyz
http://bian-gold.globalonline.workers.dev
http://bib.bliblikcy.com
http://bibitmutualforexey.com
http://bibo118.com/user
http://bibo176.com/mbin
http://bibox-pro.org
http://bibox.shop/wxapp/
http://bibx.org
http://bick.vip/
http://bick.vip/web/#/home
http://bid.ly
http://bieblova.com
http://bieto.co/
http://bieto.com
http://bifrost83.com
http://bigbuy.cfd
http://bigkane.com/
http://bigkane.com/appDownload
http://bigkane.com/loading/?redirect=%2FappDownload
http://bigoneucb.com/big
http://bigoneucc.com
http://bigoneucei.com
http://bigoneucei.com/big
http://bigoneucf.com/big
http://bigoneuge.com/big
http://bigt.cc
http://bigts.top
http://bihain-cs.com
http://bihid.com
http://bik888.xyz
http://biki111.com/
http://bikotocbd.top
http://bikotoetc.top
http://bikotoifc.top
http://bikotousdt.top
http://bikotovip.top/boptf
http://bilaxy.fit/wxapp
http://binancegolds.app
http://binary.betexplc.com/
http://binary.kimoni.fun/#/
http://binary.kimoni.website/#/
http://binarycent.mobi
http://binbimarket.com
http://binbmarket.com
http://binbons.com
http://bing-bon.com
http://bing-bon.online
http://bing-bon.xyz
http://bingboncoin.com
http://bingbonvip.com
http://bingcer.com
http://bingczs.com
http://bingdmk.com
http://bingdty.com
http://bingegj.com
http://bingfgge.com
http://bingfrs.com
http://bingfxq.com
http://binghki.com
http://binghmk.com
http://binghxcc.com
http://bingmov.com
http://bingogv.com
http://bingsnx.com
http://bingstv.com
http://bingtdnj.com
http://bingtrcy.com
http://binguyf.com
http://bingvdf.com
http://bingxgoo.com
http://bingxpro.net
http://bingxuu.com
http://bingxzs.com
http://bingysc.com
http://bingzce.com
http://bingzfb.com
http://bingznf.com
http://bingzop.com
http://bingzrt.com
http://binice.net
http://binice.net/
http://binice.net/el_GR/cms/about
http://biosnippets.com/
http://biqk.we5888.net
http://birginmary.msbrandong.com/
http://bit-9158.net
http://bit-amom.org
http://bit-c.co
http://bit-coin-cash.asia
http://bit-coin-cash.online
http://bit-coin-cash.xyz
http://bit-coin-cashe.xin
http://bit-coin-cashes.online
http://bit-coin-cashes.xin
http://bit-coincash.xyz
http://bit-coincashes.online
http://bit-coine-cashes.shop
http://bit-coinecashes.online
http://bit-coinecashes.site
http://bit-coins-cash.icu
http://bit-fex.org
http://bit-kern.com
http://bit-main.info
http://bit-main.wiki
http://bit-rsdt.com
http://bit-tradexchange.com
http://bit-zvc.com
http://bit.LY
http://bit.aediaaboutup.org
http://bit.auct.it.com
http://bit.cmecoins.life
http://bit.coin-en.net
http://bit.coin-mn.com
http://bit.depopmall.com
http://bit.kfcoin.it.com
http://bit.ly
http://bit.ly/2LwLmi5
http://bit.ly/2NcYhpY
http://bit.ly/2THZrw0
http://bit.ly/2VcPacs
http://bit.ly/2XUbg5x
http://bit.ly/2ZaDSMP
http://bit.ly/2ZaDsmp
http://bit.ly/2bjxg3p
http://bit.ly/2hp9uB6
http://bit.ly/2kn84fx
http://bit.ly/2nh7CUA
http://bit.ly/2ximIy3
http://bit.ly/2ycpIBQ
http://bit.ly/2yrvmww
http://bit.ly/2z076Z7
http://bit.ly/2zOc6Z7
http://bit.ly/32vh4Ea
http://bit.ly/359G2dn
http://bit.ly/35YkwqA
http://bit.ly/35dsYUI
http://bit.ly/365wCla
http://bit.ly/36Ra6g0
http://bit.ly/38pV8PG
http://bit.ly/39HQFoA
http://bit.ly/39WbAnC
http://bit.ly/3a1fneO
http://bit.ly/3bHNKhr
http://bit.ly/3evmO4R/
http://bit.ly/3fLIFEQ
http://bit.ly/3jAM5iu
http://bit.ly/3nQ4yJC
http://bit.ly/3ppZGKP
http://bit.ly/T1688
http://bit.ly/WpliA
http://bit.okxpro.online
http://bit.phau.it.com
http://bit.senaitsuxleo.org
http://bit.svip.name
http://bit.svipcoins.com
http://bit.uesaoansisa.org
http://bit.waimao.it.com
http://bit226.icu/m
http://bit2cex.com
http://bit5698hnm.cyou
http://bit58hh.icu
http://bit6.cc
http://bit852mm.xyz
http://bit876.cyou/h5
http://bitaycoin.cc
http://bitaycoino.cc
http://bitazadxss.com
http://bitazaevc.com
http://bitazafji.com
http://bitazaram.com
http://bitazavmi.com
http://bitbankk.com/index/index/purchase.html
http://bitbase-btc.store
http://bitbase-eth.space
http://bitberns.com
http://bitbfc.com
http://bitbuy-apps-h5a.top
http://bitc0n.bmccop.com/login
http://bitc0n.ffuture9.com/
http://bitc0n.ffuture9.com/login
http://bitc0n.pimco8.com
http://bitc0n.pimco8.com/
http://bitchawe.com
http://bitcherk.com
http://bitchret.com
http://bitchrom.com
http://bitciaai.com
http://bitcnmgrd.com
http://bitcoin-cash.xin
http://bitcoin-cashe.xin
http://bitcoin886.com
http://bitcoincash.life
http://bitcoincash.xin
http://bitcoincashe.xin
http://bitcoinetn.vip
http://bitcoinmaxnt.com
http://bitcointio.com
http://bitcointrustfintech.top
http://bitcoit.cc
http://bitcokepromax.top
http://bitcome.pro
http://bitcomex.app
http://bitcon669.com
http://bitcore168.com
http://bitcore66.com
http://bitcorecrypto.cc
http://bitcorem.net
http://bitcores688.com
http://bitdace.vip
http://bitdas1688.vip
http://bitdav.vip
http://bitdava.cyou
http://bitdava.fit
http://bitdava.icu
http://bitdave.fit
http://bitdave.fun
http://bitdave.icu
http://bitdju.com
http://bite500ags.top
http://bite500es.top
http://bitedax.com
http://bitehtex.com
http://bitekrc.com
http://biteuse.com
http://bitewbn.com
http://bitewdv.com
http://bitewtx.com
http://bitex.bitopay.vip
http://bitex01.bitextech.com
http://bitfi-ex.com/html5/#/login
http://bitfinex888.com
http://bitfionex.shop
http://bitfn-ex.com
http://bitfnex-axe.com
http://bitfnex-bxe.com
http://bitfnex-exa.com
http://bitforapp.com
http://bitforeex.com
http://bitforeex.com/
http://bitgete-dx.vip
http://bitgetgpx.com
http://bitgets-tw.vip
http://bithashsg.com
http://bithels.com
http://bithumb77.com/
http://biticcoin.com
http://bitimnv.com
http://bitjvx.com
http://bitkan.sbs
http://bitkan24.net
http://bitkeep2018.com
http://bitkeep6688.com
http://bitkeyep88.cc
http://bitkucoins.com
http://bitmain.buzz
http://bitmain.icu
http://bitmaxpotaic.com
http://bitmcfx.cc
http://bitmxc.net
http://bitnonno.com
http://bitnrv.com
http://bito.bond
http://bito.win
http://bitoax.club
http://bitocit.com
http://bitocitex.com
http://bitoken.pro
http://bitom-tw.pro
http://bitom.com
http://bitomex-tw.pro
http://bitomex.pro
http://bitomextw.pro
http://bitommax.pro
http://bitommaxtw.pro
http://bitoproglobal.com
http://bitos.best
http://bitos.club
http://bitos.info
http://bitos.work
http://bitpanda.thegoodd.com/
http://bitpose-ex.pro
http://bitpose-tw.pro
http://bitpose.pro
http://bitposetw.pro
http://bitposew.pro
http://bitposextw.pro
http://bitrber.com
http://bitrex-tw.pro/h5
http://bitribe.net
http://bitribe.tv
http://bitrich555.top
http://bitrich666.top
http://bitrichbank.top
http://bitrichbm.top
http://bitrre6932.xyz
http://bitrue.finance
http://bitrue.vip
http://bitruehs.com
http://bits-tw.buzz
http://bitseo-tw.pro
http://bitseoextw.pro
http://bitseotw.pro
http://bitsetw.pro
http://bitsfort.site
http://bitsite.cc
http://bitstramp.cc
http://bitstramp.org
http://bittfinex.shop
http://bittfinexlife.top
http://bittfinexslife.shop
http://bittfox.org
http://bittokenvds.com
http://bitton.y-i.shop
http://bittopapp.com
http://bittopcs.com
http://bittopvdc.com
http://bittrex-tw.pro
http://bittrextw.pro
http://bittrexw.pro
http://bittto.com/
http://bitturker.com
http://bitunex.pro
http://bitunmax.pro
http://bitunmaxex.pro
http://bitunmaxtw.pro
http://bitunp.com
http://bituntuns.com
http://bitutun.com
http://bitvab.com
http://bitvavo.asia
http://bitvavo.fyi
http://bitvavo.site
http://bitvdsz.com
http://bitved.com
http://bitveh.com
http://bitvening.com
http://bitvilr.com
http://bitvilrcoin.com
http://bitx.net
http://biwdeem.com
http://biwinfund.com
http://biz.juv81.com
http://biz.sworddaog.com
http://bizataabz.com
http://bizatabxn.com
http://bizatadty.com
http://bizatasni.com
http://bizoc.btfinn1eks.top
http://bizoc.btfinnegd.top
http://bizoc.btfinnetw.top
http://bizoc.btfnets.top
http://biztradecoin.com
http://bjtk.tw.webbai15.xyz
http://bjwex300.com
http://bjwex300.com/
http://bjxmgw.cn/Mobile
http://bjxmgw.cn/about-details/id/35.html
http://bjxmgw.cn/about/details/id/35.html
http://bjxmgw.cn/about/dettails/id/35.html
http://bk.bnxuu.cyou
http://bkcsui.com
http://bke.zeax8.com/
http://bkeiabcd.vip
http://bkexcoin.vip
http://bkfwz.com
http://bkhcoin.us
http://bkubsob.com
http://bl137.cc/
http://bl168.net/
http://bla01.icefjp.com
http://blackstone.bar
http://blackstone.city
http://blance.aredefiar.com
http://blingstar168.com
http://blingstar168.com/
http://blingstar168.com/#/login
http://bljsyl.cjqm8.com
http://block.coinrulev.org
http://blockbitgetetw.pro
http://blockchaim.jingdata.world/
http://blockchain.jingdata.world/
http://blockchain.uvbastsao.com
http://blockchain.uvbstayer.com
http://blockrisex.dejlq.com/wap
http://blockrisex.dqeju.com
http://blockrisexs.com
http://blue02.united997.net/
http://blue11.united997.net/
http://blueseaeye.com/
http://blueshield-ex.com
http://blueshield-ex.com/
http://blueshield-ex.com/h5/#/pages/index/index
http://bluexguardiam.com
http://bluexguarditton.com
http://bm.lucky2869.com
http://bmpbmpb.com
http://bmpbmps.com
http://bmxican.com
http://bn.nasdaqcoinex.com
http://bn01.ddixf.com/
http://bnan.casave100.com
http://bnan.casave200.com
http://bnan.casave300.com
http://bnb.blibliwer.com
http://bnb.fudapuls.com
http://bnbdog.net
http://bnbtr.net
http://bne.gmefintech.com/
http://bne.honda6.com
http://bne.honda6.com/
http://bnexsusdts.com/
http://bnmhop692.shop/m
http://bnv.asi800.com/login
http://bnv.lannbo.com/login
http://bnw.bliblikwe.com
http://bo.anygaladay.com/#/purchase
http://boa.nnacr.com
http://boabundantcapitab.com
http://boabundantcapitaf.com
http://boabundantcapital.com
http://boabundantcapitao.com
http://boabundantcapitaw.com
http://bob.nnacr.com/
http://bob.nnacr.com/login
http://bob.sklme.com/login
http://boc.nnacr.com/login
http://bodainn.com/#/lobby/index
http://bodhisaptva.kodakb.com/
http://bodhisattva.kkdaiday.com/
http://bodhisattva.kodakby.com/
http://bofxi.online
http://boj05o0ln2b4.com
http://bojin16888.cn
http://bonanza8880001.twsecommonft88.com
http://bonanza8880003.twsecommonft88.com
http://bonchipdry.com
http://bondmarkeakt.com
http://bonerctp.top
http://bonerctp.vip
http://boniry.cyou/h5
http://boniry.xyz
http://boniry258n.vip
http://boniry699d.vip
http://boo.finmaxtw.com/
http://boo.sinmasin.com/record_withdraw
http://boo.tsm99.net/
http://boocoin.cc
http://booking-com.org
http://booking-tw.cc
http://booking-tw.co
http://booking-tw.com
http://booking-tw.it.com
http://booking-user.com
http://booking-user.vip
http://booking-vips.com
http://boqconin.com
http://bored.galmee.com
http://bored.galmeory.com
http://bored.heronros.com
http://bored.heronroys.com
http://bored.heronsx.com
http://boss.bairdd.com/
http://boss01.etftrades.net
http://bowheas.top
http://boy97.xyz/?t=pc#
http://boy99.andaotc.net/page1
http://boy99.gra-fin.one
http://boy99vip.gra-fi.info
http://boyin.suiqh.com
http://boysho.com
http://bozei.cc
http://bozei.co
http://bozei.im
http://bozei.net
http://bozei.online
http://bozei.top
http://bozei.xyz
http://bp.bp262.com/
http://bp1s.com/mbpp
http://bpfuelsgo.com
http://bpfuelst.com
http://bpls.com/mbpp
http://bplstick.xyz
http://bplwater.com
http://bptugos.xyz
http://bptuone.xyz
http://bptuoneki.xyz
http://bptuones.xyz
http://bqzue.xyz
http://branbibi03.xin88c.net
http://branchtwtps.mystrikingly.com/
http://brandyv.com/
http://brezto.fun
http://brezto.xin
http://bria.coinone.website/#/
http://bridgebri.com
http://bridgebridds.com
http://britcoin-btc.xyz
http://brivobrivo.com
http://brk.foundation
http://brk.ink
http://brk.life
http://brk.ninja
http://brk.quest
http://brk.skin
http://brkapp.com
http://brkmart.xyz
http://brkpro.com
http://brkshop.com
http://brkweb.xyz
http://broker.brokertradex.top
http://broker.scoforex.cn/introduce?iid=ArlG4790&uid=16
http://brokers.fx110.com/
http://brothershui.safetycoin-vanguard.online
http://brtopapp.com/
http://bru357.jfbdesa.com/hijrtK
http://brweykwt.top
http://bs2021.com/#/
http://bs5525.com/#/
http://bsa.coas6.com/login
http://bsassets.com.tw
http://bsb.heihn.com/
http://bsc-defi.com
http://bsep.gmo.com.tw
http://bstaceusdt.com
http://bstbtccmax.com
http://bstdoup.qian.kbai.tw/#/register/ACOuMMiD
http://bstdtmeth.com
http://bsterceth20.com
http://bstetherc20.com
http://bstethustd.com
http://bstfreebtc.com
http://bstmadasutd.com
http://bstmarkusdt.com
http://bstmaxeth.com
http://bstocgsmart.com
http://bstotplink.com
http://bstrec20usdt.com
http://bstsmarting.com
http://bstusdtmark.com
http://bstusdtmax.com
http://bsusdfes.net/
http://bsxgloeal-trademax.net/_FrontEND/login.aspx
http://bsz.coas6.com/login
http://bt-defi.club
http://bt-exchange.com
http://bta.imteif.com/
http://btboba.cyou
http://btbt.egaxm.com
http://btc-fi.club
http://btc-sxs.club
http://btc.axacoin.tw
http://btc.kavadifi.com
http://btc.kavadifia.com
http://btc.kavadific.com
http://btc.kavadifici.com
http://btc.kavadifidi.com
http://btc.kavadifie.com
http://btc.lineardifia.com
http://btc.lineardifib.com
http://btc.lineardifid.com
http://btc.lineardifie.com
http://btc5.hxins.net/_FrontEnd/index.aspx
http://btc5.hxscsn.com
http://btcc-88.info
http://btcdefi.kavadifi.com
http://btcdoms.com
http://btcdoms.top
http://btcfxc.top/index
http://btcprocm.com/
http://btcszjyptw.com/
http://btcwold.com/
http://btcwu.org
http://btcxz.app
http://btcyb.top/index
http://btczkk.com/index
http://btczkk.com/index/login/login/token/bb4175ddeef0e2c859bdd3ffc6a4.html
http://btczp.app
http://btczs.app
http://btevip.net
http://btfinnetw.top
http://btgrdofx.com
http://bth-coinbase.cc
http://btjnwkejrnsmk.com
http://btk.zbny.net/Trade/tradelist.html
http://btmaxpro.com
http://btoplus.shop
http://btoplus.top
http://btradexon.com
http://btradingx.com
http://bts.lasadert.com
http://bts.lasajvi.com
http://bts.liquidrtwe.com
http://bts.liquisojt.com
http://bts.naboxle.com
http://bts.split-new.com
http://bts.tldfyuid.com
http://bts.tldoset.com
http://bts.tradefmxz.com
http://btse.club
http://btse12.cc
http://btse13.cc
http://btse18.cc
http://btse24.cc
http://btse25.cc
http://btw178.kglefman.com/
http://btw178.kglefman.com/login
http://btwlol.com
http://btxporcom.com
http://btxprcm.com
http://btxprocom.com/
http://btxprocom.tw/
http://btxprocom.tw/index/login/login/token/46bf7066c4d08642a7a25a3ff78676fa.html
http://btxprot.com
http://bubmaker.com
http://bubsuper.com
http://buds.kimoni.vip
http://buerap.com
http://bugnkzetmvfspx.com
http://bullionzs.com
http://bullishb.com
http://bullishd.com
http://bullisheh.com
http://bullishib.com
http://bullishr.com
http://bulltechdec.com
http://bulvs.com
http://buner.buyeralot.store
http://bursacoin88.my
http://bushdk.com
http://business.ecomx-aa.shop
http://businessloans-a.com
http://busskin.com
http://busskincoin.com
http://bustfx.com/
http://bustyfun.vip
http://buy-forex.com
http://buy.hoodde.com
http://buy.mines13.com
http://buy.trendyo.sbs
http://buy.worldstoremy.com
http://buy888.net/
http://buyan.qianx.run
http://buyergomomo.com/a52yipm
http://buypchome24.com
http://buywholesale.online
http://buyx3.club
http://buyx33.today
http://bv003.dfsj9.net/page1
http://bv178.gss68.com/
http://bvgbrqqj.top
http://bvgoing.com
http://bvifinance.vip
http://bvifinanceinve.net
http://bvifinanceinve.org
http://bvnfg.com
http://bvpx.money1168.com/indexBVP.html
http://bvpx.money1168.com/indexBvp.html
http://bvxgat.com
http://bw-fx.com
http://bwcryptos.com
http://bwin688.net
http://bwwt.tw-bgdk.com
http://bx-bs.info
http://bxlr.pegys.com/wap
http://bxytxw.cn/fbpq.app
http://by.globalinternational.vin/
http://by001.clf99.net/
http://by005.clf99.net/page1
http://by9.biv1979.top/
http://byapueqb.buzz
http://bybit.bitby01.com
http://bybitpro.w2.app
http://byboo-des.life
http://byboo-des.shop
http://byboo-dex.asia
http://byboo-dex.life
http://byboo-dex.shop
http://byboo-dex.top
http://byexbb.cc
http://byexcc.cc
http://byexdd.cc
http://byexkj1.cc
http://byexmg1.cc
http://bylun.xenochip.com
http://bypass.xasiamclub.com/
http://bytang.qianx.run
http://bytebridge-exchange.com
http://bz.yd56123.top
http://bz168.poboxiy.com
http://bz168.poboxiy.com/
http://bz559.tx5588.net
http://bz777.btfinneksur.top
http://bz777.btfnet.info
http://bzkey5757.com/
http://bztc.geeneration.com/
http://bztc.generation.com
http://bzyqqya.cn
http://c-cex.io
http://c-i-b-c.com
http://c.aecmu.xyz
http://c.afkty.xyz
http://c.ahdty.xyz
http://c.f182.cn/
http://c.js8999.net/home/
http://c.myjf168.cn
http://c.nasdaq30.com
http://c.ones6.xyz
http://c.ones66.top/
http://c.skaks.top/
http://c.szerocn.com
http://c002.gmt88.co
http://c003.lianzi.me
http://c004.lianzi.me
http://c005.kgi888.com
http://c007.bixintw.com
http://c009.leying168.com
http://c10284.larusdv-v5.vip
http://c122318.store/?t=10063
http://c1d0sge6.ai-sctt.com
http://c2000.leying168.com/
http://c5168.aswibm.com/
http://c5168.cfdsdata.com
http://c5168.cfdsdata.com/
http://c5168.cfdsdata.com/login
http://c5168.cfdsdate.com
http://c5168.cfdstada.com/
http://c51f0a.qdbkqsph.com/drmj65dh
http://c5z9rw.xyz
http://ca.jianwei-money.com/?r=site/index
http://ca8e.site
http://cabbyd.cc
http://cai.3245016.com
http://caifuguoji.xyz
http://caifuxt.xyz/
http://caifuxt.xyz/site/login
http://caifuyihaao.club/
http://caifuyihao.club
http://caikh.avaafund.com
http://caiseqiu.com
http://caixin112288yule.com
http://caixin11885yule.com
http://caixin11888yule.com
http://cajdydinje.com/cmJ8.html
http://cakeinq.com
http://camp.coinone.today/
http://canada.comextw.com
http://canada2022.goldenstore.vip
http://candriam.cs-bit.com
http://candycrush.fun
http://cantaloupe.royal-33.com
http://cantaloupe.royal-33.com/
http://cap1688.com/home/login/index.html
http://capital.ffuture9.com
http://capital588.com/
http://capital88.com/
http://capitalforextws.com
http://capitalforextws.com/
http://capitalfutures.kszuus.com
http://capitalfutures.usokxa.com
http://capitalgain.intuitsdc.com
http://capitalgain.oracven.com
http://capitalmaakx.com
http://capitalmesaba.com
http://captw.cc
http://cardgame0808.com
http://cardgame3.com/
http://careerinformation.xyz
http://caremey.com
http://carespotlinabk.com
http://carewaferai.com
http://cargotwk.com
http://cargotye.com
http://cargotyl.com
http://cargotypef.com
http://cargotypep.com
http://cargotypeq.com
http://cargotypex.com
http://cargotyq.com
http://cargotyw.com
http://carlyle-funds.com/
http://carmine.nymex2023tw.com
http://carmine.nymextw.com
http://carousellshop.com
http://carousellyshop.vip
http://carrefoumarrt.com
http://carrierglobals.com
http://carriermarkets.com
http://carriershares.com
http://carrierstocks.com
http://carriertrades.com
http://carryforextw.com
http://carryforextw.com/
http://carryforextw.com/index/
http://cartelelectriccarbapwoaik.shop
http://cash.bnan900.com
http://cash.gsa168.top/m
http://cash002.se888.net/
http://cash007.bitforeex.com/
http://cash009.qniuu.com
http://cash2.forex2001.com/index.html
http://cash333.bitforeex.com/
http://cash5558.bairdd.com/
http://cash5558.discoverfs.net
http://cash9111.discoverfs.net/
http://cashcoina.com
http://cashgroweakr.com
http://cashweb3.net
http://catchy.pimtw.com
http://cavemall.one
http://caymanex.org
http://caymanexchange.cc
http://caymanfinancex.net
http://caymanin.cc
http://caymaninv.net
http://caymaninv.org
http://cb-bito.xyz
http://cbbdc.qian.ayju.tw/#/register/ACOuMMiD
http://cbcpk.dpixwpxn.com/eeplcox0
http://cbecdlo.com
http://cbectw.com
http://cbfunintl.com
http://cbiprotw.com/
http://cblcsdcs.com
http://cblculuspower.com
http://cblcytb.com
http://cbninter-tw.top
http://cboe-otc.site
http://cbp6188.com/
http://cbpleague.com
http://cbsrs011.cc
http://cbsrs11.cc
http://cbsrs668.cc
http://cbsrs669.cc
http://cbsrs89.cc
http://cbsrsgw01.cc
http://cbsrsgw013.cc
http://cbsrsgw101.cc
http://cbsrsgw112.cc
http://cbsrsgw66.cc
http://cbx-coin.net
http://cbxcoinex.com
http://cbxcoins.vip
http://cbxgoldtraders.com
http://cbzbjade.com
http://cbzjade.com
http://cc.22233346.com/
http://cc.2345179.com
http://cc.2345179.com/member/data_t_money.php
http://cc.25380.net
http://cc.33069.net
http://cc.568910.com
http://cc.btccd.cyou
http://cc.cloud-sys.cloud
http://cc.hyhtml5.com/
http://cc.letiandk.xyz
http://cc.peipp.cn/app.php/Njl=
http://ccafx.com
http://ccc.aozhouk.com/
http://ccc.beijing28k.com
http://ccc.beijing28k.com/
http://cccc888.ustec8.com/record_withdraw
http://cceexx68.top
http://ccffex.vip
http://cco.hnshen.com/login
http://ccxi8889.mega1024.com/
http://cd-all.top
http://cd-chat.vip
http://cd-max.vip
http://cd-name.vip
http://cd.54gth.xyz/dauvha
http://cd9jr3kegh.com
http://cdcamop.com
http://cdktradingplatform.com
http://cdktradingplatforma.com
http://cdktradingplatformb.com
http://cdktradingplatformc.com
http://cdktradingplatformg.com
http://cdktradingplatfornc.com
http://cdktradingplatforng.com
http://cdktradingplatfornl.com
http://cdktradingplatforns.com
http://cdktradingplatfornw.com
http://cdktradingplatfornx.com
http://cdktradingplatfornz.com
http://cdktradingplatforvf.com
http://cdktradingplatforvi.com
http://cdktradingplatforvk.com
http://cdktradingplatforvl.com
http://cdktradingplatforvm.com
http://cdktradingplatforvr.com
http://cdorg.top
http://cdpvusb.com
http://ce.migwqan.cc
http://ceee0c9f57f5e23270c60e2c7e8db487.hosting1023.shop
http://ceex-vipivna.com
http://celestiaia.com
http://celestialfin.com
http://celestialinv.com
http://celestialstocks.com
http://celestialtrades.com
http://celufa.kinvestcap.com
http://celufa.kinvestpes.com
http://celufa.merrylans.com
http://celufa.meryalants.com
http://celufa.meryalaryts.com
http://celufa.meryortus.com
http://celufa.seagensyer.com
http://celufa.ventureinckvx.com
http://celufa.ventureinvx.com
http://cendley.com
http://center.belgemgiaes.com
http://centradeb.centrade.tw
http://centradec.centrade.tw
http://centralshoping.com
http://centralshoping.top
http://century.dlg2.cn
http://century.dlg2.cn/
http://century.syso88.top/
http://century.tss28.vip/
http://ceo.asit666.net
http://ceo.asit666.net/winbet/home/index
http://ceo.global-exptrade.com/#/
http://ceo8.fideltets.com
http://ceo8.fideltkkers.com
http://ceo8.fidelyets.com
http://ceo8.fidelyts.com
http://ceo8.muhorscoin.com
http://cet.esnmall.com
http://cex.5bitnet.net
http://cex.888vip123.com
http://cexapp.net
http://cexapp.yanma888.com
http://cexcoin.org
http://cexcoins.cc
http://cexio.link
http://cextvcoin.vip
http://cf.09bet.cc/Home/run/index.html
http://cf.09bet.cc/home/user/index.html
http://cfa.usmarketex.com
http://cfberg.com
http://cfd.global-expcrade.com/
http://cfd.global-exptrade.com/#/
http://cfds1.chnthebcr.center
http://cfgrr.top/wap
http://cfxintuo.xyz/
http://cglo6669.com
http://cgslce-asia.com
http://cgtp-ai.vip
http://ch6666.cc/
http://ch99.btfinnets.top
http://ch992.huatasor.com
http://chad.kimoni.vip/
http://chad.kimoni.xyz
http://chaebol.pimcose.com
http://chainceinfoex.top
http://chainhub.bond
http://chainokdc.com
http://chainpulsekt.com
http://chairishasia.shop
http://chairishasia.xyz
http://challenge.ai.iqiyi.com
http://chaosac.com
http://chaosae.com
http://chaosam.com
http://chaosey.com
http://chaosghd.com
http://chaosms.com
http://chaosnrx.com
http://charitablego.com/login/
http://charterprimer.com/
http://charterprimers.com/index
http://chatlive.mefloar-bit.top
http://chatlive.urn-trade.world
http://chats.vhurkl.top
http://chc-tradingx.top/h5
http://che1961.bitforeex.com/
http://che1961.lbcgoal.com/
http://che1961.mscico.com/
http://che1961.ratex8.com
http://che1961.skcbtec.com
http://che1961.skcbtec.com/
http://chekl.acp-tw.info
http://chekl.acp-tw.top
http://chenghong.warrior-designer.com
http://chenxiaodao.com/
http://chester.fannasia.com/login
http://chia.avaafund.com/
http://chia.ustec8.com/
http://chibak.metasafefour.online
http://chibak.metasafetwo.online
http://chibak.quantainvestone.online
http://chibak.synergyten.online
http://chifis.com
http://child688.liixin.com
http://childa.esgtec.com/
http://childa.esgtec.com/login
http://childc.esgtec.com/login
http://childc.sklme.com/
http://childmemoirds.com
http://china.yazhougs.com
http://chinahk75868ex.com
http://chinazds.com
http://chipcirca.com
http://chorderct.com
http://chorderxi.com
http://chronocapcrypto.com
http://chronocapitalbitstamp.com
http://chronocapitalsecure.com
http://chronodefendnet.com
http://cht-vip.com
http://chtom.net
http://chu.alph9.com/
http://chu.cmnae.com/
http://chu.coen8.com/
http://chu.draxvo.com
http://chu.fsuwin.com
http://chu.progyy.com
http://chu.send66.com/
http://chuangjin.extradtw.net/
http://chuangjin.intnforex.com/
http://cianwallet.com
http://cibc.cixxxbbc.top
http://cicomsyu.com
http://cicomyu.com
http://cicycd38.top
http://ciexpro.xyz
http://ciglobal.me/#/
http://cinnext.com/
http://cip2u.com
http://ciqxz.com/4qnz.app
http://citiae.com
http://citiaw.com
http://citibh.com
http://citifnd.com/
http://citytradkzn.com
http://cjone-style-stores.com
http://cjq777.com/xi64.app
http://cjtzapp.com/oi1f.app
http://cjzt.hyhtml5.com/
http://ck-bitnova.lol
http://ck-coinmcap.com
http://ck-coinmcap.lol
http://ck.woxvip.com
http://ckcfnk.com
http://cl.enekfkr.com
http://cl.enekfkr.com/?openExternalBrowser=1
http://cl.rosystyle.com/
http://cl.rosystyle.com/fund/manager/audit
http://cla168.jun8.net/
http://cla168.jx787.net/
http://cla180.jinfeng80.com/
http://cla200.antinss.com/
http://cla220.jx787.net
http://cla220.jx787.net/
http://cla250.jinfeng80.com
http://clarinsmas.xyz
http://cleanpowertechpl.com
http://clearancewish.com
http://clf99.net/
http://clf99.net/page1
http://clickdown.sztehao.com
http://client.atcbritain.vip/login
http://client.bth.finance
http://client.collart.co
http://client.collart.group
http://client.eazyshop.top
http://client.foxglobal.info
http://client.foxglobe.info
http://client.foxglobe.pro
http://client.fpmarkets1.com
http://client.furionglobal.com/
http://client.gbay-shop.website
http://client.gbay-shops.space
http://client.sichcapitalax.com/#/user/login
http://client.sichcapitalgx.com
http://climpup1.com/
http://climpup6.com
http://cloud-bitcoin.com
http://cloudbk.net/
http://cloudcart.tech
http://cls.mxtrad.net/regisder
http://cls168.top
http://cls169.top
http://cls179.top
http://cls6666.top
http://cls7777.top
http://cls888.top
http://cls999.top
http://clsastock.com
http://clurth5kjzcs.com
http://clyptaex.com
http://cm.enmgjt.top
http://cm100.cc
http://cmaby.com
http://cmarketvip.com
http://cmc1783.h1jtech.com/
http://cmc1999.mscico.com/
http://cmc1999.qniuu.com
http://cmcfinance.net
http://cmcfinance.org
http://cmcfinances.com
http://cmcfinances.vip
http://cmcfinsever.com
http://cmcfinsever.vip
http://cmcwgie.com
http://cme-coins.com
http://cme.fhefnpa.cn/home/login/login_index.cme.html
http://cme.incoin.vip/h5
http://cme.tw
http://cmecemc.com
http://cmecemnew.com
http://cmecoin-s.com
http://cmecoin.net
http://cmetw.com
http://cmex.fhefnpa.cn/indexcme.html
http://cmivcp.com/
http://cmivpg.com/
http://cmmexc.club/main.html
http://cmt.60mk.com
http://cmt.yo87.com
http://cmy.shangcheh.com
http://cn.fxtrading-hk.com
http://cn.fxtrading-hk.com/
http://cn.harcm.com
http://cn.harcm.com/
http://cnbtoanda.com
http://cnbtoanib.com
http://cng.ikalaco.com
http://cng.ordaesies.com
http://cng.sfsoeitres.com
http://cng.solutfoundy.com
http://cngd47.com
http://cnpol.com
http://cnquja.com/
http://cnquja.com/z0rnhs9c
http://co-bet.top
http://co.allepro.shop
http://coachfundco.com
http://coalrock.vip
http://coco01.goreasx.com
http://cod01.cod0966.com
http://cod02.cod0966.com
http://code-cloud.vip
http://code-sun.vip
http://code-tw.top
http://code.andaotc.net/page1
http://cofuturexs.com
http://cohen.imtrom.com
http://cohen.imtrone.com
http://coidirek.com
http://coihern.com
http://coin-ace0.info
http://coin-arf.com
http://coin-basepro.net
http://coin-bgettw.pro
http://coin-dnf.cc
http://coin-link.cc
http://coin-npc.cc
http://coin-store.vip
http://coin-tw.vip
http://coin.181d4y.cn
http://coin.181d4y.cn/Login/register/invit/WLPMBSZRG
http://coin.abc899.vip
http://coin.bnan680.com
http://coin.gaiaaex.com
http://coin.uzaxcd.com
http://coin2.skotc.net
http://coin2.skotc.net/
http://coinbase-vip.com
http://coinbase.gfmm.world/
http://coinbase.gfmm.world/center/#/
http://coinbase.xts.group
http://coinbase.xts.group/
http://coinbasevip.com
http://coinberry-ex.com
http://coinbeside.info
http://coinbeside.net
http://coinbget.cc
http://coinbgetw.pro
http://coincans.com
http://coincasso-ex.com
http://coincheck.com/cn/
http://coincheck.live/DIST/#
http://coincheckh5.com
http://coinchecktrb.com
http://coincjjt.com
http://coincjjtt.com
http://coincomex.site
http://coincomex.xyz
http://coincomvip.site/wap
http://coindataflow2002.top
http://coindataflow2003.top
http://coindataflow666.top
http://coindataflow777.top
http://coindeer.vip
http://coindexchange.cc
http://coindoes.com
http://coinebcx.com
http://coinettc.com
http://coinetx.com
http://coineuj.com
http://coinex.college
http://coinex.mobi
http://coinexamm.com
http://coinezff.com
http://coinfhu.com
http://coinfoytr.com
http://coinftw.com
http://coinftwis.com
http://coinftws.com
http://coinftwvip.com
http://coingtp.top
http://coinha.leyiu.com
http://coinhakobb.com
http://coinhbea.com
http://coinheaven.site/
http://coinjar1.vip
http://coinjiaof.com
http://coinku.io
http://coinlifee.com
http://coinlockerpro.vip
http://coinmapa.cc
http://coinmarketcap.yasenfinancial.site
http://coinmarketcaps-us.com
http://coinme-c.com
http://coinme-tw.com
http://coinme-y.com
http://coinme10020.cc
http://coinme10030.cc
http://coinme10050.cc
http://coinme10060.cc
http://coinme10060.cc/h5
http://coinme10070.cc
http://coinme10080.cc
http://coinme10200.cc/h5
http://coinme6099.cc
http://coinme666.cc
http://coinme678.cc
http://coinme690.cc
http://coinme7099.cc
http://coinme8099.cc
http://coinme888.cc
http://coinme9099.cc
http://coinmec-tw.com
http://coinmecl.com
http://coinmeg-tw.com
http://coinmens.com
http://coinmerb.com
http://coinmetrm.com
http://coinminius-tradingx.lol
http://coinmoomoo.trade
http://coinoffee.vip
http://coinpalm.com
http://coinplay.ygzkfr.top
http://coinpluga.com
http://coinpose-tw.pro
http://coinpose.net
http://coinposemax.pro
http://coinposetw.pro
http://coinpot-tw.pro
http://coinqmgf.com
http://coinrbg.com
http://coinrf.esisgk.top
http://coinrf.ygzkfr.top
http://coinrsbank.com
http://coins8.shop
http://coinsafeal.com
http://coinsafex.com
http://coinsbit.life
http://coinsbit.pro
http://coinshako-vip.com
http://coinsri.com
http://coinstobank.com
http://coinstoer-vip.com
http://coinstoervip.com
http://coinstoresot.com
http://coinszkesvx.com
http://cointfethai.cc
http://cointfx.com
http://cointop3.blsyg.top
http://cointop3.ojesh.top
http://cointr.2f87.com
http://cointr.cww8.com
http://cointradeexchange.org
http://cointradingex-change.com
http://cointradingexchange.asia
http://cointrprocvu.com
http://coinunions.com
http://coinuniontw.com
http://coinup-pro.com
http://coinusdt2.shop
http://coinusdt3.shop
http://coinverse-ex.com
http://coinweex.com
http://coinwjda.com
http://coinxwsex.com
http://coinyct.vip
http://coiowere.com
http://coiretuia.com
http://coiwere.com
http://coix1.cn
http://colnbase.shop
http://colnhako.com
http://com.shopcc.club
http://comepchome.com
http://comex-pro.org
http://comex-vip.com
http://comex.globalhub.cc
http://comexlv.com
http://comexpro.top
http://comexwallet.com/ff/
http://comine002.cc/h5
http://commerceiq-uk.top
http://commerceptt.com/#/
http://commercial-loans-tw.com
http://commercial.pub
http://companyghj.com/
http://condo1.icu
http://conking-wiishis.com
http://contimee.net/wap
http://contractda.com
http://contractog.com
http://contractst.com
http://cooew.com
http://cool27.com
http://cool39.com
http://cool54.com
http://cool65.com
http://copykoieliteglobal.org
http://core-smithexchange.com
http://corebit-ex.com
http://corebitexchange.com
http://corechain-global.com
http://corecws.com
http://corefoliabo.com
http://corelink-cryptotrading.com
http://corelinkcryptotrade.com
http://corelinkcryptotrading.com
http://coresmithex.com
http://coresmithexchange.com
http://coreteam.oecdf.com/
http://coretradezenith.com
http://coretradezenithgroup.com
http://cort-start.top
http://cort.scc-ai.cc
http://cos.eagspyr.cn/abqyR9
http://costerexchange.com
http://cosypc24.com/lnqogr
http://cotcoswholes.com
http://coupangx.azureedge.net
http://couponcacc.com/dist
http://coupondertb.com/dist
http://couponkowa.com
http://couponmono.com
http://couponounc.com
http://coupontwc.com
http://couuoeowtc.com
http://covestingeer.com
http://cow4stock.com/
http://cow4stock.com/index/login/signin
http://cox.lianfavc.com
http://cox.staioiled.com
http://cpatexcr.com
http://cpatexdc.com
http://cpatexrsd.com
http://cpatexsl.com
http://cpatwld.cc
http://cpcvip.com.tw
http://cpds.huizhirongwt.top
http://cpds.rongetc.top
http://cpds2.huataii.com
http://cpds2.huataioa.com
http://cpmart-tw.com
http://crazy-go.com
http://crazy-goshops.com
http://crazybuy-shops.com
http://crazygo.online
http://crazygostores.com
http://crazygotw.com
http://crazyonline-go.com
http://crazyonlinego.com
http://crazyonlineshop.net
http://crctrusttw.com/
http://create.brandyv.com/
http://create.fannasia.com/login
http://crex24i.net/app
http://crex24ims.com
http://crex24is.net/app
http://crex24mi.com/app
http://crex24mis.com/app
http://crex24sc.com/app
http://crex24v.com
http://crezews.com
http://crezexb.com
http://crezfs.com
http://creznm.com
http://crh.creat66.com
http://cri.creat66.com/
http://crm.anderfix.com
http://crm.anderfix.com/
http://crm.anderfix.com/Public/login?url=https%3A%2F%2Fcrm.anderfix.com%2Findex%2Fadmin_index
http://crm.barnece.com
http://crm.fancy-fx.com
http://crm.fitbelaepro.net
http://crm.fitbelaepro.online
http://crm.fob-fx.net
http://crm.goldenstone.cc/trade-portal/home/login
http://crm.greenstans.com.tw
http://crm.greenstans.com.tw/pc/user/login
http://crm.greenstans.online
http://crm.idealkind.net
http://crm.idealkind.online
http://crm.illumarkets.net
http://crm.illuminatimarkets.asia
http://crm.jkjrs.com/
http://crm.konanos.com
http://crm.konanos.com/pc/user/login
http://crm.lcg-tw.com/
http://crm.onokaforex.com/UserBO2/login2.php
http://crm.prorod.online
http://crm.prorods.info
http://crm.prorods.xyz
http://crm.sentinel-global.net
http://crm.sentinel-global.net/
http://crm.sentinel-global.net/index.php/user/user/signin.html
http://crm.spring-information.com/UserBO2/login2.php
http://crm.stplfx.com/
http://crm.supertraderlimit.com/
http://crm.topiatoa.com
http://crm.topiatoc.com
http://crm.tradervipc.com
http://crm.vipafx.com
http://crm.vipbfx.com
http://crm.vipcfx.com
http://crm.vipctrader.com
http://crm.vipdtrader.com
http://crm.vipefx.com
http://crm.vipftrader.com
http://crm.vipotor.com.tw
http://crm.vipotor.com.tw/pc/user/login
http://crm1.topiato.com
http://crm1.vipotor.com
http://crm2.topiato.com
http://crm3.topiato.com
http://crm4.fx-vip.com
http://crm4.topiato.com
http://crm4.vipotor.com
http://crm4.vipotor.com/
http://crm5.topiato.com
http://crm6.vipotorfx.com.tw
http://crm7.fx-vipotor.com
http://crm8.fx-vipotor.com
http://crm8.vipotorfx.com.tw
http://crmfx.fog-eefx.com
http://crmqointechex.com
http://cropty5138.apexcoins.cc
http://crossglobalmall.cyou
http://crossglobalmall.xyz
http://crossglobalshop.com
http://crossglobalshop.shop
http://crossglobalshop.top
http://crossglobalshop.vip
http://crossglobalshop.xyz
http://crown.edgezs.com
http://crown.festosq.com
http://crown.giantwin7.com/#/
http://crown.gmt.rocks
http://crown.omegao.site
http://crown.tigerking777.com
http://crownblessedinvestment.tw
http://cry-ptouyu.vip
http://cry.arsaneljc.com
http://crymb2.carryuu.com/login
http://crynea.com
http://crypgapetc.com
http://crypto-aave.vip
http://crypto-scwallets.com
http://crypto-scwalletx.com
http://crypto-world.ink
http://crypto.com
http://crypto.lion.expert
http://crypto.lion.institute
http://crypto.lion.training
http://crypto.minerbitcoin.org
http://crypto.nion.space
http://crypto356.cc
http://crypto5138.apex-coin.co
http://crypto5138.apexcoins.club
http://crypto5138.apexcoins.online
http://cryptobch.xyz
http://cryptobch.xyz/vBPd6hra
http://cryptobtx.com
http://cryptobtx.net
http://cryptocove-pro.com
http://cryptocoveke.com
http://cryptocoveoep.com
http://cryptocoveop.com
http://cryptocovepe.com
http://cryptocovepro.com
http://cryptocoveu.vip
http://cryptocoveue.com
http://cryptocoveuxe.com
http://cryptocovmen.com
http://cryptocovmex.com
http://cryptocurrencytradebitcored.com
http://cryptoisland-btc.life
http://cryptominingvault.com
http://cryptonexusx.cyou
http://cryptoonchain.pro
http://cryptoprox.website
http://cryptovibe-tradingx.xin
http://cryptoweb.it.com
http://cryptoworldsdf.com
http://crysenlaviorthix.com
http://crysenvaliorum.com
http://cryvenora.org
http://cryvonthelisar.com
http://cryzeneq.com
http://cryzenex.com
http://cs.aafcry.top
http://cs.cmacbg.xyz
http://cs.dkpdng.top
http://cs.dkpdng.top/h5
http://cs.feffee.top
http://cs.fusgth.top
http://cs.hnsgjr.top
http://cs.mpgdyt.top/h5
http://cs.msndgj.sbs
http://cs.neuralnetwork.vip
http://cs.piplustech.xyz/
http://cs.tahark.top
http://cs.tahjkf.icu/h5
http://cs.tzdtkm.top
http://cs.we3qx0.cn
http://cs.ykfygg.top
http://cs01.ias-trade.com
http://csaironline.com
http://csbkvip.cn
http://csbnm.com/lhzt/
http://csdinjf.com
http://csdirer.com
http://csdixse.com
http://csfinancial.com.tw
http://cskwins.com
http://csl369.top
http://cslbehringtech.com
http://cslooa.com
http://ct.mcgraw-best.com/?r=site/index
http://ct300.ostrades.com/
http://ctc-defi.com
http://ctopengxing.vip
http://ctopengxing321.vip
http://cu.auenfj.top/h890
http://cu.ruvnrjg.top/h53shw
http://cuibaozhai.com
http://cultivate66.cultivaterccd.top
http://cultivate667.cultivatercent.top
http://cultivate667.cultivatereds.top
http://cultivate667.cultivaterege.top
http://cultivate667.cultivaterpre.top
http://cultivatercenterc.top
http://cuoso.cc
http://cupqur.idgcapital8.com/
http://curephazix.com
http://curmexpro.com
http://currencytaiwan.com
http://curryency.kasnnii.com
http://curryency.kasnses.com
http://curve-tw.com
http://customer.btcuttcnm.top/
http://cutive.agerncapabilis.shop
http://cuw-invest.com/
http://cv.newex.top
http://cvadeds.com
http://cvbmm8569.top/m
http://cvd6666.trendcenterr.com
http://cvfxtv.com
http://cvppdc.com
http://cweb-ai.top
http://cwgforextw.com
http://cwgforextws.com/
http://cwgforextws.com/index/index/index/token/67aee25340c3a1fad82361c72b88ef56.html
http://cwgforextws.com/index/index/index/token/92e2b0fcb7b7e5d98a4647c4469869c8.html
http://cwis88.net/
http://cwis88.net/page1
http://cwmet.mginvestmentstw.net/
http://cwxibzs.com
http://cxgw06.cc
http://cxgw1.cc
http://cxmtradingtw.com
http://cya.acybra.xyz
http://cya.cybra.xyz
http://cybercoinzone.com
http://cybra.maxstrategyw.com
http://cyd.cybra.xyz
http://cyf.acybra.xyz
http://cyh.cybra.xyz
http://cyn3217.com
http://cyn6859.com
http://cyouclout.com
http://cyouclout.xyz
http://cypagain.icu
http://cypnlleion.top
http://cyprusfinanceen.org
http://cyprusfinancen.top
http://cysec.gfmm.asia/
http://cysec.gfmm.asia/center/#/
http://cysj99.net/keno
http://cystn.jfbbi.com/
http://cyu.gaefintech.com/egame
http://cyu.gmefintech.com/
http://cyu.gmefintech.com/login
http://d.acasirt.top
http://d.apkvey3.top
http://d.app10430.top/?id=d347f2a46e099dd86170fb6ad8a3ac53
http://d.app10581.xyz/?id=d16a1dd71954e8ed83ae8fb490905551
http://d.app21907.top/?id=686c6cd5115a5408290e6d484a52f637
http://d.app26923.xyz/index_zh-TW?id=d7ca163f185f458b801b0662e243330d
http://d.app33007.top/?id=d347f2a46e099dd86170fb6ad8a3ac53
http://d.app60716.xyz/?id=d51d0dcfd3f1efc2fa2eeb6ef3928455
http://d.app76895.top/?id=d347f2a46e099dd86170fb6ad8a3ac53
http://d.app93yj.top
http://d.appfmfe98.top
http://d.appk21030.top/?id=d347f2a46e099dd86170fb6ad8a3ac53
http://d.appk31245.xyz/?id=d347f2a46e099dd86170fb6ad8a3ac53
http://d.appk56728.xyz/?id=bed56bcc1a1c5212ccaa8a3ab7e96324
http://d.barrldiczzym.top/?jp=1
http://d.bgfrm.top
http://d.bhlto.top
http://d.bhlto.top/?openExternalBrowser=1
http://d.bistampkrd.top
http://d.bistamqjh.top
http://d.bitfinexd.cyou
http://d.bitfinexdplus.cyou
http://d.bitstampkh.top
http://d.btchdwl.xyz/?it=bed56bcc1a1c5212ccaa8a3ab7e96324
http://d.btfinexd.qpon
http://d.cbjkz.top
http://d.cfhkdgk.top
http://d.cmeintnl.buzz/?id=b13bd83f11c6d73a92e04cb979a292f7
http://d.d3272.top
http://d.dadpas.xyz
http://d.dadpas.xyz/a/ap/06obegsamz4j/n
http://d.dadpas.xyz/a/ap/0ah39pr8zl5j/n
http://d.deribitgl.buzz/?id=bbee78121b9bac60afa2753f19bac607
http://d.drdvs.top
http://d.duopq.top
http://d.emccr.top
http://d.fexglobag.buzz/?id=686c6cd5115a5408290e6d484a52f637
http://d.gdacgk.top
http://d.gdrok.top
http://d.gietj.top
http://d.gistex.top
http://d.gkfxprimes.com
http://d.gmkcz.top
http://d.gwhrj.top
http://d.hlkmc.top/?openExternalBrowser=1
http://d.hniek.top
http://d.honrex.net
http://d.hzxxs.top
http://d.icljy.top
http://d.iglk.info/l16
http://d.ijzedk.top/ijzedk/
http://d.jbuhcu.top
http://d.jdotyp.top
http://d.jgbwdn.top
http://d.kleyf.top
http://d.knarf.top
http://d.kpdwj908.top
http://d.krakentrad.xyz/
http://d.l0.wtf/9qs
http://d.lamresearchly.xyz/
http://d.leiting.shop/
http://d.liacex.com
http://d.lonve.top
http://d.mfcrp.top
http://d.nyseuronexts.xyz/?id=a08123dd8a75fc02fcabccbf15cb15e3
http://d.ohjoi.top
http://d.okqhd.top
http://d.p2bdwq.top
http://d.pqmdk.top
http://d.psbdu.top
http://d.qmdum.top
http://d.qxpfr.top
http://d.rbpfds.top
http://d.rlsub.top
http://d.rtmeu.top
http://d.scone998.top/
http://d.scone9988.top/
http://d.scone9988.top/login
http://d.sctopm.com
http://d.sfsgch.top/sfsgch/
http://d.shopxianzai.site
http://d.sibwa.top
http://d.sropt.top
http://d.svhkg.top
http://d.tidgv.top
http://d.tw-incn.com
http://d.twiocn.com
http://d.twiocna.com
http://d.twlocn.com
http://d.tybgd.top
http://d.tysrj.top
http://d.tyubqq.top
http://d.tyubqq.top/tyubqq
http://d.tyubqq.top/tyubqq/
http://d.uqlqg.top
http://d.uztgyd.top
http://d.wayteccs.com
http://d.wffiz.top
http://d.whnfq.top
http://d.xinbiglobalb.xyz
http://d.xinbiglobalc.buzz
http://d.xinbiglobalc.buzz/?id=d51d0dcfd3f1efc2fa2eeb6ef3928455
http://d.yiook.com
http://d.zniang.vip
http://d.zrmub.top
http://d002.8legend.net/center/#/register
http://d1.bitforeex.com/
http://d1k8m.xyz
http://d1sujga8xtuz0t.cloudfront.net/4b0lar
http://d2.seatop.life/aka
http://d2aj0f9pvbu2q2.cloudfront.net/4b0lar
http://d2czk2kbw4pa3t.cloudfront.net/mke.html
http://d2owmmtdaxqv4y.cloudfront.net
http://d2w3kynllk3d52.cloudfront.net/index.html
http://d2yt9hj1yu3ly.cloudfront.net/0rvzhq
http://d3dxwx2i82yh7r.cloudfront.net/mobile
http://d3j44cpygelvk3.cloudfront.net/49fxe1
http://d3ngufagvz5cqh.cloudfront.net
http://d3rvlnfgdn2cew.cloudfront.net
http://d7xah2k1uoxt2.cloudfront.net
http://d87b.com.tw
http://d87b.com/
http://d9cu1q8tndv16.cloudfront.net
http://da-exm.net
http://da.gs3323.fun
http://daabgsbyuenronne.com
http://dac4v8p3gu6i2.cloudfront.net
http://dacc.musicxoin.com
http://dacforex.com
http://dafesx.vip
http://dahaipost.com
http://daheasset.com
http://daisobackstagh.com
http://daisobackstagm.com
http://daisojapanb.com
http://daisojapank.com
http://daisojapanm.com
http://daisojapant.com
http://daisojapanw.com
http://daisojapauk.com
http://daisojapauw.com
http://daiwan.fexrj.net/
http://dajdew.com/CKHJc
http://dakaforex.com
http://dakaforex.com/
http://dakaforex.com/index
http://dakagorex.com/
http://damenglianmeng.mli8.cn
http://damuzhi668.com/
http://dan.rgztw.com/
http://dance168.net/
http://dangdangtoa.com
http://dangdangtop.com
http://dangdangtw.com
http://dangdangtwee.com
http://dangdangtwk.com
http://dangdangtwp.com
http://dangdangtwpmd.com
http://dangdanguctw.com
http://daolaunchpad.io
http://daoo.cmouks.com
http://dapp.bitspovip.top
http://dapp.coinrulee.top
http://dapp.coinruler.net
http://dapp.coinrun.org
http://dapp.ios888.dpdns.org
http://dapp.payfi.cc
http://dapp.shopee1.org
http://dapp.solandingmarket.com
http://dapp.wqewaefgoo.com
http://dapp4.ios888.dpdns.org
http://dappa.jiami.qzz.io
http://dappw.dapp.netlib.re
http://dappweb3.club/wap
http://darkcnfa.com
http://darkcnrus.com
http://darv.momanow.xyz/
http://dasdsada.xyz
http://dashit.one
http://dasxinplnqoikij.com
http://dataanalysis.mystrikingly.com/
http://databasetiippaem.com
http://datahydru602.com
http://datahydru750.com
http://datahydru967.com
http://datahydrudhj.com
http://datahydrugcvy.com
http://datahydruon.com
http://datahydrupee.com
http://datahydruqnx.com
http://datahydrusop.com
http://datahydruva.com
http://datahydruvjhm.com
http://datahydruxa.com
http://datahydruzx.com
http://datameer-shop.org
http://datameer.net
http://datanodedex.app
http://datanodedex.online
http://datum.qxloo.com/wap
http://datum.rdjlo.com/wap
http://dav-derivatives.com
http://davinci.financesnew.xyz
http://davinci.jfdboker.com
http://davincie.financesnew.xyz
http://daxonbrite.info
http://day-co.top
http://day-olt.com
http://db597cca4a36a796c5c1b3590941aa0e.forless1116.shop
http://dbagcuk.com
http://dbagoeu.com
http://dbagvmi.com
http://dbd414c671913cba9408de35257a7286.small1006.shop
http://dbgmarke886.com/
http://dbgmarke886.com/index/index/index/token/25338355b095598c53fda9fea5920b0e.html
http://dbgmarkettw.com/index/index/index/token/75361b8b7c9a1cd82224a78bf4296b9f.html
http://dbgmarketw.com/index/index/index/token/08e6a1dc44274f8c90fcbec91655b8bf.html
http://dbscww.cn/index/user/cashlist.html
http://dbyl1228.com
http://dbyl1268.com
http://dbyl1868.com
http://dbyl1928.com
http://dc.miguae.cc
http://dc3b12d1019ac7b56592f0480342a191.word1018.shop
http://dc7ymse2npfa8.cloudfront.net
http://dcafscadesfco.top
http://dcc.musicxoon.com
http://dch.dashdeexi.com
http://dciscoan.com
http://dcm.suning-mart.com
http://dcmforexs.com
http://dcoare.manelies.com
http://dcoare.manelx.com
http://dcoined.cc
http://dct.global-trademax.net/_FrontEnd/index.aspx
http://dd-btxpro.com
http://dd-btxpromax.org
http://dd66.ceos99.com/
http://dd78689.com/
http://dda.oasis66.com
http://ddaxril.com
http://ddbcar.com
http://ddc.ceos99.com
http://ddexcui.com
http://ddexefk.com
http://ddexlub.com
http://ddexoc.com
http://ddexokl.com
http://ddi88.gr66.net
http://ddigital.hyhtml5.com
http://ddls.kjccos.vip
http://ddxta.sbs/index.html
http://ddya88.com
http://de34d.k8x.org/NblT.html
http://dealbeetw.xyz
http://dealiverse.xyz
http://dealshaker.cloudnfla.com
http://dealwhole.xyz
http://deamed.cc
http://deameg.cc
http://dearn.vip
http://dearnclimeddefi.com
http://dearndefi.cc
http://dearndefi.com
http://dearnnode.cc
http://decide.ffuture9.com
http://decide.ffuture9.com/login
http://decide.haaln.com/
http://decide.haaln.com/page_product
http://decide.pimco8.com
http://decluttr.cc
http://decluttrs.com
http://decxeauai.com
http://dedwow.com
http://dedwowo.com
http://dee.coincapl.com
http://deecen.online
http://deep-org.top
http://deepgtp-blue.top
http://deepgtp-pv.top
http://deepgtp-tw.com
http://deepgtp.top
http://deers56.com
http://defeng999.com
http://defi-mining.cc/h5
http://defi-scwalletx.com
http://defi.ethpool.life
http://defiai.club
http://defiaibot.cc
http://defiascendex.com
http://defiaste.com
http://deficircuit.qpon
http://defied.cc
http://defiflexpool-vip-a.com
http://defiflexpool-vip-c.com
http://defiflexpool-vip-s.com
http://defiiis.com
http://defimaste.co
http://defimastr.com
http://defimeta30.com
http://defisrc.pro
http://defiyo.store
http://deg.baby
http://degnsa.com
http://degnsc.com
http://dejhq.com/1x9mH
http://dejhz.com/1x9mh
http://delaware905.giaying33.com/
http://delenzing.xyz
http://dem-americax.top
http://dem.global-expprade.com/#/
http://demo166.ness9999.com/
http://dentsu-1.com
http://dentsu-tw.cc
http://dentsu88.com
http://dentsu888.com
http://dentsu88888.com
http://dentsues.com
http://deposit.ktpoptuigonx.com
http://depthskins.com
http://dercte.com
http://derctex.net
http://derctnx.com
http://deribit.wland.top
http://dertdu.com
http://deskaq.com
http://deskef.com
http://deskjg.com
http://desksc.com
http://desksh.com
http://deskwa.com
http://deskzb.com
http://dew111.top
http://dew222.top
http://dew333.top
http://dew555.top
http://dew888.top
http://dewmiccs.com
http://dewootw.com
http://dewu.style
http://dewu.tw
http://dewu360.com
http://dewuco.com
http://dewulab.com
http://dewulife.com
http://dewumall.tw
http://dewupro.com
http://dewushopping.live
http://dewushopping.shop
http://dewushopping.store
http://dewushopping.tw
http://dewushops.com
http://dewustudio.com
http://dewustyle.com
http://dewutw.com
http://dewuweb.com
http://dex-dodo.com
http://dex-ls.com
http://dex-tradingx.lol
http://dex-tx.com
http://dex.cryptodexdifi.com
http://dex.dew168.top
http://dex222.top
http://dex5168.top
http://dex555.top
http://dex666.top
http://dexkje.com
http://dexminer1.com
http://dextraabd.com
http://dextradde-tw.com
http://dextrade-tw.com
http://dextrade.org
http://dextraduc.com
http://dextravs.com
http://dextravsi.com
http://dextravsiv.com
http://dextravsivp.com
http://dextraxg.com
http://dextrcme.com
http://dexveq.com
http://dexweb-defi.com
http://dexweb-defi.info
http://dexweb3-defi.net
http://dexweb3-defi.one
http://df.fff6.top
http://df01.dnf168168.com
http://df01.dnf168168.com/
http://df02.dnf168168.com
http://df03.dnf168168.com
http://df03.dnf168168.com/cust/games01
http://df06.dnf168168.com/
http://df13.dnf168168.dom
http://df136.xyz
http://df21.dnf168168.com
http://df29.dnf168168.com/
http://dfecs.sfhftg.com/28e0k
http://dffdsa.com
http://dfhq.cc
http://dfhxcssc.com
http://dfi-moneyah.com
http://dfimaste.com
http://dfmt5.net/page1
http://dfnpebau.buzz
http://dfoneusdt.com
http://dfrtge.ploesiw.store
http://dfrtge.ploesiw.xyz
http://dfrtge.ploexiw.com
http://dfsa.gfmm.asia/
http://dfsa.gfmm.asia/center/#/
http://dfsa.gfmm.world/
http://dfx.dcbc77.com
http://dfx111.top
http://dfx168.top
http://dfx268.top
http://dfx588.top
http://dfxghq.online
http://dfxn28v1rrap2.cloudfront.net
http://dfxn28v1rrap2.cloudfront.net/4b0lar
http://dg168a.com
http://dg168ce.com
http://dg168yy.com
http://dg18.cc
http://dgnew168.com
http://dgone.globaltrack.cc
http://dgone.pleroma.cc
http://dgone.pleroma.live
http://dh-twn.com
http://dh-tws.com
http://dh.mcgraw-best.com/
http://dh.pht8989.com
http://dh6.ink/mining-ETC
http://diaicasa.com/h5
http://diamond.mcgraw-best.com/
http://diamondindustryx.com
http://diamonds.capital/
http://diamondsrich.com
http://diaodl.xyz
http://did.lianfgold.com
http://diem16.xyz
http://diexant.com
http://difiming-max.pro
http://difimining-concept.com
http://difx03.cc
http://difx04.cc
http://difx05.cc
http://difx06.cc
http://difx07.cc
http://difx08.cc/difx08
http://difx08.cc/difxv08
http://difx10.cc
http://difx15.cc
http://difx16.cc
http://difxhh.cc
http://difxmm.cc
http://digainvest.com
http://digchain.world
http://digi-dexchange.buzz
http://digi-dexchange.xyz
http://digibytecode.com
http://digit.confluxdefii.com
http://digit.lotadefiaga.com
http://digit.lotadefiagd.com
http://digit.lotadefiagg.com
http://digit.lotadefiagj.com
http://digit.lotadefibgj.com
http://digital.hyhtml5.com/
http://digitaleano.com
http://digitaleapan.com
http://digitaleapen.com
http://digitaleaprem.com
http://digitrone.site
http://dii6bjp9sfnvo.cloudfront.net/3y6jxk
http://dimensionalaccount.com
http://dinghua-tw.com
http://dinghua-tws.com
http://dinghuas-tw.com
http://dinglitw.cc
http://dior27.cloudbk.net/
http://dipc0n.ffuture9.com
http://dips.kjxxos.vip
http://directedgeep.com/h5
http://dis.fa3mxiuw.com/a/ap/52qon0mui9wt/n/
http://disb.vip
http://disproportionsocket.com
http://distribute.aibiad.com/tdz.apk
http://diurg.yam55.com
http://diut.top
http://diut.top/
http://diversion1.xasiamclub.com
http://diversion1.xasiamclub.com/
http://diversion1.xasiamclub.com/CENTER/#/LOGIN
http://diversion1.xasiamclub.com/center/#/register
http://diversion1.xmasiatacific.com
http://diversion2.xasiamclub.com/
http://dj.coolkuai.qpon
http://djd0810.every0630.shop
http://djg375.com
http://djt.exfng.com/
http://dk42ol.sjxqzvv.cn
http://dkcmomo.com/af6g8ew
http://dkf.wokaai.com
http://dkhjbk.com
http://dkksg6.com
http://dkofiy.online
http://dkx.iqcinfor.com/
http://dl.apqca.top
http://dl.broa.top/?openExternalBrowser=1
http://dl.dpdld.top
http://dl.elfwo.top/?openExternalBrowser=1
http://dl.hlvfg.top/?openExternalBrowser=1
http://dl.hsdpb.top
http://dl.lclo.top
http://dl.lclo.top/?openExternalBrowser=1
http://dl.nzs127jn.com
http://dl.sjeifk.tw
http://dl.sswbg.top
http://dl.sswbg.top/?openExternalBrowser=1
http://dl.tnsiu3c.com
http://dl.tspkf.top
http://dl.uplnj.top
http://dl.vsihe.top
http://dlf-88.com
http://dlointl.com
http://dloshop.com
http://dlotrade.com
http://dls.zukjxx.cc
http://dlssp.xj1968.cn/
http://dlta.m68901.vip
http://dlx.rgztop.com/
http://dm.bestaby.com
http://dmmbitcoin.co
http://dmv4tading.com/
http://dn.gsjt668.com/6
http://dn.jrjys58.co.im/83
http://dnf8qp5ds93ne.cloudfront.net
http://dnf8qp5ds93ne.cloudfront.net/4hon7b
http://dobest.icrowntradecentertw.top
http://dobest.icrowntradetwcenter.top
http://dolo.bitfinex963.com/
http://dolo.ceex.su
http://dolo.dgfexok.com
http://dolo.ewweex.com
http://dolo.exnsdaq.com
http://dolo.ffexff.com
http://dolo.ffexfi.com
http://dolo.immxvip.com
http://dolo.nsaqdxe.com
http://dolo.nsdaqex.com
http://dolo.nsexdaq.com
http://dolo.wexxex.com
http://dolo.xensaqd.com
http://dome01.adk1688.net
http://dome03.adk1688.net/lottery
http://dome05.adk1688.net/
http://dome66.adk1688.net/
http://donchiprex.com
http://donnls.com
http://donorvlsiai.com
http://doo.boimile.com/
http://doo.trendcenterr.com/
http://dooprime.tw/
http://dooprimetw.com
http://dooprimetw.com/
http://doprimetw.com/
http://doublecoin.com.tw/
http://dow.fenfa.me/ssl
http://dowm.geminil.vip
http://down.121965.com/wkpcfu
http://down.21cnwork.top
http://down.500ib.com
http://down.anyinglobal.com
http://down.avabroker-tw.com
http://down.b2c2t.top
http://down.b2c2w.top
http://down.boniry.art
http://down.brrek.top
http://down.capitabot.com
http://down.changimb.com
http://down.ciopd.top
http://down.ciopd.top/?openExternalBrowser=1
http://down.digiezy.com
http://down.digitalassetv.com
http://down.douqibh.com
http://down.downios01.om/gJo1.app
http://down.downvipaccount.com
http://down.fandmicc.com
http://down.feiluoxi.com/
http://down.futurewallet.me/cn.html
http://down.ghjdfbd.com
http://down.globexcom.top
http://down.gscmicc.com
http://down.hcbmw.top
http://down.hcbmw.top/?openExternalBrowser=1
http://down.honglimocc.com
http://down.hzinsoo.com
http://down.igib.cc
http://down.ispied.cn/gkuvQ4
http://down.jxrsd.top
http://down.jxrsd.top/?openExternalBrowser=1
http://down.kkt2266.com
http://down.lhcmd.top
http://down.lme-gold.com
http://down.lme.world
http://down.moex.best
http://down.moex.shop
http://down.nbvxf.top
http://down.nbvxf.top/?openExternalBrowser=1
http://down.oookapp.com
http://down.qfged.top
http://down.qiaoanjin.com
http://down.qwerdd.com
http://down.qwerdd.com/PPex.app
http://down.rubvz.top
http://down.saxobeinvested3.com
http://down.secsilver.com
http://down.shopeeix.com
http://down.shopeeix.top
http://down.shopeev.com
http://down.shunjiuapp.top
http://down.sign233.com
http://down.solidsb.com/
http://down.tfghn.top
http://down.timcoi.com
http://down.tlpod.top
http://down.tlpod.top/?openExternlBrowser=1
http://down.ttwzpoap.top
http://down.twzpoapp.top
http://down.upholdex.beauty
http://down.upholdex.one
http://down.uzxnewapp.top
http://down.vipgemini.cyou
http://down.wipdr.com
http://down.wmc
http://down.ybujm.top
http://down.ylaid.top
http://down.ylaid.top/?openExternalBrowser=1
http://down.yucte.com
http://downas-hkex.s3.ap-east-1.amazonaws.com/index.html
http://downlaod.longwangguoji.com/
http://download.00888.tw
http://download.100exbtc.top
http://download.ace-ai.cc
http://download.amex-pros.net
http://download.anyingouji.com/
http://download.baoshigj.com/
http://download.bblcp.vip
http://download.begoniapro.net
http://download.bitex.ink
http://download.bitexs.ink
http://download.bitflyer66.xyz/
http://download.bithumb77.me/.api/appPO8HIH95KC7AYMPX
http://download.bithumb77.me/api/app/P08HIH95KC7AYMPX
http://download.bithumb77.me/api/app/PO8HIH95KC7AYMPX
http://download.bithumb77.xyz/api/app/ZOZKCGACIEH2UUBB
http://download.bithunb77.com/api/app/KOM8DSNYHD65YJIY
http://download.bnextex.net
http://download.cloudwirex.net
http://download.coinbasecnext.com
http://download.coinbasek.cc/1hy9ug
http://download.coinbaselpro.top/5lapan
http://download.coincheck66.xyz/api/app/D0437C7MC7QPT5FG
http://download.coininvest.live
http://download.dexin.life
http://download.ezdanex.org
http://download.fulong.asia
http://download.futurewallet.me/
http://download.goldcion.net
http://download.goldcion.net/
http://download.howwpc.com/indexHoward.html
http://download.jrycapp.com
http://download.kranken-pro.co
http://download.leegou.cc
http://download.mbtc.finance
http://download.mdkrncf.com/mt4
http://download.remltly.site
http://download.t123gabcr657.com
http://download.tsxpor.net
http://download.yexcloud.com
http://downloadbit.thegoodd.com/indexbit.html
http://downloadkhfnbc03.xyz/zOWqeftK.html
http://downloadomg.wheppc.com/
http://downloadpaybis.thegoodd.com/.indexpaybis.html
http://downs.qiaoanjin.com
http://dpapneins.cc/www
http://dpapneis.com
http://dpfktj.online
http://dragon.pictetky.com
http://dragon.pictetky.com/center/#/
http://dragon2017.com
http://dragon8888.win
http://dream-mall-shopggroup.com
http://dream-mallshop.online
http://dream-mallshopping.com
http://dream-shopglobalgroup.com
http://dream-shoping-mall.com
http://dream-shopmall.com
http://dream9.vip/page/index.html
http://dreamall-shop.com
http://dreamall-shop.online
http://dreamall-shoping.com
http://dreamangel.io/
http://dreambxn.com
http://dreamdte.com
http://dreammall-shop.com
http://dreammall-shop.online
http://dreammall-shopggroup.com
http://dreammallshopggroup.com
http://dreammallshopglobal.com
http://dreammallshopping.com
http://dreamshop-global.com
http://dreamshop-globalgroup.com
http://dreamshop-online.com
http://dreamshopglobal-group.com
http://dreamshopgroup.com
http://dreamshopingglobal.com
http://dreamshopingglobalgroup.com
http://dreamshopmallglobal.com
http://dreamshopmallgo.com
http://dreamshs.com
http://drill.mcgraw-best.com/?r=site/index
http://drx.gmefintech.com/login
http://drx.taudex.com
http://dry-technology.com
http://dry-technology.com/
http://ds.fbshap.xyz
http://ds.xsoqdxe.top
http://ds.yiwubbs.cn
http://ds5858.net
http://ds5858.net/
http://dsenglobal.com
http://dsffx.cn
http://dsfsdgdsh.com/Pc/Index/index.html
http://dsgj1188.com
http://dsgj168.com
http://dsgj168.top
http://dsgj1688.com
http://dsgj188.com
http://dsgj198.com
http://dsh.dgvttrx.com
http://dsjrhk.com/zh-hk/
http://dsk3.ds5858.net
http://dso-fx.com/#/
http://dsone.dfcinto.com/
http://dsp15.ds5858.net/
http://dsp16.ds5858.net
http://dsp16.ds5858.net/
http://dsr-walmart.xyz
http://dstfresdzasa.com
http://dstwmy.online
http://dsxgmy.online
http://dt03.zhyioc.com
http://dt2.forexsever.com/
http://dt2.forexsever.com/app/mt4.html
http://dt317.com/mert
http://dt789.top/
http://dtrich88.com
http://dtstw.cc
http://du.apemfur.top
http://du.apemfur.top/?openExternalBrowser=1
http://dunicorn.co
http://duo.alcoaiesr.com
http://dv.vv6666.xyz
http://dw.51zizhen.com/?id=vK2E
http://dw.al-fykj.com/s/0yeE
http://dw.amazonshop.work
http://dw.bestaby.com
http://dw.chilize.me
http://dw.dazdsp.com/
http://dwarecinmer.shop
http://dwinportfolio.com/page1
http://dwnz9qw80yivn.cloudfront.net/eei7p5z8
http://dwnz9qw80yivn.cloudfront.net/zf0fetu8
http://dws66.com
http://dwti.xyz/eapp_1130_1676131328
http://dx.886fareast.com
http://dx.886fareast.com/app/index.php?i=2&c=entry&m=ewei_shopv2&do=mobile
http://dx.mustafa.com
http://dx.mustafatw.com
http://dx.tw-fareast.com
http://dx.tw-mitsubishi.com
http://dx.twmitsukoshi.com
http://dx.twmustafa.com
http://dxm6886.com/
http://dxuke.com
http://dxx.dexkdc.com
http://dxymarket.com
http://dy.kj8w7et35r.com
http://dy.youtiao.info
http://dy.zhbamtw.com/
http://dy.zunsi.cn
http://dy125.xyz/
http://dya.baoyy.com/
http://dydx-vip-defi.com
http://dymstroeonline.com
http://dynamicrcdu.com
http://dyshangcheng.top
http://dyshbj.gshnds.top
http://e-digitsa.com
http://e-digitsc.com
http://e-digitsq.com
http://e-digitsw.com
http://e-digitsx.com
http://e.aucti.it.com
http://e.auctionshop.site
http://e.bay-maketing.com
http://e.bayoder.com
http://e.bittto.com
http://e.bittto.com/
http://e.co-finance.org
http://e.danawa.pro
http://e.ebcfinancetw.com
http://e.educm.it.com
http://e.jgp.it.com
http://e.jgptw.it.com
http://e.pha.it.com
http://e.sg-ex.org
http://e.tckrtw.com
http://e02.kadenx.com
http://e02.waytecies.com
http://e02.wayteciyes.com
http://e11.tigerking777.com
http://e688.liixin.com/login
http://e6fa.capitari.com/
http://e6fa.excch.com/
http://e6fa.qingming-tw.com/
http://e7301.htongtw.com
http://e7888.ddixf.com/
http://e7888.ddixf.com/_FrontEnd/index.aspx
http://e7888.le889.net
http://e78888.dfsj9.net
http://e8168.cmtt8.com
http://e8b8tlao.myhtau.com
http://e8fundingam.com
http://ea.eportal.npa.gov.tw/#/case/cases
http://ea.tmnkeof.com
http://eadestore.one
http://eagelgoldvip.org
http://eagle777.top/
http://eaisecurities.com.tw
http://earn.bydmeme.com
http://earner.fannasia.com/
http://earnphon.com
http://east-century.com/
http://eastsoldier.com
http://easymine7.com
http://easytok3.com
http://eazywallet.info
http://eba.topgold66.top/
http://ebangl.com
http://ebay-commerce.com
http://ebay-commerces.com
http://ebay-commercialer.com
http://ebay-globalwhsle.com
http://ebay-tw.life
http://ebay-uk.shop
http://ebay-whsle.com
http://ebay-whsles.com
http://ebaymallusa1.com
http://ebayonlines.shop
http://ebayus.top
http://ebcfinanaitw.com
http://ebcibe.com
http://ebcvumk.com
http://ebit.goodbitgreat.com
http://ec-shots.vip
http://ecacbwcxgvll.com
http://eccentral-int.com/zh-hant/
http://ecdhbk.com/
http://ecec05.ecoinget.com
http://ecec05.ecoinget.com/
http://ecec05.ecoinget.net/
http://ecnomic9.mscico.com
http://ecologcs.com
http://ecologky.com
http://ecologno.com
http://ecolognv.com
http://ecologob.com
http://ecologrf.com
http://ecologrs.com
http://ecologrw.com
http://ecologrz.com
http://ecologsb.com
http://ecologsk.com
http://ecologtn.com
http://ecologtu.com
http://ecologul.com
http://ecologuz.com
http://ecologyg.com
http://ecologyh.com
http://ecologyi.com
http://ecologyo.com
http://ecomx-tw.shop
http://economicsharing.mystrikingly.com
http://ed.bbva1999.co/login
http://ed.ntknrog.top
http://ed5013m.win666.us/Lobby
http://ed89797.tt23.life.cdn.cloudflare.net
http://edexlar011.tt23.life.cdn.cloudflare.net
http://edexlaron.tt23.life.cdn.cloudflare.net
http://edexlearin.tt23.life.cdn.cloudflare.net
http://edexlearn.u917.xyz.cdn.cloudflare.net
http://edextadre.cn10.life.cdn.cloudflare.net
http://edge.edgekd.com
http://edge.edgetwd.com
http://edge.edgetwi.com
http://edge.edgetws.com
http://edge.edgewb.com
http://edge.edgezl.com
http://edge.edgezn.com
http://edm.ones66.top
http://edringtonvip.com
http://edrt.biovexalrt.com
http://edt3000.com/
http://edx.fbctspc.cn.cdn.cloudflare.net
http://edx10202.tt23.life.cdn.cloudflare.net
http://edxm0lkjded.tt23.life.cdn.cloudflare.net
http://edxm10ed.tt23.life.cdn.cloudflare.net
http://edxm119ed.tt23.life.cdn.cloudflare.net
http://edxm190ed.tt23.life.cdn.cloudflare.net
http://edxm30ed.tt23.life.cdn.cloudflare.net
http://edxtrode.cc
http://edxtrode.tt23.life.cdn.cloudflare.net
http://eea.goldsstarr.com/login
http://eea.lubmile.com/login
http://eee.cowrr.com/
http://eee.gamccu.com
http://eee.kpcb99.com/
http://eee.siiua.com/
http://eeivitsha.com
http://eeivitsha.com/ejk2zv
http://eexmarket.cc
http://eexmarket.top
http://eexmarket.xyz
http://efaxgroup700.com/h5
http://efaxgroup900.com/h5
http://efm88.net
http://efplus.world
http://eftxhuangjin.xyz
http://egaex.com
http://egamax.com
http://egiokkde.top
http://egmforex.asia/
http://egmh28ft.wphie.com
http://egoamadgo.com
http://egtxry.7sme3u.com/dhzKN2
http://eh.xybeud.tw/appp990
http://ehgsnlticpi.top
http://eigerlord.intnforex.com
http://eightcap.ahead9.com
http://eightcap.etrades.info
http://eix.global-trademax.net
http://ej.y5btufj.com
http://ejftxxxb.top
http://ek.ktninek.top/h589023
http://ek.qinfjkt.tw/h5uiohcuee
http://el.apmrun.top/h589023
http://elb.genesbo.com
http://elf.alconaster.com
http://elfdcjj.com
http://elite.ffupure9.com
http://elite.ffuture9.com
http://elite.ffuture9.com/login
http://elite68.okx58.vip
http://eliteforeignexchange.smpstrades.com/
http://ellandroadcapital.me
http://elprofits.space
http://elufa.mginvestmentstw.net/
http://elulu8.siiua.com/
http://elwood-btc.store
http://em.neuirlg.tw
http://em.neuirlg.tw/?openExternalBrowser=1
http://em02.ddixf.com/
http://em02.ddixf.com/_FrontEnd/index.aspx
http://em04.dfint.net/_FrontEnd/index.aspx
http://emamskc.skin
http://embedded.mobileprovision
http://emkkjz5.ayr4.top
http://empowerde.com
http://empowerdf.com
http://empowerge.com
http://empowergf.com
http://empoxvc.com
http://en.bullionv.com
http://enbot.online/login
http://enbt.hlm28.com/home/login/login_index.html
http://end774.qoo9888.com/stock_k
http://energyaly.com
http://energyeb.com
http://energysysfod.com
http://energyzpe.com
http://england.golchange.com
http://england.goldnsa.com
http://ens-shopback3.top
http://ensgjsd.f-3-9.xyz.cdn.cloudflare.net
http://enter.spggames999.com
http://enterpc24.com/xjlusos
http://entony1491.webnode.tw/
http://environmentb.systemdlc.com
http://eouclub.com
http://ep.emngrk.top/h53shw
http://ep.euignrg.top/?openExternalBrowser=1
http://epoch-d.com
http://epoch-exchange.com
http://epochcoindex.online
http://epochcoindex.xyz
http://eqb.nexus-trade.xyz
http://equitradecl.com
http://equitynexakt.com
http://eqyrg.xyz
http://er.mcgraw-best.com/
http://er03.sarxd.com/
http://erc-mining.top/h5
http://erc.gmefintech.com/
http://erc1o.com
http://erchorrs.com
http://ert5.bxt66.com/store
http://ertredz.com
http://eru-walmart.xyz
http://eryc.mwixa.cloud
http://eryndaliospha.com
http://es.auctions.it.com
http://es.fuievip.com
http://es.kfcin.it.com
http://es.maxcoi.vip
http://es.maxi.it.com
http://es.portalhous.com
http://escbuyseller.com
http://esgexdh.site
http://esgexsdh.site/cn/index.html
http://espi.huizhirongli.top
http://estorilsapp.com
http://estwd.kcghd.com/login
http://esvviptk-online.cc
http://et07.yangde9.net/
http://et13.yangde9.net/page1
http://et6688.betexplc.com/
http://etb038.com
http://etber.bxanys.com
http://etber.bxanys.com/#/start
http://etber.qxanys.com
http://etber.txanys.com
http://etber.txanys.com/#/login
http://etber.txanys.com/#/start
http://etbit.crztpg.shop
http://etbiten.com
http://etc0-k.aliba8ais.com
http://etc0-k.shsiu.com
http://etc0-k.tsiax.com
http://etc0-k.waxisa.com
http://etcapitaltw.com/
http://etelonline.net
http://etf-biti.cc
http://etf-spcoin.com
http://etfcoins.vip
http://etftrade.com.tw
http://etftrade.info
http://etftradex.com
http://eth-06.com
http://eth-asic.net
http://eth-asic.net/#/
http://eth-coinbass.net
http://eth-coinsee.vip
http://eth-flow.me
http://eth-wintermute.cc
http://eth.coinpledge.top
http://eth0-k-x.eweia.com
http://eth4asia.com/
http://etharca.u2ct.com
http://ethbinanca.com
http://ethcoinmar.com
http://etheqeq.com
http://etheqew.com
http://ether-bk.biz
http://etherbk.io
http://etherbk.site
http://ethereum-operate.com
http://ethereum18miningarea.io
http://ethermine.vip
http://ethflow.me
http:
Download .txt
gitextract_33_j22ti/

├── .github/
│   ├── FUNDING.yml
│   ├── ISSUE_TEMPLATE/
│   │   ├── update filter.md
│   │   └── 清單更新請求.md
│   └── workflows/
│       └── tw165.yml
├── .gitignore
├── AutoBuild/
│   ├── build.sh
│   ├── builder.py
│   ├── nrdlist.py
│   ├── requirements.txt
│   ├── tw_165.py
│   ├── twnic_rpz.py
│   └── whitelist.py
├── LICENSE
├── PureView/
│   ├── news.txt
│   └── news_mobile.txt
├── README.en.md
├── README.md
├── Surge/
│   ├── biggo.sgmodule
│   ├── check_futadns.js
│   ├── check_futadns.sgmodule
│   ├── filters.txt
│   └── futadns.sgmodule
├── TW165.txt
├── TWNIC-RPZ.txt
├── experimental.txt
├── filter.txt
├── hosts.txt
└── nofarm.txt
Download .txt
SYMBOL INDEX (44 symbols across 4 files)

FILE: AutoBuild/builder.py
  class HEAD (line 38) | class HEAD:
  function is_valid_domain (line 56) | def is_valid_domain(hostname: str) -> bool:
  function strip_bang_comments (line 75) | def strip_bang_comments(text: str) -> str:
  function update_version (line 80) | def update_version(filename: str) -> str:
  function to_hosts (line 108) | async def to_hosts(filename: str, data: str, newversion: str):
  function to_abp (line 141) | async def to_abp(filename: str, data: str, newversion: str):
  function parse_url (line 171) | def parse_url(url: str) -> dict:
  function is_whitelisted_domain (line 205) | def is_whitelisted_domain(domain: str) -> bool:
  function to_pure_domain (line 216) | async def to_pure_domain(filename: str, data: str):
  function run (line 246) | async def run():

FILE: AutoBuild/nrdlist.py
  class Phase1 (line 20) | class Phase1:
    method __init__ (line 21) | def __init__(self):
    method fetch (line 27) | async def fetch(self, date: arrow.Arrow) -> bool:
    method run (line 49) | async def run(self):
  class Phase2 (line 59) | class Phase2:
    method __init__ (line 60) | def __init__(self):
    method fetch (line 66) | async def fetch(self):
    method run (line 85) | async def run(self):
  class Phase3 (line 89) | class Phase3:
    method __init__ (line 90) | def __init__(self):
    method fetch (line 96) | async def fetch(self):
    method run (line 114) | async def run(self):
  class Phase4 (line 125) | class Phase4:
    method __init__ (line 126) | def __init__(self):
    method fetch (line 132) | async def fetch(self):
    method run (line 143) | async def run(self):
  function write_files (line 154) | async def write_files(datalist: List[Dict[str, List[bytes]]]):
  function main (line 180) | async def main():

FILE: AutoBuild/tw_165.py
  class BaseContentParser (line 23) | class BaseContentParser(ABC):
    method normalize_url (line 27) | def normalize_url(raw: str) -> str | None:
    method extract (line 44) | def extract(self, payload: object) -> list[str]:
  class NPA165Parser (line 48) | class NPA165Parser(BaseContentParser):
    class _TableParser (line 51) | class _TableParser(HTMLParser):
      method __init__ (line 54) | def __init__(self) -> None:
      method handle_starttag (line 61) | def handle_starttag(self, tag, attrs):
      method handle_endtag (line 69) | def handle_endtag(self, tag):
      method handle_data (line 84) | def handle_data(self, data):
    method extract (line 88) | def extract(self, payload: object) -> list[str]:
  class TW165Collector (line 112) | class TW165Collector:
    method __init__ (line 115) | def __init__(self, sources: dict[str, type[BaseContentParser]]):
    method _fetch (line 118) | def _fetch(self, url: str) -> object | None:
    method collect (line 135) | def collect(self) -> list[str]:
  function main (line 162) | def main() -> None:

FILE: AutoBuild/twnic_rpz.py
  function main (line 11) | def main():
Condensed preview — 28 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (753K chars).
[
  {
    "path": ".github/FUNDING.yml",
    "chars": 686,
    "preview": "# These are supported funding model platforms\n\ngithub: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [u"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/update filter.md",
    "chars": 413,
    "preview": "---\nname: request to update filter\nabout: any suggest on filter(add, delete, modify)\ntitle: \"\\U0001F680  request to upda"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/清單更新請求.md",
    "chars": 238,
    "preview": "---\nname: 清單更新請求\nabout: 對現有清單進行建議(新增、刪除、更改)\ntitle: \"\\U0001F680  更新清單請求 (這裡貼上你的網域)\"\nlabels: 更新請求\nassignees: ''\n\n---\n\n## 現"
  },
  {
    "path": ".github/workflows/tw165.yml",
    "chars": 729,
    "preview": "name: TW165\n\non:\n  schedule:\n    - cron:  '0 0 * * *'\n  workflow_dispatch:\n\njobs:\n  update_165_data:\n    runs-on: ubuntu"
  },
  {
    "path": ".gitignore",
    "chars": 54,
    "preview": ".venv/\n.idea/\n**/target/\n.python-version\nnode_modules\n"
  },
  {
    "path": "AutoBuild/build.sh",
    "chars": 362,
    "preview": "#!/bin/bash\n\n# Get the first argument\narg=$1\n\n# Check the argument value\nif [ \"$arg\" == \"build\" ]; then\n    pip install "
  },
  {
    "path": "AutoBuild/builder.py",
    "chars": 10522,
    "preview": "import re\nfrom datetime import datetime, timedelta, timezone\nimport requests\nfrom glob import glob\nimport asyncio\nimport"
  },
  {
    "path": "AutoBuild/nrdlist.py",
    "chars": 6541,
    "preview": "import asyncio\nimport csv\nimport gzip\nimport logging\nimport os\nimport pathlib\nfrom base64 import b64encode\nfrom io impor"
  },
  {
    "path": "AutoBuild/requirements.txt",
    "chars": 292,
    "preview": "anyio==4.3.0\narrow==1.3.0\ncertifi==2023.7.22\ncharset-normalizer==2.1.1\ncssselect==1.2.0\nh11==0.14.0\nhttpcore==1.0.5\nhttp"
  },
  {
    "path": "AutoBuild/tw_165.py",
    "chars": 5939,
    "preview": "from __future__ import annotations\n\nimport os\nimport logging\nimport re\nfrom abc import ABC, abstractmethod\nfrom html.par"
  },
  {
    "path": "AutoBuild/twnic_rpz.py",
    "chars": 793,
    "preview": "import requests\nimport json\nimport logging\nfrom json.decoder import JSONDecodeError\nimport sys\nfrom typing import List\n\n"
  },
  {
    "path": "AutoBuild/whitelist.py",
    "chars": 66,
    "preview": "WHITELIST = [\n    \"google.com\",\n    \"line.me\",\n    \"apple.com\",\n]\n"
  },
  {
    "path": "LICENSE",
    "chars": 11337,
    "preview": "                                 Apache License\n                           Version 2.0, January 2004\n                   "
  },
  {
    "path": "PureView/news.txt",
    "chars": 14803,
    "preview": "! 中央社 CNA https://www.cna.com.tw\n\n! 首頁右側、文章列表右側、內文中:訂閱提醒\nwww.cna.com.tw#%#//scriptlet('set-cookie-reload', 'CnaCloseLang"
  },
  {
    "path": "PureView/news_mobile.txt",
    "chars": 10265,
    "preview": "!  三立新聞\nwww.setn.com##div[class=\"newsflashBox\"]\nwww.setn.com##div[class=\"right-area\"]\nwww.setn.com##div[id=\"coniBox\"]\nww"
  },
  {
    "path": "README.en.md",
    "chars": 1532,
    "preview": "# FutaFilter\r\nan advertisement blocking list specialized for Taiwanese users.\r\n\r\n## Chat Group\r\nHey, have any issue? \\\r\n"
  },
  {
    "path": "README.md",
    "chars": 3870,
    "preview": "# LowTechFilter(原 FutaFilter)\n\n一款專為臺灣人設計的廣告阻擋規則。\n\n## 為何叫做 LowTechFilter?\n\n這是致敬[美秀集團](https://streetvoice.com/bisiugroup/"
  },
  {
    "path": "Surge/biggo.sgmodule",
    "chars": 182,
    "preview": "#!name=BigGo 彈跳頁面\n#!desc=需開啟 Rewrite 跟 MITM。 v20210320\n#!system=ios\n\n[Header Rewrite]\n^https://biggo.com.tw header-add C"
  },
  {
    "path": "Surge/check_futadns.js",
    "chars": 723,
    "preview": "const { v4, v6 } = $network;\n\nlet errorMessage = {\n  title: 'FutaDNS',\n  content: '無已被設定的 FutaGuard DNS 伺服器',\n  icon: 'x"
  },
  {
    "path": "Surge/check_futadns.sgmodule",
    "chars": 311,
    "preview": "#!name=FutaDNS 檢查面板\n#!desc=顯示目前是否成功連上 FutaDNS。 v20211001\n#!system=ios\n\n[Panel]\nCheckFutaDNSPanel=title=\"\",content=\"\",sty"
  },
  {
    "path": "Surge/filters.txt",
    "chars": 4735,
    "preview": "#!name=FutaFilter\n#!desc=Make Futa Great Again! v20231207.01\n#!system=ios\n\n[Rule]\n#! Line 廣告\n#! 白名單\nURL-REGEX,^https:\\/\\"
  },
  {
    "path": "Surge/futadns.sgmodule",
    "chars": 97,
    "preview": "#!name=FutaDNS (futa.gg)\n#!desc=啟用 FutaDNS\n \n[General]\ndoh-server = https://doh.futa.gg/dns-query"
  },
  {
    "path": "TW165.txt",
    "chars": 612267,
    "preview": "http://0.ones66.top/m/nav\nhttp://0.ones66.xyz\nhttp://0.ones66.xyz/\nhttp://0115.yggaming.net\nhttp://0204net.com/\nhttp://0"
  },
  {
    "path": "TWNIC-RPZ.txt",
    "chars": 1477,
    "preview": "gimy.tv\ngimy.co\ngimy.to\n777tv.net\n778mov.com\nnonovod.com\nmomovod.cc\npttplay.tv\nf01.twtv0100.com\nf02.twtv0200.com\nf15.twt"
  },
  {
    "path": "experimental.txt",
    "chars": 1545,
    "preview": "! === 此為實驗性過濾清單 ===\n! === THIS IS AN EXPERIMENTAL FILTER ===\n! \n! Shopee.tw\n! https://github.com/FutaGuard/FutaFilter/is"
  },
  {
    "path": "filter.txt",
    "chars": 16570,
    "preview": "! ----------------------------------------------------------------------\nani.gamer.com.tw##a.vast-blocker\nshare.dmhy.org"
  },
  {
    "path": "hosts.txt",
    "chars": 11361,
    "preview": "! 白清單\n@@||ip2location.com^\n@@||fonts.gstatic.com^\n\n! hackmd 登入必要\n@@||quantserve.com^\n\n! 短網址\n@@||s.yam.com^\n@@||buff.ly^\n"
  },
  {
    "path": "nofarm.txt",
    "chars": 672,
    "preview": "366service.com\n7box.vip\napple01.cc\napple01.co\napple01.net\nbangqu.com\nbuzzhand.com\nbuzzhand.net\nbuzzhand.org\nbuzzworld.te"
  }
]

About this extraction

This page contains the full source code of the FutaGuard/LowTechFilter GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 28 files (701.5 KB), approximately 255.9k tokens, and a symbol index with 44 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!