-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlargepool.txt
More file actions
2381 lines (2381 loc) · 305 KB
/
Copy pathlargepool.txt
File metadata and controls
2381 lines (2381 loc) · 305 KB
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
@type bridge-pool-assignment 1.1
bridge-pool-assignment 2025-03-03 00:06:54
0004f8aea55fe852194674c8554d68cc5e7a5bba email transport=vanilla ip=4,6 port=443 distributed=true state=functional bandwidth=untested
0009fd594d4f125e3300826adade11964c925dd5 https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
0082e9f98381722fe14fae3248548f98ec485780 reserved transport=vanilla ip=4,6 distributed=false state=dysfunctional bandwidth=untested
009cda476053b5df4441211cb25f9b2190bb0128 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
00b6545499d9aeaebd6e0e228b92e557d640eb75 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
00e1ae6cb75e47e363e6aef9f67a49c0e854fde7 https transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=accepted ratio=1.490
00e44c30ccef237102e20a7d75330668c28fb3ab settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
01211ae573a28fff727c837ba8f4d7e9e667c74d settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
01360b087e3659600bdc8ea969610d83ebb055b4 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
01471e73d4197d8e7f7d9014211138f4fa4e7de7 https transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=untested
015564c3c036fd723a5751044568c7167774c316 email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
0165525ecf8a32ad854ec5a3964457959708be6d https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
018f98665c2092075c03ae0e01e2b911e4e79599 email transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
01c4f4c5dc312e0959eed76e520e899e8b971552 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.898
01c6574d62a56f428fa649834d2bb21646f2a78e moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.579
01d7b24a1260a8fb41cb9a66a5ba108937a4a362 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.471
01ff41dbc553407ca420683c57d7eb226eeaee57 https transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.286
0225abaca3bc389b5b6202362fbcc931438e1221 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.634
0230f2b1c27d77a57d00d238a74d2c650499ac71 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
027a431f59d4f8bf0548b6229d3a15d35381dbfd moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.158
02926c29e0dac661d9373836b7834700b6c48826 https transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.044
029a87c1c38480cc21ccea9925cc7b836fa7ae1c settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.949
029cd806ba548c6a3883fbee884cc0c9638ae746 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.958
02bdb139b754276158c0e3b6f0088923123e0fa0 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
02ec75a5b1ffd092a653db489cf7c9ed9ef42352 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
02f532873ffc80388f410fa7cad6bdc870f8e5b7 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.729
031ca7f7db3f904502953d41def8c377d0866815 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=accepted ratio=1.503
032d3202baf16adf5180e15f0b1597ddb351f30a settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
0342ac676b788495de268ae750358cdeaed6054b settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.273
03615c3a9adb5c98729bb6004d94bfe4a6916774 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
03660636b09c109375aaf823b88ce477aaf969e9 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.248
0366cae1d8a6d8f1433de79d80fe9975dda3b847 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
03a874816d7a62fcdb71df59c1d42e883ee61fba email transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
03b8c4ef77e5fe2c4c8d1efd2b740edaf4755a64 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
03d02ba8e51a95084ae0745c84cbd2192ebe1324 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
03e8114a952fa4cd6f316c7b08ec33cc72c771ea settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
03fe06ccbfdc30ba2fa6311420df022cbf00cb1b email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
042a617439dca6cf126ef9c607acd42b909d5ce5 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.009
042d49e29820a22137138568ae8cd43e9bb6e28f settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.260
04a987c6ca6a7d84fb7d3635ebb83549fbdd0b54 https transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=untested
04d8c8ba8220b3ee5b9d5b4c4c6c2e1dacf70c29 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
05141783ff1bdd475cf65c60f017366131adbb69 email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
051b87003ff7450442f10a6720d067aca69e34aa telegram transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
057e0f7b92ce70699f691a1481ec4d56e3bf37d7 https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
057fe28c84818899bb4a592cf3dfb79e6dac7931 settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=rejected ratio=0.770
05bc18fc62a03fd9d8bd94efd35cb15f1ccfc894 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.968
05c26c76135af8fec829a176e1d3e86e0b2bf2b1 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
05d1d2db9a596cf91309c6eb78e659277ea9e382 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.738
05d298e6bc54500c3dba8fe773b4dd5d9b241b86 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
060e65dd3b29db333551a9dad50a1e3971d3bd68 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.930
0611c65066c3a3e0d39a7934210a0d0b95e7b5d4 moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.933
061306f705c0a36f8efcdcbd0c5af1aa82a5c0a3 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.609
064bcf438f11b150dacb17b7ab0c05497d2c3a73 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
0653ad30c3e2a39c0357394a9339907aa1e74554 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.583
065ea370142cffcb51fc93412d6c1552b4bfbfb2 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.429
0663f3e7008870fffb498d7089681484406768ad moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.547
0693859283b4f83257d6888715b9be586b5fadd3 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.618
06c763599c1c8c1581f862596f3b8f7f511bcae9 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.844
06d90ca07e453c953036c3c2ec63996277acb846 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.375
0724e0296dbea2bff7aab121e6ea211cea7de843 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
0727bac850ec47610850d689485597da23ad3644 https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
0738e4455aef69cbf6e061fdbd4e549611df22b6 email transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
073d476e2c7b169b1c1d440d2e83c86eab6db51d settings transport=vanilla ip=4,6 port=443 distributed=true state=functional bandwidth=untested
075f9dcfdd0b32cb1971499ceaf55490243ddc7b telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.407
0786be0460894f8dcaaf1e5df84c215f378368e9 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.306
078b37a58ef118de331a8bcac8cad75f45c7be93 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.008
0793cf5fa3f4ae3d10843ea1e5af2bfd6a98ee22 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.499
07a8451c367603de2cc39465649dcf983ccf937a telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
07b8e54a53119576c3e68a6ed6de860748f79529 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.028
083e77d4ff1bf074fcb101a5ba3e0c0a6ac225bd email transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.101
084026b22cdde99962c1fd8bb31ffe125247418b settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.995
084a57169e7ef6026e064390addc50a2a5a36a4a https transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=2.476
087fa3923edca8478fc6fb57ceed274ab900de99 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
089594831289fcb387b6eedc9516d72a7b02b1a3 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
08a9e27b6b197366ada04f5d8f46f19b504b0932 none transport=webtunnel ip=6 port=443 distributed=false state=functional bandwidth=untested
08ab5f02f0e07d4f9ed030fb994a14bf2896b8ca settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
08cff2d173c5481ad4209d40a794454423cb8fd2 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.340
09086d07cc2fba7cf05da7c920850255bee60a5d moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.957
092e65bd01c2b85bd4f8f054d74d6672d030fb99 moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=0.954
09448385660da8cd3ac99fa7b80ceb64629fa802 settings transport=obfs4 ip=4 blocklist=ru distributed=true state=functional bandwidth=accepted ratio=1.194
0946de010597aa9d7a4d993aff075812c00055c8 https transport=vanilla ip=6,4 distributed=true state=functional bandwidth=accepted ratio=1.342
0948913fd982e102ce0205877f880c96d6c0a4aa https transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.133
0957d0a93fae7f40bddc1f17d20efc260a45664f settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
096a1429b6e6644f2f6c975d52b3d138425a5c6c none transport=obfs4 ip=4 blocklist=ru distributed=false state=functional bandwidth=accepted ratio=0.962
0988e796294e4172c7c9fa5e1fcdaa74cbe83d94 telegram transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=untested
098ecc8cc3274ea511b546f61686a6c404456f93 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
09a36fe76f105850f148b2706e6f0d16d6b679ef email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
09d0077d4cf4cd21a8053c0268c72010e1235494 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=accepted ratio=2.511
09d5748ea4b52cf0aa08a2d0c9295c6639b5cc9c settings transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
09e3127a8f17fc634de6ec8e1d1befbec4eb96b9 email transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
09fa4dbe4a5bd82c3f291f05f05f5976f1b695f3 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.172
0a1d3f6153a57ebd9798d5d09ce42a17b0b83ae6 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
0a6d4d22e5443a9154a23a623a51d6d168ddec35 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.240
0a702f694dabeb400e374becbe79fa4929cd9713 https transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
0a8ec330d6c04a275c91f1810cfe36e78ca1e515 email transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
0a964b178562ccdd5ddedfe500c878c82f8d4541 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
0a9a441bf34d17021dc6c3162405249b3f0c9444 moat transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=rejected ratio=0.847
0aaf7caf6d3fe9f4adfa42061027f78daf0ce778 telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.372
0ac66da30034b33eaf2a59643207a20481f25aab https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
0ad4c12ca8e64be3592f62c14d390a59c5523562 reserved transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=untested
0aea87b908543edaf0d541dca9d22e8a1246990c https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
0b537cf456799cd72dd8a4e745e67ac05449da7b https transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.658
0b53ba8252cd6dde8bdf9532e19e8d1d83e5d30a settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
0b6119e2600d0ff8af00ef47adeab03c9ff7c344 settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.050
0b67817d98fd3b1c3420fb20b25dd574dd10dc6e settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.786
0b9635d4732b705336d0fbeb339d6d0385508b93 https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
0bc24c885f913f8159d5ff3f426edb6ae271b52d email transport=vanilla ip=4 distributed=true state=functional bandwidth=rejected ratio=0.174
0bf5da8e1fcd4a8128b2ff94ee408f0f0c438158 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
0c17c2cee67c44ff3eed42eeac283fd3e2e5eea6 email transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.210
0c1963a315a82743aae5d1a4d01b837a00153bd8 settings transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=accepted ratio=1.489
0c1a2619059f59871c0d7458709f36338b662310 email transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.063
0c5a8c5dc0f52919a1e3268d6e4dbf4f44d873fd email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
0c8df96bdbbdb55e8db1c75455ce3e8ca93e2516 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
0c96cc7fea5786d698ca7f0782b15bbab6438055 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
0ccf0aea2d5cee75ed2314ec1beffe059f1853a2 https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
0cd4d467834819a53e0e3fb093bc758f402de040 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.479
0d0fdfceed47f621238d516aca11e5e3932018a4 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.806
0d5af458d7ba881a0c31920b7f8e53e441143b2e https transport=vanilla ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.582
0db6cbc91f1929dec5b9ea9c89d84c3fa9b83bcf settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
0db6f8a455ffe597c6cf61e0760e014469bbb52e https transport=obfs4 ip=6 distributed=true state=functional bandwidth=rejected ratio=0.767
0dbcca3a39cb7b17efd5fb79d39a568409ad0a81 settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=2.008
0dc018b6e5d939d3a99de9b730b3dd38eb3e4a8c moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=rejected ratio=0.776
0ddba008e174497eca53f9db5862d365360b2db0 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.255
0de1ff2a6feaea0d10fd0717af06a924b27b8dc2 settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
0de7f205b03a1de0d24cc08216c6ded419530fdd none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
0df2d21e180c62ccdf25cf9134fcbf01ac47ad88 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.745
0e1230488b3fbd71bd0449d1440456b4b2534136 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
0e46c0826425ee2256c7541375eed505038cde6d moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.516
0e72ff4fd837fac2c2c745e8b755c940a4eb1b79 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
0e9da5eaa564548efef6e467ef85ade7db71c83b moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.542
0eb7054460827580af6724616a20c1af38a324c1 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
0ee8808b30493ede086e51e2a5d3d8b7b44a63c2 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.160
0f16575cc6b307820ed238f4d2020172e625a28a settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
0f1a06ff4f897ceef8bf7d0797cde8ed1647e467 https transport=obfs4 ip=6 distributed=true state=functional bandwidth=rejected ratio=0.899
0f229b44fd9e4a2288ae8278048464eb83034862 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
0f363c85957c22037d94d916eacf1779cd288a22 https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
0f3aaa0ab36f38a4468325e3f1428040144bca89 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.844
0f63362f6c01ca29f7bda4ebd19e46ab91913fbb settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.242
0fa8c5b2934f6af8540efbd5c4aa38a00fccbbf7 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.159
0fd8a00fa84f4a77b8ed4e9faccd2f40c06f1da2 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
0fde29cd70151fd03b7ee8aeeabbc4ac2f191b69 https transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.596
0fe07805d1ac1922ee9570a5e0908f49a38f252f reserved transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
100925a956ec04d03f26e68d03727c8870f74852 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
100b763486e6383c0986bf42cb0bfd332dac47f4 settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.470
101155fe38d41ba68e3a6f2a2794c56582f1efed email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
102fa1a1adcea14c20669b35e3fcd152f74b38e0 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
1031dc02240780b4d7674ea2e1aba7823d1d152f https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1054ed7f6d273dc28b8e1065e5bb010757628f26 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.540
1064e56a14e68562e37207491286101d64b945c9 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.123
10a34a92a95bab40b91b20ba5bda4f49b94a565e none transport=webtunnel ip=6 port=443 distributed=false state=functional bandwidth=untested
10aca6338bab76b30165fb88ea2a160144484238 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
10ba1706695d516090a1b9dd922486a2853bbe4a settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
10dc81114eb4f2f3b5e51e502dc07257a566aea9 moat transport=obfs4 ip=6 blocklist=ru distributed=true state=functional bandwidth=accepted ratio=1.158
10dd3476b69904162d03359686c713658d89a9c8 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
114a3d68f1f64359b8d21c75383426f64477efcc settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
11662373cc32933c548fe44de3d47614bef108cf email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
116a3d43158855b51345d6b22f985330f8ced9c6 lox transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.897
11823662a38f238e82dceb9564addcd6972b56ad moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=rejected ratio=0.897
11b27ff935e0ae5da7d4f8d36caf7915daac2079 settings transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=accepted ratio=1.001
11d5fa18b9631d0b58b804a750ca2ddf807d5dfa settings transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=2.068
11fb30be7e828513756d0de08e85e4afef912956 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.889
12220e22de0f34cd3ab30761f96c4a0f3e247445 email transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=untested
124fd20dd2d7ce9a9bd4e171e0c067a91d28274e email transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
12645427453d541fd8f8f6802ea09532e0d62cda email transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.099
12667cb9321711e28e682c2d9e45ac43695fbeed moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1286976cb13202182377931f9a75dec6ef4fbb93 email transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=untested
128906bf9194a15a2f888ef6967f440b27e6d2b1 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
129f8a6f41834b19bb2473f873becde504867ecb settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
12d7bae6e32b64a3cdda29548e3cc0f468ad83bf telegram transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.667
12eae91db9cb7621c57fc6d7f8a007ca757fa3d1 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
12f83db8f3558f792e9ef07756c2d4f6063aab10 telegram transport=obfs4 ip=4 blocklist=ru distributed=false state=dysfunctional bandwidth=untested
130d1bb4073e4f1b456c8e91bf0ff7a21232d042 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.255
1317ea5342217a83300535a4672ef4f8eb9336a1 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
13212f2ce0529805ca03b9cc6a0d446055b5987e https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
133d07d3d09ff8000d50ae0e8308c97b62c77e53 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1372c3d415b3c07ecdada8f551551ed49aa3e5c8 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1379dfce52880eeed646faeb115e09196b73c6bb email transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
1397a1d3415f74fbfec613a7fac23cd32d4de6b8 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.401
139dadd6868ab487762a55e09874c91292721040 moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
13e545347ace79eb37a106e1c6be0a14427dedcf moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.275
1434cb3a576f731f9b8c84fb4acb8fcebebdcf6f none transport=webtunnel ip=6 port=443 distributed=false state=functional bandwidth=untested
1459e1001b0589cd7cb6ebec46e6a46f6cd77119 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.065
147dff5a01542910e8dabf5180f4ee0a3269a5b3 email transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
148c701d7e7bab64da5cac99a68156c65cfa190b settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.206
14c07819fdc0684c426659b37ab353bde284eb1c settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
14d63e041044d8510340e3fdec8f5384874cce33 https transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
152891e7726efbdafcca5e6f069c9ba872212cc8 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.091
152ad5e093401a9d5bc89125a6acb6568b6c9b52 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.262
15517c406df9e8fea99e9aea48a6784667ce67c1 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.329
155891b344b248c665854eb35271bc84e2414531 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
156d6ae34ca1c065840773aa6361b274240fbd41 telegram transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
1599b8ffe08e06b8c6aab320c974266fec9af794 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
159dae6bc567cae6f87281077518b6593c49e131 settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.425
15a6a0ff0d095a74afd181b74c119f2b9730845f https transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.195
15bec292703a149be44c5770b4a7758980e66db1 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
15d3faf17cc779534343bc49fa2534ea966c4b9a https transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.995
15f30f225d7bcfe9da50f19cc239aa31e6559f55 telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=2.084
1600fefee17d54a00b3f63326875c8063e2e57c8 lox transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=2.072
161085cfdebe6b1dbec74874a308dfff294ebb16 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.328
161cb1427400c437edf0e3132197d5e6702e06cc email transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
164bb0c838ba84bafacb9e6db685aff4a6136edf settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
166c7f859da49aa4f0c0d97c0d9c2f62144b5999 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
166f7da752db82ebef5a05c8a23d1074773ae97a https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1682a38e8b37a25c53c7c3a4c2b906c47112a434 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
16845a7448052fe3d1023d1c9d0b34787f9c5a67 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
168ce0ec2371af96d21b642221d4fad9ec0e17f1 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
169d68c4dc7b3f12697468325e880238d3b5c6e7 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
169f4d100b8666118a4e0f0a056af2176f7f95c6 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
16a24768a2d939babe86a40bf0abc1a2236d41b1 none transport=vanilla ip=4 distributed=false state=functional bandwidth=rejected ratio=0.678
16a3cc4c0072206366970a4a2aff06aa44e0da2e moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.341
16b0da37ec3cb7679aa3da8c7f3309fee9278665 https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
16daa505d0f7f2d46aff9dacdc62c2f7a4cdfb88 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.290
1719a4865a94c04a16eb24b0c76f30c6372e679c settings transport=vanilla ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.673
171cac71cb7359acb622d09d113bc32278a5838f telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
172bfca6be4d0b0bc4929a11c53a8edddefc4064 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
1732d25a880b529587eb4bb59c785baf2e49dfdc moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
177a2f6c4f2afdd4977721e692f1322eab191ec2 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
1780dd7be8e250a270a92c231ea3929e323ede9d telegram transport=obfs4 ip=4 blocklist=ru distributed=false state=dysfunctional bandwidth=untested
178dab73b3c57fb77c4bfdf3d554c7a8288943e2 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
17a966f91fe68ea362388a7262920bc92a07221e email transport=vanilla ip=4,6 distributed=true state=functional bandwidth=rejected ratio=0.254
17a9d201a0e48fba3aa384b4292de44cdc0e6080 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=0.921
17bebfe606ce727a76e5e97e715d31e6c4006fc2 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
17d8d3c30ff61300000ad6b0351da727f4d12aa1 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
17fd8a5c6830deaff189150790ab7f24bc01057d moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=2.059
18011ba25e1b048e36604f3ef1a398266c15c8a5 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
18146a413a50186fadd788dc7aede56f719d82f8 reserved transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.060
182daa6033a1b39a954bfaed4a7e6cdc71774d4d https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.491
18522e35fbb9546903124b3b7af8022028f57734 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
185afc5a6e2b06397b39899cdc62659916f41025 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.046
1873abd3b712574aa39b982359386b3bc00b8a25 settings transport=vanilla ip=4 port=443 distributed=true state=functional bandwidth=untested
1895a7c0aa811b89c5e561057ec900f6b1eff409 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.414
18996b3825705fc3b47fda140654dff7a9c6313d none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
18a6aec4930f944ae54e18b8639d949bb427430f settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.729
18a704f6e2e76bda191cfffd1c463ada56707833 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
18a87ead6c8d9c2af52ca0c705d3f6b8a048c709 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.002
18ddbc0cdf91f3d4b3872341ed05c32170836e5f settings transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=untested
1905986aadaa2fc481186735d6cb95360e325114 reserved transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
190bd0e6b9fd63ff652679fd7f2fed3423f475e5 moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
190f559a43ba45063c0b4e450190592e7fb74e9a none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
191d4490081080b920c1e8d1c4891e800f423ad9 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
1929ebe72ffd7b942314f2a5bb4946b827653878 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
19869d36c38c228eb304091457d0a55cde42a792 telegram transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
199119a0fea9c6ad948a2c3349ce7b6f8946c3dc moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.324
19a83c516a28762a258ec837c87321fd4e15febd settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.172
19c9b070003c9670bb6b5693771fef94ae791422 reserved transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
19d64ea4945ec5ce96c039f76e33804965da3993 email transport=vanilla ip=4,6 port=443 distributed=true state=functional bandwidth=accepted ratio=2.355
19e795df3b200e38be837cf260658f639eb902e5 reserved transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
19f40cceaffa3b61632b91e6c203386d9da409a4 https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.722
1a00fb316fee3a9c63b60720b412288346595d30 email transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
1a04afe8e3f2ff9262f00405921a20707d218464 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1a1b29fc9333eb9aeb869b1e84390cda9ae0c219 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
1a1fe6ae9b6eacfe87e5ab9069d0986ead9fcedb settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
1a2a4455ab4ba208448ef8b65086b8c146de9d8f moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.649
1a2c4dbb71d3b6ff180d7528f122f164bf510aa1 settings transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=rejected ratio=0.844
1a381c22e6bdd6153394e941dc523996812ed8d3 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
1a53ef495b55108e0afa07fefe69c6b8cab748c7 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1a6b941e8585e5f2d5b97fdf7976ec39add79b8f none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
1a6faecf02cc59a56dc5e148ebce5f23dcc7f3ee none transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
1a875fcbea398e483590068ace4ca3d87c917cc6 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.277
1aebe9c88745acf91b88ae9291576a077da02cb7 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
1af65451f8cd2c170bc43c1b6855775483b52272 email transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=2.142
1afcd88b4c2e5024b816582224b27cafea225271 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.511
1b1366ba4860be1d5b29fd2fd070c451b0e9b133 settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
1b3778dc18377c626c2476d783fbb21b4a4261cb telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.735
1b400eacffb66ca6eb330993a7e0c8d48f28ce27 https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.085
1b718ae47490cd0238aad8fdcb5eeef87a2fa4cc settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.181
1b751a07c82d5629c8325da917cd90cddd060aad settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1b7cc08cd844c93d72962cc58ecb7e707efe860f https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
1bcb44dfc15d5e58f85f141890ee34d14bec007a settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.688
1bfa76f9ed9dadd262d0357c38e70114c43a7e9d https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.209
1c241d0753eb559e48d12089c1b87de7bca66210 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=accepted ratio=1.211
1c407d23519d6268872e801c87da886fa92d23e3 https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
1c491a7c71297b1c74920986ca8a607a7962bdb6 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.185
1c493ac7d3ed93cd1e151b16d8f04cbd082f0fae moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
1c4ab2e30e9827fa2b60f9d486c5a3c049a950bf settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.732
1c6d6733ec98011ce2a8c3c30dd6ff836368b8b7 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1cc80bbdb98f55a3c10fa063306feb1a6672b9f7 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.703
1cde7ba26c41ce56370b50cf2e25ca158498edaf settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.951
1cdea62c32ddb2cc7dd405f4233fe8ca5340245a settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
1ce1b6d159c3ef26cd20340acc2cb546db282fcb https transport=vanilla ip=4 distributed=false state=dysfunctional bandwidth=untested
1cf0f2498deeb48b784429306fdc2392e36a6482 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.564
1db8d7d626fd9bfd3069004faab93213de6e1760 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.768
1de12b55b17f4a526e064061dfc8cd4e9b1fa3cc moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.004
1e009214f849c2a9622ceec508a803084be80e74 settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
1e255a4b62908901dc4e84cf91c5539385512daa moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.510
1e329c915971990749ee71df7c8e6340c16fa9cb telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.642
1e3675ef1db91c542eb386ca6182ffeb029db8cb settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1e4bb8fbd74c83f1ad9e4a74714d7b3aace7a983 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
1e5b3063cded0fc4322d727116d7e5239dee25dc https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.484
1e5c7ec4b03687d8e8d1f5d267ff3ab2b3744e3e email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
1e778073b89220ce3f248a5dcded05dffd0e8825 https transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.145
1e9891e4ab5270be960db7a2850bb7f54e727295 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
1e9a4a2ea5969de8e80c9fcb1d0cd2e24161d867 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=rejected ratio=0.852
1eaa35777f198501181a2f556db7801eb3439b1e settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
1eb4c586d80a179555724d479e180406202302f5 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
1ebafc489fd04cc050213dbdf00bb0d9d90c3eb3 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.595
1ec80ed477a9a156d5339c96450cea45f74d3328 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.440
1ecc56ff4669b72e0b368d485e6fb4ab3760c5ce settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
1eddad56eaee533335f72e435f8d962c2419ad03 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.397
1eff390a9874e2da28b7b05357e89625958d96d2 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
1f1974bb49e73356da9e2b689e22891408655e25 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
1f1ed04824187bc0a2782dc7cbf7fec7236ee8b8 email transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
1f2ed182d98554c2bb855b989830430a35cb4043 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1f58ef7e124cf2299f7eb6d7095002e61422eae2 none transport=webtunnel ip=6 port=443 distributed=false state=functional bandwidth=untested
1f875e6ea2fb8efaff797f3bed72c4603be02829 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
1f921b63ad57fabf4a40a1bc0a8305c63bc9af8b settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
1fa4bdef00ea9502fe0e552362bdd4537acdc2cc settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.903
1fdc2ff4e2e6a0f35f982656d52f948e0d009d14 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.903
1ff455a3ccb32de018e50b069a2c51127e3de7c6 https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
1ffcac72360b2ce0daeb9130ebd97a855791d3cb moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.368
200a8ed55a15f6aabcd63d7cb6fc6a7ed0016774 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=rejected ratio=0.690
20356aea97408ceb1bd9a894965611004fb5a0f6 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
2057ac1bb4ae782b21bdb22c48870e8cc345001a none transport=obfs4 ip=4 distributed=false state=functional bandwidth=accepted ratio=1.680
206cc3738b592e5526c5a051d486d8b5ad9fffc5 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
208b02aba0a584350ef451be19389661e7bec968 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
20970af4723c06f23780e709ea9bbe27cdc9e301 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
20b9804bb859775525d25363de22654483d969ba telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
20bbd75fd4d20c4a9225c5b1935bf47ce35075da telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.488
20be2c3110caf3160f9a92187d3b314912bb85d7 https transport=obfs4 ip=4 blocklist=ru distributed=true state=functional bandwidth=untested
21073a4a4c1ce8ec56ca125ca506aa4c9d2632dc moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.257
211b5d3cd12f54240a5638ae0c40ec1dee38bff0 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
21410528f47e09dd50531cf40d5a86ebc5d5259e settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
2192ba8c9a46c33d80f9754c8ca92616f2d76ed3 settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=2.245
21c5e00f59df98efd3f1075fb59949b3af5af958 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
21d023051834ba58ec8f6e19a7225ead27f22f96 moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
21fa74ccede1c77b4ff80fe6961abd5469ec9293 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2230ec0fac45ce57e0955032600ac0546063e015 email transport=vanilla ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=2.144
2276db60bb2276d8f19e497e9ac1e67db479c6d5 https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
2281e8f7fdd49a080dcbd606d1da35af00e531a9 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2289333d8c0569641f593764129af7c11d412450 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=2.240
228db999a99c3a9be8ad80a315ba293194f4d2ba https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.411
22947c64d9ce6393a70ae222d0720ea87594f91d reserved transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.321
22b588a6bb2c6fde5c5b7f4131e808fd762db800 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
22b7b071902a3cd81b45971d1a50bd759f3a8280 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.989
22c606f46a6bb234c1a70a935d4ad765d0b6daeb settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
22d3e040ddfb87829d54b8478f844a6d4cd6cab2 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
22e2530788e68b680cdce861b65ec77389681bf3 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=accepted ratio=0.992
22fee0207ee8fe9c098490ed23e090e7107cdbfe settings transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=untested
231e484b4e541557c08adaf2d20f4cdf7bbeda6e settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
2322888767ef827e5413354751f9576ca2795e74 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
23233af12817a73e783422435b873682e0256647 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
23353bfeffd90eea868fbe086314eab050309adf settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.032
233e92f495023490676108117729b2ec37b20c3f https transport=obfs4 ip=4 distributed=false state=untested bandwidth=untested
234f0bfcd0d412e1af1f7a828b5255c41055e21e moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
235a56c3010a3d8b45515d137ce0f7c534cc94e7 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
238eb53d363f5ca15dabe1f48966a64761a8a021 https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.721
23bd944f9e789e47ef949b49042586c641d5a63a https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
23bff7b3340719110f573520593691a54044b1dc settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
23cd27c49f883030aac4b60d4aa2a8fba06c5d51 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.532
23d4b0acb7cc9ca0753ce2470e371ec2b2a6c4e5 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.025
23f7e8f58a42cf429f596d692083815185988215 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.410
23f944a925c579e6fbba15cfea8dc95beee9cbc0 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2409107ec6b6be46ddbbf3c473ff6e638cc5ee14 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.603
2411c22253335787539610803ea295753c218ad1 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
241366dd62603de98a6eba8fa5a9c0161c6fae78 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.161
2439c489fa4b7cb20f9899af51354d08923098f0 moat transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.960
2464101239d41e73c43cdf07a028656a23c79bb8 settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
2468c1e7c0b00242ec9a00118bf366e3dbb2af31 https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.908
246d2d0f6c21845ffca5bf64e26041353e666b8d settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
247a0f0329e9c89f07def3ff3dc6e9d0573565e7 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
2485c4ebc72abdeb05f7bc36a74138e64269917d https transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.780
24ab4a049fa093b997238ed050652e7cd7fc5706 settings transport=vanilla ip=4 distributed=false state=dysfunctional bandwidth=untested
24d22fa6a740cd25d93b550ca1570ffba75cadb6 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
2516d43965084f5e082d58d3884a059418d934ca settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.578
252dde4ef4464904cb1cb6c45bb35ecb5ad2e1b0 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.701
2530a4a96cdd6a8d1c17fc4a05ddfbc5df666582 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
2555dfdd0773163f339f849f15bd0a7d45c50894 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
259570af70eb49efb9d3706b9a28b01615377806 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.032
25a6360c1ff4640b54d2a54a683f8a64f04af5c1 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
25e4623447192b55901b4a8af2fba8af147cec0c https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
2601997c7b777c26ba420dbb89762e1aaa915a65 https transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.174
2607e1cde59e0c225f3f468b8d739fb5da5cfc22 reserved transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2610ca00e2dc560caa92f5b9eb096a71bae33fb6 telegram transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.198
2614375b5e79009ef7a32cc1bb00221e8edef2a9 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
2648496d081c865a1d2411818ac2008d38af76ac email transport=obfs4 ip=6 distributed=true state=functional bandwidth=rejected ratio=0.424
2689b86f5cf9c87828ff666f4c753d5e046a8a78 https transport=vanilla ip=4 distributed=false state=dysfunctional bandwidth=untested
268d0787b45f7c23471148ebd25ac5f2b13fc772 none transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
269399b5a551086ded7b67f006e4ad17599d8395 https transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
26adfa191f4490738b820115bbfd0421b56c75ef telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
26cca16af3b7ba403b2efba913f922ad00d60031 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
26ccda3591f73312290d416f213f0f9b929f3c2b moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.387
274bd0bd0936f1801833ca698462a312e8ad9e6d settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
27676648e9c84a5b70b4e70cee3ecdd5d3ab3df1 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
276828672cb370864c98ac4a2b353bb807dbd96d telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.327
276fad7e4389f11f689669888b059f10865cc15a email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
27876af8313eae34f9147b9074fd65c9355fee6d settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
278a809c938f10b681647d47f32e650e01195fd6 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
279175136e84235b93d7d7bb10a99bea94e9d9aa moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.042
27aa8ec511b7c80224fcb563d60e7fbcd7090d39 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=rejected ratio=0.701
27bd9c68194f4fb4cb844db24510991ab9429507 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
28004030a8fb4dd3a5fb059fe05b8ab0072c04fe moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.711
282cb2625a452353387f29a519b2fa9da6a8c5c0 https transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.228
286d90dbb47f4eada9e11c217ac1f68a16d2dbe2 email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
2875701b7d14fd57ac650f68c12b4b56841584cb moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=rejected ratio=0.799
28792b66d75e434e24994ccf091bdf2fc0963230 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
28b5225e49409051b0eadc69a582ec65c4c1a557 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
2907ac87893797a2b9f5b7a6c2178bc40bafd053 email transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.686
291c40ef6307f87ff0912de64b95205186c5196d https transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=0.958
2944ccb3f4d5aec4b2995227467bcc5670126434 https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.392
294ecdecb9514ade673da518fd18608274aaf3d8 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.555
29c3af545d00a8a32ed17e511fc7f8e0ede09fd2 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=2.344
29cdea4784c0b3a21aa9eed2ebc857121a7987e1 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.390
29d0a350cfa16056deab4a8a53d9848a0a2173ac telegram transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=2.221
29e1f1ffbc4f4b306f3e3ffb52f58757620ea34c https transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=2.184
2a0d710ad11b3a4be275c41e3d5a3ee78509c07c telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.951
2a1b27c2bbe9c3a854fc5a33c387779e667872cc none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
2a2262b99a5bd87b06bf9ac144e0eaeff0a3a88d settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.478
2a37387375441452e5777dc36f9a0f23d3c29c4a settings transport=vanilla ip=4,6 distributed=false state=dysfunctional bandwidth=accepted ratio=1.524
2a3907117a45eba81a78dd465d4db7d908cfb0ca https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
2a5823420bce35b5d824defd9e783a06643c93b7 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.579
2a7bbe4206336bb5d0cc8b5da57499f8128e622f none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
2ac710406992139fbce6a8042df08d21b5602458 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
2acd01bf7e6079e8a22509bc9673554c2031173a reserved transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=0.914
2acd1216e085ba19a9bb39eac3fe17cd27694a2d moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.132
2ad46ea00473876c16d14a064f85ee64694396cf moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2ae7cc3940d3cf35d78d50536cffbb6f402516d6 https transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
2b0b320563775d91879a37eef0051111de5903a6 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2b124f31e42dbdbcbbe025311bf435a613cd3812 telegram transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=rejected ratio=0.632
2b3414c596a768ced653de5d70b30685f9ab8cf6 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
2b3e1f8badf3c743f49c10eaa8e0b026a20d8183 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.955
2b461e67dc57d4b888d2627baae6fb5ef27ed9bc https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.216
2b627c56782d06704d83b62f7212508e3513ec40 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
2b7530e76343b5ab6bead6c4719c9297ee86d2b3 email transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
2b94dfe5ac41de82bd988d12c2b019cf843e4289 none transport=vanilla ip=4,6 distributed=false state=functional bandwidth=accepted ratio=1.739
2bb55502c5765958f5467bf491ec37bd338775e6 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.370
2bcea724cab515ac00a725b04b64745c38df25b9 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=rejected ratio=0.760
2bd7a01bfd1c632e830459803928428e5b44306f https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
2bede16882086b3d0c9726beb6b3abb540994ae3 none transport=vanilla ip=4,6 distributed=false state=dysfunctional bandwidth=accepted ratio=1.175
2bfa5bd68e45c61dc7b6826626290e639c373b6d https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
2c171bb77299a1d5ab71c61a76be3c3a95e549de https transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.393
2c1cb89b02687d6f5b155940ecfc56e0d8b6fe1f settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.269
2c44aca162cadaee3be2ceb33346b80b3ac92559 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.084
2c4ddf3015c5b25e81faf873659bf99310c7033d email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
2c60a99db94b02d3baae22f3a4d8cda356996aae https transport=obfs4 ip=4 distributed=false state=untested bandwidth=untested
2c6c763831fc48b0dc86fb61a1c26af812c01455 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
2c8b257880800506099949c919d661b1c79e3fa4 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
2c8d67660740af93f73cc91335ef9593f46c05f1 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
2cbe6e60aaa16261ccefefc0d97b68d8301c795f settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.519
2cd3bc9cba39d6a1bbd3a699c0b0184c6bb63234 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
2cd501e7d7d886d5ddc49afa30102c044eda9adb email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.516
2ce4eb9220ed7659bfce53aedde805105270a9b5 settings transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=accepted ratio=1.647
2ce6a9caf30869190fdf55d9e7ad1f14b3f4108e email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2ce8deb3c10368637ce17452cf70d94aeb8857ad none transport=obfs4 ip=4 distributed=false state=functional bandwidth=accepted ratio=1.351
2d03223f293d14e93a312ab6274c0f03aa73436c settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2d19033f7fde095e7797dba1605a28bbca49c369 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.543
2d3d2abeb98a8161d8b5673e1b4371ad56f5ec8e settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
2d789fb22bd37f10d7adc6aae558bd1511e91713 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=accepted ratio=1.123
2d84601d660907e901bb6dd4882f8d85af9089f7 settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
2df8aed283e7155e58dd4b6797e1da24e74f7cef moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2dfd823434ff3ec1717c0974a7092606d029c8ad email transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.415
2e5fb40589192e531d4c5abc88991bcaabab4070 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.860
2e734c2b496492cb668dc808f4390bc4c03705ec settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.001
2ecf24822db304cd43a0aea5fafc0389cdb75d18 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2ef1eb2e2a80f7b86777c3d506b67252896881ff settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
2ef6fa465ece12c7bd4a6be546b9c50061372bce settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2f04c44d776292928aea72312a7c14b9ee105142 https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=0.980
2f281bce95bdd9337bfe3948f484dc922a34b08d https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
2f2ecc3dc8097438f8efba8cd32f347866b3bf7f email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2f2fa207dd1eff53f88165832943fceabb55b476 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=accepted ratio=0.914
2f364b329de9ceb22877781e7b7e6303d43e74b5 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.248
2f40d598bf6c0f04562b7cd6b1be9b3d33960878 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
2f9b72e5b2cebe5a50f83576608d15cb7c395a9c email transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.510
2fba3d44d27a27d24996e4fae01b7a681cc3c5cb telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
2fde7f822e8519add019f7f73484b59805c68d37 telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.216
3006be761476cacdc2f265526eae69507e9a7d58 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.977
301d2b8bd81e0661562ec638fce7ec6dfcea8a06 https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
3070f928150cb77d3f6996c61d6709efcf261433 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
30782a1966693f01703bf5c17bd52b51fe70ee62 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
30be0f6ee4cb0355946170f7a4f04f7a21111c29 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.772
30beff814a06ac8d86422025439e39ccfe6db8a5 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
30dd7e56ae8b1bf6a671e84025ed29bcbc982757 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
30de2f45b03bb2dbe706a7bba2faa43d54617c08 https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.019
30f2beead77fe74d0e0ef4128a6caeca5f6cba3a https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
310200b62d50e98e8168f3983d04aab861d19283 email transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.446
31038e052fe11529083718d65cab0a7bb470efcf moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.515
312910e6736c86122d5d0fd8f0042f63aa3ee017 https transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=2.049
313c853961596187cfd5e420afd6f2abf1666251 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.525
3178f4067c5968f7b4a3cdfef02ab15545df7ef7 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
318830f7a777a4d50f1382a95e5471ff3fdd7ccb none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
31e501220ad29380439cdc65a58787d20ee955c0 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.106
31e87ac95f41162c985af9885b6ce011b2cad2f6 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.401
31eac6980f331ac53556821d39cf4f1ab700c0eb email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
31ec0402dc969dc64adc80ae6dd66acda9d00353 settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.296
31f87164eaae01fd5f281e6dd90174eea60fc6c8 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.652
321b118dbb15faff9503d2cc16a4472c540f871b moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
32420fe590305a9cbc722144c96642f1b2991c7b moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.976
32469371d771b485313258bde825171e6d3f6f30 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
3253fdaa51fa4cc3ba1e7c7e2d804d1d18ab8491 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.037
325ccfac584a1d7eb8cfdec393f9c1d24a8835f5 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
326fe175585ffcf3e777df6dccb1d97762c55e27 https transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
32874da46d0c94a4df840debc36f79180b575244 email transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=0.978
32b0afbe0518335a6953b49e6f4e1b8dec939179 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.446
32bbc12e51c23451e4242e81eaa57d1ea5ee50da none transport=vanilla ip=4 distributed=false state=functional bandwidth=untested
32c1dd11a2479f6b742788118c4d27c63b799ad4 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
32f68efcc4e848c8e4fdee19685035691d132579 reserved transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.487
32ff5983ea22c8327280792a3a7d20044c72efd7 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3324e2ea6604f6e36c6d8fe274e600979f459474 email transport=vanilla ip=4,6 distributed=false state=dysfunctional bandwidth=untested
332588495772f5898b23b52d0c25c6b47172a138 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.376
33488cc475403f623a9b917d8b345dc40d72380f moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.228
334988bc89207cd02b018836cd5384f88a23dc61 email transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.864
3359f956a9a6741fa0b4dca26da65699edd8deb7 none transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=untested
33787c722e9314e5d407adb253020594e4b4ac25 none transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=untested
337b7220381f50af8da1ee44008d3b4f3b0daee0 settings transport=obfs4 ip=4 blocklist=ru distributed=false state=dysfunctional bandwidth=untested
3395cb132022fcd5549f781f0134ed5ee36ece02 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
33a197a3d3b3577c401443449484251b3d92dfa5 moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
33adb77cd707e0edf1711dbe7bec63c6c876e480 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
33c5953f3d36f17b4e4fe28d7ab0c82ca2e12fe5 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
33e37843c25a16b636b6458673bfa618789ab4f6 moat transport=obfs4 ip=6 port=443 distributed=false state=dysfunctional bandwidth=accepted ratio=1.094
3402478be4e1a6f33606a88c910ed382dbab8593 none transport=vanilla ip=4 port=443 distributed=false state=functional bandwidth=untested
3411a98813f7c283125093d7e3ccca7660e7db4e settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
342aaeb2a552ca9c1e6053c890f770b0f2f1f7d4 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
34489c3eafcd96fdbdfa527973dd2086b215c886 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.426
345ce68cc095c07bf1edd4f50f11947c80d56406 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.580
347084323c43fd51b3d59dea1ad1f5372a317589 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=accepted ratio=1.212
347638f82e31823de54dfbaf95475065e717fa83 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.266
347ab9cd8e5c36cad3a029e538eb43f124161dda https transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
348552814b83b140264d2da0c3f3acbdd60580af telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.131
349497b4cd415e43f8b094cd1644462136b27530 settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
3498d7d11e51372082456d1f92c4a75613dc98ba email transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
34a8ede3232c88c6b53be0adfd8577d364c2df2e email transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=2.274
34ad59df0ead0ba8a46968614229b7ad11441db7 https transport=obfs4 ip=4 distributed=false state=untested bandwidth=untested
34bc137b2357b9b1b4fbffb221ec9efb89f40049 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.069
34de5b32f46d02292fb50d241bf1f9ad83613c0b email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.220
3518482c663983646312099cdbf4a37908ab0926 email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
3521a717292473f2cdf068876fc85c2a0daead4b telegram transport=obfs4 ip=4 blocklist=ru distributed=true state=functional bandwidth=accepted ratio=1.907
352c587e9bc6c2f356abea8098e6923144894d4e https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
356667b725764d1764371dab72d7ccbfac87c308 moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.166
35717b3dfa0ea0936f1d1a3270e2fdf8d15846f9 email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
3575906728c3adcd4cc54915e0d1aa0855480d78 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=accepted ratio=1.308
3581ea396814b550f0c4fef62e92b0ae5f88f521 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.710
35a6fbcf0532646494433ac0b8c350c2bc3bd7b8 https transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.278
3619678e09dd3350137475446a51578caad39a56 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
362395a17de967be681bc504618805c1fa288fa4 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
364282bd590601bd9046b8072647e4a416dadb84 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
365bd00dcca58b3fd69571bdd692d4ff28ca2823 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3689d71257a6006cea396bffff1460742ede96a3 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.574
36a5e66767fa4d06490cb8d3d35c3b29145fa7b6 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.643
36b8122e1a6d17bea26fe22d11b7b2a0ad379fd8 none transport=obfs4 ip=4 blocklist=ru distributed=false state=dysfunctional bandwidth=untested
36cb036552acc9deed4ce0a5758047831843b814 email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
36e11fdf7f2343058a82ffda4b0362974d54cc42 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.634
36ffb654d4d22f2b0790520716847e85dee43ec9 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
37217632c1eb6f805201cde7cf56b4633be2481e settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3725f15d587c63ed35b0af496e964dc58a877aed email transport=vanilla ip=4 port=443 distributed=true state=functional bandwidth=untested
372c3b70cc3d4dff0e303ff6e8da82ab72d2a826 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3733d511fd69b162ba6276b630574658363fb4c2 https transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=untested
3769f17ddfa92454ac09c93d503cd3d1f103f89c telegram transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=untested
37b998150f17e316aafdec05ef8878b70f9f07f4 moat transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.843
37beeda5d5ea136174a9e57105fef35e0bfce58c email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
37c3b16f6907adc630fcbe135384e70d0b77c48f settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.102
37d1a0ac7aa6170ac058bcebdd7a6272a4f4c136 telegram transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.728
37d81e02d078a375e2365a429466a0acbca659a9 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.418
38116a32caa23689b983cc2600fde90895ba8709 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.391
38288987904d32811bb856d2aca7b9a8784f75bd https transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=accepted ratio=1.406
383550eb0006bce78a5802e4e6e9f487dc2a2ab1 none transport=webtunnel ip=6 port=443 distributed=false state=functional bandwidth=untested
3843d70e41595c2dc609c9b04f11b12e48599aac email transport=vanilla ip=4 distributed=false state=dysfunctional bandwidth=untested
3859f4e5ebdcb20ad375f76f700dd9124d1afc29 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
38850a8fa8219043855fe9c60ca8765bb58d2196 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=accepted ratio=1.962
38a21928cf072e677dcf2c66c4a24d81dc7e857b settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
38e273b9a1d3853657b4e3cb95ca0571b53ef255 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=untested
3910f966b52b18dac6995ea03aec027259ce2d72 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
3920753643e1a6aca3d6e18e054a8da3d2d079c7 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3973412f98b99672822cb2b5b5f97c66f83c2e50 email transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.442
399edf07d191f78e42ccc1c629d31724ce1aa6d1 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.004
39cf4417ae8ae6f44ae9acb2527655c3a46ab214 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
39db58376c4d7acebc7dd243be672e4ff7cfa4ac settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
3a0019e44e15011f837a8a5e16394a3eb2ff5d2d settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
3a00ab42ca7b01eaf35eae3aed3dddfb86213351 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.824
3a088761620323682768f13a6af70a0fbfa604ce settings transport=vanilla ip=6,4 distributed=true state=functional bandwidth=accepted ratio=0.942
3a1998c30fd70603f220f5e1fd592a7ef7644ffb email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
3a2a1fa03645e3a0a1af87e61857bf408a48d65c settings transport=obfs4 ip=4 blocklist=ru distributed=true state=functional bandwidth=accepted ratio=1.429
3a2c85a0ce61459fc21538536c4ec30e2a70352d moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
3a7abc5a71153fa220e14380a3f06ea9f3355e75 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.226
3a976007cabc490688c395969167561c92375500 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.192
3abed99d64b0fb32399552fa1fcd1295e89d62c1 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.205
3ac01c45687afc7371bc1c4588c2d8a85a3ffe73 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.767
3ac7a6af5c6258f97240d2217bdd6596f5b04d96 lox transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.756
3acd3c8fdaad5142db0e6d8acd2d9e12b6ce6b93 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.603
3ad2d93abb46ff660037f2e423d71638d1f440e9 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.576
3ad39f19eadc046efecf2ea52921584854cd6a59 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3b11c00b787e185bba95119c9dcb2457dbe7a8c9 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3b130327e8e21871ebeed8fa949016c6113d834c https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
3b20c0030320d23a4245f6f3d805d43da564cd53 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.170
3b3b8448dae23f7d6ace045c332e4a473e46d80a settings transport=vanilla ip=4 port=443 distributed=true state=functional bandwidth=untested
3b7e2cddddde51e3eb564fdf290ee463761af0ac settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
3bc920bec1be7f9efa857ffc9c7ff3a61b138488 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
3bced89efa648d332149257691ee22311ab305cc moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.527
3be1c3d72daf227ad7e28e7e4f9b9fa449b575e2 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.736
3bf2008530df86fce50494e9af226c206e7f43ef settings transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
3c17f620d94676614d0a393d2cdc61bf196f8d71 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
3c3afe7d631e9728ec8bc78034d0dc39d840bd17 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.642
3c45586b608cf267e644b52ac08ad02946df2c64 email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
3c45685781342f8c3c6270224d734c138132e075 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.324
3c628bb6b6c328ff240f276440e842c2ee405262 https transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=untested
3c6a8f25e6a6c5766e78ca7151c49606f4ce9d83 https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.365
3c72a7470a7e8d3f98da79cef5bc0da2ce83f0c2 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.549
3c7df092b0904cc6badb06efab33db024b4317f3 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3cceff40032f42c9ec05d1b752bf366d29326e92 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3ccf677cde7d9eb7eeea9841177f3f6a26e18e2d settings transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.184
3cfc4ee161eaeec566f54b09770a225a12629d98 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.085
3d092d95b9e38ced4669e524b311be4c86cf4f81 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3d1fd43b0cbcc0d8093cdf75fe0e055491bbc060 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
3d220253de35df95f85f000eee5579503848d69a settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.279
3d31ab2bed2d5e71e6da871ed8323bc28c946a05 reserved transport=vanilla ip=4,6 distributed=true state=functional bandwidth=untested
3d7d62cf4baae41181dbc6bdd8421cae8ea66ed7 telegram transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=accepted ratio=2.014
3d954e2590bd95051c5907bb6a14455a5b35587d telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3db9d0854e5f784cdceb257abce50b4e292a63d7 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3dc471dd7e463fe693f1012c132ecbca958b307f settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.337
3dcebd7675f71b51a8ce71d2841e19259d5ad3ad reserved transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3dd02d65a1ab17dadad309e6f029d9d30fcea530 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
3dfbecc433083d6f2331261dba1b972620fb83c8 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.680
3e02ff4e5b7826d8d100b33ebe61d6f5135bff28 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
3e2407fa2fcbf0ce5705e2eddf6bcf7bbc4081de https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.427
3e28fa7f78e669eb7d81f5ab5db4a5cf0219fccb settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.157
3e2d3d687c99474754c01561344599de0ea1eb8e telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.050
3e366cfdea2496ff19b6ac90228536bf37823adf settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
3e3759716143032441d9681301445a145f0121cf moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.105
3e3aa11292ff94732ef34530a501bb39732fba45 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3e54abd89d0c72096fc41487495197956728a48c reserved transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3e72645192698c7456c00f478ea9736626ee435d settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3e87307ec0047ab5cfff7f73e3978f9a770ff01b moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.929
3e94d674d0238d860db0c8a13c629da49cf344dc settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
3eb765ba22b9977f4e50e9033ba5ff3bb9165199 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
3ec30b5b0b6bf77fc7660cd669de3bdc57f6379d settings transport=obfs4 ip=6 port=443 distributed=false state=dysfunctional bandwidth=accepted ratio=1.975
3ed1defe7c1e135370b53a0217a2978944e3afd9 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3ed806a6fe93a0cccd0f7327f7455a6c4ab58b44 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3edfc9b08124053e5c6a62388d32db3a8b2cf2d2 settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
3ee7f58152106f66691ab014c3ed755e126ba2f1 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
3ef68056f59653f6c46506b0253a766d9721ed18 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.812
3f4f479030c0f72a475693c52a2226ec318b10bb moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
3f624a6b6b1e423ffde210f964d1b501bb2a9cce settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
3fa254514a2308d663e658bfd9d4efd3172970d0 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
3fc4fba130b776eff2d13c62884b320e68248ea0 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
3fe2c3216c7a104ebf33ef8a12f21bbbdd6a02dc https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.128
3fe5dd49cd0120ba9176cc8a6479312b4126f13a moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=0.972
401bdce68966bc1a5783aac0ea97ae995f688853 telegram transport=obfs4 ip=6 port=443 distributed=false state=dysfunctional bandwidth=accepted ratio=1.916
406426fbf18a5dc9019d2616fcace8e0d9591d7e email transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.548
4076e0f1df28a2c7329c5a0881612bf35c285634 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.300
40883b0f4e46edafd141c2dce27b59e610a45ada reserved transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.939
408b1bae0596372858f0b153cd9fec553a188b11 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
408ee14cd7d0c6bbebec06bbd7d57777bde43e88 settings transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=accepted ratio=2.032
409030978c09db5e10ec19cb44f954ccf59a43d5 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
40956b50d669eef138f4955be8921c82ce17b476 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
40b8d486630e5649f929ab78ae5cafb55463ce16 none transport=vanilla ip=4 port=443 distributed=false state=functional bandwidth=untested
40cf476031b116f97f72796f8c26965da804f5f0 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.143
40d39e035c8578de62700036ad6a91a9e3e83810 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
40de3a56a4a5e95a976aeac39e7ce0d2f10e7663 settings transport=vanilla ip=4 port=443 distributed=true state=functional bandwidth=untested
40f4691d95bb776eb6d2dc2963cdc9ff3c5c6db5 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
40f8d6f3cb25f2f1bc8cfda8a6f3f581ebb63776 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.851
40fe2f610da4c2e5cbf4e7ea9e72215cd084cfef https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.991
41196c77b80b62793d3f396d400172f2bab0cf02 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
4120d61bf23fdf45f5374c9e0e4c236cd681e35b none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
414369eb53567fa5381496ca07425a5d8c733678 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.698
415a9e13ec74f85233ca0b8ad35bf50a6481322d email transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.695
417299a5121c8746fe8a604bdee3ec5be74ab677 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.537
417881d97c2193db4974ec7a8711ee8dad8c04b7 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
41abde2755eb16091d7950713e9e9df0bbce994b settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
41d5a41df2d2190d0c7553d4e1b5c0b57f819129 reserved transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.566
41ee6c2db323065f75ed96083754b9c5b4a3837e email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.581
4229dc925820a7a165263a0e2f81078229fa1bb4 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
424c0b375f2156c26015af1941c8eab788c00baf settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
425524116b2c124026bdf1f06ba80a19c2e94b82 https transport=obfs4 ip=6 distributed=true state=functional bandwidth=rejected ratio=0.491
427a3507045a468824a6663bf42752e47afe67dc settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
42ee7999fb1f28b6f0292e6e29256fad09e58ef6 https transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.410
4308823b49f2dd34b7d25a439b4fc48b45710ec6 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.835
4309bedf7e9d06a4d1e98aa20897ee1f1106aeff settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
43383c59ef0d6e0b41032821da1615693ff501a7 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
434b795ae0a9ea9acbe18129ad0835d55245a685 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
4367e32e9d0018486698e1758a8248f117aba191 settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
437d8b7f98aa26cebbe7ff966ff9d1ef60d47f0c settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
43b97bfd63f7ec049fe0ae9869a481794c04d311 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
43bf948bb99fcd00640ef3f9b28fc9a9b268b9d8 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
43cec9c234a9d0a5610b45f7693a2235ee787a46 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.098
44131944fa3eefc70693fa040c6dfb4f25474d63 none transport=vanilla ip=4,6 distributed=false state=functional bandwidth=untested
441610e4704b00c3beefc0fe1544d8115f316ac4 moat transport=obfs4 ip=4 blocklist=ru distributed=true state=functional bandwidth=untested
44225ff0bb231e644628471c66cee31b713f9947 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
4457e292b302ddfbaf61a3826196423f4c9487aa email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.032
445ea5d294222a778c29491ac5d80802a346d815 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
44613541ae754e46af48cf5d8187b5d4ae6009ae telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.521
446b310e053d18446e62fbd716bfd0b3f3f8070b moat transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.479
4472b878e657b2aa7f8f213f70f1df69ecd66433 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
44b7fdff72c64af98033e78419e0c84fa364b0bb telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.196
44cd66724ce5ee967a30eac34736025d5166929f https transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=rejected ratio=0.871
45012335a6f59f756983c1250b510c3c9987841d email transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=untested
4506a97b4fd81c6bc55e5c8a641479d294f2313a settings transport=vanilla ip=6,4 distributed=true state=functional bandwidth=accepted ratio=1.774
456b1c7dc64743d4ca142e5adec706832d9ee327 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
457e3ca4ee40d857369b638b9bc9409311bb3a58 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.251
4588ad0356d246b4562d010cc33755aab7bb09ed telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
45dd2d1d6454c00ca659a615a59e644da0ec8b73 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=rejected ratio=0.887
45ec3c65ff461214da681e70841df0aa2890791a https transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.216
45f093913c7dac464697e6aae7a5244a9d2d5bbb settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
46078f27a6d2eadedce7ae52dfa8d97b386e688d settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.488
46175caabef70d2ee2533135f2eb14d8c6519d62 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
465cdb34c5724f288f6e89851c8ae0ee93b76a2d email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
465ce5473c1df27bd60f9b44816494a3feab84bc settings transport=vanilla ip=4 distributed=false state=dysfunctional bandwidth=untested
46751f27d039132a1ae62ef750e332b7336c0b0e settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=untested
468dc401f505a2e15e3f360869c70628a0abe251 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.735
46d6f515580ea556d50c0655146d525b11cd1f92 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
476d420dab49646a2147c22cd3daa0ecb07fbaf3 email transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
476d4e5a3ffec44b06d8e300e19f9dab8c477e3e telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
476e9fef2c042cd7a6a007cac4e1eb29229e97b9 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
477c6b9b40f180417d0b827b19bcf90bb26f1d0e settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
478253176779758bea1d4a5aa0b8c779c83734b0 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.352
4797d6fb58779fccc1d7c1d8837cb6d6f31a7d2d telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.793
47b7da7b0755db7abd1b9da0a42c02cf43f37320 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
47c10e970a128b057d780eefbd1f0a42486ac381 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
47ef9722dd4b1087291e8c53b46c971fb6425ed6 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
481ab753f107da15ea4214328eeabc9046e1d8bc https transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.717
483c0d1103298344ebe9fbb7aacab8b3eeb13072 moat transport=obfs4 ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
484b1c244b57e673b4def6d4edc8e88e0ebf25bf telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.432
48dd56a4d806654ce0c49d5fef5139b500df57c5 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=accepted ratio=2.430
490a283234e3779c15bc19044e407b2a11809a49 settings transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=accepted ratio=1.520
4911fa06d046fc465701dd2ee2b1f9cf634634ba settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
491bf9db4fb39f7422ee6162a6f0151f57ba7272 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=rejected ratio=0.817
491c23d8a3c590931a0b0dde5aa14dbd80437d15 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
49205d9f9c04cd764c173188295fdae249ebee2e https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
494695f61f8497e21fc603c532cf2190115e29c9 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.803
494d014f452ae6d93de1f590cd218d1bb441b316 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.346
498123634bfb4d4264091a5b1d907878e0eee0fb moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.308
49b3aa1d1ee8e9bc85c780b34f640c0bc75cba13 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
49d0573c84209bc712f7c0229f367dc07e696244 telegram transport=obfs4 ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
49f47d74597809f0823f6bdcbdec9466a755025e telegram transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=rejected ratio=0.517
49ff75004505d92b642afbf3e85307ff8958151b email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4a0b065db3cf807c6910dfef6d9cccb95c59c585 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.259
4a4e9c7d43a31327c5e62a1bf36db0e434353977 email transport=vanilla ip=4,6 distributed=true state=functional bandwidth=untested
4a4ec0436dc2d5311c7e2cc61163b0a711b636d8 https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
4a6098de5ddaec91ed2c7466d9ec07a1fab14504 settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
4a6641748a85cc272ab2364b1b3a3711f66ddde5 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4a70cfbc53594f5c3127393d0aaa99b7781bbadd https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
4b3887741cc8eed6b06140a16cdb97c22d211cbc telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.782
4b49890852e75c64325bf3741972a931e5d8995d settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4b651c9310b4df321aa0a7bbda52927e879f2e83 email transport=vanilla ip=4,6 distributed=true state=functional bandwidth=untested
4b6ce2124108b9a28779248b706b9aaef54519a8 telegram transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
4b863bea508a875b47e8af393280c4465a25f4d4 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.481
4bc57a3f2436caea39fbfd17faa80c17dd0a1c93 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.514
4bd6fd0230636709363a96ecfa05dba89b896427 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.098
4bdcb513afe0088a2e7f36b3b2b22ee3579abc71 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.153
4bed042493b55d2c35612335d239868a1324dcd5 telegram transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
4bf72d53fa609a8e52c3f1eb0311818dd779190a https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
4c0257a6c0a67899b04148316d16766ae717af1c email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4c4d98f0d44afc2cab5f9d5e2cf37286bce75565 https transport=vanilla ip=4,6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.336
4cb60223042d0a9881419c1261e5588eb5d31c36 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.133
4cce3f018ad4da86fbc0c75bd5b11c6e5a6071fa telegram transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
4ce836c6ffbc62909ea30fe408e31c2f46258ae1 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4d19b67919322f718278cdb45096ed31a75324ca email transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.653
4d6e3ca2110fc36d3106c86940a1d4c8c91923ab email transport=obfs4 ip=4 blocklist=ru distributed=false state=dysfunctional bandwidth=untested
4dca94dba0c0b71db22a30e414f8103572e9c15f moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
4dd199f2b4ac8be8f9b47014cf8e005ec3565247 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.186
4dd98fb1959065309fd4a183530bc915a689e493 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.431
4e0b0828d3fadc459eb3b29bcf112eca26b812f2 telegram transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.487
4e111ec203f576e5010f7a80e0bd20275f5b7cf2 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
4e150c5fea17af5adb4a222a7bb2d986bcc0dc77 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.390
4e1a869dbe3927b4edf8e2b42b75dbabc801d823 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4e28b291bdb281d8f4f3a1bdd4ce68e3b8b2d329 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
4e2fc769293abcce3cd3c78ecce987ad239b059a telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4e44f52c29c3120ff177bcb595d1614f857af1aa moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4e50b349370e94381dce43b6e4f92f654bd6cab2 https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
4e53e373000124c372629f5145a070d36cabd9bb settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.873
4ea98bafe1dd93c4466de18f9257e450f22fba08 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
4ee06eaa3519ad6bb957be7e7c0b89d8dbcd806d settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.128
4efb592e75b048393bbaf9ae2d9530d5ecf1e3db settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4f0c6e92e640e5b32894475935be165c5b7a34ff email transport=vanilla ip=4,6 distributed=true state=functional bandwidth=untested
4f2b533c1e25c45236723818eeb84044db3dbdfc settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
4f3e22dab2eb3eb325c8c852741d8c4af4de273e settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
4f4769888e57f9148853adf8f8251058909d97e6 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4f6c42ef7225affa0f2b19f021099264e4cfc458 https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
4f9e3ea96c2606f0604dab9de28ea17ad0985eb2 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
4fe05b5e94ee42664e9ac39a6996c568714cb262 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.236
4fe89ba55a4713f442a3534353f3889a84dea467 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.808
4ff27b8caea7686c5943b823672295962ebc1e75 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
4ffe750a74ef351a4665b50396517a4ff7b795d8 telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
501757a6b955e33173ac57d7fb86450b3e309856 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
50372066e44fbcf3ca016d2a6c1f1937b19cc298 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
506389a50672317cba613fde6eb9c7a169d6149f settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
50bde901a358aaab3e97fef7cc78dbbe32062bf7 https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
50d9d985a6b3fc35bc0aae25db02426eb7673016 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
50e10ea08e2b6c62e896fe0e7bbd677ca1e4b1a4 none transport=webtunnel ip=6 port=443 distributed=false state=functional bandwidth=untested
51301c6532aa3e6d2257e5d175f61d2123e81304 none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
513e61ae4e8fcfddb29426b718573d875a317954 settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.076
5155a761443cfa9b001ea615c9f411548200c17e email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5197809e59ba60935dbc65efbcc9db6eac7102a9 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.612
519bed53e1f09467a6a4498ffb0ebd536b271b75 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
51c8626b916ba03b64889d5817712bcd7bc4f2d8 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
51d7d735be7dd10941632b2ba9ebe9591c6028ec moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.759
51e863d1298f08fa99d879584d7107d0514fc7ab https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
521510874ceb653843fae8382f6566b74dcebb97 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
523c218206e1907c3ee357b8bb029a6f42bb6598 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.376
525419e4daf7d42448067bdeafb82394e0c3983d https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.299
525bb4b23c9f7bfee25413064853a26c1b9df7c6 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.586
526994b5713fa19b21e247e02e5eb5d521e5370b none transport=obfs4 ip=6 distributed=false state=functional bandwidth=untested
529d78dd2ed9cbd123d9840f81f9f10e4a68321c moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.928
529dc13a923cabb05da2983206ccc9a9c1c637ee settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
52baa89341dfcf1e60ae60eac3c335ce8e46868c https transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.493
52c3b0f7dfa3ade1b8177911c80ff1647ae8f078 https transport=vanilla ip=4 port=443 distributed=true state=functional bandwidth=untested
52ebdc0ab6552dd1575f70b813677d6c01acb126 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
5302aedb32e413886524b0fca20b04ba0295d108 email transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.752
5315aaaea2b2f57a4fd22321c70019948c1ecb67 https transport=vanilla ip=4 distributed=false state=dysfunctional bandwidth=untested
534759a04db603994a7824930f18035ecb82df63 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.473
534ac52710a217fdf7015887f99e970ec2fef765 telegram transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=0.905
538b28a9dd97ac7c1195fef26e65aed16c83f0ba telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
538c192664ceacc07361e5c0564c2c5d6e72cd6c settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=untested
53abab9a45134dd1d3b3dcf53bfa35be4e856ec2 none transport=obfs4 ip=4 blocklist=ru distributed=false state=functional bandwidth=accepted ratio=1.690
53bca443d140a31f3ecaa105a9d89343d192c5ae settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.454
53c18206b8e7645a6b568b05bfb9682ffea203a3 https transport=vanilla ip=4,6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.153
53c22225586a7a0370febe7d40e2206355250d72 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
53e696c59cac93b97a5a58c0b7e1a00c52d28210 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
53f0e4a526a3a8d84960d730f8da19ba78d87c6b https transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.604
5409f824749eebd28b03f76f2ce49f35ca74ad52 https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.306
540b4454b9c6a83bec049ac5b9504af51895a50f telegram transport=obfs4 ip=6 distributed=false state=untested bandwidth=untested
543c423a2b33b771005ec95c9b1e8aa0654b28dd settings transport=vanilla ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.614
548db979b671552f2e54b324669844a084aef368 email transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.433
54bf4a9f14df2110740566e2a98e45644d7a5dd2 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
54ca0aeec9098a4d797341b13d9af39670e2bc41 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
55094c90c20bb4cb8f009879ea22b4aedb19b988 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.911
550d0caf9e41acc3b862b4261a59c1fb88853d64 reserved transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=0.988
5536a4167651040d9f0c3a86c4bfc186ee72fd96 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.640
5579234ef3f4622cefb3ba7e177d5b280c0ba278 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
55998453c5cceb5b1903fa9aa46d73eb2205fd77 telegram transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=rejected ratio=0.860
55a36ac213ee2154b32d0aba4de59cdee33ece1c moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.376
55db513d52f4a9ba4140b713729a2d72758becd5 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=2.080
5602eb9346f7b0c33234c1c46a74150461aa6ac6 email transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
560d1240c1337cb415da7443b3dc9b33814483f7 email transport=obfs4 ip=6 distributed=false state=dysfunctional bandwidth=accepted ratio=1.510
5660bde4c41a3baa5de7d36f88eca186ea0b9326 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
56617d13cff3a2070df05f3d6648483dafe9d247 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.499
566b00339f212fb6c1cf80197476675adadb4f6a moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
567464389fd53a9a5e659ccf28d7351e037d6822 none transport=webtunnel ip=6 port=443 distributed=false state=functional bandwidth=untested
567d5672004d9b1b7fc163802511b87d4da8f03e https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
56bed179bdece19a81ee62485a2cab8dc0a171cf settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
56ca576d0ed980646c991a88f380d5f507633106 none transport=vanilla ip=4 distributed=false state=dysfunctional bandwidth=untested
56d8e90bd6caff4a1f96a070d111bd6e821d83a9 telegram transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
5721fb8f054546535d0a3a231c1db240bf2c6a2c settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
5736e5f3e04a7b9a5f730185b7adf6f5185a79a7 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=rejected ratio=0.504
578845f89de44694055a86c63917c407b5573f20 email transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
57ed6118a58be3250730e7ced6f82e1d7c572098 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
57f2fb750cfe5ac396efcb50d223ac124d953acc moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.083
580497d5a7e5e33a0f6ff2b9f6e4aefb788b8dc7 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
58217bb0ef40312cf18b3aeca6c3f5e732602c0a settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
5821a40691b738e974dcc6ac1ff846e568fb8467 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
5839cc8f65ac61c3624f959908007bf1bc055d2b moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.542
583b46664eabd4e4153edff9ff488cd23d730220 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5864deb325de349d320bf286c06057a5d1e5213a settings transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.056
5883fa65a79854fd5a118dba21894389a68f774e https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.807
588643a777218e08d44bbd5bb6100172bc95c42f https transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.343
58b1116844bc62484a0253dab09118b05d853802 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.345
58e39d7c0564c7a2e47d750f5887b1791d87a1bb settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
58f39675ee3b965c3eaec87e686326acc62e2f34 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.410
5906486551296fb68d331e190f20668e01f2d4b7 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
595026f4bd344a71ed445ae6a3b15ff4c73adbff moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.208
59582d21ac5c297cf64dc9ff7c1666cc821a7012 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.203
596b831ea7b82ec8f1389fedb4631a0d202dce05 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
5980ef0113caf1a10862446f295c642f680fb661 none transport=webtunnel ip=6 port=443 distributed=false state=functional bandwidth=untested
59814b2fa6a6a4316e17509b7ca1ffdb356285b7 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
599f229e5f163021f325b263b6ece28e6c4deef2 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.947
59b6357421f5d11f78d039fddbb438f1a1eba86a https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
59c2db1b10e6533f2add27f0f6be9febf16b6f9c telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
59d2a8869937a166c7e12f61759a1edb71c60e87 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
59eba9dadea9380f8305202cc2d6ae387062a024 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
59ee952cc8b8d99c155978b806d6c4bc247c285e settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.141
5a06b40804400553bd2b46ad64b82cbe4d67ae12 settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
5a08d833130781f7864060cf351fd22ff2cd83ca settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5a208fd6a4f08c98046e69bb209b95025823c04b settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5a41e5865170e3a8dac042825383f2184faa6500 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.351
5a6c608953e629d905511d41823267d39dc469bc https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
5a740fbf41c83fbcb7168db426d373ee4c0e31ce none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
5a7a7fc8811af5de88d9c3e27187dbe57a98e127 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
5a84dd134f54531dff26a40473f8476c4a146064 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5a855a10fd5961dbca6fc9535dfa651c3f70018e https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
5a873b777fa3c7709379140b5aed3495abfdd81e telegram transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.983
5aaaeb629cd70249f18f7da978ca419caef350f0 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=2.342
5ad959e3de20049b4d3da0fb6ea052a502a1c454 settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=rejected ratio=0.771
5b13cf65fea817fc6b27df801cc52e543bb2717c settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5b1f222787a13d8facdc3046bdfcb8a15f806c7b reserved transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.668
5b2675acb0f30c9bdfd615953a98b3ca396d1dc7 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5b2f4a7d1f555f5be2e5fe13bc2882fa28c9175a https transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.549
5b3dcb76b44a86c7d1d62f7b3aeeac5e910866eb settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
5b4702d0e39c7676ce822a47e99d6a3f47cec61a reserved transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5b5be0d584c95add7b5c78c4d28ca80d09b55667 settings transport=vanilla ip=4,6 port=443 distributed=true state=functional bandwidth=untested
5b947ce185acae6584a92fe138355cb98a2225df telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
5b9dd8a03d90e5ea54090a0b53b6cfcf73453347 none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
5baaf777c4ca3f16a74aaddb63794b7821333445 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
5bdfa90c6cd8d2c1450e7a65a9cf5523679ca035 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
5be83deccbf6d934fdb8717fd28e1bcd7f0ffcf9 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5c23b265d0ece1edab3be52cde3d55d80de86d0f moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.241
5c2aa1bf3fb01bbece39150f608dacdb61e9e95f settings transport=obfs4 ip=4 blocklist=ru distributed=false state=dysfunctional bandwidth=accepted ratio=1.423
5c2ba3ce8ad1971f0f34691469457c96c26e3954 https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
5c6a49831feecfb949ec2beef9b40d9e3ce99802 https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
5c70325e417c5f4f93abd24c4da7814bbe9c1848 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
5c8217df43ecc15dfa90374e58f8f2a9ba95ed72 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5c99a4bf7bac1fbafd2cbb1a7832c74a883acd0b moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5cad9b5032c57b8be8d49eb8ff516b18e817a19a settings transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.537
5cb3247d75ba466d234b1553d40d411ddc89109b telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5cd52e278967fb7fd477a07d8e2c13a3ae0020a2 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.982
5cfcced7f381b09f4adfea429d60486fa7770128 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=untested
5d0753ef220362116f74a37d9f6da0457d35686a moat transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.473
5d1661ae838ecc1728c38c8b97125ccecdea1fe8 telegram transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
5d1cf74bc67ad4b806b4e674ec269e840c9e5334 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5d356bd68783523a3ebe503173e4fc916f53a147 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.417
5d42fc8a9aa759c348026937f2b2db3eff3afd93 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.263
5d884d6372503a8cb9cc9bee932e10fa17769cc4 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
5de118a9b583ca1c5f4238e59b51d1805d85d863 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.343
5de21677132dccfa5af37f4bd612f6646a690f42 email transport=vanilla ip=4,6 distributed=true state=functional bandwidth=accepted ratio=1.934
5e2403c00328346d86b1ccdc5d6f6bf67eb268ea https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
5e27916925e825cf11bb999a24bc2da0902c8b49 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5e4c4efe8c51b19bb9cbd64d706719d6def311f9 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
5ea663c4061559dceaba4820779a0248e64651c4 moat transport=obfs4 ip=4 distributed=false state=untested bandwidth=untested
5f161d2e5713c93f16feedd63178e37208aa78df none transport=obfs4 ip=4 blocklist=ru distributed=false state=dysfunctional bandwidth=untested
5fc35536302ea64627ec6cd7433fb7b9cf1a0bcf telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
5fe4d2971a36890164171016cfd273e6c4cb2ab6 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
602e135e30929d3b9d66a35f3c944b54a94eab77 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.138
606392c9d722f96db709969e699d28ce7159545c settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=untested
60682b230c834e873e8bc4163932aede9f30c93f settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
60cb7c65ba1b9a24d4f65efb0b0268c17fa41d41 moat transport=obfs4 ip=6 port=443 distributed=true state=functional bandwidth=accepted ratio=1.553
60e585196f1f8b22016bf46e770105055793200c moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
6126fae5b06c801d162841a2ff02266e89e1f9bd https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.007
6159f8257cf5f0e3e4667692bb5a1b975679f60a moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
61663f54d329e50aeebda9724eac30916aafdcac email transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
61815aaaa59d5e58e36615f677d6b0ad57c1a260 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
618cdfc74396d1aa55bd6945179d4e224d573a0b moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.543
619d4a0596723372ff39d58781bb915809c3d70f moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=2.129
61a6150316f65b9bc4cd090da6b28c57842aaf6d email transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
61c02fe104a4603bd49e3c3c7657f2f703861fcf settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
62344742d0fdc8ecd42b3de8eb1c50bd8bfe09d7 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.609
6236ebb04242d7f54ecc2ae7fdccb1e48a1018d3 settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
624139b954e7d4c26a7c0d4c40ef8404b9a54371 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
6251dea77e44d5a84278c82d16e5a50d960f60cc settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
6291c82a2fcf606022219d40e2a03390a1655eab none transport=obfs4 ip=6 distributed=false state=functional bandwidth=accepted ratio=1.461
6296bc84aa38c986fb8396b6b404804770b97fe4 none transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
629b38652d4e8b7d1ba565b7d33ca0b1f337937f https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.039
62f7b15e658e922e84789d12cca81b0607a8939b moat transport=obfs4 ip=4 distributed=false state=untested bandwidth=untested
6303788545b3da8c3320864141ab4d1c5e06d111 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.891
631c92e29121284d2fcb25734abeca16ee50ffc7 settings transport=vanilla ip=4,6 distributed=true state=functional bandwidth=untested
63241a72b8866d479897abf54d8580aa23680839 telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
6324b7d9d21214da17775a3c35e8fe9e4c1679a4 moat transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=0.961
634641c2d0a7a505273af3027bf7fe551b576e22 email transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.315
634b9dd2190819bb9077874b8560c6ef38d7efe8 none transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
635ba7971654abcd09515a2f21407a63ebcc8add none transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
6392a046c0c697236fe816c9cdc81a5334a6d54f none transport=obfs4 ip=4 distributed=false state=functional bandwidth=untested
639ab77152cb50bc3a5583fa6c93e9743a2934ac settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
63a1f742e4c00b405f067c742bd18fe54970cfe3 settings transport=vanilla ip=4 distributed=false state=dysfunctional bandwidth=accepted ratio=1.491
63d84d12c55ee317fdba9d35ebc6c89179e0b2ab moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.668
63e31f52a59a50447bbbb290356661354b6ecc7c email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
63f0e5acbec49d38205c308a9405390ad32797b7 https transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
63f1ba33237c8fafbf68523e2db66a348cc5b074 settings transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=rejected ratio=0.891
641cc756ab898f14d2d2e631549e1e6f7f121d1a settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
6433fe404feec908f081d5f2cab150cdff139a2a moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.961
6460788977d0e912118f3c37d5170fdc3485a7ca settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
648ce8e3b24470161f9c94ccf7ab17a8c142456c settings transport=obfs4 ip=6 distributed=true state=functional bandwidth=accepted ratio=1.476
64b0be055d15c9b5cfaff57f9bafcf78c06a5cd7 https transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
64b953671212b21b739eaecfc490edfcc65859c9 email transport=vanilla ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=1.234
64d7d20a7002f4a5e5a473d33f4bce37294b09f9 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.576
64defcfd643d692edfd10daa604c9dcbc4d0b117 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
65d2a4c3dc1edae77e62adae3f28041d4577c4aa email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
6612ce04e7a38d652f1cdd6738380e7138b17375 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
6625ee0afbbb989b96f465fd522d8ab169d011c7 settings transport=obfs4 ip=4 blocklist=ru distributed=false state=dysfunctional bandwidth=untested
6642afbb9da95f2e3678b0ce64e49bbce7219441 settings transport=webtunnel ip=6 port=443 distributed=false state=dysfunctional bandwidth=untested
6652b79ab054e29b483b012aff814507ff5fa0c0 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
66573e6d9d5f9bd7ef14ab58338d2da462216d77 telegram transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
665e01a66ea18b9f642e39b5820872e04ad677ea email transport=obfs4 ip=6 distributed=true state=functional bandwidth=untested
66687e470acaaa0d9b3b535a416f472c07c78de7 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
666e69bce00308f903ed370e57fe4d3127874a27 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=accepted ratio=1.232
669a2c8a57c57dee4b685437a7ecc86e9eaf4c3b settings transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
66ec4af66c3746523a98db3825fec553eb1aaaa5 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
670c18ac2a6ecd2a8bf597016a0b953680a09eae settings transport=vanilla ip=4,6 distributed=false state=untested bandwidth=untested
674ff3ecbcd0e6d78aa18812b0af9f27b68af6aa moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.032
67541163919dc038713e38c6e02652fef4bf865e moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.958
677c94e64a83bc57370565bbf6d1ab14b65daf44 telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=0.940
677e147a64c7f7df750a48fb5fcaf1d87ff4e4cd settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
67a70e950f68cb78215eae23ec978c7ccbd21f0c https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
67a844ae8642379692c3c90af1dab1a155700906 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
67c5e8c15948768aec1cf62469d83d2f55d436d8 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
67d8d1cdc7ead1213f25d03a74addb70dae6df99 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.005
67f2aa10cad4a46642a8f62d4b44ea693988205f https transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=accepted ratio=0.952
67f5a842fde0c5e9db573c56b83e98a1caccb76a moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.507
67fc62e193d3e9c9159e8460499dcc3bab748c84 telegram transport=obfs4 ip=4 port=443 distributed=false state=dysfunctional bandwidth=rejected ratio=0.794
680465871ce100d22e613091263511e4c74c036e email transport=obfs4 ip=4 port=443 distributed=true state=functional bandwidth=untested
6805e45c2341c8de2a9d42969dd242a8a1c4c2d6 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=rejected ratio=0.050
6830e6a3944cf4dcdf22667ae7b5166158eaf2bb settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.204
683312734a4aeb254c97a89b9a7cc3e2372f0d87 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.195
683e84e83a7ef5f94194f33ba5e0cb7cf772af85 email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.677
687b9e54a014a79c0a6d7bbdf2190385543a7da7 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.891
688e7c6ee0f522df664cd893176c269e35489808 settings transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.615
68af6fbf6d468e792d7720ca28be70eda0d2891b email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.674
68c1851f6787f70e3036633e4b52e9af51193407 https transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
68daf3951c1083c0c6b6fd40a29aaef89c37470f https transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
68de0d1f3a7c42cc231cde681e4b9807bcad4214 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.278
6902e48b054615eb1c7786f7d8240e679a411aed https transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=untested
69083380db57d2b6e08509e7f6531521970bc31a email transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
69216806e152e22ff4c17bd2b43735dfb6d94a2f https transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
6950ff2363e5cde6e7c3865d5fce048076040bbb moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.953
69556e14f08e5a235bb789b1f8fc85d556cc32f0 https transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.402
695f8da1503d10bdbb38ab248b4617389426a330 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
6987e5ad30d19274ff926c4980c5c20a153548cc telegram transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
6996bc2264025e9a87d51324cf56bf150ccdf9f4 settings transport=webtunnel ip=6 port=443 distributed=true state=functional bandwidth=untested
69d50e4d88cd52a77f8918a7269318e337e5c431 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=untested
69e2141f7d548c6fc11962ae20ccd0ed2e4c42f6 moat transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=2.373
6a2d2686fd2a90126373c13465b8b298889c876d email transport=obfs4 ip=4 distributed=true state=functional bandwidth=accepted ratio=1.018
6a3084ab98257860362b0e8bbcd01ef510344161 settings transport=vanilla ip=4 distributed=true state=functional bandwidth=untested
6a438770b6a025f3ecfc20bacafbd04c71ac5203 email transport=obfs4 ip=6 port=443 blocklist=ru distributed=true state=functional bandwidth=accepted ratio=1.192
6a63b1b69c0ad176b329d5ab76ded27bd787e919 moat transport=obfs4 ip=4 distributed=false state=dysfunctional bandwidth=rejected ratio=0.615