-
Notifications
You must be signed in to change notification settings - Fork 0
/
roa_dn42_v6.conf
1880 lines (1880 loc) · 86.8 KB
/
roa_dn42_v6.conf
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
#
# dn42regsrv ROA Generator
# Last Updated: 2022-11-09 08:57:51.874061624 +0000 UTC m=+7398543.688051960
# Commit: ab0cebe0cff532a2723725ea83c97df323baf3a3
#
route fd73:8e01:9673::/48 max 64 as 4242423301;
route fdc8:dc88:ee11:6666::/64 max 64 as 38173;
route fddd:118b:5dc0::/48 max 64 as 4242423146;
route fdec:1:1:dead::/64 max 64 as 4242422015;
route fdeb:aedf:bece::/48 max 56 as 4242420463;
route fd22:7135:7c82::/48 max 48 as 4242421017;
route fd12:949f:af8f::/48 max 48 as 4242423021;
route fdd8:56ab:1866::/48 max 48 as 4242421610;
route fdda:eafa:15ce::/48 max 64 as 4242420567;
route fd1b:be18:a185::/48 max 64 as 4242422378;
route fdfd:1ce:cafe::/48 max 48 as 4242422104;
route fd1b:9b7e:7a18::/48 max 64 as 4242423974;
route fdec:2b86:777::/48 max 64 as 4242423816;
route fd42:dead:cafe::/48 max 64 as 4242423955;
route fd97:c51c:3cbc::/48 max 48 as 4242423554;
route fdcc:bb58:43b3::/48 max 64 as 4242423626;
route fd6c:f200:aac::/48 max 48 as 4242423057;
route fd25:ae36:d470::/48 max 64 as 4242420751;
route fd33:c25e:9d77::/48 max 48 as 4242423739;
route fd42:64:686::/48 max 64 as 64686;
route fd03:7e46:2707::/48 max 64 as 4242421928;
route fd42:172:2026::/48 max 64 as 4242422100;
route fd1c:f73c:a945:4000::/52 max 64 as 4242422700;
route fd00:9990::/48 max 64 as 4242429990;
route fda4:be8c:4fd1::/48 max 48 as 4242423761;
route fd08:a855:d4c7::/48 max 64 as 4242423027;
route fd36:cf83:36bd::/48 max 48 as 4242422627;
route fd87:3e50:cf33::/48 max 64 as 4242423939;
route fdc6:6093:bfda::/48 max 48 as 4242420723;
route fd1b:e9d8:d5f3::/48 max 64 as 4242422143;
route fd00:801:30a0::/44 max 64 as 4242420656;
route fd2a:86c6:dbb7::/48 max 64 as 4242423351;
route fd10:127:237::/48 max 64 as 140913;
route fd70:3377::/48 max 64 as 4242423377;
route fd40:bad:dead:babe::/64 max 64 as 4242420134;
route fdff:49:461::/48 max 64 as 4242420420;
route fdc3:10cd:ae9f::/48 max 64 as 4242420789;
route fdcc:8b7e:4593::/48 max 48 as 4242421237;
route fd1a:747a:d030::/48 max 48 as 4242423505;
route fd1f:b122:81::/48 max 48 as 4242421521;
route fd51:b39d:249f::/48 max 64 as 4242421717;
route fdb9:fff1:dbbf::/48 max 64 as 4242423866;
route fd0a:d928:b30d::/48 max 64 as 65099;
route fd37:b4dc:4b1e::/48 max 64 as 65037;
route fd10:127:7::/51 max 64 as 4201270007;
route fdfd:adad:adad::/48 max 64 as 4242421501;
route fdf1:f170:b834::/48 max 64 as 4242420159;
route fdbd:8259:fe95::/48 max 64 as 4242423890;
route fd32:c1ee:db11::/48 max 64 as 4242420148;
route fdf6:774:73c3::/48 max 64 as 4242423410;
route fd18:18d9:adde::/48 max 64 as 4242421233;
route fd46:b3f:1aee::/48 max 64 as 4242420482;
route fdec:e951:d2::/48 max 64 as 4242421038;
route fd77:14cc:b20c::/48 max 64 as 4242420340;
route fdb1:8565:c849::/48 max 64 as 4242421199;
route fd79:f856:16d9:8882::/64 max 64 as 4242420017;
route fdad:2:bad::/48 max 48 as 4242420607;
route fd83:e002:c8a1::/48 max 64 as 64525;
route fdb4:acab:1312::/48 max 48 as 4242422131;
route fdff:12da:c10d::/48 max 48 as 4242422026;
route fd23:42:ac16::/56 max 64 as 64616;
route fd10:127:23::/48 max 64 as 4201270014;
route fd23:698f:1b00::/47 max 64 as 4242422180;
route fd4e:f2d7:88d2:ffff::/64 max 64 as 64899;
route fd86:5946:61b2::/48 max 48 as 4242421273;
route fd1f:97fb:ac92::/48 max 64 as 4242422090;
route fd22:622:1f6c::/48 max 64 as 4242420110;
route fdef:f30f:1337:cafe::/64 max 64 as 65190;
route fdd1:1c64:66fd::/48 max 64 as 4242421233;
route fdf7:f511:d0ce::/48 max 64 as 4242420560;
route fda1:ae59:6dd0::/48 max 48 as 4242421876;
route fda1:ae59:6dd0::/48 max 48 as 4201270021;
route fda1:ae59:6dd0::/48 max 48 as 17830;
route fda1:ae59:6dd0::/48 max 48 as 211876;
route fd42:6cef:5f39::/48 max 64 as 4242422747;
route fd6e:4d9b:686e::/48 max 64 as 4242423033;
route fd42:c001:c0de::/48 max 64 as 4242423355;
route fd42:dead:d00d::/48 max 64 as 4242422727;
route fdf4:71a1:fc81::/48 max 64 as 4242420304;
route fd7b:1b70:2d2e::/48 max 48 as 4242422007;
route fd76:76ee:95db::/48 max 64 as 4242420636;
route fdc8:9aa4:9b18::/48 max 64 as 4242423133;
route fd77:2051:dd25::/48 max 48 as 4242421442;
route fdee:5477::/48 max 64 as 4242420527;
route fd55:f69a:823::/48 max 64 as 4242422443;
route fdba:c255:c855::/48 max 48 as 4242423422;
route fde7:32ae:ee77::/48 max 64 as 4242422777;
route fd12:eb9d:39d3::/48 max 64 as 4242421640;
route fd12:eb9d:39d3::/48 max 64 as 4242421255;
route fd3f:a1f1:54ed::/48 max 64 as 4242422980;
route fd10:127:233:1000::/64 max 64 as 4242421025;
route fda0:add0:dec::/48 max 64 as 4242420235;
route fd3a:f39a:8568::/48 max 48 as 4242421810;
route fd2a:8eb0:74bd::/48 max 64 as 4242423008;
route fde4:486f:416f::/48 max 64 as 4242420955;
route fd54:4ac:bdd::/48 max 64 as 4242421899;
route fd42:217:cafe::/48 max 64 as 4242420217;
route fddd:3327:f909::/48 max 64 as 4242420502;
route fdfa:8c85:5ca3::/48 max 64 as 4242420416;
route fdc1:60fc:990c::/48 max 64 as 4242420671;
route fd10:2077:1bda::/48 max 64 as 4242420704;
route fd10:127:239::/48 max 64 as 141706;
route fdea:2eb5:7420::/48 max 64 as 4242422673;
route fd12:f590:c38c::/48 max 48 as 4242421091;
route fdc3:c927:4566::/48 max 48 as 4242421509;
route fd98:308:41fc::/48 max 48 as 4242420308;
route fd51:fca7:cafe::/48 max 64 as 4242421303;
route fd44:4444:4444::/48 max 64 as 4242423311;
route fd0e:3d8c:2dd6:8e6e::/64 max 64 as 4242420651;
route fd42:465:1337::/48 max 64 as 4242420131;
route fd2b:4193:c6d9::/48 max 64 as 4242423083;
route fd42:667c:6ad2::/48 max 64 as 4242420113;
route fdc8:200e:654a::/48 max 64 as 4242423854;
route fd23:9fed:1099::/48 max 64 as 4242422816;
route fd46:e3dc:db4a::/48 max 64 as 4242421037;
route fd42:2a2b:acf1::/48 max 48 as 4242420577;
route fdf4:83f1:6f4f::/48 max 48 as 4242420515;
route fd42:24ac:df57::/48 max 48 as 4242420262;
route fdab:896d:d34::/48 max 64 as 4242420093;
route fdb2:a999:7f8c::/48 max 48 as 4242422389;
route fd14:aad:efca::/48 max 64 as 4242420724;
route fdfc:bdcd:a880::/48 max 48 as 4242423112;
route fd59:a9db:1a5e:670::/64 max 64 as 4242420980;
route fd00:defe:a100::/48 max 64 as 4242421909;
route fd1d:817:1926::/48 max 48 as 4242420644;
route fd42:4242:2601::/48 max 48 as 4242422601;
route fdcf:fabc:3c41::/48 max 64 as 4242420603;
route fd5a:9fd:324f::/48 max 64 as 4242422165;
route fdcf:cafe:eba::/48 max 48 as 4242420405;
route fd18:86b1:f4e1::/48 max 48 as 4242423226;
route fd13:b4dc:4b1e::/64 max 64 as 65052;
route fd74:74e9:e537::/48 max 48 as 4242422275;
route fd92:6a0d:ea38::/48 max 64 as 4242422188;
route fda7:e8fa:a57f::/48 max 64 as 4242423211;
route fd33:e267:db05::/48 max 48 as 4242420275;
route fdec:4f96:8be1::/48 max 48 as 4242422164;
route fd67:1c85:3021:27c0::/64 max 64 as 4242420097;
route fd28:4a00:7533::/48 max 64 as 4242421938;
route fd21:b0e7:6c39:c241::/64 max 64 as 4242422798;
route fd0b:c5a0:371::/48 max 48 as 4242422478;
route fd15:9ed:b71d::/48 max 48 as 4242420640;
route fda0:747e:ab29:7406::/64 max 64 as 65100;
route fdfc:3e4f:f3c0::/48 max 64 as 4242420020;
route fd2f:44ef:3d50::/48 max 48 as 4242422072;
route fd93:8225:737e::/48 max 64 as 4242421120;
route fdac:f820:373a::/48 max 64 as 4242422128;
route fdb6:2f8b:4f0f::/48 max 64 as 4242421333;
route fd05:dd42:baab::/48 max 48 as 4242420838;
route fd21:a07e:735e::/48 max 64 as 4242423991;
route fd00:82fa:2a76::/48 max 48 as 4242420920;
route fd00:cafe:1337::/48 max 64 as 4242423420;
route fd42:4399:7213::/48 max 64 as 4242423127;
route fd8a:3e99:6f68::/48 max 64 as 4242423943;
route fd42:0:f::/48 max 64 as 4242420991;
route fd01:470:1989::/64 max 64 as 4242421989;
route fd23:5a57:7294::/48 max 48 as 4242421669;
route fd42:fa6::/48 max 64 as 4242421114;
route fd67:86ac:41f5::/48 max 64 as 4242423507;
route fd42:4242:64::/48 max 64 as 4242420064;
route fd81:9057:26e6::/48 max 64 as 4242420865;
route fd89:aec1:ca45::/48 max 64 as 4242422942;
route fd42:aacb:49ee::/48 max 64 as 4242420209;
route fdf4:56da:a360::/48 max 64 as 4242423751;
route fd42:2935:3546::/48 max 64 as 4242422935;
route fd23:2333:2333::/48 max 64 as 4242420741;
route fd25:ce36:b7db::/48 max 64 as 4242420800;
route fdfd:6b61:7431::/48 max 64 as 4242421994;
route fddf:375c:489e::/48 max 64 as 4242423566;
route fd05:4b:cce::/48 max 48 as 4242420253;
route fded:ca:efd::/48 max 48 as 4242422294;
route fdf3:2049:5152::/48 max 64 as 64866;
route fd42:b60d:6174::/48 max 64 as 4242422624;
route fd02:2d97:1ccf::/48 max 64 as 4242420245;
route fd42:76b8:1c05::/48 max 64 as 4242420947;
route fd10:127:7:3000::/52 max 64 as 4201270007;
route fde8:8e27:b925::/48 max 64 as 4242421276;
route fd70:eaeb:5c1e::/48 max 48 as 4242421801;
route fd42:2950::/48 max 64 as 4242422950;
route fd42:2950::/48 max 64 as 202265;
route fd48:4b4:f3::/48 max 48 as 4242422616;
route fd42:180:3de0:100::/60 max 64 as 4242420119;
route fd42:180:3de0:100::/60 max 64 as 64737;
route fd42:180:3de0:100::/60 max 64 as 4242422601;
route fd9b:a0ba:1da5::/48 max 48 as 4242423707;
route fddc:3293:81a4::/48 max 64 as 4242422515;
route fdd5:28f6:7dce::/48 max 48 as 4242423314;
route fd00:ffba:ffba::/64 max 64 as 65502;
route fd00:801:30c0::/44 max 64 as 4242420656;
route fda6:2474:15a4::/48 max 48 as 4242423078;
route fd43:6d1:3ee2::/48 max 64 as 4242420661;
route fd42:23:205::/48 max 64 as 4242420205;
route fd42:c33e:bef4:228::/64 max 64 as 4242420121;
route fd71:297c:aac::/48 max 64 as 4242422249;
route fd32:b22c:b2ea::/48 max 48 as 4242422115;
route fdc3:ac8c:8bcd::/48 max 48 as 4242421054;
route fd06:8187:fb00::/40 max 64 as 65026;
route fd68:edba:7c1a::/48 max 64 as 4242423435;
route fd50:9b3b:9cd6::/48 max 48 as 4242421227;
route fd3c:26b:c9b0::/44 max 64 as 4242423475;
route fd16:fb99:7f9b::/48 max 48 as 4242422227;
route fd41:1441:1441::/48 max 64 as 4242421441;
route fded:9e31:ffee::/48 max 48 as 4242423397;
route fd5f:7a63:c27f::/48 max 64 as 4242423040;
route fd94:e773:5413::/48 max 64 as 4242421008;
route fdd7:e654:c018::/48 max 64 as 4242422424;
route fda7:fb2b:4733::/48 max 48 as 4242421848;
route fdfd:face:4ac3::/48 max 48 as 4242421850;
route fd10:127:236::/48 max 64 as 140913;
route fdf2:453f:2c7f::/48 max 48 as 4242423599;
route fda1:384a:74de::/48 max 64 as 65525;
route fd4d:cab9:e99a::/48 max 48 as 4242420585;
route fd76:b436:28bc::/48 max 64 as 4242420003;
route fd0f:3077:7::/48 max 64 as 4242423526;
route fd42:3259:c01d::/48 max 64 as 4242420166;
route fd11:acac:961d::/48 max 64 as 4242420213;
route fd00:801:30b0::/44 max 64 as 4242420656;
route fd19:e0a6:1295::/48 max 64 as 4242420321;
route fd10:127:17::/48 max 64 as 141776;
route fd10:127:17::/48 max 64 as 4201270017;
route fd10:127:17::/48 max 64 as 4242420247;
route fda3:b3ab:126d::/48 max 48 as 4242423217;
route fd07:369:6502::/48 max 48 as 4242423468;
route fdef:5a83:3ef2::/48 max 48 as 4242420350;
route fd02:152e:d070::/48 max 48 as 4242421719;
route fd96:70f6:b174::/48 max 48 as 4242423270;
route fd39:e07d:e463::/48 max 64 as 4242421165;
route fdc7:d436:6765::/48 max 48 as 4242422340;
route fdc4:13f5:25ec::/48 max 48 as 4242422821;
route fd42:7331:a07c::/48 max 64 as 4242423230;
route fdf2:8800:6e97::/48 max 64 as 4242422017;
route fd88:28f7:a86d::/48 max 64 as 4242420344;
route fdef:1701:b5ee::/48 max 64 as 64875;
route fdfd:beef:beef:beef::/64 max 64 as 4242420156;
route fd42:cd49:2dd2::/48 max 64 as 4242420418;
route fd05:3aca:c3a0:abcd::/64 max 64 as 0;
route fd3c:77f3:88a7::/48 max 64 as 4242421451;
route fd63:c85f:2e25::/48 max 48 as 4242422568;
route fd42:128:26::/48 max 64 as 4242420128;
route fd4e:f2d7:88d2:fffb::/64 max 64 as 64899;
route fd1d:cc09:1366::/48 max 48 as 4242421607;
route fd42:fe2c:d179::/48 max 64 as 4242422027;
route fd10:e0b:bb2::/48 max 64 as 4242421604;
route fd10:e0b:bb2::/48 max 64 as 4242421604;
route fdda:bccd:70e1::/48 max 64 as 4242423361;
route fd42:4242:2322::/48 max 48 as 4242422322;
route fd1c:f73c:a945::/48 max 64 as 4242422700;
route fdea:1aa5:fe0::/48 max 48 as 4242422775;
route fd22:d6c3:34e0::/48 max 48 as 4242422763;
route fd76:bcbe:1a52::/48 max 48 as 4242423632;
route fd5f:2bd0:1feb::/48 max 48 as 4242421869;
route fd5b:d2c1:2ecc::/48 max 64 as 4242421832;
route fd92:8743:372e::/48 max 48 as 4242420631;
route fd79:300d:6056::/48 max 64 as 4242421271;
route fd00:801:3000::/40 max 64 as 4242420656;
route fd91:de6e:e51d::/48 max 64 as 4242421169;
route fd44:8965:2e1c:2e76::/64 max 64 as 4242420017;
route fd31:3a4f:b7ae::/48 max 64 as 4242422773;
route fd5b:4834:643a:7c41::/64 max 64 as 4242420306;
route fd70:336f:17f6:3465::/64 max 64 as 4242420017;
route fdf9:9417:5844::/64 max 64 as 64885;
route fd8f:fcd6:b5b3::/48 max 64 as 4242421656;
route fd39:1c:2c1b::/48 max 64 as 4242422439;
route fd81:edb3:71d8::/48 max 48 as 4242422953;
route fd10:127:88::/48 max 64 as 4201279999;
route fd42:3103:5bca::/48 max 64 as 4242423310;
route fd42:23:139::/48 max 64 as 64649;
route fd5b:dc38:47f5::/48 max 64 as 4242420742;
route fd04:52c0:4000::/48 max 64 as 4242423585;
route fdd0:c468:8eb1::/48 max 64 as 4242423843;
route fdad:e88e:bac::/48 max 48 as 4242420499;
route fdcf:7494:4f2c::/48 max 64 as 4242420813;
route fdfe:cafe:dead::/48 max 48 as 4242420609;
route fd40:2200:1975::/48 max 48 as 4242421975;
route fd42:4242:2468::/48 max 64 as 4242422468;
route fd81:2009:2009::/48 max 64 as 4242422009;
route fd42:d42:d42:53::/64 max 64 as 64737;
route fd42:d42:d42:53::/64 max 64 as 4242422601;
route fd42:d42:d42:53::/64 max 64 as 4242421080;
route fd42:1806:1806::/48 max 48 as 4242421806;
route fd10:127:127:53::/64 max 64 as 4242422464;
route fd5e:724d:f1bb::/48 max 48 as 4242422590;
route fd65:f4d8:5327::/48 max 48 as 4242420969;
route fdfd:beef:beef:1::/64 max 64 as 4242420155;
route fd7e:5330:e2d7::/48 max 64 as 4242422069;
route fd06:b047:f7de::/48 max 64 as 64872;
route fdd1:1c64:66fd::/58 max 64 as 4242421233;
route fdf3:bd28:d90b::/48 max 48 as 4242420215;
route fd73:111:e824::/48 max 64 as 65152;
route fd25:af2d:1f51::/48 max 48 as 4242421516;
route fd00:114:514::/48 max 64 as 4242420916;
route fddf:51f8:5744::/48 max 64 as 4242421145;
route fd8c:41:f1a2::/48 max 64 as 4242420517;
route fd5b:a2c5:fe5c::/48 max 64 as 4242423321;
route fd42:babe:caf0::/44 max 64 as 4242421123;
route fd42:babe:caf0::/44 max 64 as 4242421121;
route fda1:d26b:7461::/48 max 64 as 4242420000;
route fddc:5f35:fd47::/48 max 64 as 4242421911;
route fd98:78d2:f8eb::/48 max 48 as 4242422390;
route fd42:abcd:ef00::/48 max 64 as 4242421819;
route fd81:763a:ce02::/48 max 48 as 4242423350;
route fd80:81ed:c211::/48 max 64 as 4242420341;
route fdf4:37e:100::/48 max 64 as 4242422423;
route fd42:ccc:fd::/48 max 64 as 4242422800;
route fd2c:71c8:6038::/48 max 64 as 4242423214;
route fd42:9559:ec92::/48 max 64 as 4242420362;
route fda1:cb1b:7582::/48 max 48 as 4242421602;
route fdc4:b3bc:b6e6::/48 max 48 as 4242420805;
route fd57:1523:5216::/48 max 64 as 4242423853;
route fdee:ac14:e700::/48 max 56 as 4242420343;
route fd84:fc6d:9cfb::/48 max 64 as 4242423228;
route fded:9e31:611::/48 max 48 as 4242423396;
route fd42:4dd0:ff00::/48 max 64 as 4242422428;
route fda5:adba:5953::/48 max 64 as 4242421366;
route fdca:852a:928d::/48 max 64 as 4242420842;
route fd13:5940::/48 max 64 as 4242423064;
route fdec:2fb6:2bdd::/48 max 64 as 4242420529;
route fdff:0:fcd0::/48 max 64 as 0;
route fd49:277:42::/48 max 48 as 4242420288;
route fd49:277:42::/48 max 48 as 4201270030;
route fd96:5241:4544::/48 max 48 as 4242422683;
route fd5d:7bc7:ed1b::/48 max 64 as 4242423520;
route fd8f:e080:bfad::/48 max 48 as 4242423337;
route fd42:9942:e15b::/56 max 64 as 4242422161;
route fdbb:8bb5:fb3d::/48 max 48 as 4242420074;
route fd10:127:308::/48 max 64 as 4242420308;
route fd5b:d226:9706::/48 max 64 as 4242420153;
route fd42:4992:6b6d::/48 max 64 as 4242428200;
route fdb2:e864:673e::/48 max 64 as 4242423152;
route fd42:4999:6a6d::/48 max 64 as 4242420302;
route fdcd:c2da:c2c4::/48 max 48 as 4242421464;
route fd00:67a2:7d02::/48 max 64 as 4242422462;
route fd42:7879:7879::/48 max 64 as 4242421787;
route fd42:23:cda::/48 max 64 as 4242420101;
route fd42:23:cda::/48 max 64 as 65038;
route fdad:b98a:7dcb::/48 max 64 as 4242423743;
route fd10:127:234::/48 max 64 as 140913;
route fd63:eef6:907::/48 max 64 as 4242420907;
route fd10:78d4:da31::/48 max 64 as 4242420361;
route fd42:beef:cafe::/48 max 64 as 4242421776;
route fd33:2dd3:9870::/48 max 48 as 4242422273;
route fdad:850e:9f6a:9cb3::/64 max 64 as 4242420190;
route fdef:fa9b:62b::/48 max 64 as 4242420454;
route fd28:21f:ecd2::/48 max 48 as 4242422802;
route fd42:2b13:a29c::/48 max 64 as 4242420870;
route fd19:eb21:aceb::/48 max 48 as 4242421655;
route fd00:feed:bec::/48 max 64 as 4242420802;
route fd00:1337:cafe::/48 max 64 as 64626;
route fd23:42:c3d2::/56 max 64 as 64698;
route fd20:3f3a:6046::/48 max 48 as 4242423646;
route fd42:f61:e13::/48 max 64 as 4242422550;
route fdf8:c69:cc49::/48 max 48 as 4242420880;
route fd69:9889:9692::/48 max 64 as 209557;
route fd69:9889:9692::/48 max 64 as 4242421214;
route fd9e:e609:dde2::/48 max 48 as 4242422251;
route fd42:2882:2882::/48 max 64 as 4242422882;
route fdac:f3f:e7e2::/48 max 64 as 4242422333;
route fd21:1500:66b0::/48 max 48 as 4242422459;
route fdfc:2689:117c::/48 max 64 as 4242421301;
route fd42:b10:1010::/48 max 64 as 4242422742;
route fd10:127:186::/48 max 64 as 4201270186;
route fd11:f391:702c::/48 max 64 as 4242423660;
route fded:f11e:e161::/48 max 64 as 4242421402;
route fdad:23e:f50::/48 max 48 as 4242421477;
route fd76:d330:272b::/48 max 48 as 4242423925;
route fd00:f100:fe00:2e10::/64 max 64 as 4242422282;
route fd6f:4e7:145::/48 max 48 as 4242420063;
route fd42:23:d3::/48 max 64 as 4242420075;
route fd80:8787::/48 max 64 as 4242421010;
route fd42:fa76:1110::/48 max 64 as 4242421189;
route fd9a:f34d:4541::/48 max 64 as 4242422200;
route fdf4:8a54:8ec4::/48 max 48 as 4242420458;
route fd30:d2:794a::/48 max 48 as 4242422969;
route fddd:a553:ee0e::/48 max 64 as 4242421119;
route fd42:4242:1842::/48 max 64 as 4242421842;
route fd42:9564:c802::/48 max 64 as 4242421055;
route fddd:ed3:375e::/48 max 64 as 4242421312;
route fd42:5d71:219::/48 max 48 as 4242420119;
route fd10:127:80::/48 max 64 as 4201270080;
route fd50:7506::/48 max 48 as 4242420183;
route fd42:5943:cafe::/48 max 64 as 4242423308;
route fdec:2606:62c0::/48 max 48 as 4242420388;
route fddd:470:5001::/48 max 48 as 4242421480;
route fddb:d3b4:d55a::/48 max 48 as 4242422865;
route fd9d:7372:f0d0::/48 max 64 as 4242420860;
route fdc7:d4c1:7b13::/48 max 48 as 4242423353;
route fd47:aba3:f39f::/48 max 48 as 4242421147;
route fda3:d993:602a:babe::/64 max 64 as 4242420781;
route fd55:a814:708c::/48 max 64 as 4242422410;
route fd7b:9886:1c8c::/48 max 64 as 4242423404;
route fdca:fafe:35f3::/48 max 64 as 4242422535;
route fd3b:826c:87df::/48 max 48 as 4242420975;
route fdef:17a0:fff1::/48 max 64 as 64860;
route fd00:feed:ca7::/48 max 64 as 4242422688;
route fd06:e881:5380::/48 max 48 as 4242423197;
route fdde:a627:ee2::/48 max 48 as 4242423656;
route fdc5:cee0:5f6b::/48 max 48 as 4242423441;
route fdeb:53be:49b2::/48 max 64 as 4242422837;
route fd9b:7:1375::/48 max 48 as 4242422270;
route fd7c:dfc0:d347::/48 max 64 as 4242420886;
route fd8d:aa08:49ce::/48 max 48 as 4242421849;
route fd42:2950:202::/48 max 64 as 4242422950;
route fd42:2950:202::/48 max 64 as 202265;
route fdba:54:32::/48 max 48 as 4242421477;
route fda0:747e:ab29:5142::/64 max 64 as 65120;
route fdc8:748:a55f::/48 max 48 as 4242422397;
route fdd6:8e66:2604::/48 max 64 as 4242423299;
route fda7:3ae7:e04d::/48 max 48 as 4242422596;
route fd01:470:7d4c::/48 max 64 as 64600;
route fd00:801:30f0::/44 max 64 as 4242420656;
route fd56:5799:d8f6:1b75::/64 max 64 as 64737;
route fdef:ffe0:3ed7::/48 max 64 as 64896;
route fdfc:44e4:146e:8f69::/64 max 64 as 4242423821;
route fd1c:f73c:a945:3000::/52 max 64 as 4242422700;
route fd0f:8db3:d50a::/64 max 64 as 65046;
route fd87:69aa:5e5c::/48 max 64 as 4242420952;
route fdbf:b130:d82f::/48 max 64 as 0;
route fd22:ad17:8e8d::/48 max 52 as 4242423073;
route fd0b:da1a:9768::/48 max 56 as 4242422032;
route fd86:57d3:e156::/48 max 48 as 4242422152;
route fdd1:957f:6ea9::/48 max 64 as 4242422053;
route fd42:172:23:255::/64 max 64 as 4242420255;
route fd99:b9c:8d88::/48 max 48 as 4242422750;
route fdb6:dbcb:e738::/48 max 64 as 4242420265;
route fd46:972a:903b::/48 max 64 as 4242423620;
route fd42:ccc:fd::/64 max 64 as 4242422800;
route fda0:bbe1:38d::/48 max 64 as 4242420160;
route fdc3:10cd:ae9d::/48 max 64 as 4242420789;
route fdae:e2d8:34a1::/48 max 64 as 4242420756;
route fdfb:4242:e10d::/48 max 64 as 4242420115;
route fd00:8336:f0e5::/48 max 48 as 4242422436;
route fd6e:cab2:576b::/48 max 48 as 4242421155;
route fdf8:adff:47b9::/48 max 64 as 4242422005;
route fd41:9805:7b69:6000::/51 max 64 as 4242420847;
route fd41:9805:7b69:6000::/51 max 64 as 4242420845;
route fd41:9805:7b69:6000::/51 max 64 as 4242420846;
route fdf9:6ea8:cc42::/48 max 48 as 4242423104;
route fd95:c7d7:7e07::/48 max 64 as 4242423747;
route fd76:560a:bba0::/48 max 48 as 4242422173;
route fdb7:439f:81b6::/48 max 64 as 4242423759;
route fdae:ea08:3eba::/48 max 48 as 4242420501;
route fdef:c0f:fe::/48 max 64 as 76124;
route fdab:4053:c0c1::/48 max 64 as 4242423858;
route fdb5:78b:64cc::/48 max 64 as 65181;
route fda9:b90:2fab::/48 max 48 as 4242422619;
route fdfd:dead:c0d3::/48 max 64 as 4242421113;
route fd42:4242:3369:6102::/64 max 64 as 4242423369;
route fddb:aea5:c955::/48 max 48 as 4242420682;
route fdf8:f2e5:897e::/48 max 48 as 4242420290;
route fd18:3ab6:2508::/48 max 48 as 4242422512;
route fd00:801:3080::/44 max 64 as 4242420656;
route fd62:e667:840a::/48 max 64 as 4242423315;
route fd0e:4f70:3485::/48 max 64 as 4242420755;
route fd00:e18c:dc61::/48 max 64 as 4242422560;
route fdc4:d762:2143::/48 max 64 as 64874;
route fd42:f61:e12::/48 max 64 as 4242420235;
route fd42:23:149::/48 max 64 as 4242420123;
route fdd0:17ea:3a52::/48 max 64 as 4242420194;
route fd35:eeee:eeee::/48 max 64 as 4242422006;
route fd95:bfa8:a5e2::/48 max 48 as 4242421916;
route fd8e:1889:b440::/48 max 48 as 4242423266;
route fda5:ac02:e120::/48 max 48 as 4242422369;
route fd42:fd6b:774e::/48 max 64 as 4242423306;
route fd93:6244:7aef::/48 max 48 as 4242422011;
route fdc8:3df0:c50e::/48 max 48 as 4242420584;
route fdc9:9999:9999:9900::/64 max 64 as 4242420199;
route fd10:127:2399::/48 max 64 as 4242422399;
route fd98:7769:12c8::/48 max 64 as 142642;
route fdae:43fb:3ab7::/48 max 48 as 4242420769;
route fdea:1d13:b804::/48 max 64 as 4242420149;
route fd53:707:41::/48 max 64 as 65044;
route fd7b:860b:8877::/48 max 64 as 64781;
route fdbb:177c:22e9::/48 max 48 as 4242421840;
route fd75:fcce:1f11::/48 max 48 as 4242422311;
route fd42:830:420::/48 max 64 as 4242420203;
route fd45:1b93:dddf::/48 max 48 as 4242422575;
route fd75:1204:2fa8::/48 max 64 as 4242423054;
route fd29:612d:9dd1::/48 max 48 as 4242423928;
route fdd0:77f2:44de::/48 max 64 as 4242422077;
route fda7:c947:6d13::/48 max 64 as 4242420415;
route fd68:beef:c0de::/48 max 64 as 4242423969;
route fd31:8b8c:795a::/48 max 52 as 4242420951;
route fd13:7744:b08d::/48 max 48 as 4242421359;
route fd44:ef30:15f::/48 max 48 as 4242422855;
route fddd:20c2:cc1c::/48 max 64 as 4242423936;
route fd42:beeb:beeb::/48 max 64 as 4242422342;
route fd56:4902:eca0::/48 max 52 as 4242422574;
route fde0:9f05:72fc::/48 max 64 as 4242423190;
route fd48:fcde:4242::/48 max 64 as 4242422022;
route fd8b:820f:94e0::/48 max 64 as 4242421041;
route fd42:4242:2189::/48 max 64 as 4242422189;
route fd00:1949:1001::/48 max 48 as 4242421661;
route fd62:c9e2:af95::/48 max 48 as 4242422331;
route fd59:b1b7:1d1f::/48 max 64 as 65055;
route fd42:8978:b461::/48 max 64 as 4242423340;
route fd2c:2fa3:62f1::/48 max 64 as 4242423918;
route fd10:127:1300::/48 max 64 as 207268;
route fd10:127:1332::/48 max 64 as 4242421332;
route fd28:d639:e958::/48 max 64 as 4242422375;
route fd8c:78:2fe2::/48 max 64 as 4242421216;
route fd3c:6338:e905::/48 max 64 as 4242421901;
route fd1e:d888:50b7::/48 max 48 as 4242421821;
route fde8:2b32:759b:fb76::/64 max 64 as 4242423405;
route fdf1:2921:24bd::/48 max 48 as 4242420273;
route fd0f:5477:7494::/48 max 64 as 4242422336;
route fd9c:e16b:c83a::/48 max 48 as 4242421440;
route fd42:403::/64 max 64 as 4242420403;
route fd05:3aca:c3a0:a2c1::/64 max 64 as 0;
route fdb2:b712:e8e::/48 max 64 as 4242420177;
route fd41:9805:7b69:4000::/51 max 64 as 4242420846;
route fd41:9805:7b69:4000::/51 max 64 as 4242420845;
route fd41:9805:7b69:4000::/51 max 64 as 4242420847;
route fd42:d42:d42:9001::/64 max 64 as 4242421050;
route fdd3:84c3:cab::/48 max 48 as 4242420686;
route fd62:cd4d:28a1::/48 max 48 as 4242420173;
route fd88:8888:abcd::/48 max 64 as 4242420448;
route fd58:eb75:347d::/48 max 64 as 4242420428;
route fd8a:fc0c:5707::/48 max 48 as 4242420760;
route fd32:54d6:1962:ad35::/64 max 64 as 4242420017;
route fd42:8a73:3fbb::/48 max 64 as 4242420612;
route fd00:172:2334::/48 max 48 as 4242422900;
route fdff:feed:4242::/48 max 64 as 4242420252;
route fd26:13ad:1cb6::/48 max 48 as 4242423303;
route fda6:ad1f:9aa1::/48 max 64 as 4242423186;
route fd85:50d:222d::/48 max 48 as 4242423954;
route fd00:801:3030::/44 max 64 as 4242420656;
route fd94:3ffe:d256::/48 max 64 as 4242421299;
route fdaa:243c:4101::/48 max 48 as 4242422058;
route fdd4:42d8:c154::/48 max 64 as 4242422801;
route fdf0:1ff4:d2e8::/48 max 48 as 4242420228;
route fda0:747e:ab29:209::/64 max 64 as 65397;
route fd0b:2bc5:1133::/48 max 48 as 4242420747;
route fd6d:a5fa:383c::/48 max 48 as 4242423962;
route fdae:e3cd:11d9::/48 max 48 as 4242420807;
route fddd:2633:d583::/48 max 64 as 4242422286;
route fdc5:ed74:2222::/48 max 64 as 4242423516;
route fdeb:fe10:ccb9::/48 max 48 as 4242420595;
route fde0:ccf0:ac16::/48 max 48 as 4242423518;
route fd18:18d9:adde:40::/58 max 64 as 4242421233;
route fd94:21a1:6eed::/48 max 48 as 4242423202;
route fd5d:ff5f:269f::/48 max 48 as 4242420320;
route fdbd:8dc9:3d2b::/48 max 48 as 4242423952;
route fdc1:e70f:34b0::/48 max 48 as 4242422810;
route fdce:3a98:4c1c::/48 max 48 as 4242423735;
route fd42:a66a:faaf::/48 max 64 as 4242423976;
route fdc8:c633:5319::/48 max 64 as 4242421588;
route fd2e:56cf:1ec2::/48 max 64 as 4242423225;
route fdb1:e72a:343d::/48 max 64 as 4242420207;
route fd11:11ae:7466::/48 max 64 as 65051;
route fdb8:946a:bc01::/48 max 64 as 4242423724;
route fda6:9506:1d5::/48 max 64 as 4242422541;
route fda6:9506:1d5::/48 max 64 as 4242422545;
route fdd3:e145:e3cc::/48 max 64 as 4242420193;
route fd23:7764:3e32::/48 max 64 as 4242423265;
route fd42:4f81:ecf4::/48 max 48 as 4242421824;
route fdfc:f2:54cd::/48 max 48 as 4242420460;
route fdf6:bd33:ba33::/48 max 48 as 4242422686;
route fdfe:2803:3a37::/48 max 48 as 4242422030;
route fda7:a975:bfc2::/48 max 64 as 4242420469;
route fd42:4242:2202::/48 max 64 as 4242422202;
route fd0c:d28c:fbc9::/48 max 64 as 4242420249;
route fd16:daf5:25dd::/48 max 64 as 4242421886;
route fd42:7616:60d2::/48 max 64 as 4242423264;
route fd00:bad:f00d::/48 max 64 as 4242420899;
route fd42:ccc:da::/48 max 64 as 4242420101;
route fdef:f10f:1337:cafe::/64 max 64 as 65190;
route fdff:85f4:d108::/48 max 64 as 4242421072;
route fd01:f37d:2b50::/48 max 48 as 4242420843;
route fd39:afba:d250::/48 max 48 as 4242423341;
route fd72:5301:e1df::/48 max 48 as 4242422981;
route fd42:2022:dead::/48 max 48 as 4242423691;
route fd7c:55ea:fd3b::/48 max 64 as 4242422520;
route fddd:d489:fbbf::/48 max 48 as 4242422902;
route fd63:672f:38e7::/48 max 48 as 4242422092;
route fd1d:8832:3c69::/48 max 64 as 4242420488;
route fdd3:5d16:b5dd::/48 max 64 as 65528;
route fd0c:9a97:47dc::/48 max 64 as 64864;
route fd9e:5312:a3b3::/48 max 48 as 4242423704;
route fd96:399d:d7bd::/48 max 48 as 46997;
route fdd3:1289:f8ba::/48 max 48 as 4242420693;
route fdb1:c7c8:dd5c::/48 max 64 as 4242420706;
route fdee:ba42:7e41::/48 max 48 as 4242420026;
route fd01:fd2f:b0ce::/48 max 48 as 4242423219;
route fdbc:14ef:89dc::/48 max 64 as 4242423423;
route fd42:2950:201::/48 max 64 as 4242422950;
route fd42:2950:201::/48 max 64 as 202265;
route fde2:d2a1:23a6::/48 max 64 as 4242420274;
route fdba:997e:735b::/48 max 48 as 4242421866;
route fd05:a588:da19::/48 max 64 as 4242420226;
route fd10:127:41::/48 max 64 as 4201270001;
route fd12:8981:8ffd::/48 max 64 as 4242423066;
route fdef:8387:28fe::/48 max 48 as 4242423486;
route fde3:4c0d:2836::/48 max 56 as 4242421280;
route fd42:2950:203::/48 max 64 as 4242422950;
route fd42:2950:203::/48 max 64 as 202265;
route fd53:a37c:9438::/48 max 64 as 4242429998;
route fd67:24bd:a1ea::/48 max 48 as 4242421220;
route fd42:deef:1a98::/48 max 64 as 4242421730;
route fd00:feed:beef::/48 max 48 as 4242422380;
route fd55:caa:bde3::/64 max 64 as 64654;
route fd86:aa4f:8883::/48 max 64 as 4242420377;
route fdc1:4e31:4401::/48 max 64 as 4242420950;
route fd98:e7e5:7d1b::/48 max 64 as 4242421380;
route fd80:77e1:fe9e::/48 max 48 as 4242421106;
route fd54:4355:b6ac::/48 max 64 as 4242420212;
route fd42:1441:1441::/48 max 64 as 4242421441;
route fd16:abc0:dffd::/48 max 64 as 4242420530;
route fd55:3eeb:fd5f::/48 max 64 as 4242420229;
route fd63:770:4242::/48 max 48 as 4242421422;
route fd49:93be:e0d2::/48 max 64 as 4242423655;
route fd42:deca:fbad::/48 max 48 as 4242421411;
route fd42:1c3b:2666::/48 max 64 as 4242422078;
route fda3:7863:2204::/48 max 64 as 4242421407;
route fd45:61ab:1bf2:bf79::/64 max 64 as 4242423642;
route fd41:c44d:1c1e::/48 max 48 as 4242421591;
route fdc6:dc8f:8c32::/48 max 64 as 4242421166;
route fd05:a2d1:a767::/48 max 48 as 4242422237;
route fdc9:67ea:76a5::/48 max 64 as 4242422016;
route fd65:a890:5050::/48 max 64 as 4242423602;
route fda0:747e:ab29:7407::/64 max 64 as 64893;
route fde6:617f:eb47::/48 max 48 as 4242421504;
route fdd9:cecf:b296::/48 max 64 as 4242423670;
route fdb1:e13c:31ce::/48 max 64 as 4242421552;
route fd43:2e5c:4e15::/48 max 64 as 4242422566;
route fd10:127:127::/48 max 64 as 4242422464;
route fd15:9060:9d42::/48 max 48 as 4242420924;
route fd12:ab:d32::/48 max 48 as 4242422886;
route fd80:443f:c80c::/48 max 48 as 204446;
route fdcd:eb58:c24a:6798::/64 max 64 as 4242420944;
route fdca:88bb:ba3a::/48 max 48 as 4242420677;
route fd93:feae:ea42::/48 max 48 as 4242423822;
route fdf3:edd9:85e8::/48 max 48 as 4242420425;
route fd97:559b:60dd::/48 max 48 as 4242421755;
route fd42:350a:700b::/48 max 48 as 4242420642;
route fda5:a8a8:9989::/48 max 48 as 4242420688;
route fd42::/48 max 64 as 4242423723;
route fd10:127:10::/48 max 64 as 4201270010;
route fdf7:d24d:f081::/48 max 64 as 4242420504;
route fda0:747e:ab29:7405::/64 max 64 as 65066;
route fd11:f5f7:26e2::/48 max 48 as 4242422361;
route fda0:b455:bb86::/48 max 48 as 4242422514;
route fd91:8ef5:a5db::/48 max 64 as 4242423298;
route fd69:5611:6790::/48 max 48 as 4242420182;
route fdc7:a5af:3231::/48 max 64 as 4242423339;
route fd10:127:7:ffff::/64 max 64 as 4201270007;
route fd00:7882:4abb::/48 max 64 as 4242420211;
route fdcc:3597:f3cf::/48 max 48 as 4242422992;
route fd42:568:127c::/48 max 64 as 4242420616;
route fd42:d42:d42:6667::/64 max 64 as 64600;
route fd42:d42:d42:6667::/64 max 64 as 4242420101;
route fddd:fe2f:de5a::/48 max 64 as 64773;
route fd69:420:cafe::/48 max 48 as 4242423818;
route fd10:127:7:2672::/64 max 64 as 4201270007;
route fd4e:f2d7:88d2:fffc::/64 max 64 as 64899;
route fd18:18d9:adde:f000::/52 max 64 as 4242421233;
route fd31:f6ee:ab9d::/48 max 64 as 64606;
route fd3c:99a3:21fb::/48 max 64 as 4242421942;
route fd10:127:ba7e::/48 max 64 as 4201270022;
route fdbd:8e82:8b88::/48 max 64 as 4242421032;
route fd42:470:f0ef::/48 max 64 as 4242420180;
route fd10:127:235::/48 max 64 as 140913;
route fd12:d47:91c1::/48 max 48 as 4242422505;
route fda0:747e:ab29:9375::/64 max 64 as 65125;
route fd01:1926:817::/48 max 48 as 4242421332;
route fdce:66c5:95db::/48 max 48 as 4242421904;
route fd30:b2d5:2c7::/48 max 64 as 4242421060;
route fdef:1337:b00b::/48 max 64 as 4242422609;
route fdee:d935:ef0a::/48 max 48 as 4242420580;
route fd4d:6e:bdc::/48 max 64 as 4242420740;
route fd22:77ca:d9be::/48 max 64 as 4242421701;
route fd37:c7f3:5bf7::/48 max 48 as 4242421469;
route fda0:23:1f05::/64 max 64 as 4242423513;
route fdce:ebc5:bbd8::/48 max 64 as 4242423999;
route fde6:36fc:c985::/64 max 64 as 65527;
route fd10:49:4f::/48 max 64 as 4242420630;
route fdb5:84c3:98c1::/48 max 64 as 64828;
route fd42:fe2c:d17a::/48 max 64 as 4242422028;
route fd2b:69:ba::/48 max 48 as 4242423229;
route fd80:d04e:2c12::/48 max 48 as 4242420569;
route fdfc:4e:5f23::/48 max 64 as 4242420708;
route fd00:801:3050::/44 max 64 as 4242420656;
route fd03:6668:b339::/48 max 64 as 4242422088;
route fd23:1d71:dd17::/48 max 48 as 4242423929;
route fd1b:7fcf:884f::/48 max 64 as 4242423884;
route fd8c:3466:b93d::/48 max 48 as 4242420939;
route fd01:38f7:e6d8:4e04::/64 max 64 as 4242420017;
route fd00:65a8:93a4::/48 max 64 as 65142;
route fdca:36c3:e21c::/48 max 48 as 4242422685;
route fd0c:70b0:1c7d::/48 max 48 as 4242421275;
route fd42:591:a100::/48 max 48 as 4242420591;
route fd63:1e39:6f73::/48 max 64 as 64697;
route fd63:1e39:6f73::/48 max 64 as 64766;
route fd44:3013:d703::/48 max 48 as 4242421325;
route fd42:d2aa:8a0e::/48 max 64 as 4242421742;
route fd9c:a562:c85f::/48 max 48 as 4242421961;
route fd42:1877:222c::/48 max 64 as 4242421877;
route fd74:e845:fe1a::/48 max 64 as 4242423360;
route fdd8:b33e:a9fc::/48 max 48 as 4242421062;
route fd42:4242:2707::/48 max 64 as 4242422707;
route fd0b:5c63:e0cc::/48 max 64 as 4242422255;
route fdf6:cc1:6f4::/48 max 48 as 4242420547;
route fd42:8700:90::/48 max 64 as 4242422061;
route fdf0:e23c:6950::/48 max 48 as 4242422812;
route fd5c:adc5:16b1::/48 max 48 as 4242423323;
route fdc0:b000:a4b2::/48 max 48 as 4242421044;
route fd6a:b179:7a6b::/48 max 48 as 4242423927;
route fd73:9390:9fad::/48 max 64 as 4242422095;
route fd72:d0d0:6e0b::/48 max 48 as 4242421618;
route fdd0:448d:1447::/48 max 64 as 4242422021;
route fd83:d1d1:2690::/48 max 64 as 4242422690;
route fd36:6131:6935::/48 max 64 as 4242422615;
route fd28:cb8f:4c92::/48 max 64 as 4242421817;
route fd42:beef:dead::/48 max 64 as 4242420525;
route fd42:0:d::/48 max 64 as 4242420989;
route fd42:4888:eb20::/48 max 64 as 4242421047;
route fdee:a02a:e834::/48 max 64 as 4242422530;
route fd32:8411:abab::/48 max 64 as 4242422604;
route fdc3:67ce:cc7e::/48 max 64 as 64946;
route fd2c:3214:3214::/64 max 64 as 4242423214;
route fdb8:cfed:c6a6::/48 max 48 as 4242420732;
route fd29:f449:4ccc::/48 max 64 as 4242422046;
route fd42:9707:96bd::/48 max 64 as 4242423975;
route fd46:aa43::/32 max 64 as 64613;
route fd1c:f73c:a945:1000::/52 max 64 as 4242422700;
route fd4f:b934:7802::/48 max 48 as 4242421964;
route fdae:6803:d4f8::/48 max 48 as 4242420960;
route fd42:df42::/48 max 64 as 64773;
route fdbe:12d0:3d2::/64 max 64 as 64892;
route fd4c:7750:c7e7::/48 max 64 as 4242422633;
route fda9:1b6e:e41d::/48 max 64 as 4242420305;
route fd00:46c5:1654::/48 max 64 as 4242423710;
route fd42:da:1ab::/48 max 64 as 4242420172;
route fd4e:700e:857::/48 max 48 as 4242422023;
route fd10:127:e00f::/48 max 64 as 4201271111;
route fdd2:6522:b8f3::/48 max 48 as 4242422861;
route fd10:127:23b::/48 max 64 as 141706;
route fd88:ee35:b221::/48 max 48 as 4242423679;
route fd59:520b:27c1::/48 max 64 as 4242423837;
route fd70:8d1:afc7::/48 max 48 as 4242423615;
route fdfc:ba7c:ca1::/48 max 64 as 64871;
route fd42:c066:e081::/48 max 64 as 4242420092;
route fdfb:42d3:9346::/48 max 48 as 4242421608;
route fd86:4ce:d32f::/48 max 64 as 4242423855;
route fd0d:138:9006::/48 max 64 as 64663;
route fd42:d42:d42:54::/64 max 64 as 4242420119;
route fd42:d42:d42:54::/64 max 64 as 4242423914;
route fd00:5697:ffff::/48 max 48 as 4242421397;
route fdd7:e0f3:3838::/48 max 64 as 4242420270;
route fd93:e210:7e9f::/48 max 48 as 4242423130;
route fd06:e881:1300::/44 max 64 as 4242420842;
route fd00:801:3010::/44 max 64 as 4242420656;
route fd2e:1216:d1e6::/48 max 64 as 4242422399;
route fd9a:d414:cf1c::/48 max 64 as 4242420248;
route fd95:2226:2153::/48 max 64 as 4242420154;
route fd42:22:168::/48 max 64 as 64768;
route fd58:5a8d:4d3f::/48 max 64 as 4242421226;
route fdc6:e4b5:7e67::/48 max 64 as 4242421743;
route fd19:d101:719a::/48 max 64 as 4242423850;
route fd42:2606:32f4::/48 max 64 as 206633;
route fd62:44e1:da::/48 max 64 as 65032;
route fdec:9e13:da5d::/48 max 64 as 4242423090;
route fd4d:9197:24ee::/48 max 64 as 4242429946;
route fdcf:de54:13ef::/48 max 64 as 4242421508;
route fd7c:3727:9426::/48 max 64 as 4242421289;
route fdf4:9abf:8175::/48 max 64 as 4242422236;
route fd3b:2121:9939::/48 max 64 as 4242420699;
route fddf:2460:2460::/48 max 64 as 4242422460;
route fdbb:35ff:aa4e::/48 max 64 as 4242422891;
route fdd3:ca1e:a110::/48 max 64 as 4242421232;
route fdee:70b9:860c::/48 max 64 as 4242421406;
route fd0c:cd6:f39e::/48 max 48 as 4242420850;
route fdcb:f420:d408::/48 max 64 as 4242423963;
route fdab:18d6:beef::/48 max 48 as 4242423434;
route fd42:4242:1337::/48 max 64 as 4242420414;
route fd08:cf5f:a0f8::/48 max 64 as 4242423089;
route fd42:6176:65::/48 max 48 as 4242420669;
route fd5e:6b4b:223c::/48 max 48 as 4242423168;
route fd5c:998a:b6a5::/48 max 48 as 4242420218;
route fd66:fe53:906d::/48 max 48 as 4242420718;
route fdce:d01:12e5::/48 max 48 as 4242420982;
route fd38:119:314::/48 max 48 as 4242422038;
route fd10:127:99::/48 max 64 as 4201270099;
route fd10:127:99::/48 max 64 as 4242423699;
route fd10:127:45::/48 max 64 as 4201270456;
route fde8:21c6:9d82::/48 max 64 as 65433;
route fdef:859d:a88::/48 max 48 as 4242423280;
route fd58:13a2:d1c1::/48 max 48 as 4242422811;
route fdd1:1e1a:71cc::/48 max 64 as 4242421502;
route fd6c:6c65:7669::/48 max 64 as 4242423811;
route fde7:56e7:ead3::/48 max 64 as 4242420246;
route fd16:f8dc:8ef::/48 max 48 as 4242420062;
route fdcf:8538:9ad5::/48 max 64 as 4242423914;
route fdee:b795:404::/48 max 48 as 4242422421;
route fd92:dead:beef::/48 max 48 as 4242421649;
route fda0:23:1f05:2::/64 max 64 as 4242423513;
route fd59:54c0:fab::/48 max 64 as 76175;
route fd42:4242:247::/48 max 64 as 141776;
route fd42:4242:247::/48 max 64 as 4242420247;
route fd42:4242:247::/48 max 64 as 4201270017;
route fdd6:aff6:5f6f::/48 max 64 as 76198;
route fd10:6ef9:4d45::/48 max 48 as 4242422954;
route fd00:801:3060::/44 max 64 as 4242420656;
route fd00:abcd:e::/48 max 64 as 4242420158;
route fd8e:898d:caa3::/48 max 64 as 4242422044;
route fd3c:398e:80e3::/48 max 48 as 4242423257;
route fd00:1444:1821::/48 max 64 as 4242422914;
route fd42:a901:388e::/48 max 64 as 4242420260;
route fd4b:2faf:f60b::/48 max 64 as 4242423384;
route fdc0:f16e:7051::/48 max 64 as 4242423567;
route fddf:e9e6:817::/48 max 64 as 4242422025;
route fded:e0fd:5fe::/48 max 64 as 4242420565;
route fd50:3c8f:b8b1::/48 max 64 as 4242423820;
route fd00:1999:323::/48 max 48 as 4242420323;
route fd42:10e3:10e8::/48 max 48 as 4242420853;
route fdf4:e251:75d9::/48 max 48 as 4242423271;
route fd00:aaaa:256::/48 max 64 as 4242420117;
route fddf::/48 max 64 as 65064;
route fd91:9191:9191::/48 max 64 as 4242421181;
route fdcd:3682:1c17::/48 max 64 as 4242422002;
route fd01:2f40:3d1d::/48 max 64 as 4242421201;
route fdf0:9bb:7815::/48 max 48 as 4242420359;
route fd18:a623:e3a5::/48 max 48 as 4242421902;
route fd23:42:cda::/48 max 64 as 4242420101;
route fdfc:694e:234f::/48 max 48 as 4242422904;
route fd0d:e64e:4f5b::/48 max 48 as 4242422484;
route fdeb:ee12:2544::/48 max 64 as 4242420623;
route fdae:ae04:1994::/48 max 64 as 4242421206;
route fd4b:9921:47d0::/48 max 48 as 4242420550;
route fd3b:ba37:f906::/60 max 64 as 4242420257;
route fd21:4748:3647::/48 max 64 as 4242421474;
route fde2:7085:c6f3::/48 max 48 as 4242420195;
route fd45:2e33:411e::/48 max 48 as 4242421149;
route fd42:bad:a55::/48 max 64 as 4242420124;
route fd2c:c87d:c2e::/48 max 64 as 4242421204;
route fdff:74f:e962::/48 max 64 as 4242423622;
route fdc9:83c1:d0ce::/48 max 48 as 4242422526;
route fd12:3456:7890::/48 max 64 as 4242421761;
route fda0:747e:ab29:5016::/64 max 64 as 64888;
route fd17:149a:85f9::/48 max 64 as 4242423973;
route fd00:4861:636b::/48 max 48 as 4242421472;
route fd42:4242:2601:ffff::/64 max 64 as 0;
route fde7:76fd:7444::/48 max 64 as 4242420157;
route fded:8ea7:f687::/48 max 64 as 4242420225;
route fdff:b87d:f5b0::/48 max 48 as 4242423605;
route fd2c:3214:3214::/48 max 64 as 4242423214;
route fdfa:454b:e441::/48 max 48 as 4242422522;
route fdea:9831:12c0::/48 max 48 as 4242420961;
route fd2c:4b14:511f::/48 max 64 as 4242420373;
route fd42:81ee:a1c9::/48 max 64 as 4242421875;
route fd42:4242:1099::/48 max 48 as 4242421099;
route fd10:127:3262::/64 max 64 as 213262;
route fd10:127:53::/48 max 64 as 4201270006;
route fd42:53fb:543a::/48 max 64 as 4242421408;
route fdae:5169:c671::/48 max 48 as 4242422664;
route fd11:552f:74db::/48 max 64 as 4242420826;
route fda4:c3cb:737c::/48 max 64 as 4242421035;
route fd42:1234:4567::/48 max 64 as 4242423450;
route fd42:c01d:beef::/48 max 64 as 4242421191;
route fd22:3adc:a411::/48 max 48 as 4242422610;
route fd44:ccc3:5454::/48 max 48 as 4242423535;
route fd4e:a4d9:1add::/48 max 64 as 64636;
route fdf3:d483:8617::/48 max 48 as 4242420976;
route fd43:5602:29bd::/48 max 64 as 65024;
route fd8f:3250:9097::/48 max 64 as 4242420461;
route fd00:d42::/48 max 64 as 398057;
route fd10:127:238::/48 max 64 as 141706;
route fd01:4c1e:e3fd::/48 max 64 as 4242420365;
route fdf7:17d5:de49::/48 max 64 as 4242423905;
route fde8:683b:185a::/48 max 48 as 4242423802;
route fd22:e95b:9938::/48 max 64 as 4242423581;
route fd79:4df1:37c6:157e::/64 max 64 as 4242420178;
route fdfd:b19:7175:babe::/64 max 64 as 4242421110;
route fd7a:2af9:2828::/48 max 48 as 4242421088;
route fda7:d989:67d3::/48 max 64 as 4242423877;
route fd9f:621d:e6b4::/48 max 48 as 4242422206;
route fd0b:4340:a0::/48 max 48 as 205532;
route fd91:a801:db30::/44 max 64 as 4242420818;
route fd42:2347:a::/48 max 48 as 4242422347;
route fd63:b0d8:696e::/48 max 48 as 4242420316;
route fd26:d901:bd::/48 max 64 as 4242422401;
route fd75:77d4:482b::/48 max 64 as 4242421297;
route fdd0:118c:3a86::/48 max 48 as 4242422768;
route fda9:26a9:1c47::/48 max 64 as 4242421050;
route fd42:2950:101::/48 max 64 as 4242422950;
route fd42:2950:101::/48 max 64 as 202265;
route fd62:cc46:576b::/48 max 64 as 4242422809;
route fd4e:f2d7:88d2:fffa::/64 max 64 as 64899;
route fdfe:1647:a2bb::/48 max 64 as 4242421978;
route fdca:226e:ac30::/48 max 48 as 4242420594;
route fddb:2cb:9699::/48 max 64 as 64890;
route fdc3:1e0a:bb75::/48 max 64 as 4242421898;
route fdf4:a50a:5c1f::/64 max 64 as 64879;
route fda0:281f:5817::/48 max 56 as 4242420703;
route fdcf:3c00:e001::/48 max 64 as 4242422287;
route fd25:c78c:9544::/48 max 64 as 4242420543;
route fde2:6ea7:1c3::/48 max 48 as 4242420503;
route fdfd:1651:65:f398::/64 max 64 as 4242420165;
route fd42:d3ca::/48 max 64 as 4242421520;
route fde1:122:9322::/48 max 60 as 4242423913;
route fd7a:6aba:ee00::/48 max 48 as 4242421974;
route fd42:5969:505::/48 max 48 as 4242421194;
route fd42:defe:c8ed::/48 max 48 as 4242422457;
route fd08:7cc4:9598::/48 max 64 as 4242421028;
route fd70:96c9:ef25::/48 max 64 as 4242420022;
route fd9e:bcbd:88::/48 max 48 as 4242423352;
route fdf9:2eea:f030::/48 max 56 as 4242422004;
route fd42:d42:d42:43::/64 max 64 as 4242420101;
route fd42:d42:d42:43::/64 max 64 as 4242423723;
route fd42:d42:d42:43::/64 max 64 as 4242422601;
route fd42:d42:d42:43::/64 max 64 as 4242422092;
route fd42:d42:d42:43::/64 max 64 as 4242423856;
route fdee:eb2d:276a::/48 max 64 as 4242420801;
route fd42:4242:1921::/48 max 64 as 4242421921;
route fd0c:9a37:6e3b::/48 max 64 as 4242421929;
route fd62:172:23:125::/64 max 64 as 4242423852;
route fd10:127:39::/48 max 64 as 4201270039;
route fd10:127:39::/48 max 64 as 4242422439;
route fd42:1234:1997::/48 max 64 as 4242421997;
route fdee:df14:a::/48 max 48 as 4242421861;
route fd33:9493:a6ed::/48 max 64 as 4242421243;
route fd42:f10:411::/48 max 64 as 4242422100;
route fd42:3a16:acd::/48 max 64 as 4242421221;
route fd9e:ccad:3a26::/48 max 64 as 4242420409;
route fdb2:f582:b9d1::/48 max 64 as 4242423759;
route fdb7:c21f:f30f::/48 max 48 as 4242421033;
route fdbc:f9dc:332::/48 max 64 as 4242422553;
route fd42:471d:329f::/48 max 64 as 4242420573;
route fd42:68c2:8747::/48 max 64 as 4242421178;
route fda8:391f:1052::/48 max 64 as 4242422049;
route fdc5:7835:68c8::/48 max 48 as 4242421238;
route fd42:c:a::/48 max 64 as 4242421420;
route fd42:4242:2233::/48 max 64 as 4242422233;
route fd00:1171:1171::/48 max 48 as 4242421171;
route fdd7:7db4:6366::/48 max 64 as 4242420568;
route fd42:c0de:ba5e::/48 max 64 as 4242421835;
route fdfd:beef:beef:dead::/64 max 64 as 4242420155;
route fd51:2bb2:fd0d::/48 max 64 as 64654;
route fd62:172:23:234::/64 max 64 as 4242423852;
route fdcf:205f:3b98::/48 max 48 as 4242423399;
route fdf1:af84:596a::/48 max 48 as 4242422243;
route fdfa:7906:8262::/48 max 64 as 4242423947;
route fd24:365d:ab1e::/48 max 48 as 4242421705;
route fd4b:bae2:2594::/48 max 64 as 4242423059;
route fd2c:a1bb:5a16::/48 max 64 as 4242421116;
route fdef:17a0:ffb1::/48 max 64 as 65529;
route fd5f:fd18:29d1:4f61::/64 max 64 as 4242420017;
route fda0:747e:ab29:e1ba::/64 max 64 as 65523;
route fdde:4869:4062::/48 max 48 as 4242421231;
route fde6:402d:990d::/48 max 64 as 4242420576;
route fdc7:4c8d:b889:a272::/64 max 64 as 64873;
route fd89:35db:fc0::/48 max 48 as 4242420604;
route fda1:d21:d67f::/48 max 64 as 4242420812;
route fd01:374d:4ddd::/48 max 48 as 4242423869;
route fddf:6b2:7a5c::/48 max 48 as 4242423305;
route fd42:e0f1:5b4b::/48 max 64 as 4242420164;
route fd42:42:2166::/48 max 64 as 4242423141;
route fd9e:b565:def3::/48 max 48 as 4242423565;
route fd42:e06:cfb4::/48 max 64 as 4242421750;
route fd6d:3f59:4c68::/48 max 64 as 4242423878;
route fd6d:3f59:4c68::/48 max 64 as 4242423878;
route fd40:2333:e895::/48 max 48 as 4242420471;
route fdc1:2600:1105::/48 max 48 as 4242422577;
route fd3b:6bc4:49ef::/48 max 64 as 4242421101;
route fdbb:baba:2222::/48 max 48 as 4242422238;
route fda0:747e:ab29:cafe::/64 max 64 as 65078;
route fd42:20:50::/48 max 64 as 4242423723;
route fd74:f654:a9c6::/48 max 48 as 4242421257;
route fd67:3cc6:16f5::/48 max 64 as 4242421109;
route fd3f:8482:4306::/48 max 48 as 4242422190;
route fd42:4242:4200::/40 max 64 as 4242423991;
route fd23:dead:beef::/48 max 64 as 65432;
route fd10:127:13::/48 max 64 as 4201270013;
route fd01:470:f129::/48 max 64 as 4242422299;
route fd98:de34:62e8::/48 max 48 as 4242422647;
route fdf1:d666:f936::/48 max 48 as 4242421723;
route fd9d:d085:ba76::/48 max 48 as 4242422833;
route fd94:c9b4:7bda::/48 max 64 as 4242421475;
route fd42:f7b1:1078::/48 max 64 as 4242420210;
route fd42:7373:7373::/48 max 64 as 4242423733;
route fd42:c:5::/48 max 64 as 4242422305;
route fdcf:fafe:6de::/48 max 48 as 4242422254;
route fd00:abcd:e:100::/56 max 64 as 4242420198;
route fd42:4242:2239::/48 max 48 as 4242422239;
route fd4a:2e8b:78bb:ae6e::/64 max 64 as 4242423935;
route fd3b:1784:edbb::/48 max 64 as 4242423055;
route fd55:ed26:611::/48 max 64 as 4242420921;
route fd08:93f3:b7eb::/48 max 48 as 4242421535;
route fd73:3033:1913::/48 max 64 as 4242421020;
route fdcc:60b6:2f38::/48 max 64 as 4242422441;
route fd25:1952:c72e::/48 max 64 as 64876;
route fd0c:3cf7:8002::/48 max 64 as 4242422808;
route fd2d:22:cafe::/48 max 64 as 4242420013;
route fdd7:1500:c813::/48 max 64 as 4242423044;
route fd42:4992:acbd::/48 max 64 as 4242423504;
route fd39:b03e:6140::/48 max 64 as 4242423124;
route fdee:90fc:cafe::/48 max 64 as 4242423738;