-
Notifications
You must be signed in to change notification settings - Fork 0
/
v2-20240913160632.yaml
6388 lines (6388 loc) · 259 KB
/
v2-20240913160632.yaml
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
mixed-port: 7890
allow-lan: true
log-level: info
external-controller: 0.0.0.0:9090
dns:
enabled: true
listen: 0.0.0.0:53
default-nameserver:
- 223.5.5.5
- 114.114.114.114
nameserver:
- 223.5.5.5
- 114.114.114.114
- 119.29.29.29
- 180.76.76.76
enhanced-mode: fake-ip
fake-ip-range: 198.18.0.1/16
fake-ip-filter:
- "*.lan"
- "*.localdomain"
- "*.example"
proxies:
- name: US_youtube@ziyuanfenxiangba_1
port: 5500
server: 167.88.61.111
type: ss
password: :KixLvKzwjekG00rm
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_2
port: 9102
server: 139.64.165.154
type: ss
password: :e4FCWrgpkji3QY
cipher: aes-256-gcm
- name: NL_youtube@ziyuanfenxiangba_3
port: 40045
server: 45.130.147.178
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: /
cipher: auto
uuid: 3d716246-103f-4564-a41c-22ae44ad568e
alterId: 0
- name: US_youtube@ziyuanfenxiangba_4
port: 7306
server: 38.110.1.35
type: ss
password: :FoOiGlkAA9yPEGP
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_5
port: 2375
server: 139.64.165.63
type: ss
password: :faBAoD54k87UJG7
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_6
port: 20005
server: jp3.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_7
port: 7002
server: 139.64.165.230
type: ss
password: :RexnBgU7EV5ADxG
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_8
port: 20002
server: jp1.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_9
port: 3306
server: 139.64.165.101
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_10
port: 20001
server: hk3.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_11
port: 6697
server: 139.64.164.15
type: ss
password: :TEzjfAYq2IjtuoS
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_12
port: 9090
server: 139.64.165.123
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_13
port: 5000
server: 38.110.1.12
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: NL_youtube@ziyuanfenxiangba_14
port: 40045
server: 45.130.147.178
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: /
cipher: auto
uuid: be1bf1e8-f32c-47c5-bc83-cb657c5313f1
alterId: 0
- name: CN_youtube@ziyuanfenxiangba_15
port: 20002
server: sg3.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_16
port: 8119
server: 139.64.164.15
type: ss
password: :cdBIDV42DCwnfIN
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_17
port: 2086
server: 172.67.74.112
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip11.freegradely.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: US_youtube@ziyuanfenxiangba_18
port: 9090
server: 167.88.61.111
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_19
port: 2375
server: 38.110.1.46
type: ss
password: :faBAoD54k87UJG7
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_20
port: 2086
server: 172.67.74.112
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip11.freegradely.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: CN_youtube@ziyuanfenxiangba_21
port: 12956
server: z8.fragranceninja.com
type: vmess
network: ws
tls: true
version: "2"
skip-cert-verify: true
ws-opts:
path: ""
cipher: auto
uuid: a32313ad-5e39-4f9a-9cad-512041790050
alterId: 0
- name: US_youtube@ziyuanfenxiangba_22
port: 7306
server: 167.88.61.111
type: ss
password: :FoOiGlkAA9yPEGP
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_23
port: 2086
server: 104.19.45.31
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip13.freegradely.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: CN_youtube@ziyuanfenxiangba_24
port: 20004
server: sg3.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_25
port: 2086
server: 172.67.71.187
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip1.1789034.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: US_youtube@ziyuanfenxiangba_26
port: 6679
server: 38.110.1.102
type: ss
password: :TEzjfAYq2IjtuoS
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_27
port: 2086
server: www.visa.com
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip1.1789034.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: US_youtube@ziyuanfenxiangba_28
port: 5601
server: 139.64.165.63
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_29
port: 8008
server: 139.64.165.115
type: ss
password: :XKFKl2rULjIp74
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_30
port: 2086
server: 104.19.47.88
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip1.1457230.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: NL_youtube@ziyuanfenxiangba_31
port: 40045
server: 45.130.147.178
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: /
cipher: auto
uuid: b0a01268-5765-48c1-971a-3b424d2dde30
alterId: 0
- name: US_youtube@ziyuanfenxiangba_32
port: 8009
server: 139.64.165.115
type: ss
password: :XKFKl2rULjIp74
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_33
port: 2086
server: 104.26.5.67
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip1.1789034.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: CN_youtube@ziyuanfenxiangba_34
port: 20006
server: jp4.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_35
port: 7307
server: 38.110.1.102
type: ss
password: :FoOiGlkAA9yPEGP
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_36
port: 3306
server: 38.110.1.46
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_37
port: 3389
server: 38.110.1.12
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: NL_youtube@ziyuanfenxiangba_38
port: 40045
server: 45.130.147.178
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: /
cipher: auto
uuid: f5af2cdf-5bfa-4338-b724-234c4e12f289
alterId: 0
- name: CN_youtube@ziyuanfenxiangba_39
port: 20001
server: jp3.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: CH_youtube@ziyuanfenxiangba_40
port: 443
server: 156.146.62.164
type: ss
password: :shadowsocks
cipher: aes-128-gcm
- name: CN_youtube@ziyuanfenxiangba_41
port: 20005
server: jp1.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: CN_youtube@ziyuanfenxiangba_42
port: 20027
server: sg4.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_43
port: 2086
server: japan.com
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip1.1789034.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: US_youtube@ziyuanfenxiangba_44
port: 5500
server: 139.64.165.155
type: ss
password: :KixLvKzwjekG00rm
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_45
port: 6697
server: 139.64.165.154
type: ss
password: :TEzjfAYq2IjtuoS
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_46
port: 20027
server: jp2.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_47
port: 7307
server: 139.64.165.149
type: ss
password: :FoOiGlkAA9yPEGP
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_48
port: 20024
server: hk2.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_49
port: 8119
server: 139.64.165.137
type: ss
password: :cdBIDV42DCwnfIN
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_50
port: 7307
server: 139.64.165.63
type: ss
password: :FoOiGlkAA9yPEGP
cipher: aes-256-gcm
- name: NL_youtube@ziyuanfenxiangba_51
port: 40045
server: 45.130.147.178
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: /
cipher: auto
uuid: 0a8223af-7d6e-46a7-824a-6c19237e8539
alterId: 0
- name: NL_youtube@ziyuanfenxiangba_52
port: 40045
server: 45.130.147.178
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: /
cipher: auto
uuid: 28105bcf-e217-42f0-b3f6-36d4c01046d4
alterId: 0
- name: US_youtube@ziyuanfenxiangba_53
port: 2376
server: 139.64.165.123
type: ss
password: :faBAoD54k87UJG7
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_54
port: 5601
server: 139.64.165.144
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_55
port: 5004
server: 139.64.165.144
type: ss
password: :g5MeD6Ft3CWlJId
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_56
port: 20004
server: 14.215.169.69
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_57
port: 5500
server: 139.64.165.63
type: ss
password: :KixLvKzwjekG00rm
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_58
port: 1342
server: gdyddx500.xiyunchen.cn
type: ss
password: :63b37069-ade8-4d4c-a6dc-1161df539069
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_59
port: 7002
server: 38.110.1.12
type: ss
password: :RexnBgU7EV5ADxG
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_60
port: 13001
server: z3.fragranceninja.com
type: vmess
network: ws
tls: true
version: "2"
skip-cert-verify: true
ws-opts:
path: ""
cipher: auto
uuid: a32313ad-5e39-4f9a-9cad-512041790050
alterId: 0
- name: US_youtube@ziyuanfenxiangba_61
port: 5600
server: 139.64.165.63
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_62
port: 20023
server: tw1.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_63
port: 8008
server: 139.64.165.137
type: ss
password: :XKFKl2rULjIp74
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_64
port: 9090
server: 38.110.1.46
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_65
port: 2086
server: 104.19.47.88
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip1.1457230.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: CN_youtube@ziyuanfenxiangba_66
port: 20010
server: tw4.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_67
port: 5500
server: 38.110.1.102
type: ss
password: :KixLvKzwjekG00rm
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_68
port: 5498
server: 38.110.1.46
type: ss
password: :lGqs95QkFHo2NV
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_69
port: 8882
server: 38.110.1.103
type: ss
password: :kDWvXYZoTBcGkC4
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_70
port: 5003
server: 38.110.1.102
type: ss
password: :g5MeD6Ft3CWlJId
cipher: aes-256-gcm
- name: AU_youtube@ziyuanfenxiangba_71
port: 443
server: 43.153.80.208
type: trojan
network: ws
udp: true
sni: aliorg.filegear-sg.me
password: CMLiu
skip-cert-verify: true
ws-opts:
path: /
headers:
host: aliorg.filegear-sg.me
- name: US_youtube@ziyuanfenxiangba_72
port: 8009
server: 38.110.1.17
type: ss
password: :XKFKl2rULjIp74
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_73
port: 2086
server: 104.26.0.50
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip5-4.freegradely.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: NL_youtube@ziyuanfenxiangba_74
port: 40045
server: 45.130.147.178
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: /
cipher: auto
uuid: 93dda7b3-51b3-42ec-8b4b-7edbf28c6eb6
alterId: 0
- name: US_youtube@ziyuanfenxiangba_75
port: 7307
server: 139.64.165.101
type: ss
password: :FoOiGlkAA9yPEGP
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_76
port: 12973
server: z8.fragranceninja.com
type: vmess
network: ws
tls: true
version: "2"
skip-cert-verify: true
ws-opts:
path: ""
cipher: auto
uuid: a32313ad-5e39-4f9a-9cad-512041790050
alterId: 0
- name: US_youtube@ziyuanfenxiangba_77
port: 6679
server: 139.64.165.151
type: ss
password: :TEzjfAYq2IjtuoS
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_78
port: 7002
server: 38.110.1.102
type: ss
password: :RexnBgU7EV5ADxG
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_79
port: 20027
server: tw4.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_80
port: 443
server: richu.pages.dev
type: vless
network: ws
tls: true
servername: richu.pages.dev
ws-opts:
path: /?ed=2048
uuid: 90137e2d-2a00-4acf-8c5d-a75dfb9c922b
- name: US_youtube@ziyuanfenxiangba_81
port: 2082
server: 172.67.130.140
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: /
headers:
host: s1c.v2.v001sss.xyz
cipher: auto
uuid: 112ac36f-3f53-4e26-8371-d25c028e1b9a
alterId: 0
- name: US_youtube@ziyuanfenxiangba_82
port: 3389
server: 38.110.1.17
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_83
port: 2086
server: fbi.gov
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip1.1789034.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: CN_youtube@ziyuanfenxiangba_84
port: 20006
server: 14.215.169.69
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: CN_youtube@ziyuanfenxiangba_85
port: 12900
server: z2.fragranceninja.com
type: vmess
network: ws
tls: true
version: "2"
skip-cert-verify: true
ws-opts:
path: ""
cipher: auto
uuid: a32313ad-5e39-4f9a-9cad-512041790050
alterId: 0
- name: US_youtube@ziyuanfenxiangba_86
port: 443
server: 38.110.1.12
type: ss
password: :pKEW8JPByTVTLtM
cipher: aes-256-gcm
- name: NL_youtube@ziyuanfenxiangba_87
port: 40045
server: 45.130.147.178
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: /
cipher: auto
uuid: 2f71a088-d6b3-417a-b1aa-d5d1d7522815
alterId: 0
- name: US_youtube@ziyuanfenxiangba_88
port: 8119
server: 38.110.1.102
type: ss
password: :cdBIDV42DCwnfIN
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_89
port: 2086
server: 104.18.15.19
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip1.1789034.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: unKnow_youtube@ziyuanfenxiangba_90
port: 17824
server: caiyun-kr.07wi0kka34.download
type: ss
password: :a5c5d68b-df49-4cc3-bd0d-4d263827e95d
cipher: aes-128-gcm
- name: CN_youtube@ziyuanfenxiangba_91
port: 12947
server: z8.fragranceninja.com
type: vmess
network: ws
tls: true
version: "2"
skip-cert-verify: true
ws-opts:
path: ""
cipher: auto
uuid: a32313ad-5e39-4f9a-9cad-512041790050
alterId: 0
- name: US_youtube@ziyuanfenxiangba_92
port: 5601
server: 139.64.165.230
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_93
port: 5000
server: 38.110.1.46
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_94
port: 5004
server: 38.110.1.102
type: ss
password: :g5MeD6Ft3CWlJId
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_95
port: 8091
server: 139.64.165.149
type: ss
password: :PCnnH6SQSnfoS27
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_96
port: 3389
server: 139.64.164.15
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_97
port: 6697
server: 139.64.165.155
type: ss
password: :TEzjfAYq2IjtuoS
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_98
port: 5001
server: 139.64.165.155
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_99
port: 12972
server: z3.fragranceninja.com
type: vmess
network: tcp
tls: true
version: "2"
skip-cert-verify: true
cipher: auto
uuid: a32313ad-5e39-4f9a-9cad-512041790050
alterId: 0
- name: US_youtube@ziyuanfenxiangba_100
port: 2376
server: 38.110.1.46
type: ss
password: :faBAoD54k87UJG7
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_101
port: 5498
server: 139.64.165.151
type: ss
password: :lGqs95QkFHo2NV
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_102
port: 6697
server: 38.110.1.102
type: ss
password: :TEzjfAYq2IjtuoS
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_103
port: 2086
server: icook.tw
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip1.1789034.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: CN_youtube@ziyuanfenxiangba_104
port: 20006
server: hk5.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: CN_youtube@ziyuanfenxiangba_105
port: 20006
server: jp5.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: CN_youtube@ziyuanfenxiangba_106
port: 20005
server: hk1.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_107
port: 5499
server: 38.110.1.35
type: ss
password: :lGqs95QkFHo2NV
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_108
port: 9090
server: 139.64.165.144
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_109
port: 5500
server: 38.110.1.103
type: ss
password: :KixLvKzwjekG00rm
cipher: aes-256-gcm
- name: US_youtube@ziyuanfenxiangba_110
port: 2086
server: 104.19.47.27
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: github.com/Alvin9999
headers:
host: ip2.1457230.xyz
cipher: auto
uuid: e9e3cc13-db48-4cc1-8c24-7626439a5339
alterId: 0
- name: US_youtube@ziyuanfenxiangba_111
port: 2375
server: 38.110.1.103
type: ss
password: :faBAoD54k87UJG7
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_112
port: 12954
server: z2.fragranceninja.com
type: vmess
network: tcp
tls: true
version: "2"
skip-cert-verify: true
cipher: auto
uuid: a32313ad-5e39-4f9a-9cad-512041790050
alterId: 0
- name: CN_youtube@ziyuanfenxiangba_113
port: 20006
server: sg2.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_114
port: 8888
server: 38.110.1.17
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_115
port: 20006
server: tw3.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_116
port: 3389
server: 38.110.1.103
type: ss
password: :Y6R9pAtvxxzmGC
cipher: aes-256-gcm
- name: CN_youtube@ziyuanfenxiangba_117
port: 12967
server: z8.fragranceninja.com
type: vmess
network: tcp
tls: true
version: "2"
skip-cert-verify: true
cipher: auto
uuid: a32313ad-5e39-4f9a-9cad-512041790050
alterId: 0
- name: CN_youtube@ziyuanfenxiangba_118
port: 20001
server: tw4.mhw7e2.online
type: ss
password: :70747514-fb14-4f31-8390-e1f0453eff6d
cipher: chacha20-ietf-poly1305
- name: US_youtube@ziyuanfenxiangba_119
port: 2052
server: hk.wish.ml
type: vmess
network: ws
tls: false
version: "2"
skip-cert-verify: true
ws-opts:
path: /
headers:
host: us13.wish.ml
cipher: auto
uuid: b9c7bca6-80e3-42d6-b885-6fedcf62c711
alterId: 0
- name: US_youtube@ziyuanfenxiangba_120
port: 2086
server: 104.19.42.49