-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathclashtest.yml
5541 lines (5541 loc) · 284 KB
/
clashtest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
port: 7890
socks-port: 7891
allow-lan: true
mode: Rule
log-level: info
external-controller: 127.0.0.1:9090
proxies:
- {name: 🇯🇵 日本(adi|freenode), server: 172.104.81.22, port: 443, type: vmess, uuid: 21102246-caba-3f49-9a68-49f7476d68f0, alterId: 3, cipher: auto, tls: true, network: ws, ws-path: mfjc, ws-headers: {Host: hk123.mfjx-vip.xyz}}
- {name: 🇯🇵 日本(adi|freenode) 2, server: 198.13.48.18, port: 443, type: vmess, uuid: 3e499b2c-0f0a-11eb-ac63-560003042ad2, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /A0HylQZD/, ws-headers: {Host: burgerkinggood.ml}}
- {name: 🇯🇵 日本(adi|freenode) 3, server: 198.13.48.166, port: 49903, type: vmess, uuid: 47599456-3d24-4d6f-afca-2d9caa74b3e5, alterId: 0, cipher: auto, tls: false}
- {name: 🇯🇵 日本(adi|freenode) 4, server: 108.61.247.78, port: 49718, type: vmess, uuid: 9fdf5bb2-f418-429c-8bfd-cb2e895c6bc9, alterId: 0, cipher: auto, tls: false}
- {name: 🇯🇵 日本(adi|freenode) 5, server: 52.175.16.108, port: 63132, type: vmess, uuid: e3b51fd0-f3f5-4c37-a7bd-c8d7d6069ff4, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /dwn, ws-headers: {Host: 52.175.16.108}}
- {name: 🇺🇲 美国(adi|freenode), server: 76.223.24.33, port: 39728, type: vmess, uuid: e8cb7c3f-4b56-4aa5-b965-6242965213d8, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /dwn, ws-headers: {Host: http://wap.hb.189.cn}}
- {name: 🇺🇲 美国(adi|freenode) 2, server: 172.247.199.243, port: 443, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.01902367.xyz}}
- {name: 🇺🇲 adi|freenode-US, server: 172.247.199.244, port: 443, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.01902367.xyz}}
- {name: 🇺🇲 adi|freenode-US 2, server: 149.248.13.226, port: 443, type: vmess, uuid: a9980ecc-0d89-11eb-a451-560003036251, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /3zYhEypF/, ws-headers: {Host: pampersvk.ml}}
- {name: 🇺🇲 adi|freenode-US 3, server: 172.247.199.242, port: 443, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.01902367.xyz}}
- {name: 🇺🇲 adi|freenode-US 4, server: 23.224.82.170, port: 443, type: vmess, uuid: 5a7aff44-494d-46c4-9313-6378e2f71a13, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.0162296.xyz}}
- {name: 🇺🇲 adi|freenode-US 5, server: v2-16.ssrsub.one, port: 443, type: vmess, uuid: cf9d5659-4eb8-4c49-81c4-27a7a2a1bc7b, alterId: 233, cipher: auto, tls: true, network: ws, ws-path: /, ws-headers: {Host: v2-16.ssrsub.xyz}}
- {name: 🇺🇲 adi|freenode-US 6, server: 104.238.153.37, port: 443, type: vmess, uuid: 56524aa8-0f0e-11eb-aefc-560003042d0f, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /451dClne/, ws-headers: {Host: milkgogo.cf}}
- {name: 🇺🇲 adi|freenode-US 7, server: 23.95.220.171, port: 59204, type: vmess, uuid: 9797347a-5a01-4bb6-bf15-38a16e1f0360, alterId: 233, cipher: auto, tls: false}
- {name: 🇺🇲 adi|freenode-US 8, server: v2-15.ssrsub.one, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: 🇺🇲 adi|freenode-US 9, server: 209.141.62.129, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: 🇺🇲 adi|freenode-US 10, server: 13.248.144.184, port: 39728, type: vmess, uuid: e8cb7c3f-4b56-4aa5-b965-6242965213d8, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /dwn, ws-headers: {Host: http://wap.hb.189.cn}}
- {name: 🇺🇲 adi|freenode-US 11, server: 24.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 7631fa94-13a2-4db2-8201-364f59acfc3f, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 24.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 12, server: 28.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 28.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 13, server: 173.82.97.200, port: 8000, type: vmess, uuid: f7944958-d14e-44ca-8d83-5e8704bb1a9d, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /v1, ws-headers: {Host: v.qq.com}}
- {name: 🇺🇲 adi|freenode-US 14, server: 04.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 7631fa94-13a2-4db2-8201-364f59acfc3f, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 04.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 15, server: 104.18.56.108, port: 443, type: vmess, uuid: 3b5e258e-8c5e-45d3-b7d2-02c8f5fc0bb2, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /, ws-headers: {Host: llajv.rebldp.tech}}
- {name: 🇺🇲 adi|freenode-US 16, server: 45.58.145.196, port: 443, type: vmess, uuid: 07f413fb-297d-48e2-be17-138d5b25e18c, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.78592.xyz}}
- {name: 🇺🇲 adi|freenode-US 17, server: 03.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 03.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 18, server: 158.247.205.130, port: 443, type: vmess, uuid: e3f4a11e-0d7c-11eb-9649-560003035cea, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /PkqpjQB0/, ws-headers: {Host: littlesur.cf}}
- {name: 🇺🇲 adi|freenode-US 19, server: 158.247.211.157, port: 443, type: vmess, uuid: e80babba-0d7e-11eb-bc3a-560003035d58, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /WzaqFjIf/, ws-headers: {Host: bigsur.ml}}
- {name: 🇺🇲 adi|freenode-US 20, server: 158.247.209.122, port: 443, type: vmess, uuid: 2063b14a-0d77-11eb-b8df-560003035aa6, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /Tl3sdZ8g/, ws-headers: {Host: bigsur.cf}}
- {name: 🇺🇲 adi|freenode-US 21, server: 158.247.196.164, port: 443, type: vmess, uuid: 347998fa-0d83-11eb-9ef5-560003035fa8, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /gWZuUaSF/, ws-headers: {Host: littlesur.ml}}
- {name: 🇺🇲 adi|freenode-US 22, server: 158.247.204.155, port: 443, type: vmess, uuid: a512d09c-0d81-11eb-8384-560003035f3e, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /GC5JFsfy/, ws-headers: {Host: eslenglish.ml}}
- {name: 🇺🇲 adi|freenode-US 23, server: 142.4.98.185, port: 443, type: vmess, uuid: 8eb8487a-12a0-4734-90e6-d49d1984cb32, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.670737677.xyz}}
- {name: 🇺🇲 adi|freenode-US 24, server: 06.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 7631fa94-13a2-4db2-8201-364f59acfc3f, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 06.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 25, server: 44.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 44.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 26, server: 107.148.199.233, port: 443, type: vmess, uuid: a9749fe7-2f49-4a9a-84a0-a441368ac378, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.43725518.xyz}}
- {name: 🇺🇲 adi|freenode-US 27, server: 29.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 29.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 28, server: 41.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 41.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 29, server: 45.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 45.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 30, server: 09.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 7631fa94-13a2-4db2-8201-364f59acfc3f, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 09.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 31, server: 21.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 21.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 32, server: 47.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 47.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 33, server: 01.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 01.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 34, server: 02.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 02.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 35, server: 50.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 50.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 36, server: 23.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 7631fa94-13a2-4db2-8201-364f59acfc3f, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 23.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 37, server: 25.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 25.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 38, server: 30.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 30.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 39, server: 07.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 07.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 40, server: 42.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 42.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 41, server: 48.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 48.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 42, server: 43.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 43.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 43, server: 46.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 46.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 44, server: 10.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 10.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 45, server: hxlm-aga.starlink.cx, port: 8077, type: vmess, uuid: 845cf1f1-5cda-4281-aa8f-ee2dbbfaf8ce, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: hxlm-aga.starlink.cx}}
- {name: 🇺🇲 adi|freenode-US 46, server: 27.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 7631fa94-13a2-4db2-8201-364f59acfc3f, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 27.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 47, server: 49.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 49.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 48, server: 142.4.108.81, port: 443, type: vmess, uuid: ac570aac-8979-43a4-ac6a-106c2037c5f8, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.015030944.xyz}}
- {name: 🇺🇲 adi|freenode-US 49, server: 142.4.112.58, port: 443, type: vmess, uuid: 31bcb6b0-0a9a-4cfc-82d5-4947fbb68c8f, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.19659136.xyz}}
- {name: 🇺🇲 adi|freenode-US 50, server: 142.4.100.193, port: 443, type: vmess, uuid: fb5c511f-fbd3-48d1-befc-ee79142c050d, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.44078477.xyz}}
- {name: 🇺🇲 adi|freenode-US 51, server: 192.74.228.81, port: 443, type: vmess, uuid: bf5ba263-7a16-4c1c-b49a-d14e434374f3, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.481891521.xyz}}
- {name: 🇺🇲 adi|freenode-US 52, server: 199.180.102.210, port: 443, type: vmess, uuid: d8da26fb-fba3-413f-867d-18b39ad75158, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.41086516.xyz}}
- {name: 🇺🇲 adi|freenode-US 53, server: 192.74.234.98, port: 443, type: vmess, uuid: f5eb96ec-c8e9-49e6-bc00-3eefbde2fbd4, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 192.74.234.98}}
- {name: 🇺🇲 adi|freenode-US 54, server: 198.2.200.114, port: 443, type: vmess, uuid: 1b5cad17-cbae-4b52-8369-87f902835a7f, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.46066948.xyz}}
- {name: 🇺🇲 adi|freenode-US 55, server: 142.4.120.10, port: 443, type: vmess, uuid: 7b0f8819-88f1-4a6b-9376-da9d8fb066c9, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 142.4.120.10}}
- {name: 🇺🇲 adi|freenode-US 56, server: 142.0.132.147, port: 443, type: vmess, uuid: b5d7413b-d865-4723-962e-651f6c75bd6e, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 142.0.132.147}}
- {name: 🇺🇲 adi|freenode-US 57, server: 192.74.229.4, port: 443, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.87027937.xyz}}
- {name: 🇺🇲 adi|freenode-US 58, server: 198.2.217.238, port: 443, type: vmess, uuid: 5fcd3add-4c6b-48bd-9de7-3fa9cd0b35ea, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.1497244.xyz}}
- {name: 🇺🇲 adi|freenode-US 59, server: 198.2.195.113, port: 443, type: vmess, uuid: a2d4504e-e90a-4ace-a26d-ec57c2d894a5, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.22774268.xyz}}
- {name: 🇺🇲 adi|freenode-US 60, server: 104.233.240.249, port: 443, type: vmess, uuid: 16282caa-f501-45e9-a50e-e8d14f63296b, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.0363847.xyz}}
- {name: 🇺🇲 adi|freenode-US 61, server: 142.4.120.9, port: 443, type: vmess, uuid: 7b0f8819-88f1-4a6b-9376-da9d8fb066c9, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.48102.xyz}}
- {name: 🇺🇲 adi|freenode-US 62, server: 142.4.110.143, port: 443, type: vmess, uuid: 8395659e-ecf4-46b4-ab2b-15843afa3b50, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.00805004.xyz}}
- {name: 🇺🇲 adi|freenode-US 63, server: 173.82.150.26, port: 443, type: vmess, uuid: bca67cda-c298-4343-8ca5-803ce1bee90b, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.01226245.xyz}}
- {name: 🇺🇲 adi|freenode-US 64, server: 142.0.138.145, port: 443, type: vmess, uuid: 319f06f4-b75f-48c4-91b6-67409721c78d, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.056854472.xyz}}
- {name: 🇺🇲 adi|freenode-US 65, server: 142.4.108.229, port: 443, type: vmess, uuid: 47d03581-c5c9-4764-bbd6-d4e3733b2f7a, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.085298926.xyz}}
- {name: 🇺🇲 adi|freenode-US 66, server: 199.180.102.201, port: 443, type: vmess, uuid: ab3589d3-061a-4e87-9717-dc6900d1caf9, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.94905374.xyz}}
- {name: 🇺🇲 adi|freenode-US 67, server: 137.175.35.12, port: 443, type: vmess, uuid: d85bef33-ad63-42a4-b38a-374ccfafc2b7, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.4336705.xyz}}
- {name: 🇺🇲 adi|freenode-US 68, server: 142.0.129.201, port: 443, type: vmess, uuid: b1392b21-6230-4fa5-8445-96b3ccda1efc, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.687246360.xyz}}
- {name: 🇺🇲 adi|freenode-US 69, server: 142.4.110.137, port: 443, type: vmess, uuid: 8395659e-ecf4-46b4-ab2b-15843afa3b50, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.00805004.xyz}}
- {name: 🇺🇲 adi|freenode-US 70, server: 142.4.108.228, port: 443, type: vmess, uuid: 47d03581-c5c9-4764-bbd6-d4e3733b2f7a, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.085298926.xyz}}
- {name: 🇺🇲 adi|freenode-US 71, server: 142.0.132.146, port: 443, type: vmess, uuid: b5d7413b-d865-4723-962e-651f6c75bd6e, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.619840417.xyz}}
- {name: 🇺🇲 adi|freenode-US 72, server: 142.4.120.8, port: 443, type: vmess, uuid: 7b0f8819-88f1-4a6b-9376-da9d8fb066c9, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 142.4.120.8}}
- {name: 🇺🇲 adi|freenode-US 73, server: 142.4.127.138, port: 443, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.04333370.xyz}}
- {name: 🇺🇲 adi|freenode-US 74, server: 142.0.132.145, port: 443, type: vmess, uuid: b5d7413b-d865-4723-962e-651f6c75bd6e, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 142.0.132.145}}
- {name: 🇺🇲 adi|freenode-US 75, server: 142.4.104.183, port: 443, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.57174314.xyz}}
- {name: 🇺🇲 adi|freenode-US 76, server: paoluz.starlink.cx, port: 10077, type: vmess, uuid: 845cf1f1-5cda-4281-aa8f-ee2dbbfaf8ce, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: paoluz.starlink.cx}}
- {name: 🇺🇲 adi|freenode-US 77, server: 199.180.102.199, port: 443, type: vmess, uuid: ab3589d3-061a-4e87-9717-dc6900d1caf9, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.94905374.xyz}}
- {name: 🇺🇲 adi|freenode-US 78, server: 142.4.108.232, port: 443, type: vmess, uuid: 95ccdad7-0be4-4d76-a5bd-84aa2701ca08, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.693845241.xyz}}
- {name: 🇺🇲 adi|freenode-US 79, server: 23.224.69.21, port: 443, type: vmess, uuid: 58eaee53-14ff-4911-8442-4b46f68f9766, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 23.224.69.21}}
- {name: 🇺🇲 adi|freenode-US 80, server: 13.248.184.113, port: 40201, type: vmess, uuid: a8497551-3407-3c9e-a126-7834101b5f6a, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /v2ray, ws-headers: {Host: 13.248.184.113}}
- {name: 🇺🇲 adi|freenode-US 81, server: 45.58.149.3, port: 443, type: vmess, uuid: 1c2a289d-57fd-4b13-989d-689d2c9b0274, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.87900.xyz}}
- {name: 🇺🇲 adi|freenode-US 82, server: 23.225.159.51, port: 443, type: vmess, uuid: 6d9a4d5f-8231-46b0-82b5-62a518e573ea, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.84223.xyz}}
- {name: 🇺🇲 adi|freenode-US 83, server: 23.234.230.37, port: 443, type: vmess, uuid: 4c7c65a6-092d-480e-b3b7-54ec337b5c7d, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.84564860.xyz}}
- {name: 🇺🇲 adi|freenode-US 84, server: 03.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 7631fa94-13a2-4db2-8201-364f59acfc3f, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 03.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 85, server: 28.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 7631fa94-13a2-4db2-8201-364f59acfc3f, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 28.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 86, server: 173.82.76.122, port: 443, type: vmess, uuid: 52d57305-bb22-45bb-b57c-0d947e1487d7, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.74195551.xyz}}
- {name: 🇺🇲 adi|freenode-US 87, server: 24.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 24.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇺🇲 adi|freenode-US 88, server: 23.225.125.85, port: 443, type: vmess, uuid: 3786266d-788b-40b4-b795-f37ffcfdd95a, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 23.225.125.85}}
- {name: 🇺🇲 adi|freenode-US 89, server: 172.247.198.126, port: 443, type: vmess, uuid: 55ab7be2-5e6c-4110-9f16-90d00bdd53a8, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.00689323.xyz}}
- {name: 🇺🇲 adi|freenode-US 90, server: 23.225.213.245, port: 443, type: vmess, uuid: 5e4064b8-7ac7-4d0d-b1c1-08294e6b053c, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.4244750.xyz}}
- {name: 🇺🇲 adi|freenode-US 91, server: 198.2.222.149, port: 443, type: vmess, uuid: a2d4504e-e90a-4ace-a26d-ec57c2d894a5, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.22774268.xyz}}
- {name: 🇺🇲 adi|freenode-US 92, server: 23.225.125.82, port: 443, type: vmess, uuid: 3786266d-788b-40b4-b795-f37ffcfdd95a, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.56626173.xyz}}
- {name: 🇺🇲 adi|freenode-US 93, server: 23.224.82.171, port: 443, type: vmess, uuid: 5a7aff44-494d-46c4-9313-6378e2f71a13, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.0162296.xyz}}
- {name: 🇺🇲 adi|freenode-US 94, server: 142.4.127.139, port: 443, type: vmess, uuid: 418048af-a293-4b99-9b0c-98ca3580dd24, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.04333370.xyz}}
- {name: 🇺🇲 adi|freenode-US 95, server: 172.247.198.122, port: 443, type: vmess, uuid: 55ab7be2-5e6c-4110-9f16-90d00bdd53a8, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.00689323.xyz}}
- {name: 🇺🇲 adi|freenode-US 96, server: 198.2.200.115, port: 443, type: vmess, uuid: 1b5cad17-cbae-4b52-8369-87f902835a7f, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.46066948.xyz}}
- {name: 🇺🇲 adi|freenode-US 97, server: 142.4.100.195, port: 443, type: vmess, uuid: fb5c511f-fbd3-48d1-befc-ee79142c050d, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.44078477.xyz}}
- {name: 🇺🇲 adi|freenode-US 98, server: 142.4.112.57, port: 443, type: vmess, uuid: 31bcb6b0-0a9a-4cfc-82d5-4947fbb68c8f, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.19659136.xyz}}
- {name: 🇺🇲 adi|freenode-US 99, server: 23.225.57.202, port: 443, type: vmess, uuid: e2266c08-96aa-4ccb-b918-163db05abffa, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.4198659.xyz}}
- {name: 🇺🇲 adi|freenode-US 100, server: 142.4.108.227, port: 443, type: vmess, uuid: 47d03581-c5c9-4764-bbd6-d4e3733b2f7a, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.085298926.xyz}}
- {name: 🇺🇲 adi|freenode-US 101, server: 198.2.195.117, port: 443, type: vmess, uuid: a2d4504e-e90a-4ace-a26d-ec57c2d894a5, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.22774268.xyz}}
- {name: 🇺🇲 adi|freenode-US 102, server: 107.148.199.235, port: 443, type: vmess, uuid: a9749fe7-2f49-4a9a-84a0-a441368ac378, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.43725518.xyz}}
- {name: 🇺🇲 adi|freenode-US 103, server: 142.4.98.186, port: 443, type: vmess, uuid: 8eb8487a-12a0-4734-90e6-d49d1984cb32, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.670737677.xyz}}
- {name: 🇺🇲 adi|freenode-US 104, server: 142.4.100.194, port: 443, type: vmess, uuid: fb5c511f-fbd3-48d1-befc-ee79142c050d, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.44078477.xyz}}
- {name: 🇺🇲 adi|freenode-US 105, server: 107.148.199.234, port: 443, type: vmess, uuid: a9749fe7-2f49-4a9a-84a0-a441368ac378, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.43725518.xyz}}
- {name: adi|freenode-Unknown, server: v2-06.ssrsub.one, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-Unknown 2, server: 139.64.245.4, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-Unknown 3, server: v2-03.ssrsub.one, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-Unknown 4, server: v2-02.ssrsub.one, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-Unknown 5, server: 139.64.244.249, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-Unknown 6, server: v2-07.ssrsub.one, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-Unknown 7, server: 139.64.245.5, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-Unknown 8, server: 139.64.244.246, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: 🇸🇬 adi|freenode-SG, server: 8.210.138.37, port: 443, type: vmess, uuid: 21102246-caba-3f49-9a68-49f7476d68f0, alterId: 3, cipher: auto, tls: true, network: ws, ws-path: mfjc, ws-headers: {Host: hk377.mfjx-vip.xyz}}
- {name: 🇸🇬 adi|freenode-SG 2, server: 8.210.55.109, port: 443, type: vmess, uuid: 21102246-caba-3f49-9a68-49f7476d68f0, alterId: 3, cipher: auto, tls: true, network: ws, ws-path: mfjc, ws-headers: {Host: hk109.mfjx-vip.xyz}}
- {name: 🇷🇺 adi|freenode-RU, server: v2-14.ssrsub.one, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: 🇷🇺 adi|freenode-RU 2, server: 45.137.154.131, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: 🇷🇺 adi|freenode-RU 3, server: v2-12.ssrsub.one, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: 🇷🇺 adi|freenode-RU 4, server: 45.141.101.242, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: 🇳🇱 adi|freenode-NL, server: 154.84.1.225, port: 443, type: vmess, uuid: 72201ac4-2fcc-4609-a7a8-8ac9e5334d38, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.225}}
- {name: 🇳🇱 adi|freenode-NL 2, server: 154.84.1.220, port: 443, type: vmess, uuid: 81e548a6-5203-4230-8c99-34a26f14e779, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.28596077.xyz}}
- {name: 🇳🇱 adi|freenode-NL 3, server: 154.84.1.67, port: 443, type: vmess, uuid: e28ebaf5-b734-4b11-93b4-0eeb7a433de1, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.67}}
- {name: 🇳🇱 adi|freenode-NL 4, server: 154.84.1.142, port: 443, type: vmess, uuid: 7aeba42d-2e90-422b-a345-c1bdc0362c69, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.40983279.xyz}}
- {name: 🇳🇱 adi|freenode-NL 5, server: 154.84.1.106, port: 443, type: vmess, uuid: de86841d-02eb-4ca8-9d13-f735c5f3b178, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.0921976354.xyz}}
- {name: 🇳🇱 adi|freenode-NL 6, server: 154.84.1.191, port: 443, type: vmess, uuid: 5ab81ce0-c5f4-4d17-87f2-0b9ee442eae0, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.44985428.xyz}}
- {name: 🇳🇱 adi|freenode-NL 7, server: 154.84.1.211, port: 443, type: vmess, uuid: b8c0a334-e5f3-4cb0-931c-6b4dfa39fad3, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.46352799.xyz}}
- {name: 🇳🇱 adi|freenode-NL 8, server: 154.84.1.197, port: 443, type: vmess, uuid: bb2840dd-c606-4af9-bdd6-23453a026ab8, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.13612617.xyz}}
- {name: 🇳🇱 adi|freenode-NL 9, server: 154.84.1.74, port: 443, type: vmess, uuid: ff658ff4-eb4c-4c42-9511-350d26d955e7, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.74}}
- {name: 🇳🇱 adi|freenode-NL 10, server: 154.84.1.137, port: 443, type: vmess, uuid: 01d207e9-c633-4164-a3ce-a5d1061865d7, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.49836114.xyz}}
- {name: 🇳🇱 adi|freenode-NL 11, server: 154.84.1.7, port: 443, type: vmess, uuid: 9c91b1ce-8b7d-4be1-8fe2-699da69470d0, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.7}}
- {name: 🇳🇱 adi|freenode-NL 12, server: 154.84.1.38, port: 443, type: vmess, uuid: 5c9f4ee0-499e-4524-98b6-2e195630f813, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.0656333.xyz}}
- {name: 🇳🇱 adi|freenode-NL 13, server: 154.84.1.30, port: 443, type: vmess, uuid: b2dc1153-c64b-48ea-af9f-16039048d999, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.ocazuxhi.xyz}}
- {name: 🇳🇱 adi|freenode-NL 14, server: 154.84.1.83, port: 443, type: vmess, uuid: 8b722ceb-474c-4698-8fb8-c496bb3eb440, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.98868925.xyz}}
- {name: 🇳🇱 adi|freenode-NL 15, server: 154.84.1.84, port: 443, type: vmess, uuid: 8b722ceb-474c-4698-8fb8-c496bb3eb440, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.84}}
- {name: 🇳🇱 adi|freenode-NL 16, server: 154.84.1.161, port: 443, type: vmess, uuid: e28ebaf5-b734-4b11-93b4-0eeb7a433de1, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.32429678.xyz}}
- {name: 🇳🇱 adi|freenode-NL 17, server: 154.84.1.23, port: 443, type: vmess, uuid: d52eb29f-7149-4401-a1c5-3e3a0db588c2, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.9134162.xyz}}
- {name: 🇳🇱 adi|freenode-NL 18, server: 154.84.1.234, port: 443, type: vmess, uuid: 38059d25-42f8-49af-a234-e3b880256014, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.9142674173.xyz}}
- {name: 🇳🇱 adi|freenode-NL 19, server: 154.84.1.238, port: 443, type: vmess, uuid: 58525ec7-e918-437c-9a14-45875b3e8f6f, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.9996013755.xyz}}
- {name: 🇳🇱 adi|freenode-NL 20, server: 154.84.1.192, port: 443, type: vmess, uuid: bb2840dd-c606-4af9-bdd6-23453a026ab8, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.192}}
- {name: 🇳🇱 adi|freenode-NL 21, server: 154.84.1.63, port: 443, type: vmess, uuid: 0af5e8af-8fcb-4db3-8794-8148cb50a772, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.63}}
- {name: 🇳🇱 adi|freenode-NL 22, server: 154.84.1.113, port: 443, type: vmess, uuid: f6d5a64e-c03e-4312-b395-0de496bae596, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.113}}
- {name: 🇳🇱 adi|freenode-NL 23, server: 154.84.1.164, port: 443, type: vmess, uuid: ff658ff4-eb4c-4c42-9511-350d26d955e7, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.20800980.xyz}}
- {name: 🇳🇱 adi|freenode-NL 24, server: 154.84.1.159, port: 443, type: vmess, uuid: 0af5e8af-8fcb-4db3-8794-8148cb50a772, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.80323287.xyz}}
- {name: 🇳🇱 adi|freenode-NL 25, server: 154.84.1.66, port: 443, type: vmess, uuid: 26370ac2-4dd9-43ed-a358-7e6ca00fa706, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.56726769.xyz}}
- {name: 🇳🇱 adi|freenode-NL 26, server: 154.84.1.143, port: 443, type: vmess, uuid: 01d207e9-c633-4164-a3ce-a5d1061865d7, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.49836114.xyz}}
- {name: 🇳🇱 adi|freenode-NL 27, server: 154.84.1.80, port: 443, type: vmess, uuid: 81e548a6-5203-4230-8c99-34a26f14e779, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.28596077.xyz}}
- {name: 🇳🇱 adi|freenode-NL 28, server: 154.84.1.196, port: 443, type: vmess, uuid: 5ab81ce0-c5f4-4d17-87f2-0b9ee442eae0, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.196}}
- {name: 🇳🇱 adi|freenode-NL 29, server: 154.84.1.194, port: 443, type: vmess, uuid: b8c0a334-e5f3-4cb0-931c-6b4dfa39fad3, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.46352799.xyz}}
- {name: 🇳🇱 adi|freenode-NL 30, server: 154.84.1.75, port: 443, type: vmess, uuid: e2be4677-7d78-476c-99e7-bcc06e1bba75, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.75}}
- {name: 🇳🇱 adi|freenode-NL 31, server: 154.84.1.162, port: 443, type: vmess, uuid: e1b90914-fe82-47e5-b4fc-1454776d8014, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.64978360.xyz}}
- {name: 🇳🇱 adi|freenode-NL 32, server: 154.84.1.115, port: 443, type: vmess, uuid: f6d5a64e-c03e-4312-b395-0de496bae596, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.115}}
- {name: 🇳🇱 adi|freenode-NL 33, server: 154.84.1.41, port: 443, type: vmess, uuid: 3a869a5b-5bf0-4276-a1d0-d840c0664bea, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.6460649.xyz}}
- {name: 🇳🇱 adi|freenode-NL 34, server: 154.84.1.13, port: 443, type: vmess, uuid: 651ccd49-f4cc-4da4-983e-ed7ba7ee8bcb, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.4212507134.xyz}}
- {name: 🇳🇱 adi|freenode-NL 35, server: 154.84.1.81, port: 443, type: vmess, uuid: 5c9f4ee0-499e-4524-98b6-2e195630f813, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.0656333.xyz}}
- {name: 🇳🇱 adi|freenode-NL 36, server: 154.84.1.219, port: 443, type: vmess, uuid: 44e08632-8dbf-4b70-a893-1b31ead60ade, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.76043239.xyz}}
- {name: 🇳🇱 adi|freenode-NL 37, server: 154.84.1.15, port: 443, type: vmess, uuid: 651ccd49-f4cc-4da4-983e-ed7ba7ee8bcb, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.4212507134.xyz}}
- {name: 🇳🇱 adi|freenode-NL 38, server: 154.84.1.101, port: 443, type: vmess, uuid: ee595b2d-ffc2-4a83-bf74-09c121ffa239, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.1898870.xyz}}
- {name: 🇳🇱 adi|freenode-NL 39, server: 154.84.1.139, port: 443, type: vmess, uuid: 72201ac4-2fcc-4609-a7a8-8ac9e5334d38, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.hxmuuqim.xyz}}
- {name: 🇳🇱 adi|freenode-NL 40, server: 185.244.27.176, port: 443, type: vmess, uuid: 21102246-caba-3f49-9a68-49f7476d68f0, alterId: 3, cipher: auto, tls: true, network: ws, ws-path: mfjc, ws-headers: {Host: de176.mfjx-vip.xyz}}
- {name: 🇳🇱 adi|freenode-NL 41, server: 154.84.1.193, port: 443, type: vmess, uuid: 0101f9da-93ea-4543-ade5-afebfa34aa60, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.57053041.xyz}}
- {name: 🇳🇱 adi|freenode-NL 42, server: 154.84.1.70, port: 443, type: vmess, uuid: e1b90914-fe82-47e5-b4fc-1454776d8014, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.70}}
- {name: 🇳🇱 adi|freenode-NL 43, server: 154.84.1.212, port: 443, type: vmess, uuid: 72a475f9-6a5c-4acd-8cd2-12609e946a97, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.54331899.xyz}}
- {name: 🇳🇱 adi|freenode-NL 44, server: 154.84.1.61, port: 443, type: vmess, uuid: fdbe9497-8585-4c0d-b2c3-cc344f435c47, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.6089793.xyz}}
- {name: 🇳🇱 adi|freenode-NL 45, server: 154.84.1.226, port: 51658, type: vmess, uuid: 784d3c84-e5d5-443b-888f-519553fb9ea9, alterId: 64, cipher: auto, tls: false}
- {name: 🇳🇱 adi|freenode-NL 46, server: 154.84.1.11, port: 443, type: vmess, uuid: a0c5a96b-a0d9-4686-8eb8-b932051c79cd, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.5189462.xyz}}
- {name: 🇳🇱 adi|freenode-NL 47, server: 154.84.1.42, port: 443, type: vmess, uuid: 3a869a5b-5bf0-4276-a1d0-d840c0664bea, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.6460649.xyz}}
- {name: 🇳🇱 adi|freenode-NL 48, server: 154.84.1.210, port: 443, type: vmess, uuid: 0101f9da-93ea-4543-ade5-afebfa34aa60, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.57053041.xyz}}
- {name: 🇳🇱 adi|freenode-NL 49, server: 154.84.1.72, port: 443, type: vmess, uuid: 03ae2e99-0345-49d0-8a20-a913bc808c97, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: 154.84.1.72}}
- {name: 🇳🇱 adi|freenode-NL 50, server: 154.84.1.133, port: 443, type: vmess, uuid: 38059d25-42f8-49af-a234-e3b880256014, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.9142674173.xyz}}
- {name: 🇳🇱 adi|freenode-NL 51, server: 154.84.1.103, port: 443, type: vmess, uuid: ee595b2d-ffc2-4a83-bf74-09c121ffa239, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.1898870.xyz}}
- {name: 🇯🇵 adi|freenode-JP, server: 141.164.44.175, port: 443, type: vmess, uuid: e6436030-0d7d-11eb-a4b8-560003035d2d, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /lI6z2uxd/, ws-headers: {Host: chinahr.cf}}
- {name: 🇯🇵 adi|freenode-JP 2, server: 141.164.52.226, port: 443, type: vmess, uuid: 182b794c-0d75-11eb-9bca-5600030358d0, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /qifmRyNU/, ws-headers: {Host: littlesur.tk}}
- {name: 🇯🇵 adi|freenode-JP 3, server: 141.164.41.43, port: 443, type: vmess, uuid: a63cd822-0d78-11eb-af35-560003035b5d, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /8TeqaG13/, ws-headers: {Host: chinahright.ml}}
- {name: 🇯🇵 adi|freenode-JP 4, server: 141.164.62.146, port: 443, type: vmess, uuid: 05fffbf8-0d70-11eb-a463-560003035650, alterId: 46, cipher: auto, tls: true, network: ws, ws-path: /3NGv0Aah/, ws-headers: {Host: eslenglish.cf}}
- {name: 🇯🇵 adi|freenode-JP 5, server: 141.164.56.246, port: 58013, type: vmess, uuid: 23280899-9df9-45c4-825c-030b3976b972, alterId: 0, cipher: auto, tls: false}
- {name: 🇯🇵 adi|freenode-JP 6, server: 52.185.164.224, port: 443, type: vmess, uuid: 0303ab78-20be-3639-9cb4-bb01635b5546, alterId: 1, cipher: auto, tls: false, network: ws, ws-path: /hls/cctv5phd.m3u8, ws-headers: {Host: jp-5.azure.vip5.v2ray.ikuuu.pro}}
- {name: 🇯🇵 adi|freenode-JP 7, server: 13.71.150.173, port: 666, type: vmess, uuid: 0303ab78-20be-3639-9cb4-bb01635b5546, alterId: 1, cipher: auto, tls: false, network: ws, ws-path: /hls/cctv5phd.m3u8, ws-headers: {Host: jp-6.azure.vip5.v2ray.backend.ikuuu.pro}}
- {name: 🇯🇵 adi|freenode-JP 8, server: ylssr.starlink.cx, port: 8077, type: vmess, uuid: 845cf1f1-5cda-4281-aa8f-ee2dbbfaf8ce, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: ylssr.starlink.cx}}
- {name: 🇯🇵 adi|freenode-JP 9, server: 45.63.123.144, port: 80, type: vmess, uuid: 3ba56e3d-6a7a-42f2-b0db-9a5c95b7e25a, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 45.63.123.144}}
- {name: 🇯🇵 adi|freenode-JP 10, server: 198.13.35.158, port: 80, type: vmess, uuid: 3ba56e3d-6a7a-42f2-b0db-9a5c95b7e25a, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 198.13.35.158}}
- {name: adi|freenode-IN, server: hxlm.starlink.cx, port: 8077, type: vmess, uuid: 845cf1f1-5cda-4281-aa8f-ee2dbbfaf8ce, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: hxlm.starlink.cx}}
- {name: 🇭🇰 adi|freenode-HK, server: 14.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 14.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 2, server: 11.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 11.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 3, server: 32.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 32.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 4, server: 20.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 20.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 5, server: 40.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 40.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 6, server: 12.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 12.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 7, server: 71.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 71.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 8, server: 16.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 16.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 9, server: 33.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 33.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 10, server: 38.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 38.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 11, server: 37.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 37.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 12, server: 80.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 80.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 13, server: 77.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 77.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 14, server: 15.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 15.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 15, server: 74.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 74.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 16, server: 35.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 35.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 17, server: 75.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 75.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 18, server: 34.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 34.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 19, server: 18.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 18.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 20, server: 17.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 17.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 21, server: 72.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 72.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 22, server: 79.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 79.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 23, server: 39.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 39.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 24, server: 78.HKG.ASIA.BIGAIRPORT.NET, port: 80, type: vmess, uuid: 889e56ba-6cf7-44aa-bf49-1099bcacc508, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 78.HKG.ASIA.BIGAIRPORT.NET}}
- {name: 🇭🇰 adi|freenode-HK 25, server: 52.229.188.44, port: 21668, type: vmess, uuid: c7d5f448-14c9-4ae3-f694-2fb19ef22d24, alterId: 64, cipher: auto, tls: false}
- {name: adi|freenode-GB, server: 142.93.34.23, port: 10134, type: vmess, uuid: 5dc94bc1-2c8c-4943-d0e1-af1d5bdd3783, alterId: 32, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: 142.93.34.23}}
- {name: 🇫🇷 adi|freenode-FR, server: 51.89.40.143, port: 443, type: vmess, uuid: 24fe9497-b11e-4474-8ddd-63cfc471bbee, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.sikushui.xyz}}
- {name: 🇫🇷 adi|freenode-FR 2, server: 94.23.174.134, port: 443, type: vmess, uuid: 29b4257d-d82f-4bba-8964-0c657bb645d1, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.kuaidiku.xyz}}
- {name: 🇫🇷 adi|freenode-FR 3, server: 51.89.7.130, port: 443, type: vmess, uuid: c6e31d34-b784-49b7-958e-d57ba2c0ceae, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.87632.xyz}}
- {name: 🇫🇷 adi|freenode-FR 4, server: 51.89.122.175, port: 443, type: vmess, uuid: ca2fb96a-4d01-4418-84bf-de66de70c8ab, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.6277335093.xyz}}
- {name: 🇫🇷 adi|freenode-FR 5, server: 51.89.7.16, port: 443, type: vmess, uuid: 0a899b7d-de24-4133-a78d-8bd7498eb3c3, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.particularly.live}}
- {name: 🇫🇷 adi|freenode-FR 6, server: 51.89.7.206, port: 443, type: vmess, uuid: 87f16117-30c6-4581-bfad-cd28769ba45d, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.69045.xyz}}
- {name: 🇫🇷 adi|freenode-FR 7, server: 51.89.125.56, port: 443, type: vmess, uuid: 0a899b7d-de24-4133-a78d-8bd7498eb3c3, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.particularly.live}}
- {name: 🇫🇷 adi|freenode-FR 8, server: 51.89.21.57, port: 443, type: vmess, uuid: 49e62934-7c38-42bb-b7a4-de5107a58509, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.82875.xyz}}
- {name: 🇫🇷 adi|freenode-FR 9, server: 51.89.98.83, port: 443, type: vmess, uuid: ca2fb96a-4d01-4418-84bf-de66de70c8ab, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.6277335093.xyz}}
- {name: 🇫🇷 adi|freenode-FR 10, server: 51.89.54.217, port: 443, type: vmess, uuid: 24fe9497-b11e-4474-8ddd-63cfc471bbee, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.sikushui.xyz}}
- {name: 🇫🇷 adi|freenode-FR 11, server: 51.91.223.25, port: 443, type: vmess, uuid: 29b4257d-d82f-4bba-8964-0c657bb645d1, alterId: 64, cipher: auto, tls: true, network: ws, ws-path: /footers, ws-headers: {Host: www.kuaidiku.xyz}}
- {name: 🇨🇳 adi|freenode-CN, server: us4.123004.xyz, port: 543, type: vmess, uuid: BD6B044F-8A1C-BC67-1C0F-F581911BD274, alterId: 0, cipher: auto, tls: false}
- {name: 🇨🇳 adi|freenode-CN 2, server: us6.123004.xyz, port: 543, type: vmess, uuid: BD6B044F-8A1C-BC67-1C0F-F581911BD274, alterId: 1, cipher: auto, tls: false}
- {name: 🇨🇳 adi|freenode-CN 3, server: jp01.123004.xyz, port: 543, type: vmess, uuid: BD6B044F-8A1C-BC67-1C0F-F581911BD274, alterId: 0, cipher: auto, tls: false}
- {name: 🇨🇳 adi|freenode-CN 4, server: jmyd.starlink.cx, port: 1000, type: vmess, uuid: 845cf1f1-5cda-4281-aa8f-ee2dbbfaf8ce, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: jmyd.starlink.cx}}
- {name: 🇨🇳 adi|freenode-CN 5, server: gdgz.starlink.cx, port: 1000, type: vmess, uuid: 845cf1f1-5cda-4281-aa8f-ee2dbbfaf8ce, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: gdgz.starlink.cx}}
- {name: 🇨🇳 adi|freenode-CN 6, server: jmyd.starlink.cx, port: 1001, type: vmess, uuid: 845cf1f1-5cda-4281-aa8f-ee2dbbfaf8ce, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: jmyd.starlink.cx}}
- {name: 🇨🇳 adi|freenode-CN 7, server: jmyd.starlink.cx, port: 1003, type: vmess, uuid: 845cf1f1-5cda-4281-aa8f-ee2dbbfaf8ce, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: jmyd.starlink.cx}}
- {name: 🇨🇳 adi|freenode-CN 8, server: jmyd.starlink.cx, port: 1002, type: vmess, uuid: 845cf1f1-5cda-4281-aa8f-ee2dbbfaf8ce, alterId: 2, cipher: auto, tls: false, network: ws, ws-path: /, ws-headers: {Host: jmyd.starlink.cx}}
- {name: adi|freenode-CA, server: v2-04.ssrsub.one, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-CA 2, server: 104.167.101.4, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-CA 3, server: 64.137.190.69, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-CA 4, server: v2-05.ssrsub.one, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-CA 5, server: 64.137.189.88, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
- {name: adi|freenode-CA 6, server: v2-01.ssrsub.one, port: 45688, type: vmess, uuid: 55bb447f-13eb-b495-c766-ebd9c9dae7cb, alterId: 1, cipher: auto, tls: false}
proxy-groups:
- name: 🚀 节点选择
type: select
proxies:
- ♻️ 自动选择
- DIRECT
- 🇯🇵 日本(adi|freenode)
- 🇯🇵 日本(adi|freenode) 2
- 🇯🇵 日本(adi|freenode) 3
- 🇯🇵 日本(adi|freenode) 4
- 🇯🇵 日本(adi|freenode) 5
- 🇺🇲 美国(adi|freenode)
- 🇺🇲 美国(adi|freenode) 2
- 🇺🇲 adi|freenode-US
- 🇺🇲 adi|freenode-US 2
- 🇺🇲 adi|freenode-US 3
- 🇺🇲 adi|freenode-US 4
- 🇺🇲 adi|freenode-US 5
- 🇺🇲 adi|freenode-US 6
- 🇺🇲 adi|freenode-US 7
- 🇺🇲 adi|freenode-US 8
- 🇺🇲 adi|freenode-US 9
- 🇺🇲 adi|freenode-US 10
- 🇺🇲 adi|freenode-US 11
- 🇺🇲 adi|freenode-US 12
- 🇺🇲 adi|freenode-US 13
- 🇺🇲 adi|freenode-US 14
- 🇺🇲 adi|freenode-US 15
- 🇺🇲 adi|freenode-US 16
- 🇺🇲 adi|freenode-US 17
- 🇺🇲 adi|freenode-US 18
- 🇺🇲 adi|freenode-US 19
- 🇺🇲 adi|freenode-US 20
- 🇺🇲 adi|freenode-US 21
- 🇺🇲 adi|freenode-US 22
- 🇺🇲 adi|freenode-US 23
- 🇺🇲 adi|freenode-US 24
- 🇺🇲 adi|freenode-US 25
- 🇺🇲 adi|freenode-US 26
- 🇺🇲 adi|freenode-US 27
- 🇺🇲 adi|freenode-US 28
- 🇺🇲 adi|freenode-US 29
- 🇺🇲 adi|freenode-US 30
- 🇺🇲 adi|freenode-US 31
- 🇺🇲 adi|freenode-US 32
- 🇺🇲 adi|freenode-US 33
- 🇺🇲 adi|freenode-US 34
- 🇺🇲 adi|freenode-US 35
- 🇺🇲 adi|freenode-US 36
- 🇺🇲 adi|freenode-US 37
- 🇺🇲 adi|freenode-US 38
- 🇺🇲 adi|freenode-US 39
- 🇺🇲 adi|freenode-US 40
- 🇺🇲 adi|freenode-US 41
- 🇺🇲 adi|freenode-US 42
- 🇺🇲 adi|freenode-US 43
- 🇺🇲 adi|freenode-US 44
- 🇺🇲 adi|freenode-US 45
- 🇺🇲 adi|freenode-US 46
- 🇺🇲 adi|freenode-US 47
- 🇺🇲 adi|freenode-US 48
- 🇺🇲 adi|freenode-US 49
- 🇺🇲 adi|freenode-US 50
- 🇺🇲 adi|freenode-US 51
- 🇺🇲 adi|freenode-US 52
- 🇺🇲 adi|freenode-US 53
- 🇺🇲 adi|freenode-US 54
- 🇺🇲 adi|freenode-US 55
- 🇺🇲 adi|freenode-US 56
- 🇺🇲 adi|freenode-US 57
- 🇺🇲 adi|freenode-US 58
- 🇺🇲 adi|freenode-US 59
- 🇺🇲 adi|freenode-US 60
- 🇺🇲 adi|freenode-US 61
- 🇺🇲 adi|freenode-US 62
- 🇺🇲 adi|freenode-US 63
- 🇺🇲 adi|freenode-US 64
- 🇺🇲 adi|freenode-US 65
- 🇺🇲 adi|freenode-US 66
- 🇺🇲 adi|freenode-US 67
- 🇺🇲 adi|freenode-US 68
- 🇺🇲 adi|freenode-US 69
- 🇺🇲 adi|freenode-US 70
- 🇺🇲 adi|freenode-US 71
- 🇺🇲 adi|freenode-US 72
- 🇺🇲 adi|freenode-US 73
- 🇺🇲 adi|freenode-US 74
- 🇺🇲 adi|freenode-US 75
- 🇺🇲 adi|freenode-US 76
- 🇺🇲 adi|freenode-US 77
- 🇺🇲 adi|freenode-US 78
- 🇺🇲 adi|freenode-US 79
- 🇺🇲 adi|freenode-US 80
- 🇺🇲 adi|freenode-US 81
- 🇺🇲 adi|freenode-US 82
- 🇺🇲 adi|freenode-US 83
- 🇺🇲 adi|freenode-US 84
- 🇺🇲 adi|freenode-US 85
- 🇺🇲 adi|freenode-US 86
- 🇺🇲 adi|freenode-US 87
- 🇺🇲 adi|freenode-US 88
- 🇺🇲 adi|freenode-US 89
- 🇺🇲 adi|freenode-US 90
- 🇺🇲 adi|freenode-US 91
- 🇺🇲 adi|freenode-US 92
- 🇺🇲 adi|freenode-US 93
- 🇺🇲 adi|freenode-US 94
- 🇺🇲 adi|freenode-US 95
- 🇺🇲 adi|freenode-US 96
- 🇺🇲 adi|freenode-US 97
- 🇺🇲 adi|freenode-US 98
- 🇺🇲 adi|freenode-US 99
- 🇺🇲 adi|freenode-US 100
- 🇺🇲 adi|freenode-US 101
- 🇺🇲 adi|freenode-US 102
- 🇺🇲 adi|freenode-US 103
- 🇺🇲 adi|freenode-US 104
- 🇺🇲 adi|freenode-US 105
- adi|freenode-Unknown
- adi|freenode-Unknown 2
- adi|freenode-Unknown 3
- adi|freenode-Unknown 4
- adi|freenode-Unknown 5
- adi|freenode-Unknown 6
- adi|freenode-Unknown 7
- adi|freenode-Unknown 8
- 🇸🇬 adi|freenode-SG
- 🇸🇬 adi|freenode-SG 2
- 🇷🇺 adi|freenode-RU
- 🇷🇺 adi|freenode-RU 2
- 🇷🇺 adi|freenode-RU 3
- 🇷🇺 adi|freenode-RU 4
- 🇳🇱 adi|freenode-NL
- 🇳🇱 adi|freenode-NL 2
- 🇳🇱 adi|freenode-NL 3
- 🇳🇱 adi|freenode-NL 4
- 🇳🇱 adi|freenode-NL 5
- 🇳🇱 adi|freenode-NL 6
- 🇳🇱 adi|freenode-NL 7
- 🇳🇱 adi|freenode-NL 8
- 🇳🇱 adi|freenode-NL 9
- 🇳🇱 adi|freenode-NL 10
- 🇳🇱 adi|freenode-NL 11
- 🇳🇱 adi|freenode-NL 12
- 🇳🇱 adi|freenode-NL 13
- 🇳🇱 adi|freenode-NL 14
- 🇳🇱 adi|freenode-NL 15
- 🇳🇱 adi|freenode-NL 16
- 🇳🇱 adi|freenode-NL 17
- 🇳🇱 adi|freenode-NL 18
- 🇳🇱 adi|freenode-NL 19
- 🇳🇱 adi|freenode-NL 20
- 🇳🇱 adi|freenode-NL 21
- 🇳🇱 adi|freenode-NL 22
- 🇳🇱 adi|freenode-NL 23
- 🇳🇱 adi|freenode-NL 24
- 🇳🇱 adi|freenode-NL 25
- 🇳🇱 adi|freenode-NL 26
- 🇳🇱 adi|freenode-NL 27
- 🇳🇱 adi|freenode-NL 28
- 🇳🇱 adi|freenode-NL 29
- 🇳🇱 adi|freenode-NL 30
- 🇳🇱 adi|freenode-NL 31
- 🇳🇱 adi|freenode-NL 32
- 🇳🇱 adi|freenode-NL 33
- 🇳🇱 adi|freenode-NL 34
- 🇳🇱 adi|freenode-NL 35
- 🇳🇱 adi|freenode-NL 36
- 🇳🇱 adi|freenode-NL 37
- 🇳🇱 adi|freenode-NL 38
- 🇳🇱 adi|freenode-NL 39
- 🇳🇱 adi|freenode-NL 40
- 🇳🇱 adi|freenode-NL 41
- 🇳🇱 adi|freenode-NL 42
- 🇳🇱 adi|freenode-NL 43
- 🇳🇱 adi|freenode-NL 44
- 🇳🇱 adi|freenode-NL 45
- 🇳🇱 adi|freenode-NL 46
- 🇳🇱 adi|freenode-NL 47
- 🇳🇱 adi|freenode-NL 48
- 🇳🇱 adi|freenode-NL 49
- 🇳🇱 adi|freenode-NL 50
- 🇳🇱 adi|freenode-NL 51
- 🇯🇵 adi|freenode-JP
- 🇯🇵 adi|freenode-JP 2
- 🇯🇵 adi|freenode-JP 3
- 🇯🇵 adi|freenode-JP 4
- 🇯🇵 adi|freenode-JP 5
- 🇯🇵 adi|freenode-JP 6
- 🇯🇵 adi|freenode-JP 7
- 🇯🇵 adi|freenode-JP 8
- 🇯🇵 adi|freenode-JP 9
- 🇯🇵 adi|freenode-JP 10
- adi|freenode-IN
- 🇭🇰 adi|freenode-HK
- 🇭🇰 adi|freenode-HK 2
- 🇭🇰 adi|freenode-HK 3
- 🇭🇰 adi|freenode-HK 4
- 🇭🇰 adi|freenode-HK 5
- 🇭🇰 adi|freenode-HK 6
- 🇭🇰 adi|freenode-HK 7
- 🇭🇰 adi|freenode-HK 8
- 🇭🇰 adi|freenode-HK 9
- 🇭🇰 adi|freenode-HK 10
- 🇭🇰 adi|freenode-HK 11
- 🇭🇰 adi|freenode-HK 12
- 🇭🇰 adi|freenode-HK 13
- 🇭🇰 adi|freenode-HK 14
- 🇭🇰 adi|freenode-HK 15
- 🇭🇰 adi|freenode-HK 16
- 🇭🇰 adi|freenode-HK 17
- 🇭🇰 adi|freenode-HK 18
- 🇭🇰 adi|freenode-HK 19
- 🇭🇰 adi|freenode-HK 20
- 🇭🇰 adi|freenode-HK 21
- 🇭🇰 adi|freenode-HK 22
- 🇭🇰 adi|freenode-HK 23
- 🇭🇰 adi|freenode-HK 24
- 🇭🇰 adi|freenode-HK 25
- adi|freenode-GB
- 🇫🇷 adi|freenode-FR
- 🇫🇷 adi|freenode-FR 2
- 🇫🇷 adi|freenode-FR 3
- 🇫🇷 adi|freenode-FR 4
- 🇫🇷 adi|freenode-FR 5
- 🇫🇷 adi|freenode-FR 6
- 🇫🇷 adi|freenode-FR 7
- 🇫🇷 adi|freenode-FR 8
- 🇫🇷 adi|freenode-FR 9
- 🇫🇷 adi|freenode-FR 10
- 🇫🇷 adi|freenode-FR 11
- 🇨🇳 adi|freenode-CN
- 🇨🇳 adi|freenode-CN 2
- 🇨🇳 adi|freenode-CN 3
- 🇨🇳 adi|freenode-CN 4
- 🇨🇳 adi|freenode-CN 5
- 🇨🇳 adi|freenode-CN 6
- 🇨🇳 adi|freenode-CN 7
- 🇨🇳 adi|freenode-CN 8
- adi|freenode-CA
- adi|freenode-CA 2
- adi|freenode-CA 3
- adi|freenode-CA 4
- adi|freenode-CA 5
- adi|freenode-CA 6
- name: ♻️ 自动选择
type: url-test
url: http://www.gstatic.com/generate_204
interval: 300
proxies:
- 🇯🇵 日本(adi|freenode)
- 🇯🇵 日本(adi|freenode) 2
- 🇯🇵 日本(adi|freenode) 3
- 🇯🇵 日本(adi|freenode) 4
- 🇯🇵 日本(adi|freenode) 5
- 🇺🇲 美国(adi|freenode)
- 🇺🇲 美国(adi|freenode) 2
- 🇺🇲 adi|freenode-US
- 🇺🇲 adi|freenode-US 2
- 🇺🇲 adi|freenode-US 3
- 🇺🇲 adi|freenode-US 4
- 🇺🇲 adi|freenode-US 5
- 🇺🇲 adi|freenode-US 6
- 🇺🇲 adi|freenode-US 7
- 🇺🇲 adi|freenode-US 8
- 🇺🇲 adi|freenode-US 9
- 🇺🇲 adi|freenode-US 10
- 🇺🇲 adi|freenode-US 11
- 🇺🇲 adi|freenode-US 12
- 🇺🇲 adi|freenode-US 13
- 🇺🇲 adi|freenode-US 14
- 🇺🇲 adi|freenode-US 15
- 🇺🇲 adi|freenode-US 16
- 🇺🇲 adi|freenode-US 17
- 🇺🇲 adi|freenode-US 18
- 🇺🇲 adi|freenode-US 19
- 🇺🇲 adi|freenode-US 20
- 🇺🇲 adi|freenode-US 21
- 🇺🇲 adi|freenode-US 22
- 🇺🇲 adi|freenode-US 23
- 🇺🇲 adi|freenode-US 24
- 🇺🇲 adi|freenode-US 25
- 🇺🇲 adi|freenode-US 26
- 🇺🇲 adi|freenode-US 27
- 🇺🇲 adi|freenode-US 28
- 🇺🇲 adi|freenode-US 29
- 🇺🇲 adi|freenode-US 30
- 🇺🇲 adi|freenode-US 31
- 🇺🇲 adi|freenode-US 32
- 🇺🇲 adi|freenode-US 33
- 🇺🇲 adi|freenode-US 34
- 🇺🇲 adi|freenode-US 35
- 🇺🇲 adi|freenode-US 36
- 🇺🇲 adi|freenode-US 37
- 🇺🇲 adi|freenode-US 38
- 🇺🇲 adi|freenode-US 39
- 🇺🇲 adi|freenode-US 40
- 🇺🇲 adi|freenode-US 41
- 🇺🇲 adi|freenode-US 42
- 🇺🇲 adi|freenode-US 43
- 🇺🇲 adi|freenode-US 44
- 🇺🇲 adi|freenode-US 45
- 🇺🇲 adi|freenode-US 46
- 🇺🇲 adi|freenode-US 47
- 🇺🇲 adi|freenode-US 48
- 🇺🇲 adi|freenode-US 49
- 🇺🇲 adi|freenode-US 50
- 🇺🇲 adi|freenode-US 51
- 🇺🇲 adi|freenode-US 52
- 🇺🇲 adi|freenode-US 53
- 🇺🇲 adi|freenode-US 54
- 🇺🇲 adi|freenode-US 55
- 🇺🇲 adi|freenode-US 56
- 🇺🇲 adi|freenode-US 57
- 🇺🇲 adi|freenode-US 58
- 🇺🇲 adi|freenode-US 59
- 🇺🇲 adi|freenode-US 60
- 🇺🇲 adi|freenode-US 61
- 🇺🇲 adi|freenode-US 62
- 🇺🇲 adi|freenode-US 63
- 🇺🇲 adi|freenode-US 64
- 🇺🇲 adi|freenode-US 65
- 🇺🇲 adi|freenode-US 66
- 🇺🇲 adi|freenode-US 67
- 🇺🇲 adi|freenode-US 68
- 🇺🇲 adi|freenode-US 69
- 🇺🇲 adi|freenode-US 70
- 🇺🇲 adi|freenode-US 71
- 🇺🇲 adi|freenode-US 72
- 🇺🇲 adi|freenode-US 73
- 🇺🇲 adi|freenode-US 74
- 🇺🇲 adi|freenode-US 75
- 🇺🇲 adi|freenode-US 76
- 🇺🇲 adi|freenode-US 77
- 🇺🇲 adi|freenode-US 78
- 🇺🇲 adi|freenode-US 79
- 🇺🇲 adi|freenode-US 80
- 🇺🇲 adi|freenode-US 81
- 🇺🇲 adi|freenode-US 82
- 🇺🇲 adi|freenode-US 83
- 🇺🇲 adi|freenode-US 84
- 🇺🇲 adi|freenode-US 85
- 🇺🇲 adi|freenode-US 86
- 🇺🇲 adi|freenode-US 87
- 🇺🇲 adi|freenode-US 88
- 🇺🇲 adi|freenode-US 89
- 🇺🇲 adi|freenode-US 90
- 🇺🇲 adi|freenode-US 91
- 🇺🇲 adi|freenode-US 92
- 🇺🇲 adi|freenode-US 93
- 🇺🇲 adi|freenode-US 94
- 🇺🇲 adi|freenode-US 95
- 🇺🇲 adi|freenode-US 96
- 🇺🇲 adi|freenode-US 97
- 🇺🇲 adi|freenode-US 98
- 🇺🇲 adi|freenode-US 99
- 🇺🇲 adi|freenode-US 100
- 🇺🇲 adi|freenode-US 101
- 🇺🇲 adi|freenode-US 102
- 🇺🇲 adi|freenode-US 103
- 🇺🇲 adi|freenode-US 104
- 🇺🇲 adi|freenode-US 105
- adi|freenode-Unknown
- adi|freenode-Unknown 2
- adi|freenode-Unknown 3
- adi|freenode-Unknown 4
- adi|freenode-Unknown 5
- adi|freenode-Unknown 6
- adi|freenode-Unknown 7
- adi|freenode-Unknown 8
- 🇸🇬 adi|freenode-SG
- 🇸🇬 adi|freenode-SG 2
- 🇷🇺 adi|freenode-RU
- 🇷🇺 adi|freenode-RU 2
- 🇷🇺 adi|freenode-RU 3
- 🇷🇺 adi|freenode-RU 4
- 🇳🇱 adi|freenode-NL
- 🇳🇱 adi|freenode-NL 2
- 🇳🇱 adi|freenode-NL 3
- 🇳🇱 adi|freenode-NL 4
- 🇳🇱 adi|freenode-NL 5
- 🇳🇱 adi|freenode-NL 6
- 🇳🇱 adi|freenode-NL 7
- 🇳🇱 adi|freenode-NL 8
- 🇳🇱 adi|freenode-NL 9
- 🇳🇱 adi|freenode-NL 10
- 🇳🇱 adi|freenode-NL 11
- 🇳🇱 adi|freenode-NL 12
- 🇳🇱 adi|freenode-NL 13
- 🇳🇱 adi|freenode-NL 14
- 🇳🇱 adi|freenode-NL 15
- 🇳🇱 adi|freenode-NL 16
- 🇳🇱 adi|freenode-NL 17
- 🇳🇱 adi|freenode-NL 18
- 🇳🇱 adi|freenode-NL 19
- 🇳🇱 adi|freenode-NL 20
- 🇳🇱 adi|freenode-NL 21
- 🇳🇱 adi|freenode-NL 22
- 🇳🇱 adi|freenode-NL 23
- 🇳🇱 adi|freenode-NL 24
- 🇳🇱 adi|freenode-NL 25
- 🇳🇱 adi|freenode-NL 26
- 🇳🇱 adi|freenode-NL 27
- 🇳🇱 adi|freenode-NL 28
- 🇳🇱 adi|freenode-NL 29
- 🇳🇱 adi|freenode-NL 30
- 🇳🇱 adi|freenode-NL 31
- 🇳🇱 adi|freenode-NL 32
- 🇳🇱 adi|freenode-NL 33
- 🇳🇱 adi|freenode-NL 34
- 🇳🇱 adi|freenode-NL 35
- 🇳🇱 adi|freenode-NL 36
- 🇳🇱 adi|freenode-NL 37
- 🇳🇱 adi|freenode-NL 38
- 🇳🇱 adi|freenode-NL 39
- 🇳🇱 adi|freenode-NL 40
- 🇳🇱 adi|freenode-NL 41
- 🇳🇱 adi|freenode-NL 42
- 🇳🇱 adi|freenode-NL 43
- 🇳🇱 adi|freenode-NL 44
- 🇳🇱 adi|freenode-NL 45
- 🇳🇱 adi|freenode-NL 46
- 🇳🇱 adi|freenode-NL 47
- 🇳🇱 adi|freenode-NL 48
- 🇳🇱 adi|freenode-NL 49
- 🇳🇱 adi|freenode-NL 50
- 🇳🇱 adi|freenode-NL 51
- 🇯🇵 adi|freenode-JP
- 🇯🇵 adi|freenode-JP 2
- 🇯🇵 adi|freenode-JP 3
- 🇯🇵 adi|freenode-JP 4
- 🇯🇵 adi|freenode-JP 5
- 🇯🇵 adi|freenode-JP 6
- 🇯🇵 adi|freenode-JP 7
- 🇯🇵 adi|freenode-JP 8
- 🇯🇵 adi|freenode-JP 9
- 🇯🇵 adi|freenode-JP 10
- adi|freenode-IN
- 🇭🇰 adi|freenode-HK
- 🇭🇰 adi|freenode-HK 2
- 🇭🇰 adi|freenode-HK 3
- 🇭🇰 adi|freenode-HK 4
- 🇭🇰 adi|freenode-HK 5
- 🇭🇰 adi|freenode-HK 6
- 🇭🇰 adi|freenode-HK 7
- 🇭🇰 adi|freenode-HK 8
- 🇭🇰 adi|freenode-HK 9
- 🇭🇰 adi|freenode-HK 10
- 🇭🇰 adi|freenode-HK 11
- 🇭🇰 adi|freenode-HK 12
- 🇭🇰 adi|freenode-HK 13
- 🇭🇰 adi|freenode-HK 14
- 🇭🇰 adi|freenode-HK 15
- 🇭🇰 adi|freenode-HK 16
- 🇭🇰 adi|freenode-HK 17
- 🇭🇰 adi|freenode-HK 18
- 🇭🇰 adi|freenode-HK 19
- 🇭🇰 adi|freenode-HK 20
- 🇭🇰 adi|freenode-HK 21
- 🇭🇰 adi|freenode-HK 22
- 🇭🇰 adi|freenode-HK 23
- 🇭🇰 adi|freenode-HK 24
- 🇭🇰 adi|freenode-HK 25
- adi|freenode-GB
- 🇫🇷 adi|freenode-FR
- 🇫🇷 adi|freenode-FR 2
- 🇫🇷 adi|freenode-FR 3
- 🇫🇷 adi|freenode-FR 4
- 🇫🇷 adi|freenode-FR 5
- 🇫🇷 adi|freenode-FR 6
- 🇫🇷 adi|freenode-FR 7
- 🇫🇷 adi|freenode-FR 8
- 🇫🇷 adi|freenode-FR 9
- 🇫🇷 adi|freenode-FR 10
- 🇫🇷 adi|freenode-FR 11
- 🇨🇳 adi|freenode-CN
- 🇨🇳 adi|freenode-CN 2
- 🇨🇳 adi|freenode-CN 3
- 🇨🇳 adi|freenode-CN 4
- 🇨🇳 adi|freenode-CN 5
- 🇨🇳 adi|freenode-CN 6
- 🇨🇳 adi|freenode-CN 7
- 🇨🇳 adi|freenode-CN 8
- adi|freenode-CA
- adi|freenode-CA 2
- adi|freenode-CA 3
- adi|freenode-CA 4
- adi|freenode-CA 5
- adi|freenode-CA 6
- name: 🌍 国外媒体
type: select
proxies:
- 🚀 节点选择
- ♻️ 自动选择
- 🎯 全球直连
- 🇯🇵 日本(adi|freenode)
- 🇯🇵 日本(adi|freenode) 2
- 🇯🇵 日本(adi|freenode) 3
- 🇯🇵 日本(adi|freenode) 4
- 🇯🇵 日本(adi|freenode) 5
- 🇺🇲 美国(adi|freenode)
- 🇺🇲 美国(adi|freenode) 2
- 🇺🇲 adi|freenode-US
- 🇺🇲 adi|freenode-US 2
- 🇺🇲 adi|freenode-US 3
- 🇺🇲 adi|freenode-US 4
- 🇺🇲 adi|freenode-US 5
- 🇺🇲 adi|freenode-US 6
- 🇺🇲 adi|freenode-US 7
- 🇺🇲 adi|freenode-US 8
- 🇺🇲 adi|freenode-US 9
- 🇺🇲 adi|freenode-US 10
- 🇺🇲 adi|freenode-US 11
- 🇺🇲 adi|freenode-US 12
- 🇺🇲 adi|freenode-US 13
- 🇺🇲 adi|freenode-US 14
- 🇺🇲 adi|freenode-US 15
- 🇺🇲 adi|freenode-US 16
- 🇺🇲 adi|freenode-US 17
- 🇺🇲 adi|freenode-US 18
- 🇺🇲 adi|freenode-US 19
- 🇺🇲 adi|freenode-US 20
- 🇺🇲 adi|freenode-US 21
- 🇺🇲 adi|freenode-US 22
- 🇺🇲 adi|freenode-US 23
- 🇺🇲 adi|freenode-US 24
- 🇺🇲 adi|freenode-US 25
- 🇺🇲 adi|freenode-US 26
- 🇺🇲 adi|freenode-US 27
- 🇺🇲 adi|freenode-US 28
- 🇺🇲 adi|freenode-US 29
- 🇺🇲 adi|freenode-US 30
- 🇺🇲 adi|freenode-US 31
- 🇺🇲 adi|freenode-US 32
- 🇺🇲 adi|freenode-US 33
- 🇺🇲 adi|freenode-US 34
- 🇺🇲 adi|freenode-US 35
- 🇺🇲 adi|freenode-US 36
- 🇺🇲 adi|freenode-US 37
- 🇺🇲 adi|freenode-US 38
- 🇺🇲 adi|freenode-US 39
- 🇺🇲 adi|freenode-US 40
- 🇺🇲 adi|freenode-US 41
- 🇺🇲 adi|freenode-US 42
- 🇺🇲 adi|freenode-US 43
- 🇺🇲 adi|freenode-US 44
- 🇺🇲 adi|freenode-US 45
- 🇺🇲 adi|freenode-US 46
- 🇺🇲 adi|freenode-US 47
- 🇺🇲 adi|freenode-US 48
- 🇺🇲 adi|freenode-US 49
- 🇺🇲 adi|freenode-US 50
- 🇺🇲 adi|freenode-US 51
- 🇺🇲 adi|freenode-US 52
- 🇺🇲 adi|freenode-US 53
- 🇺🇲 adi|freenode-US 54
- 🇺🇲 adi|freenode-US 55
- 🇺🇲 adi|freenode-US 56
- 🇺🇲 adi|freenode-US 57
- 🇺🇲 adi|freenode-US 58
- 🇺🇲 adi|freenode-US 59
- 🇺🇲 adi|freenode-US 60
- 🇺🇲 adi|freenode-US 61
- 🇺🇲 adi|freenode-US 62
- 🇺🇲 adi|freenode-US 63
- 🇺🇲 adi|freenode-US 64
- 🇺🇲 adi|freenode-US 65
- 🇺🇲 adi|freenode-US 66
- 🇺🇲 adi|freenode-US 67
- 🇺🇲 adi|freenode-US 68
- 🇺🇲 adi|freenode-US 69
- 🇺🇲 adi|freenode-US 70
- 🇺🇲 adi|freenode-US 71
- 🇺🇲 adi|freenode-US 72
- 🇺🇲 adi|freenode-US 73
- 🇺🇲 adi|freenode-US 74
- 🇺🇲 adi|freenode-US 75
- 🇺🇲 adi|freenode-US 76
- 🇺🇲 adi|freenode-US 77
- 🇺🇲 adi|freenode-US 78
- 🇺🇲 adi|freenode-US 79
- 🇺🇲 adi|freenode-US 80
- 🇺🇲 adi|freenode-US 81
- 🇺🇲 adi|freenode-US 82
- 🇺🇲 adi|freenode-US 83
- 🇺🇲 adi|freenode-US 84
- 🇺🇲 adi|freenode-US 85
- 🇺🇲 adi|freenode-US 86
- 🇺🇲 adi|freenode-US 87
- 🇺🇲 adi|freenode-US 88
- 🇺🇲 adi|freenode-US 89
- 🇺🇲 adi|freenode-US 90
- 🇺🇲 adi|freenode-US 91
- 🇺🇲 adi|freenode-US 92
- 🇺🇲 adi|freenode-US 93
- 🇺🇲 adi|freenode-US 94
- 🇺🇲 adi|freenode-US 95
- 🇺🇲 adi|freenode-US 96
- 🇺🇲 adi|freenode-US 97
- 🇺🇲 adi|freenode-US 98
- 🇺🇲 adi|freenode-US 99
- 🇺🇲 adi|freenode-US 100
- 🇺🇲 adi|freenode-US 101
- 🇺🇲 adi|freenode-US 102
- 🇺🇲 adi|freenode-US 103
- 🇺🇲 adi|freenode-US 104
- 🇺🇲 adi|freenode-US 105
- adi|freenode-Unknown
- adi|freenode-Unknown 2
- adi|freenode-Unknown 3
- adi|freenode-Unknown 4
- adi|freenode-Unknown 5
- adi|freenode-Unknown 6
- adi|freenode-Unknown 7
- adi|freenode-Unknown 8
- 🇸🇬 adi|freenode-SG
- 🇸🇬 adi|freenode-SG 2
- 🇷🇺 adi|freenode-RU
- 🇷🇺 adi|freenode-RU 2
- 🇷🇺 adi|freenode-RU 3
- 🇷🇺 adi|freenode-RU 4
- 🇳🇱 adi|freenode-NL
- 🇳🇱 adi|freenode-NL 2
- 🇳🇱 adi|freenode-NL 3
- 🇳🇱 adi|freenode-NL 4
- 🇳🇱 adi|freenode-NL 5
- 🇳🇱 adi|freenode-NL 6
- 🇳🇱 adi|freenode-NL 7
- 🇳🇱 adi|freenode-NL 8
- 🇳🇱 adi|freenode-NL 9
- 🇳🇱 adi|freenode-NL 10
- 🇳🇱 adi|freenode-NL 11
- 🇳🇱 adi|freenode-NL 12
- 🇳🇱 adi|freenode-NL 13
- 🇳🇱 adi|freenode-NL 14
- 🇳🇱 adi|freenode-NL 15
- 🇳🇱 adi|freenode-NL 16
- 🇳🇱 adi|freenode-NL 17
- 🇳🇱 adi|freenode-NL 18
- 🇳🇱 adi|freenode-NL 19
- 🇳🇱 adi|freenode-NL 20
- 🇳🇱 adi|freenode-NL 21
- 🇳🇱 adi|freenode-NL 22
- 🇳🇱 adi|freenode-NL 23
- 🇳🇱 adi|freenode-NL 24
- 🇳🇱 adi|freenode-NL 25
- 🇳🇱 adi|freenode-NL 26
- 🇳🇱 adi|freenode-NL 27
- 🇳🇱 adi|freenode-NL 28
- 🇳🇱 adi|freenode-NL 29
- 🇳🇱 adi|freenode-NL 30
- 🇳🇱 adi|freenode-NL 31
- 🇳🇱 adi|freenode-NL 32
- 🇳🇱 adi|freenode-NL 33
- 🇳🇱 adi|freenode-NL 34
- 🇳🇱 adi|freenode-NL 35
- 🇳🇱 adi|freenode-NL 36
- 🇳🇱 adi|freenode-NL 37
- 🇳🇱 adi|freenode-NL 38
- 🇳🇱 adi|freenode-NL 39
- 🇳🇱 adi|freenode-NL 40
- 🇳🇱 adi|freenode-NL 41
- 🇳🇱 adi|freenode-NL 42
- 🇳🇱 adi|freenode-NL 43
- 🇳🇱 adi|freenode-NL 44
- 🇳🇱 adi|freenode-NL 45
- 🇳🇱 adi|freenode-NL 46
- 🇳🇱 adi|freenode-NL 47
- 🇳🇱 adi|freenode-NL 48
- 🇳🇱 adi|freenode-NL 49
- 🇳🇱 adi|freenode-NL 50
- 🇳🇱 adi|freenode-NL 51
- 🇯🇵 adi|freenode-JP
- 🇯🇵 adi|freenode-JP 2
- 🇯🇵 adi|freenode-JP 3
- 🇯🇵 adi|freenode-JP 4
- 🇯🇵 adi|freenode-JP 5
- 🇯🇵 adi|freenode-JP 6
- 🇯🇵 adi|freenode-JP 7
- 🇯🇵 adi|freenode-JP 8
- 🇯🇵 adi|freenode-JP 9
- 🇯🇵 adi|freenode-JP 10
- adi|freenode-IN
- 🇭🇰 adi|freenode-HK
- 🇭🇰 adi|freenode-HK 2
- 🇭🇰 adi|freenode-HK 3
- 🇭🇰 adi|freenode-HK 4
- 🇭🇰 adi|freenode-HK 5
- 🇭🇰 adi|freenode-HK 6
- 🇭🇰 adi|freenode-HK 7
- 🇭🇰 adi|freenode-HK 8
- 🇭🇰 adi|freenode-HK 9
- 🇭🇰 adi|freenode-HK 10
- 🇭🇰 adi|freenode-HK 11
- 🇭🇰 adi|freenode-HK 12
- 🇭🇰 adi|freenode-HK 13
- 🇭🇰 adi|freenode-HK 14
- 🇭🇰 adi|freenode-HK 15
- 🇭🇰 adi|freenode-HK 16
- 🇭🇰 adi|freenode-HK 17
- 🇭🇰 adi|freenode-HK 18
- 🇭🇰 adi|freenode-HK 19
- 🇭🇰 adi|freenode-HK 20
- 🇭🇰 adi|freenode-HK 21
- 🇭🇰 adi|freenode-HK 22
- 🇭🇰 adi|freenode-HK 23
- 🇭🇰 adi|freenode-HK 24
- 🇭🇰 adi|freenode-HK 25
- adi|freenode-GB
- 🇫🇷 adi|freenode-FR
- 🇫🇷 adi|freenode-FR 2
- 🇫🇷 adi|freenode-FR 3
- 🇫🇷 adi|freenode-FR 4
- 🇫🇷 adi|freenode-FR 5
- 🇫🇷 adi|freenode-FR 6
- 🇫🇷 adi|freenode-FR 7
- 🇫🇷 adi|freenode-FR 8
- 🇫🇷 adi|freenode-FR 9
- 🇫🇷 adi|freenode-FR 10
- 🇫🇷 adi|freenode-FR 11
- 🇨🇳 adi|freenode-CN
- 🇨🇳 adi|freenode-CN 2
- 🇨🇳 adi|freenode-CN 3
- 🇨🇳 adi|freenode-CN 4
- 🇨🇳 adi|freenode-CN 5
- 🇨🇳 adi|freenode-CN 6
- 🇨🇳 adi|freenode-CN 7
- 🇨🇳 adi|freenode-CN 8
- adi|freenode-CA
- adi|freenode-CA 2
- adi|freenode-CA 3
- adi|freenode-CA 4
- adi|freenode-CA 5
- adi|freenode-CA 6
- name: 📲 电报信息
type: select
proxies:
- 🚀 节点选择
- 🎯 全球直连
- 🇯🇵 日本(adi|freenode)
- 🇯🇵 日本(adi|freenode) 2
- 🇯🇵 日本(adi|freenode) 3
- 🇯🇵 日本(adi|freenode) 4
- 🇯🇵 日本(adi|freenode) 5
- 🇺🇲 美国(adi|freenode)
- 🇺🇲 美国(adi|freenode) 2
- 🇺🇲 adi|freenode-US
- 🇺🇲 adi|freenode-US 2
- 🇺🇲 adi|freenode-US 3
- 🇺🇲 adi|freenode-US 4
- 🇺🇲 adi|freenode-US 5
- 🇺🇲 adi|freenode-US 6
- 🇺🇲 adi|freenode-US 7
- 🇺🇲 adi|freenode-US 8