├── .github └── workflows │ └── bestdeepl.yml ├── README.md ├── check.py ├── input.txt ├── success.txt └── success_result.txt /.github/workflows/bestdeepl.yml: -------------------------------------------------------------------------------- 1 | name: Search for bestdeepl 2 | 3 | on: 4 | schedule: 5 | - cron: '0 8 * * *' # 每天08:00运行 6 | workflow_dispatch: # 允许手动启动 7 | 8 | jobs: 9 | build: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - uses: actions/checkout@v2 14 | 15 | - name: Set up Python 3.8 16 | uses: actions/setup-python@v2 17 | with: 18 | python-version: 3.8 19 | 20 | - name: Install dependencies 21 | run: | 22 | python -m pip install --upgrade pip 23 | pip install aiohttp aiofiles 24 | 25 | - name: Run script 26 | run: | 27 | python check.py 28 | 29 | - name: Commit and push if it's different 30 | run: | 31 | git config --local user.email "${{ secrets.GIT_USER_EMAIL }}" 32 | git config --local user.name "${{ secrets.GIT_USER_NAME }}" 33 | git add -A 34 | git commit --allow-empty -m "Update success_result.txt" 35 | git push https://${{ secrets.GH_PAT }}:x-oauth-basic@github.com/${{ secrets.GIT_USER_NAME }}/serch_deeplx.git 36 | 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # serch_deeplx 2 | 3 | # 寻找合适可用的deeplx 4 | 5 | 本仓库包含一个使用 asyncio 和 aiohttp 发送异步 HTTP POST 请求并将成功的 URLs 保存到文件中的 Python 脚本。 6 | 7 | ## 如何使用 8 | 9 | 1. **Fork 仓库**:点击此页面右上角的 "Fork" 按钮,在你的 GitHub 账户中创建此仓库的副本。 10 | 11 | 2. **设置 Secrets**:导航到 fork 的仓库的 "Settings" 标签,然后点击 "Secrets"。添加以下 secrets: 12 | 13 | - `GIT_USER_EMAIL`:你的 GitHub 邮箱 14 | - `GIT_USER_NAME`:你的 GitHub 用户名 15 | - `GH_PAT`:你的 GitHub 个人访问令牌(PAT)。你可以在 GitHub 账户设置中生成 PAT。 16 | 17 | 3. **运行 Workflow**:Workflow 设置为每天在 00:00 自动运行。你也可以通过导航到 fork 的仓库的 "Actions" 标签,选择 workflow,然后点击 "Run workflow" 手动触发 workflow。 18 | 19 | 4. **查看结果**:Workflow 运行后,成功的 URLs 将保存在名为 `success_result.txt` 的文件中。 20 | -------------------------------------------------------------------------------- /check.py: -------------------------------------------------------------------------------- 1 | import asyncio 2 | import json 3 | import aiofiles 4 | from aiohttp import ClientSession, ClientTimeout 5 | import ssl 6 | 7 | # 定义缓冲区大小 8 | BUFFER_SIZE = 5 9 | 10 | async def check_url(session: ClientSession, url: str, max_retries=3): 11 | """ 12 | 检查 URL 并翻译文本 13 | :param session: aiohttp 会话 14 | :param url: 目标 URL 15 | :param max_retries: 最大重试次数 16 | :return: 元组 (URL, 响应 JSON) 17 | """ 18 | payload = json.dumps({ 19 | "text": "hello world", 20 | "source_lang": "EN", 21 | "target_lang": "ZH" 22 | }) 23 | headers = { 24 | 'Content-Type': 'application/json' 25 | } 26 | 27 | ssl_context = ssl.create_default_context() 28 | ssl_context.check_hostname = False 29 | ssl_context.verify_mode = ssl.CERT_NONE 30 | 31 | for attempt in range(1, max_retries + 1): 32 | try: 33 | requests_url = url + "/translate" 34 | async with session.post(requests_url, headers=headers, data=payload, ssl=ssl_context) as response: 35 | response.raise_for_status() 36 | response_json = await response.json() 37 | print(url, response_json) 38 | return url, response_json 39 | except Exception as e: 40 | print(f"Error for URL {url} (Attempt {attempt}/{max_retries}): {e}") 41 | if attempt < max_retries: 42 | await asyncio.sleep(1) 43 | 44 | print(f"All {max_retries} attempts failed. Defaulting to failure.") 45 | return url, {'code': None, 'data': None} 46 | 47 | async def process_urls(input_file, success_file): 48 | """ 49 | 处理输入 URL 列表,翻译文本并写入成功文件 50 | :param input_file: 输入文件 51 | :param success_file: 成功文件 52 | """ 53 | unique_urls = set() 54 | buffer = [] 55 | 56 | try: 57 | # 从成功文件中读取已处理过的 URL 58 | with open(success_file, 'r') as existing_file: 59 | existing_urls = {line.strip() for line in existing_file} 60 | unique_urls.update(existing_urls) 61 | except FileNotFoundError: 62 | pass 63 | 64 | with open(input_file, 'r') as file: 65 | urls = [line.strip() for line in file.readlines()] 66 | 67 | timeout = ClientTimeout(total=5) # 5 秒超时时间 68 | async with ClientSession(timeout=timeout) as session: 69 | tasks = [check_url(session, url) for url in urls] 70 | for future in asyncio.as_completed(tasks): 71 | try: 72 | url, result = await future 73 | if url not in unique_urls and result.get('code') == 200 and '世界' in result.get('data', ''): 74 | buffer.append(url) 75 | unique_urls.add(url) 76 | if len(buffer) >= BUFFER_SIZE: 77 | # 写入成功文件 78 | async with aiofiles.open(success_file, 'a') as valid_file: 79 | await valid_file.write('\n'.join(buffer) + '\n') 80 | buffer = [] 81 | except Exception as exc: 82 | print('%r generated an exception: %s' % (url, exc)) 83 | 84 | if buffer: 85 | # 写入成功文件 86 | async with aiofiles.open(success_file, 'a') as valid_file: 87 | await valid_file.write('\n'.join(buffer) + '\n') 88 | 89 | def list_file(input_file, output_file): 90 | """ 91 | 将输入文件中的 URL 按行写入输出文件 92 | :param input_file: 输入文件 93 | :param output_file: 输出文件 94 | """ 95 | with open(input_file, 'r') as input_file_content: 96 | lines = input_file_content.readlines() 97 | 98 | flattened_lines = ','.join(line.strip() for line in lines) 99 | 100 | with open(output_file, 'w') as result_file: 101 | result_file.write(flattened_lines) 102 | 103 | asyncio.run(process_urls('input.txt', 'success.txt')) 104 | list_file('success.txt', 'success_result.txt') 105 | 106 | print("all done") 107 | -------------------------------------------------------------------------------- /input.txt: -------------------------------------------------------------------------------- 1 | http://deeplx.jimsdeng.eu.org 2 | https://deepl.kevinzhang.cn 3 | https://deepl.arthals.ink 4 | http://120.26.116.45:1188 5 | http://58.219.74.154:1188 6 | http://deepl.kevinzhang.cn 7 | http://38.148.254.10:1188 8 | http://168.138.161.222:1188 9 | https://deeplx.spaceq.xyz 10 | http://101.35.129.85:29999 11 | http://62.106.70.227:1188 12 | http://154.18.161.26:443 13 | http://150.230.46.11:1188 14 | http://45.125.18.25:1188 15 | http://107.172.90.242:1188 16 | http://deeplx.oneapi-free.ru 17 | http://38.49.46.130:1188 18 | http://43.134.3.101:1188 19 | http://46.8.19.173:1188 20 | http://59.35.154.192:1188 21 | http://158.180.64.131:1188 22 | http://39.106.40.10:1188 23 | http://43.143.198.166:1188 24 | http://43.242.201.122:6543 25 | http://141.147.88.150:1188 26 | https://172.207.72.86 27 | http://124.222.168.113:1188 28 | http://43.143.240.2:1188 29 | http://104.244.90.75 30 | http://114.132.74.10:1188 31 | http://74.48.17.203:1188 32 | http://5.252.226.8:1188 33 | http://107.174.88.163:1188 34 | https://deepl.imyrs.net 35 | http://8.222.213.133:1188 36 | http://43.130.10.231:1188 37 | http://116.23.76.92:1188 38 | http://182.42.127.225:1188 39 | http://142.171.218.100:1188 40 | http://138.2.93.56:1188 41 | http://148.135.107.108:1188 42 | http://37.128.252.65:3001 43 | http://23.94.223.217:1188 44 | http://45.63.22.158:1188 45 | http://172.245.168.214:32768 46 | https://deeplx.keyrotate.com 47 | http://165.154.203.71:1188 48 | http://74.48.52.216:1188 49 | http://47.236.38.78:1188 50 | https://142.171.166.63 51 | http://209.141.41.59:1188 52 | http://123.146.80.70:1188 53 | http://120.78.15.169:1188 54 | http://89.208.240.50:443 55 | http://212.50.251.135:7788 56 | https://dx.ift.lat 57 | http://170.64.190.34:1188 58 | http://81.70.207.129:1188 59 | http://38.6.175.127:1188 60 | http://47.109.66.176:1188 61 | http://122.152.221.70:1188 62 | http://43.154.124.164:1188 63 | http://18.142.80.110:1188 64 | http://23.94.104.174:1188 65 | http://124.70.23.8:1188 66 | http://139.159.254.35:1188 67 | https://deeplx.qiud.org 68 | http://158.247.197.25:1188 69 | http://deeplxapi.idawn.cc 70 | http://8.134.151.104:1188 71 | https://deepl.coloo.org 72 | http://47.92.227.110:1188 73 | http://146.56.111.178:1188 74 | http://157.90.115.116:1188 75 | http://8.134.198.234:1188 76 | http://81.68.213.45:8910 77 | http://112.193.113.149:9527 78 | http://120.77.245.55:1188 79 | http://82.156.36.11:1188 80 | http://79.137.205.255:1188 81 | https://deepx.dumpit.top 82 | http://194.233.71.122:1188 83 | http://69.30.241.226:1188 84 | http://103.163.186.90:1188 85 | http://168.138.34.126:1188 86 | https://deeplx.imward.dev 87 | http://www.gptspt.cn 88 | http://159.75.106.192:10000 89 | https://deeplx.izual.me 90 | http://192.210.142.53:1188 91 | http://113.119.8.165:8040 92 | http://38.47.108.150:1188 93 | http://117.50.162.145:1188 94 | http://37.123.193.136:1188 95 | http://150.230.108.185:1188 96 | http://101.133.228.48:1188 97 | http://81.70.94.105:1188 98 | http://142.171.224.118:1188 99 | http://13.250.120.132:1188 100 | http://101.43.11.30:9188 101 | http://38.175.193.59:1188 102 | http://deepx.api.neix.in 103 | http://47.107.109.131:1188 104 | http://120.55.189.173:1188 105 | http://8.134.102.70:1188 106 | http://47.103.194.159:1188 107 | http://97.64.21.50 108 | https://dlx.bitjss.com 109 | http://103.79.118.210:1188 110 | http://107.172.103.49:1188 111 | http://144.24.84.231:1188 112 | http://35.220.175.223:1188 113 | https://deepx.api.neix.in 114 | http://43.156.58.228:1188 115 | https://deeplx.he-sb.top 116 | http://43.132.160.253:1188 117 | http://47.242.206.190:1188 118 | http://181.215.6.249:1188 119 | http://103.117.103.14:1188 120 | https://xyzlab.mmyy.fun 121 | http://101.35.42.207:1188 122 | http://8.137.104.162:8020 123 | http://58.87.104.110:1188 124 | http://43.142.54.240 125 | http://51.81.210.63:1188 126 | https://74.48.173.163 127 | http://74.48.202.105:8082 128 | https://147.45.189.95 129 | http://97.64.21.50:443 130 | http://107.175.28.34:1188 131 | http://deeplx.nnk.im 132 | http://107.173.255.75:7788 133 | http://43.139.218.213:1188 134 | https://translate.dftianyi.com 135 | http://142.171.224.10:1188 136 | http://37.60.246.38:1188 137 | http://124.220.101.194:1188 138 | http://158.101.157.53:1188 139 | http://194.39.205.17:1188 140 | http://38.47.125.228:1188 141 | http://1.117.17.227:1188 142 | http://deeplx.mmyy.fun 143 | http://h.hony-wen.com:1188 144 | http://207.148.127.142:1188 145 | http://23.94.25.145:1188 146 | http://23.94.122.132:1188 147 | https://38.49.46.35 148 | http://8.130.123.166:1188 149 | http://101.201.151.226:1188 150 | http://104.168.169.96:1188 151 | http://49.232.185.166:443 152 | https://deepl.zhaosaipo.com 153 | http://aitest.pylogic.net 154 | http://103.247.28.212:1188 155 | http://116.231.112.27:1188 156 | http://47.76.92.38:1188 157 | http://175.178.237.179:1188 158 | http://61.224.93.19:1198 159 | http://39.100.95.114:1188 160 | http://107.150.100.170:8880 161 | http://107.172.234.71:1188 162 | http://101.42.160.235:1188 163 | http://52.140.204.252:1188 164 | http://101.35.115.171:1188 165 | http://1.14.71.133:1188 166 | http://43.133.184.109:1188 167 | http://141.11.139.98:1188 168 | http://88.151.33.155:8006 169 | http://107.172.137.246:1188 170 | http://47.243.57.229:1188 171 | http://124.71.99.68:1188 172 | http://16.163.29.52:12295 173 | http://37.123.192.81:1188 174 | http://116.203.83.80:1188 175 | http://47.109.24.174:1188 176 | http://150.230.32.50:1188 177 | http://107.174.255.56:1188 178 | http://deeplx.eallion.com 179 | http://120.55.63.151:1188 180 | http://132.226.232.50:1188 181 | http://183.173.18.157:1188 182 | http://52.53.156.237:1188 183 | http://42.192.93.139:10003 184 | http://shaw.mmyy.fun 185 | http://220.192.163.202:1188 186 | https://142.171.13.56 187 | http://223.240.172.245:1188 188 | http://47.120.42.220:1188 189 | http://150.158.45.100:1188 190 | https://deepl.mukapp.top 191 | http://1.12.45.103:1188 192 | https://deeplxapi.x7ys.com 193 | http://152.67.206.130:1188 194 | http://116.62.112.61:1188 195 | http://45.147.51.155:1188 196 | http://120.46.95.125:1188 197 | http://60.178.80.24:1188 198 | http://142.93.186.24:1188 199 | http://101.43.121.92:9008 200 | https://deepl.wuyongx.uk 201 | http://47.76.126.155:1188 202 | http://112.68.46.49:30002 203 | http://123.56.13.17:1188 204 | http://113.89.232.208:1188 205 | http://185.106.209.123:1188 206 | https://zoom.geshandi.app 207 | http://106.14.139.26:1188 208 | http://47.109.98.57:1188 209 | http://dx.ift.lat 210 | https://deeplx.iloli.love 211 | http://162.55.35.20:1188 212 | http://148.135.51.114:1188 213 | http://8.130.121.171:1188 214 | http://deeplx.willbon.top 215 | http://120.76.140.44:1188 216 | http://159.75.240.245:1188 217 | http://213.35.115.52:1188 218 | http://47.243.28.163:1188 219 | http://120.76.97.56:1188 220 | http://124.71.191.52:1188 221 | http://45.152.67.153:1188 222 | http://121.43.165.38:1188 223 | http://158.178.243.88:8811 224 | https://8.210.6.88 225 | http://45.33.120.170:1188 226 | http://104.160.19.60:8000 227 | http://104.208.71.189:1188 228 | http://42.193.219.103:1188 229 | http://47.116.37.52:1188 230 | http://142.171.198.78:1188 231 | http://20.89.43.13:1188 232 | http://74.48.183.216:8082 233 | http://142.171.199.125:1188 234 | https://150.158.96.53:3006 235 | https://46.3.104.72 236 | http://47.109.111.122:1188 237 | http://118.89.199.180 238 | http://43.156.126.153:1188 239 | https://jessica.mmyy.fun 240 | https://deepl.dlwlrma.xyz 241 | https://104.244.90.75 242 | http://193.32.149.239:1188 243 | https://97.64.21.50 244 | http://136.243.156.121:8900 245 | http://39.105.97.161:1188 246 | http://146.56.181.140:9997 247 | http://101.42.227.165:1188 248 | http://104.214.145.200:1188 249 | http://172.245.131.60:8081 250 | http://43.143.233.18:1188 251 | http://38.207.175.96:8082 252 | http://deepl.imyrs.net 253 | http://195.245.242.19:1188 254 | http://165.154.5.156:1188 255 | http://18.157.122.228:1188 256 | http://38.47.100.106:1188 257 | http://deeplx.666666.dev 258 | http://198.46.215.119:1188 259 | https://deepl.19921130.xyz:3344 260 | http://132.145.93.176:1188 261 | http://106.14.17.223:1188 262 | http://107.148.15.211:1188 263 | http://106.14.72.237:1188 264 | http://43.134.189.147:1188 265 | http://59.42.159.79:1188 266 | http://119.28.13.127:1188 267 | https://206.237.2.218 268 | http://123.116.149.203:1188 269 | http://103.247.28.143:1188 270 | https://134.175.134.36 271 | https://deeplx.nnk.im 272 | http://117.84.103.208:1188 273 | http://47.107.100.134:1188 274 | https://deeplx.vercel.app 275 | https://dxn.ift.lat 276 | https://geshandi.app 277 | http://121.43.36.212:1188 278 | http://148.135.124.106:1188 279 | http://deeplx.qninq.cn 280 | http://8.142.90.128:1188 281 | http://67.60.182.34:51004 282 | http://89.117.172.208:1188 283 | https://dxn.mmyy.fun 284 | http://107.172.87.53:1188 285 | http://129.146.98.200:1188 286 | http://104.168.43.152:1188 287 | https://154.18.161.26 288 | http://192.210.196.117:1188 289 | http://106.15.89.0:7001 290 | https://aitest.pylogic.net 291 | http://16.163.29.52:12293 292 | http://150.230.254.8:9033 293 | http://176.126.114.231:1188 294 | http://124.222.158.199:1188 295 | http://103.200.30.119:1188 296 | http://47.236.22.51:1188 297 | http://15.228.190.225:12294 298 | http://180.174.24.18:1188 299 | https://www.geshandi.app 300 | https://49.232.185.166 301 | http://194.87.252.161:1188 302 | http://146.190.200.191:1188 303 | http://39.107.101.134:1188 304 | http://82.156.183.23:6000 305 | http://138.2.123.154:1188 306 | http://180.113.21.246:1188 307 | http://168.138.214.221:1188 308 | https://119.28.184.64 309 | http://142.171.225.251:1188 310 | http://101.35.175.93:1188 311 | http://59.42.159.38:1188 312 | http://107.189.1.3:1188 313 | http://124.223.210.72:1188 314 | http://gptspt.cn 315 | http://154.40.45.116:2000 316 | http://124.221.198.187:1188 317 | http://42.98.172.229:1188 318 | https://dx-api.nosec.link 319 | http://146.56.97.135:1188 320 | http://47.119.172.46:1188 321 | http://deeplx.qiud.org 322 | http://139.99.66.128:1188 323 | https://deepl.aimoyu.tech 324 | http://deeplx.server7.ziqiang.net.cn 325 | http://173.249.206.50:7018 326 | http://45.77.87.165:1188 327 | https://deepx.dysoft.site 328 | http://154.40.56.85:1188 329 | http://146.235.18.76:9090 330 | http://154.7.183.101:8848 331 | https://103.213.245.125 332 | https://156.251.183.173 333 | https://deeplx.server7.ziqiang.net.cn 334 | http://140.82.17.122:1188 335 | http://144.24.94.118:1188 336 | http://39.101.74.119:1188 337 | https://deeplx.willbon.top 338 | http://119.91.23.165:1188 339 | http://120.78.82.181:1188 340 | http://74.48.170.227:1188 341 | https://deeplx.eallion.com 342 | http://111.231.53.79:1188 343 | http://47.102.106.172:1188 344 | https://deepl.degbug.top 345 | http://47.76.48.116:1188 346 | http://192.9.142.50:1188 347 | http://148.135.73.241:1188 348 | http://114.55.7.143:1188 349 | https://api.deeplx.org 350 | http://20.89.253.28 351 | http://1.15.1.159:8181 352 | http://142.171.3.185:1188 353 | https://shaw.mmyy.fun 354 | http://104.168.22.220:1188 355 | http://121.41.99.203:1188 356 | http://134.175.134.36:443 357 | https://deepl.tr1ck.cn 358 | http://82.115.31.88:10000 359 | https://89.208.246.6 360 | https://ghhosa.zzaning.com 361 | http://175.178.54.19:1188 362 | http://42.194.148.47:1188 363 | http://129.153.211.93:1188 364 | http://158.178.247.83:1188 365 | http://54.64.224.232:1188 366 | http://146.56.111.210:1188 367 | http://129.153.73.237:1188 368 | https://deeplx.ychinfo.com 369 | http://152.67.211.94:1188 370 | http://101.133.141.24:8188 371 | http://49.235.73.101:1188 372 | http://142.171.218.120:8000 373 | http://deepl.wuyongx.uk 374 | http://101.43.76.234:1188 375 | http://124.156.145.172 376 | http://111.230.59.56:1188 377 | http://167.99.24.220:1188 378 | http://43.132.236.41 379 | http://64.112.42.240:1188 380 | http://45.94.43.74:8082 381 | http://116.252.28.28:1188 382 | http://ssk.wiki:1188 383 | http://89.208.240.50 384 | http://34.127.28.244:5456 385 | http://119.28.32.110:1188 386 | http://119.91.152.74:1188 387 | http://deeplxapi.x7ys.com 388 | http://deeplx-api.2.hhtjim.com 389 | http://8.210.101.225:1188 390 | http://153.36.242.81:10030 391 | http://103.158.190.203:4321 392 | https://124.156.145.172 393 | http://dx.mmyy.fun 394 | http://78.46.77.158:1188 395 | http://119.28.184.64 396 | http://222.69.212.47:1188 397 | http://182.150.116.147:1188 398 | http://120.46.163.33:1188 399 | http://1.12.243.147:1188 400 | http://190.92.242.194:1188 401 | http://43.155.174.62:1188 402 | http://23.172.40.177:8000 403 | http://8.142.134.155:1188 404 | http://47.119.24.34:1188 405 | https://deeplx.mmyy.fun 406 | http://123.60.157.70:8085 407 | http://154.23.244.83:1188 408 | http://182.148.64.26:1188 409 | http://109.206.245.73:1188 410 | http://104.234.60.178:1188 411 | http://34.97.37.189:1188 412 | http://117.50.183.46:1188 413 | http://106.14.104.93:1188 414 | http://38.6.223.102:1188 415 | http://38.47.98.127:1188 416 | http://39.105.60.208:1188 417 | http://192.210.143.151:1188 418 | http://138.2.124.103:1188 419 | http://51.222.13.40:1188 420 | http://148.135.70.165:1188 421 | http://152.69.180.143:1188 422 | http://8.130.41.212:1188 423 | http://150.230.46.11:8089 424 | http://110.42.225.114:1988 425 | http://47.76.166.74:3232 426 | http://141.11.139.95:1188 427 | https://deeplx.qninq.cn 428 | http://154.201.92.33:1000 429 | http://156.251.183.173:443 430 | http://119.3.6.116:1188 431 | http://146.56.49.67:1188 432 | http://139.224.225.116:1188 433 | https://deeplx.zeabur.app 434 | http://222.90.149.188:1188 435 | http://194.104.146.32:1188 436 | http://148.135.61.236:1188 437 | http://43.138.215.164:1188 438 | http://43.154.208.219:1188 439 | http://106.14.155.58:18019 440 | http://146.56.165.8:1188 441 | http://15.228.190.225:12296 442 | http://165.227.18.166:1188 443 | http://155.248.177.131:1188 444 | http://45.94.43.74:8081 445 | https://dx.mmyy.fun 446 | http://192.227.249.132:1188 447 | http://132.226.122.80:1188 448 | http://155.248.187.32:1188 449 | http://154.18.161.26 450 | http://152.70.126.168:802 451 | http://142.171.26.166:1010 452 | http://192.9.145.2:1188 453 | http://134.175.134.36 454 | http://141.11.90.131:1188 455 | http://168.138.161.149:1188 456 | http://106.15.191.200:3001 457 | http://138.2.11.53:1188 458 | http://148.135.58.49:1188 459 | http://43.134.250.154:1188 460 | http://221.157.145.133:1188 461 | http://142.171.74.214:1188 462 | http://deeplx.iloli.love 463 | http://150.230.46.219:8136 464 | http://82.157.137.187:1188 465 | http://107.175.28.239:1188 466 | http://185.232.71.45:9100 467 | http://37.27.111.207:1188 468 | http://8.222.185.96:1188 469 | http://49.233.41.73:1188 470 | http://61.224.64.13:1198 471 | http://119.23.222.28 472 | http://152.67.113.25:2086 473 | http://101.43.16.48:1188 474 | http://62.234.31.163:19888 475 | http://142.171.74.55:1188 476 | http://101.133.234.93:1188 477 | https://deepl.yuwentian.com 478 | http://www1.0860523.top:1188 479 | http://148.135.62.170:1188 480 | http://195.154.184.125:1188 481 | https://60.205.184.1:8001 482 | http://193.32.151.19:1188 483 | http://148.135.106.166:1188 484 | http://20.205.96.238:1188 485 | http://89.208.246.6:443 486 | http://136.243.156.104:8900 487 | http://114.220.69.98:1188 488 | http://107.173.147.42:1188 489 | http://142.171.12.29:1188 490 | http://150.158.80.45:6009 491 | https://deeplx-api.2.hhtjim.com 492 | http://43.139.108.188:1188 493 | http://150.230.200.159:1188 494 | http://118.89.199.180:80 495 | http://110.42.235.245:8811 496 | http://141.98.197.109:1188 497 | http://74.48.19.200:1188 498 | http://deepl.arthals.ink 499 | https://deeplx.6696699.xyz 500 | http://222.90.149.175:1188 501 | http://172.104.83.81:1188 502 | http://124.223.85.170:1188 503 | http://132.145.80.159:1188 504 | http://124.222.172.250:1188 505 | http://8.140.203.210:1188 506 | http://192.3.235.80:1188 507 | http://34.127.80.91:7777 508 | http://182.148.66.215:1188 509 | http://120.79.93.103:1188 510 | http://82.115.31.88:10001 511 | https://deepl.d0zingcat.xyz 512 | https://deeplx.oneapi-free.ru 513 | https://bvhk.sftp.nxnow.top 514 | https://deeplx.666666.dev 515 | http://1.14.104.243:444 516 | http://8.130.135.21:1188 517 | http://43.134.183.35:1188 518 | http://43.154.149.111:7788 519 | http://45.145.72.29:1188 520 | http://222.67.176.225:1188 521 | https://138.2.233.124 522 | http://74.48.191.213:8081 523 | http://74.48.163.250:1188 524 | http://141.147.151.154:1188 525 | http://121.43.134.47:1188 526 | http://139.224.191.20:1188 527 | http://120.76.141.173:1188 528 | http://dxn.mmyy.fun 529 | http://123.57.16.233:1188 530 | http://translate.lin1.cf 531 | http://8.134.102.70 532 | http://152.67.197.197:443 533 | https://59.174.227.48:1024 534 | http://148.135.98.234:1188 535 | http://209.141.49.210:1188 536 | http://38.6.176.90:1024 537 | http://107.172.8.146:1188 538 | http://jessica.mmyy.fun 539 | http://101.43.224.133:1188 540 | http://124.221.10.163:1188 541 | http://deepl.tr1ck.cn 542 | http://149.104.27.140:1188 543 | http://138.68.240.43:1188 544 | http://142.171.166.63 545 | http://139.159.242.136:1188 546 | http://16.163.29.52:12294 547 | http://45.143.234.207:1188 548 | http://zoom.geshandi.app 549 | http://103.114.163.230:1188 550 | http://52.194.218.139:1188 551 | https://e.nxnow.top 552 | https://gpay.eu.org 553 | http://157.245.192.219:1188 554 | http://20.78.88.65:1188 555 | http://59.110.34.163:85 556 | http://203.25.119.208:1188 557 | http://157.254.178.123:9000 558 | http://211.227.72.101:1188 559 | http://43.138.46.231:1188 560 | http://8.138.111.57:1188 561 | http://142.171.77.219:1188 562 | http://142.171.59.190:1188 563 | http://129.146.218.104 564 | http://dxn.ift.lat 565 | http://37.123.196.26:1188 566 | http://202.81.237.189:1188 567 | http://xyzlab.mmyy.fun 568 | http://146.56.111.132:8180 569 | http://101.201.38.103:1188 570 | http://101.43.100.100:1188 571 | http://138.2.95.93:1188 572 | https://89.208.240.50 573 | http://142.171.13.56 574 | http://20.89.155.182:1188 575 | http://13.213.64.250:1188 576 | http://152.67.213.75:1188 577 | http://18.183.159.207:1188 578 | http://103.152.35.2:1188 579 | http://192.9.147.173:1188 580 | http://148.135.81.210:1188 581 | http://42.192.21.116:1188 582 | http://deeplx.izual.me 583 | http://82.157.49.14:1188 584 | http://23.94.25.208:1188 585 | https://deeplx.papercar.top 586 | http://95.164.86.107:1188 587 | http://74.48.137.170:1188 588 | https://152.67.197.197 589 | https://23.94.43.247 590 | http://8.131.60.61:1188 591 | http://59.110.162.193:1188 592 | http://107.173.186.30:1188 593 | http://129.146.17.238:9009 594 | http://101.33.251.73:2000 595 | http://45.91.81.39:1188 596 | http://129.146.241.124:1188 597 | -------------------------------------------------------------------------------- /success.txt: -------------------------------------------------------------------------------- 1 | https://deeplx.vercel.app 2 | https://deeplx.papercar.top 3 | https://dlx.bitjss.com 4 | https://deeplx.ychinfo.com 5 | http://82.156.183.23:6000 6 | http://20.89.253.28 7 | http://152.70.126.168:802 8 | http://150.230.46.11:8089 9 | http://deepl.wuyongx.uk 10 | http://106.15.89.0:7001 11 | http://74.48.183.216:8082 12 | http://45.94.43.74:8082 13 | http://110.42.235.245:8811 14 | http://154.40.45.116:2000 15 | https://deepl.dlwlrma.xyz 16 | https://deeplx.spaceq.xyz 17 | https://dx-api.nosec.link 18 | https://deepl.coloo.org 19 | https://dx.ift.lat 20 | https://translate.dftianyi.com 21 | https://deeplx.keyrotate.com 22 | https://ghhosa.zzaning.com 23 | https://deepx.dumpit.top 24 | https://deepl.wuyongx.uk 25 | http://107.150.100.170:8880 26 | https://deepl.zhaosaipo.com 27 | https://deepl.aimoyu.tech 28 | https://deeplx.imward.dev 29 | https://deepl.tr1ck.cn 30 | https://deeplx.he-sb.top 31 | https://gpay.eu.org 32 | http://107.173.186.30:1188 33 | http://195.154.184.125:1188 34 | http://157.90.115.116:1188 35 | http://45.33.120.170:1188 36 | http://38.6.176.90:1024 37 | http://45.147.51.155:1188 38 | http://46.8.19.173:1188 39 | http://51.81.210.63:1188 40 | http://138.68.240.43:1188 41 | http://176.126.114.231:1188 42 | http://142.171.3.185:1188 43 | http://62.106.70.227:1188 44 | http://54.64.224.232:1188 45 | http://38.148.254.10:1188 46 | http://103.158.190.203:4321 47 | http://18.142.80.110:1188 48 | http://119.28.13.127:1188 49 | http://207.148.127.142:1188 50 | http://146.56.165.8:1188 51 | http://132.145.93.176:1188 52 | http://138.2.123.154:1188 53 | http://132.226.232.50:1188 54 | http://103.152.35.2:1188 55 | http://132.145.80.159:1188 56 | http://38.47.100.106:1188 57 | http://202.81.237.189:1188 58 | http://170.64.190.34:1188 59 | http://209.141.41.59:1188 60 | http://35.220.175.223:1188 61 | http://165.154.203.71:1188 62 | http://120.46.95.125:1188 63 | http://152.69.180.143:1188 64 | http://203.25.119.208:1188 65 | http://42.192.93.139:10003 66 | http://122.152.221.70:1188 67 | http://47.236.22.51:1188 68 | http://101.35.115.171:1188 69 | http://119.91.152.74:1188 70 | http://123.60.157.70:8085 71 | http://58.87.104.110:1188 72 | http://43.139.218.213:1188 73 | http://82.157.137.187:1188 74 | http://82.156.36.11:1188 75 | http://1.12.243.147:1188 76 | http://8.130.121.171:1188 77 | http://175.178.237.179:1188 78 | http://106.14.104.93:1188 79 | http://117.50.183.46:1188 80 | http://82.157.49.14:1188 81 | http://190.92.242.194:1188 82 | http://123.56.13.17:1188 83 | http://59.110.162.193:1188 84 | http://139.224.191.20:1188 85 | http://139.159.242.136:1188 86 | http://121.43.36.212:1188 87 | http://49.233.41.73:1188 88 | http://120.76.140.44:1188 89 | http://47.102.106.172:1188 90 | http://39.105.60.208:1188 91 | http://101.133.141.24:8188 92 | http://43.155.174.62:1188 93 | http://39.101.74.119:1188 94 | http://5.252.226.8:1188 95 | http://120.78.15.169:1188 96 | http://124.71.99.68:1188 97 | http://8.138.111.57:1188 98 | http://47.119.24.34:1188 99 | http://47.107.109.131:1188 100 | http://182.42.127.225:1188 101 | http://142.171.59.190:1188 102 | http://103.200.30.119:1188 103 | http://139.99.66.128:1188 104 | http://121.43.134.47:1188 105 | http://182.150.116.147:1188 106 | http://120.76.141.173:1188 107 | http://79.137.205.255:1188 108 | http://124.71.191.52:1188 109 | http://148.135.98.234:1188 110 | http://23.94.122.132:1188 111 | http://150.230.46.219:8136 112 | http://148.135.73.241:1188 113 | http://37.123.193.136:1188 114 | http://103.163.186.90:1188 115 | http://8.131.60.61:1188 116 | http://142.171.77.219:1188 117 | http://15.228.190.225:12294 118 | http://148.135.124.106:1188 119 | http://148.135.51.114:1188 120 | http://209.141.49.210:1188 121 | http://123.116.149.203:1188 122 | http://43.143.240.2:1188 123 | http://120.55.63.151:1188 124 | http://121.41.99.203:1188 125 | http://104.168.43.152:1188 126 | http://47.119.172.46:1188 127 | http://101.133.234.93:1188 128 | http://129.146.98.200:1188 129 | http://142.171.199.125:1188 130 | http://74.48.52.216:1188 131 | http://148.135.107.108:1188 132 | http://101.43.76.234:1188 133 | http://146.56.111.178:1188 134 | http://74.48.19.200:1188 135 | http://168.138.161.149:1188 136 | http://124.221.198.187:1188 137 | http://38.47.98.127:1188 138 | http://165.154.5.156:1188 139 | http://138.2.11.53:1188 140 | http://43.134.250.154:1188 141 | http://124.223.85.170:1188 142 | http://129.153.73.237:1188 143 | http://141.98.197.109:1188 144 | http://192.210.142.53:1188 145 | http://142.171.198.78:1188 146 | http://43.154.124.164:1188 147 | http://150.230.32.50:1188 148 | http://162.55.35.20:1188 149 | http://148.135.58.49:1188 150 | http://168.138.34.126:1188 151 | http://158.247.197.25:1188 152 | http://148.135.61.236:1188 153 | http://144.24.94.118:1188 154 | http://116.62.112.61:1188 155 | http://119.28.32.110:1188 156 | http://69.30.241.226:1188 157 | http://138.2.95.93:1188 158 | http://168.138.214.221:1188 159 | http://158.101.157.53:1188 160 | http://117.50.162.145:1188 161 | http://192.210.143.151:1188 162 | http://42.192.21.116:1188 163 | http://195.245.242.19:1188 164 | http://64.112.42.240:1188 165 | http://104.214.145.200:1188 166 | http://141.147.151.154:1188 167 | http://42.193.219.103:1188 168 | http://148.135.62.170:1188 169 | http://1.12.45.103:1188 170 | http://95.164.86.107:1188 171 | http://157.245.192.219:1188 172 | http://150.230.108.185:1188 173 | http://152.67.211.94:1188 174 | http://148.135.70.165:1188 175 | http://107.172.137.246:1188 176 | http://172.245.131.60:8081 177 | http://120.55.189.173:1188 178 | http://107.174.88.163:1188 179 | http://47.103.194.159:1188 180 | http://16.163.29.52:12294 181 | http://103.247.28.212:1188 182 | http://141.11.139.98:1188 183 | http://81.70.207.129:1188 184 | http://45.143.234.207:1188 185 | http://43.143.198.166:1188 186 | http://154.40.56.85:1188 187 | http://198.46.215.119:1188 188 | http://109.206.245.73:1188 189 | http://165.227.18.166:1188 190 | http://47.109.98.57:1188 191 | http://107.172.234.71:1188 192 | http://45.145.72.29:1188 193 | http://39.100.95.114:1188 194 | http://107.172.103.49:1188 195 | http://107.172.8.146:1188 196 | http://8.140.203.210:1188 197 | http://120.26.116.45:1188 198 | http://51.222.13.40:1188 199 | http://116.203.83.80:1188 200 | http://104.160.19.60:8000 201 | http://47.243.28.163:1188 202 | http://104.168.22.220:1188 203 | http://150.230.46.11:1188 204 | http://172.104.83.81:1188 205 | http://107.172.87.53:1188 206 | http://146.56.111.210:1188 207 | http://185.106.209.123:1188 208 | http://107.189.1.3:1188 209 | http://106.14.17.223:1188 210 | http://74.48.170.227:1188 211 | http://107.175.28.34:1188 212 | http://129.146.241.124:1188 213 | http://49.235.73.101:1188 214 | http://148.135.81.210:1188 215 | http://167.99.24.220:1188 216 | http://152.67.213.75:1188 217 | http://47.107.100.134:1188 218 | http://194.233.71.122:1188 219 | http://142.171.225.251:1188 220 | http://52.194.218.139:1188 221 | http://192.9.142.50:1188 222 | http://43.130.10.231:1188 223 | http://101.42.160.235:1188 224 | http://43.133.184.109:1188 225 | http://123.57.16.233:1188 226 | http://148.135.106.166:1188 227 | http://213.35.115.52:1188 228 | http://211.227.72.101:1188 229 | http://142.171.218.120:8000 230 | http://47.76.126.155:1188 231 | http://118.89.199.180:80 232 | http://47.76.48.116:1188 233 | http://144.24.84.231:1188 234 | http://119.91.23.165:1188 235 | http://120.79.93.103:1188 236 | http://142.171.12.29:1188 237 | http://150.230.254.8:9033 238 | http://146.56.97.135:1188 239 | http://23.94.104.174:1188 240 | http://107.175.28.239:1188 241 | http://8.142.134.155:1188 242 | http://107.173.255.75:7788 243 | http://106.14.72.237:1188 244 | http://43.143.233.18:1188 245 | http://37.123.196.26:1188 246 | http://8.222.213.133:1188 247 | http://47.242.206.190:1188 248 | http://103.117.103.14:1188 249 | http://139.224.225.116:1188 250 | http://150.230.200.159:1188 251 | http://89.117.172.208:1188 252 | http://45.152.67.153:1188 253 | http://18.157.122.228:1188 254 | http://43.134.189.147:1188 255 | http://192.9.145.2:1188 256 | http://121.43.165.38:1188 257 | http://104.234.60.178:1188 258 | http://124.220.101.194:1188 259 | http://52.140.204.252:1188 260 | http://192.227.249.132:1188 261 | http://142.171.218.100:1188 262 | http://192.9.147.173:1188 263 | http://120.77.245.55:1188 264 | http://43.132.160.253:1188 265 | http://101.43.224.133:1188 266 | http://23.94.223.217:1188 267 | http://101.201.38.103:1188 268 | http://193.32.149.239:1188 269 | http://20.89.43.13:1188 270 | http://103.114.163.230:1188 271 | http://43.154.208.219:1188 272 | http://120.78.82.181:1188 273 | http://141.11.139.95:1188 274 | http://155.248.187.32:1188 275 | http://193.32.151.19:1188 276 | http://47.236.38.78:1188 277 | http://124.222.168.113:1188 278 | http://104.208.71.189:1188 279 | http://34.97.37.189:1188 280 | http://168.138.161.222:1188 281 | http://42.98.172.229:1188 282 | http://101.43.100.100:1188 283 | http://116.252.28.28:1188 284 | http://39.105.97.161:1188 285 | http://81.70.94.105:1188 286 | http://8.142.90.128:1188 287 | http://150.158.80.45:6009 288 | http://139.159.254.35:1188 289 | http://146.56.111.132:8180 290 | http://150.158.45.100:1188 291 | http://159.75.240.245:1188 292 | http://101.35.175.93:1188 293 | http://47.116.37.52:1188 294 | http://194.87.252.161:1188 295 | http://153.36.242.81:10030 296 | http://20.205.96.238:1188 297 | http://8.210.101.225:1188 298 | http://114.55.7.143:1188 299 | http://39.107.101.134:1188 300 | http://119.3.6.116:1188 301 | http://110.42.225.114:1988 302 | http://43.156.58.228:1188 303 | http://8.134.151.104:1188 304 | http://141.11.90.131:1188 305 | http://37.123.192.81:1188 306 | http://142.171.224.118:1188 307 | http://74.48.163.250:1188 308 | https://e.nxnow.top 309 | http://142.171.26.166:1010 310 | http://146.235.18.76:9090 311 | http://142.171.74.214:1188 312 | http://88.151.33.155:8006 313 | http://61.224.93.19:1198 314 | http://38.175.193.59:1188 315 | http://158.180.64.131:1188 316 | http://59.35.154.192:1188 317 | http://8.222.185.96:1188 318 | http://43.138.46.231:1188 319 | http://107.174.255.56:1188 320 | http://ssk.wiki:1188 321 | https://dx.mmyy.fun 322 | http://124.222.158.199:1188 323 | http://154.23.244.83:1188 324 | http://101.201.151.226:1188 325 | http://59.110.34.163:85 326 | http://192.210.196.117:1188 327 | http://222.67.176.225:1188 328 | https://deeplx.qninq.cn 329 | https://deeplx.qiud.org 330 | http://101.42.227.165:1188 331 | http://18.183.159.207:1188 332 | http://www1.0860523.top:1188 333 | http://120.46.163.33:1188 334 | https://dxn.mmyy.fun 335 | http://111.231.53.79:1188 336 | http://13.213.64.250:1188 337 | https://shaw.mmyy.fun 338 | https://xyzlab.mmyy.fun 339 | https://154.18.161.26 340 | https://49.232.185.166 341 | https://89.208.240.50 342 | https://46.3.104.72 343 | http://138.2.124.103:1188 344 | http://223.240.172.245:1188 345 | http://149.104.27.140:1188 346 | https://150.158.96.53:3006 347 | http://222.90.149.175:1188 348 | http://1.14.104.243:444 349 | https://172.207.72.86 350 | https://deeplx.mmyy.fun 351 | https://142.171.166.63 352 | http://8.134.102.70 353 | http://43.242.201.122:6543 354 | http://42.194.148.47:1188 355 | http://1.15.1.159:8181 356 | http://157.254.178.123:9000 357 | https://zoom.geshandi.app 358 | https://152.67.197.197 359 | https://104.244.90.75 360 | https://89.208.246.6 361 | https://geshandi.app 362 | http://h.hony-wen.com:1188 363 | http://23.172.40.177:8000 364 | http://101.43.11.30:9188 365 | https://deeplxapi.x7ys.com 366 | http://43.134.183.35:1188 367 | http://16.163.29.52:12295 368 | http://16.163.29.52:12293 369 | https://jessica.mmyy.fun 370 | http://43.132.236.41 371 | http://gptspt.cn 372 | http://www.gptspt.cn 373 | http://74.48.202.105:8082 374 | http://106.14.155.58:18019 375 | https://deepl.kevinzhang.cn 376 | http://23.94.25.208:1188 377 | https://119.28.184.64 378 | http://deeplx.qninq.cn 379 | https://deeplx.willbon.top 380 | https://124.156.145.172 381 | http://142.171.224.10:1188 382 | https://deeplx.zeabur.app 383 | http://222.90.149.188:1188 384 | http://180.113.21.246:1188 385 | http://39.106.40.10:1188 386 | http://120.76.97.56:1188 387 | https://deepl.mukapp.top 388 | -------------------------------------------------------------------------------- /success_result.txt: -------------------------------------------------------------------------------- 1 | https://deeplx.vercel.app,https://deeplx.papercar.top,https://dlx.bitjss.com,https://deeplx.ychinfo.com,http://82.156.183.23:6000,http://20.89.253.28,http://152.70.126.168:802,http://150.230.46.11:8089,http://deepl.wuyongx.uk,http://106.15.89.0:7001,http://74.48.183.216:8082,http://45.94.43.74:8082,http://110.42.235.245:8811,http://154.40.45.116:2000,https://deepl.dlwlrma.xyz,https://deeplx.spaceq.xyz,https://dx-api.nosec.link,https://deepl.coloo.org,https://dx.ift.lat,https://translate.dftianyi.com,https://deeplx.keyrotate.com,https://ghhosa.zzaning.com,https://deepx.dumpit.top,https://deepl.wuyongx.uk,http://107.150.100.170:8880,https://deepl.zhaosaipo.com,https://deepl.aimoyu.tech,https://deeplx.imward.dev,https://deepl.tr1ck.cn,https://deeplx.he-sb.top,https://gpay.eu.org,http://107.173.186.30:1188,http://195.154.184.125:1188,http://157.90.115.116:1188,http://45.33.120.170:1188,http://38.6.176.90:1024,http://45.147.51.155:1188,http://46.8.19.173:1188,http://51.81.210.63:1188,http://138.68.240.43:1188,http://176.126.114.231:1188,http://142.171.3.185:1188,http://62.106.70.227:1188,http://54.64.224.232:1188,http://38.148.254.10:1188,http://103.158.190.203:4321,http://18.142.80.110:1188,http://119.28.13.127:1188,http://207.148.127.142:1188,http://146.56.165.8:1188,http://132.145.93.176:1188,http://138.2.123.154:1188,http://132.226.232.50:1188,http://103.152.35.2:1188,http://132.145.80.159:1188,http://38.47.100.106:1188,http://202.81.237.189:1188,http://170.64.190.34:1188,http://209.141.41.59:1188,http://35.220.175.223:1188,http://165.154.203.71:1188,http://120.46.95.125:1188,http://152.69.180.143:1188,http://203.25.119.208:1188,http://42.192.93.139:10003,http://122.152.221.70:1188,http://47.236.22.51:1188,http://101.35.115.171:1188,http://119.91.152.74:1188,http://123.60.157.70:8085,http://58.87.104.110:1188,http://43.139.218.213:1188,http://82.157.137.187:1188,http://82.156.36.11:1188,http://1.12.243.147:1188,http://8.130.121.171:1188,http://175.178.237.179:1188,http://106.14.104.93:1188,http://117.50.183.46:1188,http://82.157.49.14:1188,http://190.92.242.194:1188,http://123.56.13.17:1188,http://59.110.162.193:1188,http://139.224.191.20:1188,http://139.159.242.136:1188,http://121.43.36.212:1188,http://49.233.41.73:1188,http://120.76.140.44:1188,http://47.102.106.172:1188,http://39.105.60.208:1188,http://101.133.141.24:8188,http://43.155.174.62:1188,http://39.101.74.119:1188,http://5.252.226.8:1188,http://120.78.15.169:1188,http://124.71.99.68:1188,http://8.138.111.57:1188,http://47.119.24.34:1188,http://47.107.109.131:1188,http://182.42.127.225:1188,http://142.171.59.190:1188,http://103.200.30.119:1188,http://139.99.66.128:1188,http://121.43.134.47:1188,http://182.150.116.147:1188,http://120.76.141.173:1188,http://79.137.205.255:1188,http://124.71.191.52:1188,http://148.135.98.234:1188,http://23.94.122.132:1188,http://150.230.46.219:8136,http://148.135.73.241:1188,http://37.123.193.136:1188,http://103.163.186.90:1188,http://8.131.60.61:1188,http://142.171.77.219:1188,http://15.228.190.225:12294,http://148.135.124.106:1188,http://148.135.51.114:1188,http://209.141.49.210:1188,http://123.116.149.203:1188,http://43.143.240.2:1188,http://120.55.63.151:1188,http://121.41.99.203:1188,http://104.168.43.152:1188,http://47.119.172.46:1188,http://101.133.234.93:1188,http://129.146.98.200:1188,http://142.171.199.125:1188,http://74.48.52.216:1188,http://148.135.107.108:1188,http://101.43.76.234:1188,http://146.56.111.178:1188,http://74.48.19.200:1188,http://168.138.161.149:1188,http://124.221.198.187:1188,http://38.47.98.127:1188,http://165.154.5.156:1188,http://138.2.11.53:1188,http://43.134.250.154:1188,http://124.223.85.170:1188,http://129.153.73.237:1188,http://141.98.197.109:1188,http://192.210.142.53:1188,http://142.171.198.78:1188,http://43.154.124.164:1188,http://150.230.32.50:1188,http://162.55.35.20:1188,http://148.135.58.49:1188,http://168.138.34.126:1188,http://158.247.197.25:1188,http://148.135.61.236:1188,http://144.24.94.118:1188,http://116.62.112.61:1188,http://119.28.32.110:1188,http://69.30.241.226:1188,http://138.2.95.93:1188,http://168.138.214.221:1188,http://158.101.157.53:1188,http://117.50.162.145:1188,http://192.210.143.151:1188,http://42.192.21.116:1188,http://195.245.242.19:1188,http://64.112.42.240:1188,http://104.214.145.200:1188,http://141.147.151.154:1188,http://42.193.219.103:1188,http://148.135.62.170:1188,http://1.12.45.103:1188,http://95.164.86.107:1188,http://157.245.192.219:1188,http://150.230.108.185:1188,http://152.67.211.94:1188,http://148.135.70.165:1188,http://107.172.137.246:1188,http://172.245.131.60:8081,http://120.55.189.173:1188,http://107.174.88.163:1188,http://47.103.194.159:1188,http://16.163.29.52:12294,http://103.247.28.212:1188,http://141.11.139.98:1188,http://81.70.207.129:1188,http://45.143.234.207:1188,http://43.143.198.166:1188,http://154.40.56.85:1188,http://198.46.215.119:1188,http://109.206.245.73:1188,http://165.227.18.166:1188,http://47.109.98.57:1188,http://107.172.234.71:1188,http://45.145.72.29:1188,http://39.100.95.114:1188,http://107.172.103.49:1188,http://107.172.8.146:1188,http://8.140.203.210:1188,http://120.26.116.45:1188,http://51.222.13.40:1188,http://116.203.83.80:1188,http://104.160.19.60:8000,http://47.243.28.163:1188,http://104.168.22.220:1188,http://150.230.46.11:1188,http://172.104.83.81:1188,http://107.172.87.53:1188,http://146.56.111.210:1188,http://185.106.209.123:1188,http://107.189.1.3:1188,http://106.14.17.223:1188,http://74.48.170.227:1188,http://107.175.28.34:1188,http://129.146.241.124:1188,http://49.235.73.101:1188,http://148.135.81.210:1188,http://167.99.24.220:1188,http://152.67.213.75:1188,http://47.107.100.134:1188,http://194.233.71.122:1188,http://142.171.225.251:1188,http://52.194.218.139:1188,http://192.9.142.50:1188,http://43.130.10.231:1188,http://101.42.160.235:1188,http://43.133.184.109:1188,http://123.57.16.233:1188,http://148.135.106.166:1188,http://213.35.115.52:1188,http://211.227.72.101:1188,http://142.171.218.120:8000,http://47.76.126.155:1188,http://118.89.199.180:80,http://47.76.48.116:1188,http://144.24.84.231:1188,http://119.91.23.165:1188,http://120.79.93.103:1188,http://142.171.12.29:1188,http://150.230.254.8:9033,http://146.56.97.135:1188,http://23.94.104.174:1188,http://107.175.28.239:1188,http://8.142.134.155:1188,http://107.173.255.75:7788,http://106.14.72.237:1188,http://43.143.233.18:1188,http://37.123.196.26:1188,http://8.222.213.133:1188,http://47.242.206.190:1188,http://103.117.103.14:1188,http://139.224.225.116:1188,http://150.230.200.159:1188,http://89.117.172.208:1188,http://45.152.67.153:1188,http://18.157.122.228:1188,http://43.134.189.147:1188,http://192.9.145.2:1188,http://121.43.165.38:1188,http://104.234.60.178:1188,http://124.220.101.194:1188,http://52.140.204.252:1188,http://192.227.249.132:1188,http://142.171.218.100:1188,http://192.9.147.173:1188,http://120.77.245.55:1188,http://43.132.160.253:1188,http://101.43.224.133:1188,http://23.94.223.217:1188,http://101.201.38.103:1188,http://193.32.149.239:1188,http://20.89.43.13:1188,http://103.114.163.230:1188,http://43.154.208.219:1188,http://120.78.82.181:1188,http://141.11.139.95:1188,http://155.248.187.32:1188,http://193.32.151.19:1188,http://47.236.38.78:1188,http://124.222.168.113:1188,http://104.208.71.189:1188,http://34.97.37.189:1188,http://168.138.161.222:1188,http://42.98.172.229:1188,http://101.43.100.100:1188,http://116.252.28.28:1188,http://39.105.97.161:1188,http://81.70.94.105:1188,http://8.142.90.128:1188,http://150.158.80.45:6009,http://139.159.254.35:1188,http://146.56.111.132:8180,http://150.158.45.100:1188,http://159.75.240.245:1188,http://101.35.175.93:1188,http://47.116.37.52:1188,http://194.87.252.161:1188,http://153.36.242.81:10030,http://20.205.96.238:1188,http://8.210.101.225:1188,http://114.55.7.143:1188,http://39.107.101.134:1188,http://119.3.6.116:1188,http://110.42.225.114:1988,http://43.156.58.228:1188,http://8.134.151.104:1188,http://141.11.90.131:1188,http://37.123.192.81:1188,http://142.171.224.118:1188,http://74.48.163.250:1188,https://e.nxnow.top,http://142.171.26.166:1010,http://146.235.18.76:9090,http://142.171.74.214:1188,http://88.151.33.155:8006,http://61.224.93.19:1198,http://38.175.193.59:1188,http://158.180.64.131:1188,http://59.35.154.192:1188,http://8.222.185.96:1188,http://43.138.46.231:1188,http://107.174.255.56:1188,http://ssk.wiki:1188,https://dx.mmyy.fun,http://124.222.158.199:1188,http://154.23.244.83:1188,http://101.201.151.226:1188,http://59.110.34.163:85,http://192.210.196.117:1188,http://222.67.176.225:1188,https://deeplx.qninq.cn,https://deeplx.qiud.org,http://101.42.227.165:1188,http://18.183.159.207:1188,http://www1.0860523.top:1188,http://120.46.163.33:1188,https://dxn.mmyy.fun,http://111.231.53.79:1188,http://13.213.64.250:1188,https://shaw.mmyy.fun,https://xyzlab.mmyy.fun,https://154.18.161.26,https://49.232.185.166,https://89.208.240.50,https://46.3.104.72,http://138.2.124.103:1188,http://223.240.172.245:1188,http://149.104.27.140:1188,https://150.158.96.53:3006,http://222.90.149.175:1188,http://1.14.104.243:444,https://172.207.72.86,https://deeplx.mmyy.fun,https://142.171.166.63,http://8.134.102.70,http://43.242.201.122:6543,http://42.194.148.47:1188,http://1.15.1.159:8181,http://157.254.178.123:9000,https://zoom.geshandi.app,https://152.67.197.197,https://104.244.90.75,https://89.208.246.6,https://geshandi.app,http://h.hony-wen.com:1188,http://23.172.40.177:8000,http://101.43.11.30:9188,https://deeplxapi.x7ys.com,http://43.134.183.35:1188,http://16.163.29.52:12295,http://16.163.29.52:12293,https://jessica.mmyy.fun,http://43.132.236.41,http://gptspt.cn,http://www.gptspt.cn,http://74.48.202.105:8082,http://106.14.155.58:18019,https://deepl.kevinzhang.cn,http://23.94.25.208:1188,https://119.28.184.64,http://deeplx.qninq.cn,https://deeplx.willbon.top,https://124.156.145.172,http://142.171.224.10:1188,https://deeplx.zeabur.app,http://222.90.149.188:1188,http://180.113.21.246:1188,http://39.106.40.10:1188,http://120.76.97.56:1188,https://deepl.mukapp.top --------------------------------------------------------------------------------