commit 273ad82fb83972b2bcb05df74f0b8f9fa5c4e9c7 Author: KAAAsS Date: Thu Apr 15 21:13:45 2021 +0800 Add basic config diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c17ad0e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +conf +concrete diff --git a/bird.conf b/bird.conf new file mode 100644 index 0000000..5d73591 --- /dev/null +++ b/bird.conf @@ -0,0 +1,195 @@ +# Refer: https://dn42.dev/howto/Bird2 +# Refer: https://lantian.pub/article/modify-website/bird-confederation.lantian + +include "/etc/bird/conf/net-info.conf"; + +router id OWNIP; + +protocol device { + scan time 10; +} + +/* + * Utility functions + */ + +function is_self_net() { + return net ~ OWNNETSET; +} + +function is_self_net_v6() { + return net ~ OWNNETSETv6; +} + +function is_valid_network() { + return net ~ [ + 172.20.0.0/14{21,29}, # dn42 + 172.20.0.0/24{28,32}, # dn42 Anycast + 172.21.0.0/24{28,32}, # dn42 Anycast + 172.22.0.0/24{28,32}, # dn42 Anycast + 172.23.0.0/24{28,32}, # dn42 Anycast + 172.31.0.0/16+, # ChaosVPN + 10.100.0.0/14+, # ChaosVPN + 10.127.0.0/16{16,32}, # neonetwork + 10.0.0.0/8{15,24} # Freifunk.net + ]; +} + +roa4 table dn42_roa; +roa6 table dn42_roa_v6; + +protocol static { + roa4 { table dn42_roa; }; + include "/etc/bird/roa_dn42.conf"; +}; + +protocol static { + roa6 { table dn42_roa_v6; }; + include "/etc/bird/roa_dn42_v6.conf"; +}; + +function is_valid_network_v6() { + return net ~ [ + fd00::/8{44,64} # ULA address space as per RFC 4193 + ]; +} + +function is_kas_network() { + if net ~ [ + 172.16.0.0/24+ + ] then accept; + if is_valid_network() && source ~ [RTS_STATIC, RTS_BGP] then { + accept; + } else reject; +} + +function is_kas_network_v6() { + if net ~ [ + fd08:93f3:b7eb::def:0/112+ + ] then accept; + if is_valid_network_v6() && source ~ [RTS_STATIC, RTS_BGP] then { + accept; + } else reject; +} + +protocol kernel { + scan time 20; + + ipv6 { + import none; + export filter { + if source = RTS_STATIC then reject; + krt_prefsrc = OWNIPv6; + accept; + }; + }; +}; + +protocol kernel { + scan time 20; + + ipv4 { + import none; + export filter { + if source = RTS_STATIC then reject; + krt_prefsrc = OWNIP; + accept; + }; + }; +} + +protocol static { + route OWNNET reject; + + ipv4 { + import all; + export none; + }; +} + +protocol static { + route OWNNETv6 reject; + + ipv6 { + import all; + export none; + }; +} + +template bgp dn42_external_peer { + local as OWNAS; + path metric 1; + + ipv4 { + import filter { + if is_valid_network() && !is_self_net() then { + if (roa_check(dn42_roa, net, bgp_path.last) != ROA_VALID) then { + print "[dn42] ROA check failed for ", net, " ASN ", bgp_path.last; + reject; + } else accept; + } else reject; + }; + + export filter { + bgp_path.delete([4215350000..4215359999]); + if is_valid_network() && source ~ [RTS_STATIC, RTS_BGP] then accept; else reject; + }; + import limit 1000 action block; + }; + + ipv6 { + import filter { + if is_valid_network_v6() && !is_self_net_v6() then { + if (roa_check(dn42_roa_v6, net, bgp_path.last) != ROA_VALID) then { + print "[dn42] ROA check failed for ", net, " ASN ", bgp_path.last; + reject; + } else accept; + } else reject; + }; + export filter { + bgp_path.delete([4215350000..4215359999]); + if is_valid_network_v6() && source ~ [RTS_STATIC, RTS_BGP] then accept; else reject; + }; + import limit 1000 action block; + }; +} + +template bgp kas_edge_peer { + local as KASNET_AS; + confederation OWNAS; + confederation member yes; + path metric 1; + direct; + enable extended messages on; + ipv4 { + next hop self yes; + import filter { is_kas_network(); }; + export filter { is_kas_network(); }; + }; + ipv6 { + next hop self yes; + import filter { is_kas_network_v6(); }; + export filter { is_kas_network_v6(); }; + }; +}; + +template bgp kas_internal_peer { + local as KASNET_AS; + path metric 1; + direct; + enable extended messages on; + ipv4 { + next hop self yes; + import filter { is_kas_network(); }; + export filter { is_kas_network(); }; + }; + ipv6 { + next hop self yes; + import filter { is_kas_network_v6(); }; + export filter { is_kas_network_v6(); }; + }; +}; + +include "/etc/bird/conf/peers/*.conf"; +include "/etc/bird/conf/edges/*.conf"; +include "/etc/bird/conf/internals/*.conf"; diff --git a/example/edges/edge-name.conf b/example/edges/edge-name.conf new file mode 100644 index 0000000..22ef62e --- /dev/null +++ b/example/edges/edge-name.conf @@ -0,0 +1,15 @@ +rotocol bgp kasnet__v4 from kas_edge_peer { + neighbor external; + ipv6 { + import none; + export none; + }; +}; + +protocol bgp kasnet__v6 from kas_edge_peer { + neighbor external; + ipv4 { + import none; + export none; + }; +}; diff --git a/example/internals/internal-name.conf b/example/internals/internal-name.conf new file mode 100644 index 0000000..1426afc --- /dev/null +++ b/example/internals/internal-name.conf @@ -0,0 +1,3 @@ +protocol bgp kasnet_ from kas_internal_peer { + neighbor external; +}; diff --git a/example/net-info.conf b/example/net-info.conf new file mode 100644 index 0000000..d2e20b7 --- /dev/null +++ b/example/net-info.conf @@ -0,0 +1,16 @@ +# DN42 ASN +define OWNAS = 4242421535; + +# Node IP +define OWNIP = 172.20.150.129; +define OWNIPv6 = fd08:93f3:b7eb::1; + +# DN42 IP Prefix +define OWNNET = 172.20.150.128/28; +define OWNNETv6 = fd08:93f3:b7eb::/48; +define OWNNETSET = [172.20.150.128/28+]; +define OWNNETSETv6 = [fd08:93f3:b7eb::/48+]; + +# Private ASN (for BGP confederation) +# my format: 42 +define KASNET_AS = 4215350129; diff --git a/example/peers/peer-name.conf b/example/peers/peer-name.conf new file mode 100644 index 0000000..8304dab --- /dev/null +++ b/example/peers/peer-name.conf @@ -0,0 +1,17 @@ +protocol bgp dn42__v4 from dn42_external_peer { + neighbor as ; + direct; + ipv6 { + import none; + export none; + }; +}; + +protocol bgp dn42__v6 from dn42_external_peer { + neighbor % 'dn42-' as ; + direct; + ipv4 { + import none; + export none; + }; +}; diff --git a/roa_dn42.conf b/roa_dn42.conf new file mode 100644 index 0000000..36b263d --- /dev/null +++ b/roa_dn42.conf @@ -0,0 +1,1467 @@ +# +# dn42regsrv ROA Generator +# Last Updated: 2021-04-15 04:54:47.949416106 +0000 UTC m=+8791456.197945829 +# Commit: 0ee2f54980bf3af46203b1badfd73de889481ae2 +# +route 172.22.150.192/26 max 29 as 4242420032; +route 172.23.251.0/26 max 29 as 4242423853; +route 172.22.169.32/27 max 29 as 4242423337; +route 172.20.10.128/29 max 29 as 4242423369; +route 172.23.100.224/27 max 29 as 4242420141; +route 172.22.92.0/24 max 29 as 64692; +route 172.22.153.0/24 max 29 as 64720; +route 172.20.204.48/28 max 29 as 4242421049; +route 172.21.100.96/27 max 29 as 4242420751; +route 172.20.149.32/27 max 29 as 0; +route 172.20.6.0/28 max 29 as 4242421506; +route 172.22.132.96/27 max 29 as 4242420239; +route 172.23.222.128/28 max 29 as 4242420822; +route 172.20.13.0/25 max 29 as 4242420240; +route 172.21.66.96/27 max 29 as 4242422809; +route 172.23.151.224/28 max 29 as 4242422551; +route 172.23.193.32/27 max 29 as 4242421401; +route 172.20.28.32/27 max 29 as 4242423331; +route 172.23.43.96/29 max 29 as 4242428201; +route 172.23.12.0/24 max 29 as 64527; +route 172.20.55.96/27 max 29 as 4242423722; +route 172.20.237.0/26 max 29 as 4242422456; +route 172.23.111.0/27 max 29 as 4242423231; +route 172.23.32.0/27 max 29 as 4242422330; +route 172.20.52.0/24 max 29 as 4242423723; +route 172.23.131.0/26 max 29 as 4242422345; +route 172.20.46.224/27 max 29 as 4242420991; +route 172.20.154.0/26 max 29 as 4242420418; +route 172.21.89.0/27 max 29 as 4242421063; +route 10.36.0.0/16 max 24 as 44194; +route 10.138.0.0/16 max 24 as 65138; +route 10.90.0.0/16 max 24 as 65190; +route 172.20.163.128/28 max 29 as 4242420224; +route 172.20.163.96/28 max 29 as 4242423918; +route 172.22.116.0/26 max 29 as 4242420003; +route 172.20.20.96/27 max 29 as 4242421475; +route 172.20.18.96/28 max 29 as 4242423237; +route 172.23.215.16/28 max 29 as 4242423481; +route 10.127.234.0/24 max 29 as 141706; +route 10.181.0.0/16 max 24 as 65181; +route 172.20.131.96/27 max 29 as 4242422816; +route 172.22.99.0/24 max 29 as 64699; +route 172.20.29.96/27 max 29 as 4242423059; +route 172.23.173.184/29 max 29 as 4242422061; +route 172.20.16.128/25 max 29 as 4242421588; +route 172.23.230.0/26 max 29 as 4242423921; +route 172.22.131.64/27 max 29 as 4242420724; +route 172.20.46.112/29 max 29 as 4242421461; +route 172.23.109.128/27 max 29 as 4242420899; +route 172.21.109.0/29 max 29 as 4242420721; +route 172.20.228.64/28 max 29 as 4242423773; +route 172.21.111.0/24 max 29 as 4242420155; +route 10.234.0.0/15 max 24 as 65533; +route 172.20.191.96/27 max 29 as 4242421275; +route 172.20.135.192/29 max 29 as 4242422435; +route 172.22.2.0/23 max 29 as 4242421434; +route 172.23.73.0/26 max 29 as 4242421823; +route 10.127.100.0/24 max 29 as 4201270018; +route 172.23.128.64/27 max 29 as 4242423113; +route 172.20.238.160/28 max 29 as 4242421530; +route 172.22.105.64/27 max 29 as 4242421975; +route 172.22.181.192/27 max 29 as 4242422322; +route 172.21.93.0/27 max 29 as 4242421020; +route 172.20.29.0/26 max 29 as 4242420181; +route 172.21.121.0/27 max 29 as 4242423975; +route 172.21.82.0/27 max 29 as 4242421017; +route 10.152.0.0/18 max 24 as 65200; +route 10.231.0.0/16 max 24 as 65079; +route 172.20.32.16/28 max 29 as 4242420798; +route 172.20.33.64/27 max 29 as 4242423377; +route 172.21.67.64/27 max 29 as 4242420807; +route 172.22.100.0/24 max 29 as 64698; +route 172.20.232.32/27 max 29 as 4242420741; +route 172.21.105.144/28 max 29 as 4242420514; +route 172.20.18.240/28 max 29 as 4242423301; +route 172.20.20.224/27 max 29 as 4242421030; +route 172.23.119.120/29 max 29 as 4242423737; +route 172.22.129.32/28 max 29 as 4242423993; +route 172.20.190.96/27 max 29 as 4242420197; +route 172.20.15.64/27 max 29 as 4242423230; +route 172.20.224.0/26 max 29 as 4242422284; +route 172.20.32.160/27 max 29 as 4242420976; +route 10.56.0.0/16 max 24 as 65037; +route 172.22.149.64/27 max 29 as 4242421145; +route 172.20.13.160/27 max 29 as 4242423472; +route 10.127.89.0/24 max 29 as 4201270003; +route 172.20.13.240/28 max 29 as 4242420789; +route 172.20.132.128/29 max 29 as 4242423916; +route 172.20.56.128/25 max 29 as 64686; +route 172.20.197.224/27 max 29 as 4242420526; +route 10.7.0.0/16 max 24 as 65134; +route 172.20.158.96/27 max 29 as 4242423468; +route 172.20.20.128/27 max 29 as 4242421835; +route 172.20.149.136/29 max 29 as 4242420234; +route 172.22.147.32/28 max 29 as 4242423640; +route 172.20.200.128/29 max 29 as 4242422305; +route 10.213.0.0/16 max 24 as 65501; +route 172.20.184.192/28 max 29 as 4242420078; +route 172.20.28.96/27 max 29 as 4242421189; +route 172.20.136.0/25 max 29 as 4242429946; +route 172.20.159.0/29 max 29 as 4242422878; +route 172.20.150.128/28 max 29 as 4242421535; +route 172.20.59.64/27 max 29 as 4242423621; +route 10.127.16.0/24 max 29 as 4201270000; +route 172.23.109.192/27 max 29 as 4242423228; +route 172.23.34.0/26 max 29 as 4242422900; +route 172.20.131.64/28 max 29 as 4242421853; +route 172.23.241.0/26 max 29 as 4242420252; +route 172.23.101.160/27 max 29 as 4242421835; +route 10.15.128.0/18 max 24 as 64890; +route 172.23.109.168/29 max 29 as 4242423856; +route 10.11.184.0/22 max 24 as 65520; +route 172.23.82.0/24 max 29 as 4242422857; +route 10.198.0.0/16 max 24 as 65242; +route 172.22.160.0/28 max 29 as 4242420996; +route 172.20.29.80/28 max 29 as 4242421047; +route 172.20.234.96/27 max 29 as 4242423268; +route 172.22.158.160/27 max 29 as 4242420058; +route 10.127.38.32/27 max 29 as 4242420308; +route 172.20.143.64/26 max 29 as 4242423360; +route 172.20.20.48/28 max 29 as 4242420238; +route 172.21.80.0/26 max 29 as 4242422077; +route 172.20.148.0/29 max 29 as 4242422043; +route 172.22.131.32/27 max 29 as 4242421166; +route 172.23.0.20/32 max 32 as 64719; +route 10.3.0.0/16 max 24 as 65523; +route 172.21.87.64/26 max 29 as 4242420571; +route 172.23.59.64/27 max 29 as 4242421194; +route 172.22.55.0/24 max 29 as 64655; +route 172.20.192.128/27 max 29 as 4242423917; +route 172.22.40.0/23 max 29 as 64712; +route 172.20.172.128/28 max 29 as 4242420618; +route 172.23.169.0/24 max 29 as 4242421230; +route 172.20.158.32/27 max 29 as 4242421629; +route 172.22.73.128/27 max 29 as 4242423742; +route 172.20.148.128/27 max 29 as 17080; +route 172.20.42.0/25 max 29 as 4242422100; +route 10.240.0.0/13 max 24 as 65079; +route 172.22.159.32/27 max 29 as 4242422904; +route 10.236.0.0/16 max 24 as 65079; +route 172.20.160.0/27 max 29 as 4242429999; +route 172.23.216.224/27 max 29 as 64773; +route 172.22.161.32/27 max 29 as 4242422069; +route 172.20.15.240/29 max 29 as 4242420988; +route 172.20.42.192/27 max 29 as 4242422239; +route 172.21.88.144/28 max 29 as 4242420199; +route 172.22.101.200/29 max 29 as 4242422027; +route 172.23.216.64/27 max 29 as 64773; +route 172.20.184.32/27 max 29 as 4242423884; +route 172.22.151.0/27 max 29 as 4242423889; +route 172.22.114.32/27 max 29 as 4242420359; +route 172.20.46.192/27 max 29 as 4242420990; +route 172.20.207.192/27 max 29 as 4242420737; +route 172.22.74.0/24 max 29 as 64674; +route 172.20.235.112/28 max 29 as 4242420339; +route 172.20.229.160/27 max 29 as 4242420565; +route 10.37.0.0/16 max 24 as 65037; +route 172.20.182.0/25 max 29 as 4242420330; +route 172.20.14.64/27 max 29 as 4242420246; +route 172.20.252.0/24 max 29 as 4242423887; +route 172.22.135.64/27 max 29 as 4242422347; +route 172.23.78.128/27 max 29 as 4242423033; +route 172.23.234.0/28 max 29 as 4242423852; +route 172.21.92.0/27 max 29 as 4242422544; +route 10.11.160.0/20 max 24 as 64875; +route 172.20.128.80/29 max 29 as 4242422668; +route 172.23.99.192/27 max 29 as 4242423936; +route 10.118.128.0/18 max 24 as 65043; +route 172.23.64.128/25 max 29 as 4242421374; +route 172.21.99.80/29 max 29 as 4242420724; +route 172.20.53.0/27 max 29 as 4242420812; +route 172.21.74.96/27 max 29 as 4242422389; +route 172.20.232.128/29 max 29 as 4242421192; +route 172.23.158.32/27 max 29 as 4242421181; +route 172.20.148.64/29 max 29 as 4242422144; +route 172.20.53.64/27 max 29 as 4242422914; +route 10.112.0.0/16 max 24 as 49009; +route 172.20.19.128/27 max 29 as 4242420829; +route 172.22.157.192/27 max 29 as 4242423315; +route 172.20.45.0/28 max 29 as 4242421341; +route 172.20.208.0/24 max 29 as 64613; +route 172.22.77.0/27 max 29 as 4242420277; +route 172.20.41.48/28 max 29 as 4242423410; +route 172.23.151.240/28 max 29 as 4242421237; +route 172.20.48.176/28 max 29 as 4242420406; +route 172.20.184.208/28 max 29 as 4242420078; +route 172.23.254.0/23 max 29 as 4242420255; +route 172.20.15.224/29 max 29 as 4242423506; +route 172.20.190.0/26 max 29 as 4242423759; +route 172.20.160.48/28 max 29 as 4242421155; +route 172.20.246.192/27 max 29 as 4242423920; +route 10.30.0.0/18 max 24 as 65084; +route 172.23.56.0/24 max 29 as 4242420018; +route 10.187.0.0/16 max 24 as 65187; +route 10.219.0.0/18 max 24 as 64888; +route 172.20.178.32/27 max 29 as 4242421630; +route 172.20.175.0/27 max 29 as 4242422666; +route 172.20.4.48/28 max 29 as 4242420789; +route 172.20.224.96/27 max 29 as 4242421987; +route 172.20.18.224/28 max 29 as 4242420151; +route 172.21.88.0/25 max 29 as 4242420589; +route 172.20.232.0/27 max 29 as 4242429969; +route 172.20.171.96/27 max 29 as 4242420211; +route 10.127.255.53/32 max 32 as 4201270006; +route 10.127.255.53/32 max 32 as 4242423618; +route 172.21.74.0/27 max 29 as 4242423454; +route 172.23.162.64/27 max 29 as 4242422095; +route 172.20.41.0/27 max 29 as 4242422381; +route 172.20.34.192/26 max 29 as 4242420905; +route 10.30.128.0/18 max 24 as 64930; +route 172.22.190.0/23 max 29 as 4242423158; +route 172.23.38.160/27 max 29 as 4242422950; +route 172.23.38.160/27 max 29 as 202265; +route 172.20.143.32/28 max 29 as 4242420148; +route 172.20.5.224/27 max 29 as 4242420646; +route 172.23.199.0/26 max 29 as 4242420917; +route 172.22.132.64/28 max 29 as 4242422128; +route 172.20.203.0/24 max 29 as 4242421093; +route 172.22.149.0/28 max 29 as 4242423320; +route 172.22.114.112/28 max 29 as 4242423371; +route 10.24.192.0/18 max 24 as 64899; +route 172.22.127.0/26 max 29 as 4242420140; +route 172.20.164.192/27 max 29 as 4242420195; +route 172.20.47.160/27 max 29 as 4242421942; +route 172.23.124.0/27 max 29 as 4242420825; +route 172.20.132.96/27 max 29 as 4242423816; +route 172.22.129.160/27 max 29 as 4242423847; +route 172.20.159.32/27 max 29 as 4242423520; +route 172.22.117.0/25 max 29 as 64717; +route 172.22.110.216/29 max 29 as 46997; +route 10.127.7.0/24 max 29 as 4201270007; +route 172.20.12.144/29 max 29 as 4242421550; +route 172.21.84.32/27 max 29 as 4242420885; +route 172.23.101.128/29 max 29 as 4242421958; +route 172.22.70.0/24 max 29 as 76198; +route 172.23.3.192/26 max 29 as 4242422006; +route 172.20.172.184/29 max 29 as 4242422402; +route 172.23.104.96/27 max 29 as 4242422205; +route 172.20.32.144/28 max 29 as 4242423240; +route 172.20.21.96/27 max 29 as 4242420212; +route 172.23.215.128/27 max 29 as 4242421955; +route 172.20.152.0/23 max 29 as 4242421096; +route 172.23.168.0/25 max 29 as 4242423924; +route 172.23.132.64/27 max 29 as 4242423064; +route 172.22.135.32/27 max 29 as 4242420742; +route 172.20.59.128/28 max 29 as 4242421514; +route 172.20.229.0/26 max 29 as 4242420203; +route 172.23.239.128/25 max 29 as 4242422877; +route 172.20.238.0/27 max 29 as 4242422357; +route 172.22.189.128/27 max 29 as 4242420393; +route 10.127.11.0/24 max 29 as 38173; +route 10.127.11.0/24 max 29 as 140936; +route 10.127.11.0/24 max 29 as 4242423088; +route 172.20.202.0/26 max 29 as 4242420299; +route 172.23.132.96/27 max 29 as 4242423771; +route 10.16.192.0/18 max 24 as 64894; +route 172.20.128.64/28 max 29 as 4242421983; +route 172.20.12.152/29 max 29 as 4242422522; +route 172.20.167.160/28 max 29 as 4242421939; +route 172.20.165.64/27 max 29 as 4242421719; +route 172.20.232.64/29 max 29 as 4242422815; +route 172.21.125.96/27 max 29 as 4242420166; +route 172.20.234.240/28 max 29 as 4242421940; +route 172.20.72.0/21 max 29 as 4242421127; +route 172.22.135.0/28 max 29 as 4242422288; +route 172.23.110.0/27 max 29 as 4242420644; +route 172.20.156.0/23 max 29 as 4242423906; +route 172.20.191.160/27 max 29 as 4242423393; +route 10.152.64.0/18 max 24 as 65201; +route 10.186.0.0/16 max 24 as 65100; +route 172.20.5.192/27 max 29 as 4242420556; +route 172.20.197.192/27 max 29 as 4242420116; +route 10.172.0.0/16 max 24 as 65022; +route 172.20.148.32/27 max 29 as 4242421095; +route 10.254.0.0/16 max 24 as 65023; +route 10.210.0.0/18 max 24 as 65502; +route 172.23.173.224/27 max 29 as 4242422349; +route 10.62.0.0/16 max 24 as 65046; +route 172.23.111.32/27 max 29 as 4242421177; +route 172.22.114.0/27 max 29 as 4242421985; +route 172.20.155.0/27 max 29 as 4242423435; +route 172.20.138.0/26 max 29 as 4242420998; +route 172.22.118.160/27 max 29 as 4242420229; +route 172.20.28.160/27 max 29 as 4242420707; +route 10.127.8.128/29 max 29 as 4201270020; +route 172.22.110.208/29 max 29 as 4242422667; +route 172.23.75.0/27 max 29 as 4242422375; +route 172.23.192.0/24 max 29 as 64712; +route 172.20.39.80/28 max 29 as 4242423376; +route 172.22.192.128/26 max 29 as 4242420128; +route 10.127.255.4/32 max 32 as 4201270000; +route 172.21.66.224/27 max 29 as 4242421165; +route 172.22.129.16/28 max 29 as 4242421702; +route 172.23.1.0/24 max 29 as 64828; +route 172.21.65.32/28 max 29 as 4242422379; +route 172.20.180.32/27 max 29 as 4242421310; +route 172.23.91.240/28 max 29 as 4242420815; +route 172.20.128.0/27 max 29 as 4242423424; +route 172.22.146.192/27 max 29 as 4242423962; +route 172.20.192.0/29 max 29 as 4242422309; +route 172.20.53.128/25 max 29 as 4242421269; +route 172.20.192.96/27 max 29 as 4242422492; +route 10.214.0.0/16 max 24 as 65081; +route 10.127.233.0/24 max 29 as 141706; +route 172.20.32.0/28 max 29 as 4242423733; +route 172.21.87.128/25 max 29 as 4242420571; +route 172.23.216.0/24 max 29 as 64773; +route 10.80.0.0/16 max 24 as 65080; +route 172.20.234.224/28 max 29 as 4242423737; +route 172.22.134.128/26 max 29 as 4242420046; +route 172.21.67.144/28 max 29 as 4242420769; +route 172.23.158.64/26 max 29 as 4242420031; +route 172.23.151.192/27 max 29 as 4242420415; +route 172.20.172.32/27 max 29 as 4242422991; +route 172.23.234.96/27 max 29 as 4242421777; +route 172.22.102.0/23 max 29 as 4242420321; +route 172.20.33.0/27 max 29 as 4242422777; +route 172.20.129.0/27 max 27 as 4242422601; +route 172.20.55.32/27 max 29 as 4242423623; +route 172.20.34.64/26 max 29 as 4242423214; +route 10.14.0.0/16 max 24 as 65023; +route 172.23.222.32/27 max 29 as 4242421907; +route 172.22.252.160/27 max 29 as 4242423993; +route 172.22.172.0/27 max 29 as 4242420339; +route 172.23.104.128/27 max 29 as 4242420335; +route 172.20.32.112/28 max 29 as 4242421974; +route 10.35.0.0/16 max 24 as 64868; +route 172.20.172.160/28 max 29 as 4242423251; +route 10.119.0.0/16 max 24 as 65043; +route 172.22.161.0/27 max 29 as 4242423601; +route 172.22.152.128/25 max 29 as 4242421093; +route 172.22.114.64/27 max 29 as 4242422840; +route 172.22.160.128/25 max 29 as 206754; +route 172.23.35.0/26 max 29 as 4242423993; +route 172.20.231.0/28 max 29 as 4242420343; +route 172.23.168.160/27 max 29 as 4242423370; +route 10.127.21.0/24 max 29 as 4242422189; +route 172.20.228.224/27 max 27 as 4242422514; +route 172.23.250.32/27 max 29 as 4242422633; +route 172.20.190.128/28 max 29 as 4242423759; +route 172.20.19.96/27 max 29 as 4242423518; +route 10.13.192.0/18 max 24 as 65402; +route 172.23.148.0/24 max 29 as 76140; +route 172.20.159.8/29 max 29 as 4242420041; +route 172.23.186.32/27 max 29 as 4242422575; +route 172.22.188.224/28 max 29 as 4242423935; +route 172.23.220.0/24 max 29 as 4242421588; +route 172.22.111.224/27 max 29 as 4242422590; +route 172.23.160.0/26 max 29 as 4242422801; +route 172.23.77.0/28 max 29 as 4242421101; +route 172.23.36.0/27 max 29 as 4242421510; +route 172.22.111.128/28 max 29 as 4242421341; +route 172.23.47.0/24 max 29 as 4242420124; +route 10.11.80.0/20 max 24 as 64870; +route 172.20.175.192/26 max 29 as 4242423905; +route 172.22.134.0/27 max 29 as 4242423942; +route 10.27.0.0/16 max 24 as 65057; +route 172.20.148.96/27 max 29 as 4242423855; +route 172.21.125.0/26 max 29 as 4242422228; +route 172.23.119.32/27 max 29 as 4242423399; +route 172.22.141.0/24 max 29 as 64737; +route 172.23.119.96/28 max 29 as 4242420756; +route 172.23.156.0/23 max 29 as 4242422428; +route 10.38.0.0/16 max 24 as 65380; +route 172.20.173.0/27 max 29 as 4242420139; +route 172.22.141.0/28 max 29 as 64737; +route 172.20.214.0/26 max 29 as 4242422214; +route 172.22.50.0/24 max 29 as 4242420656; +route 172.22.66.64/27 max 29 as 4242422717; +route 172.21.67.32/27 max 29 as 4242420339; +route 172.20.128.32/29 max 29 as 4242422935; +route 172.21.89.96/27 max 29 as 4242420723; +route 172.20.160.192/26 max 29 as 4242421189; +route 172.22.159.0/28 max 29 as 4242422544; +route 172.21.93.64/27 max 29 as 4242422752; +route 172.22.26.0/23 max 29 as 64626; +route 172.22.122.192/26 max 29 as 4242420750; +route 172.20.19.64/27 max 29 as 4242420207; +route 172.22.101.96/28 max 29 as 4242423605; +route 10.20.0.0/16 max 24 as 65079; +route 172.23.48.96/27 max 29 as 4242423599; +route 10.127.4.0/24 max 29 as 140913; +route 172.20.31.0/26 max 29 as 4242423439; +route 172.22.240.0/26 max 29 as 0; +route 10.53.0.0/16 max 24 as 65079; +route 10.84.0.0/15 max 24 as 65038; +route 172.20.167.144/28 max 29 as 4242423127; +route 172.20.138.64/26 max 29 as 4242421990; +route 172.22.168.128/25 max 29 as 64752; +route 172.23.132.0/27 max 29 as 4242423504; +route 172.22.169.128/28 max 29 as 4242421050; +route 172.22.172.64/28 max 29 as 4242423611; +route 172.20.154.96/27 max 29 as 4242421424; +route 172.22.146.224/27 max 29 as 4242420824; +route 172.31.0.0/16 max 32 as 64654; +route 172.31.0.0/16 max 32 as 4242422718; +route 172.31.0.0/16 max 32 as 4242422480; +route 172.20.63.0/24 max 29 as 4242422002; +route 172.20.21.160/27 max 29 as 4242422024; +route 172.20.2.96/27 max 29 as 4242422251; +route 10.225.0.0/16 max 24 as 65079; +route 172.22.172.32/27 max 29 as 4242421121; +route 172.20.235.64/27 max 29 as 4242420318; +route 10.29.0.0/16 max 24 as 65529; +route 172.20.227.64/27 max 29 as 4242420086; +route 172.23.183.224/28 max 29 as 4242420401; +route 172.23.177.128/25 max 29 as 4242420414; +route 172.20.55.64/27 max 29 as 4242423311; +route 172.20.36.0/23 max 29 as 76198; +route 172.22.116.64/27 max 29 as 4242420982; +route 172.22.182.160/28 max 29 as 4242423849; +route 172.22.159.16/28 max 29 as 4242420629; +route 10.212.0.0/20 max 24 as 64879; +route 172.22.239.0/24 max 29 as 64839; +route 172.22.127.128/25 max 29 as 4242422277; +route 10.127.255.1/32 max 32 as 4201270000; +route 172.20.58.0/27 max 29 as 4242420237; +route 172.21.77.32/27 max 29 as 4242420927; +route 172.21.74.32/28 max 29 as 4242421301; +route 172.20.39.96/27 max 29 as 4242423615; +route 172.22.105.96/28 max 29 as 4242421913; +route 172.23.234.32/28 max 29 as 4242421312; +route 172.20.175.64/27 max 29 as 4242427761; +route 172.20.6.32/27 max 29 as 4242423400; +route 172.20.227.160/28 max 29 as 4242429990; +route 172.22.126.0/25 max 29 as 4242422462; +route 172.23.197.0/25 max 29 as 4242423303; +route 172.20.187.128/26 max 29 as 4242423798; +route 172.22.122.128/27 max 29 as 4242421668; +route 172.22.132.0/26 max 29 as 4242421997; +route 172.23.168.192/26 max 29 as 4242421944; +route 172.23.89.240/28 max 29 as 4242420604; +route 172.20.138.128/26 max 29 as 4242423513; +route 172.20.12.160/27 max 29 as 4242421470; +route 172.21.113.224/27 max 29 as 4242422410; +route 172.22.187.0/24 max 29 as 64787; +route 172.20.2.192/27 max 29 as 4242422169; +route 172.23.223.96/27 max 29 as 4242423794; +route 172.21.100.16/29 max 29 as 4242423088; +route 172.21.100.16/29 max 29 as 140936; +route 172.21.100.16/29 max 29 as 38173; +route 172.23.82.0/25 max 29 as 4242422857; +route 172.21.101.0/27 max 29 as 4242421656; +route 10.127.64.0/27 max 29 as 4201270016; +route 172.23.35.128/26 max 29 as 4242420028; +route 172.20.6.104/29 max 29 as 4242421921; +route 172.20.6.128/28 max 29 as 4242422299; +route 172.20.165.16/28 max 29 as 4242421848; +route 172.20.131.16/28 max 29 as 4242422910; +route 172.20.229.96/28 max 29 as 4242422440; +route 172.22.118.128/27 max 27 as 4242423770; +route 172.21.87.32/27 max 29 as 4242420190; +route 172.20.143.48/28 max 29 as 4242421826; +route 172.20.157.128/25 max 29 as 4242423906; +route 172.20.29.192/27 max 29 as 4242422248; +route 172.20.135.32/27 max 29 as 4242420300; +route 172.20.227.112/28 max 29 as 4242423636; +route 172.20.14.32/27 max 28 as 4242423914; +route 10.54.0.0/16 max 24 as 65514; +route 172.22.67.0/27 max 29 as 4242420771; +route 172.22.140.0/25 max 29 as 4242422233; +route 172.22.188.128/26 max 29 as 4242420045; +route 172.23.234.224/27 max 29 as 4242422950; +route 172.23.234.224/27 max 29 as 202265; +route 172.20.197.216/29 max 29 as 4242420116; +route 10.127.56.0/24 max 29 as 4201270004; +route 172.21.84.96/29 max 29 as 4242420883; +route 172.20.184.64/27 max 29 as 4242423209; +route 172.20.191.192/26 max 29 as 4242422464; +route 172.23.24.0/27 max 29 as 4242420443; +route 172.22.156.0/25 max 29 as 4242421219; +route 172.23.188.0/24 max 29 as 4242420467; +route 172.22.0.43/32 max 32 as 4242420101; +route 172.22.0.43/32 max 32 as 4242423723; +route 172.22.0.43/32 max 32 as 4242422601; +route 172.22.0.43/32 max 32 as 4242423270; +route 172.22.76.16/28 max 29 as 4242423040; +route 172.23.146.0/24 max 29 as 76124; +route 10.127.0.0/24 max 29 as 4201270000; +route 172.20.150.0/27 max 29 as 4242423585; +route 172.23.222.96/27 max 29 as 4242422520; +route 172.23.100.160/27 max 29 as 4242421243; +route 172.20.46.80/28 max 29 as 4242421408; +route 10.50.0.0/16 max 24 as 65024; +route 10.205.0.0/16 max 24 as 65205; +route 10.222.0.0/16 max 24 as 65032; +route 172.22.119.224/27 max 29 as 4242421299; +route 172.20.62.0/27 max 29 as 4242422019; +route 172.20.227.64/28 max 29 as 4242420086; +route 10.127.8.192/26 max 29 as 4201270006; +route 172.23.133.0/24 max 29 as 4242422231; +route 172.20.3.0/24 max 29 as 4242420467; +route 172.20.47.128/28 max 29 as 4242420210; +route 172.20.232.80/28 max 29 as 4242420710; +route 172.22.157.32/27 max 29 as 4242420304; +route 172.20.42.160/27 max 29 as 4242423928; +route 10.127.9.0/24 max 29 as 4201270006; +route 172.20.2.128/26 max 29 as 4242421191; +route 172.20.135.0/27 max 29 as 4242421616; +route 172.21.100.0/28 max 29 as 4242423737; +route 172.20.181.0/25 max 29 as 4242422700; +route 172.22.0.94/32 max 32 as 56662; +route 172.22.0.94/32 max 32 as 4242420077; +route 172.22.0.94/32 max 32 as 4242420022; +route 172.22.0.94/32 max 32 as 4242421050; +route 172.20.204.64/27 max 29 as 4242423423; +route 10.34.0.0/16 max 24 as 64866; +route 10.43.0.0/16 max 24 as 65251; +route 10.149.0.0/16 max 24 as 65053; +route 172.23.190.0/26 max 29 as 4242420198; +route 172.20.59.160/29 max 29 as 4242421226; +route 172.20.231.192/27 max 29 as 4242421233; +route 172.22.110.96/27 max 29 as 4242422010; +route 172.20.206.128/25 max 29 as 4242420136; +route 172.23.136.0/23 max 29 as 4242420428; +route 172.21.191.0/24 max 29 as 4242421191; +route 172.23.84.0/27 max 29 as 4242421704; +route 10.11.96.0/20 max 24 as 64873; +route 172.21.66.32/27 max 29 as 4242421119; +route 172.23.13.0/29 max 29 as 4242423913; +route 172.23.158.160/27 max 29 as 4242423298; +route 172.20.224.192/26 max 29 as 4242422833; +route 10.127.19.0/24 max 29 as 4201270019; +route 172.23.100.128/27 max 29 as 4242420696; +route 10.61.0.0/16 max 24 as 65041; +route 172.20.33.48/28 max 29 as 4242423348; +route 172.20.18.0/27 max 29 as 4242421333; +route 10.16.128.0/18 max 24 as 64881; +route 172.20.29.224/27 max 29 as 4242422432; +route 172.23.207.0/24 max 29 as 4242422624; +route 10.200.0.0/16 max 24 as 65051; +route 172.23.105.0/26 max 29 as 4242422980; +route 172.22.110.64/27 max 29 as 4242422342; +route 172.22.77.64/27 max 29 as 4242420630; +route 10.127.66.0/24 max 29 as 211876; +route 10.127.66.0/24 max 29 as 4201270021; +route 10.127.66.0/24 max 29 as 4242421876; +route 172.20.172.96/28 max 29 as 4242421703; +route 172.22.150.64/26 max 29 as 4242420031; +route 172.22.128.192/27 max 29 as 4242422008; +route 172.23.149.0/24 max 29 as 4242420123; +route 172.20.190.128/25 max 29 as 4242423759; +route 172.22.33.0/24 max 29 as 64633; +route 10.203.0.0/16 max 24 as 65051; +route 172.20.158.0/27 max 29 as 206633; +route 172.20.20.0/27 max 29 as 4242423389; +route 172.20.135.96/27 max 29 as 4242420165; +route 172.22.70.0/28 max 29 as 76198; +route 172.23.163.128/27 max 29 as 4242421289; +route 172.22.98.0/28 max 29 as 4242420019; +route 172.21.64.224/27 max 29 as 4242423002; +route 172.22.119.128/26 max 29 as 64712; +route 172.20.15.128/27 max 29 as 4242421031; +route 172.23.178.64/27 max 29 as 4242423267; +route 172.21.101.32/27 max 29 as 4242420528; +route 172.23.88.0/24 max 29 as 4242420205; +route 172.22.101.128/26 max 29 as 4242420520; +route 172.20.149.160/27 max 29 as 4242422102; +route 172.20.236.64/29 max 29 as 4242422466; +route 172.20.139.160/28 max 29 as 4242423944; +route 172.22.169.16/28 max 29 as 4242422690; +route 172.23.0.53/32 max 32 as 64737; +route 172.23.0.53/32 max 32 as 4242422601; +route 172.23.116.0/26 max 29 as 4242420905; +route 172.23.86.0/27 max 29 as 4242422386; +route 10.161.0.0/16 max 24 as 64878; +route 172.20.206.0/27 max 29 as 4242423869; +route 172.20.227.96/28 max 29 as 4242421201; +route 172.21.106.128/27 max 29 as 4242420651; +route 172.21.74.48/28 max 29 as 4242421204; +route 10.39.0.0/18 max 24 as 64876; +route 172.21.101.96/29 max 29 as 4242421035; +route 172.20.53.32/27 max 29 as 4242420302; +route 10.59.32.0/20 max 24 as 65041; +route 172.20.29.160/27 max 29 as 4242422408; +route 172.20.15.248/29 max 29 as 4242420989; +route 10.127.23.0/29 max 29 as 4201270014; +route 172.23.222.0/27 max 29 as 4242423111; +route 10.127.25.0/24 max 29 as 4242422189; +route 10.13.144.0/20 max 24 as 65052; +route 172.22.50.0/23 max 29 as 4242420656; +route 172.23.16.192/26 max 29 as 4242420120; +route 172.20.15.16/28 max 29 as 4242420117; +route 172.23.203.64/26 max 29 as 4242422377; +route 172.22.182.0/25 max 29 as 4242421069; +route 172.20.14.0/28 max 29 as 4242421441; +route 172.20.144.0/23 max 29 as 4242422180; +route 172.21.100.32/27 max 29 as 4242428988; +route 172.23.46.0/24 max 29 as 4242420124; +route 172.23.43.64/27 max 29 as 4242420134; +route 172.22.101.112/28 max 29 as 4242420621; +route 172.20.18.128/27 max 29 as 4242421842; +route 172.20.197.160/28 max 29 as 4242422247; +route 10.99.0.0/16 max 24 as 65099; +route 172.20.11.0/24 max 29 as 4242421339; +route 172.20.4.192/27 max 29 as 4242420027; +route 172.22.97.0/24 max 29 as 64697; +route 172.23.109.96/27 max 29 as 4242421423; +route 10.66.0.0/20 max 24 as 65064; +route 172.20.144.0/22 max 29 as 4242422180; +route 172.21.99.128/27 max 29 as 4242421099; +route 172.20.21.0/27 max 29 as 4242420260; +route 172.23.67.0/25 max 29 as 4242420022; +route 10.147.0.0/16 max 24 as 65147; +route 172.20.29.64/28 max 29 as 135395; +route 172.20.177.0/27 max 29 as 4242421982; +route 172.20.183.32/29 max 29 as 4242420234; +route 172.22.189.64/27 max 29 as 4242421238; +route 172.20.149.64/27 max 29 as 4242423124; +route 172.20.47.64/26 max 29 as 4242420789; +route 172.20.35.0/24 max 29 as 4242423623; +route 172.20.139.144/28 max 29 as 4242423403; +route 172.20.2.32/27 max 29 as 4242420360; +route 172.23.208.0/23 max 29 as 4242421976; +route 172.20.49.32/27 max 29 as 4242428192; +route 172.23.119.128/27 max 29 as 4242423112; +route 172.23.43.112/28 max 29 as 4242421814; +route 172.20.26.0/23 max 29 as 4242422100; +route 172.23.215.96/27 max 29 as 4242421978; +route 172.20.168.96/28 max 29 as 4242422605; +route 172.20.209.0/27 max 29 as 4242420215; +route 172.22.182.128/27 max 29 as 4242423820; +route 172.21.92.32/27 max 29 as 4242423090; +route 172.22.76.176/29 max 29 as 4242420091; +route 172.23.6.0/26 max 29 as 4242422688; +route 172.20.180.0/27 max 29 as 4242421309; +route 172.20.170.160/28 max 29 as 4242422161; +route 172.23.158.192/26 max 29 as 4242420568; +route 10.55.0.0/18 max 24 as 65000; +route 172.23.91.0/25 max 29 as 4242422189; +route 172.22.189.96/27 max 29 as 209557; +route 172.22.189.96/27 max 29 as 4242421214; +route 172.20.58.32/27 max 29 as 4242422269; +route 10.111.0.0/16 max 24 as 65111; +route 172.21.67.0/27 max 29 as 4242420167; +route 172.23.233.0/24 max 29 as 4242422244; +route 172.23.214.0/24 max 29 as 4242420235; +route 10.17.0.0/16 max 24 as 65055; +route 172.20.158.64/27 max 29 as 4242422541; +route 172.20.158.64/27 max 29 as 4242422545; +route 172.22.151.64/27 max 29 as 4242423882; +route 10.132.0.0/16 max 24 as 65132; +route 172.20.192.64/27 max 29 as 4242420115; +route 172.23.240.32/27 max 29 as 4242420525; +route 172.21.84.64/27 max 29 as 4242423919; +route 172.23.145.0/24 max 29 as 4242423654; +route 172.23.230.64/26 max 29 as 4242421824; +route 172.20.20.64/28 max 29 as 4242421191; +route 172.23.231.64/27 max 29 as 4242420529; +route 10.135.0.0/16 max 24 as 65152; +route 10.15.224.0/20 max 24 as 64875; +route 172.22.117.128/25 max 29 as 64717; +route 172.23.238.128/26 max 29 as 4242420039; +route 172.23.163.64/27 max 29 as 4242423505; +route 172.23.199.96/28 max 29 as 4242420134; +route 172.20.229.112/28 max 29 as 4242421080; +route 172.22.131.128/28 max 29 as 4242423271; +route 10.59.16.0/20 max 24 as 65041; +route 172.22.118.0/27 max 29 as 4242421128; +route 10.127.8.64/26 max 29 as 4201270006; +route 172.22.118.32/27 max 29 as 4242422235; +route 10.63.0.0/16 max 24 as 65042; +route 172.22.240.128/25 max 29 as 4242420017; +route 10.127.1.0/24 max 29 as 4201270000; +route 172.22.128.64/28 max 29 as 4242420553; +route 172.23.43.104/29 max 29 as 4242428202; +route 172.20.42.128/29 max 29 as 4242421958; +route 172.22.119.0/25 max 29 as 64719; +route 172.22.112.0/24 max 29 as 64720; +route 172.21.117.32/27 max 29 as 4242422705; +route 172.20.131.88/29 max 29 as 4242423692; +route 172.20.164.64/27 max 29 as 4242420256; +route 172.23.128.96/27 max 29 as 4242420286; +route 172.20.64.0/21 max 29 as 4242420101; +route 172.20.132.0/27 max 29 as 4242421296; +route 10.127.131.0/24 max 29 as 207268; +route 172.20.14.192/26 max 29 as 4242422700; +route 172.21.69.0/24 max 29 as 4242423931; +route 172.20.169.0/24 max 29 as 4242422548; +route 172.20.46.160/29 max 29 as 4242420510; +route 172.20.53.96/27 max 29 as 0; +route 172.23.39.0/26 max 29 as 4242423939; +route 172.20.165.32/27 max 29 as 4242423189; +route 172.22.6.0/23 max 29 as 64606; +route 172.23.8.0/27 max 29 as 4242421306; +route 172.22.115.128/25 max 29 as 64915; +route 172.22.186.32/27 max 29 as 4242422855; +route 172.23.249.0/24 max 29 as 4242421338; +route 172.20.189.0/25 max 29 as 4242420037; +route 172.22.169.64/26 max 29 as 4242422341; +route 172.20.46.64/28 max 29 as 4242421277; +route 172.22.128.32/28 max 29 as 4242423266; +route 172.22.160.48/29 max 29 as 4242420453; +route 172.23.16.128/26 max 29 as 4242420120; +route 172.20.246.160/28 max 29 as 4242420630; +route 172.20.172.112/29 max 29 as 4242420491; +route 172.21.100.64/27 max 29 as 4242423050; +route 172.22.101.0/27 max 29 as 4242420152; +route 172.21.120.0/24 max 27 as 4242422058; +route 10.18.0.0/16 max 24 as 65513; +route 172.23.100.192/27 max 29 as 4242422042; +route 172.23.3.0/25 max 29 as 4242420817; +route 172.23.171.0/24 max 29 as 4242421420; +route 172.20.15.208/28 max 29 as 4242420155; +route 172.22.146.0/25 max 29 as 4242423973; +route 172.21.89.128/26 max 29 as 4242423953; +route 172.22.148.160/27 max 29 as 4242422506; +route 172.22.252.192/27 max 29 as 4242422424; +route 172.20.18.192/28 max 29 as 4242423277; +route 172.20.28.64/27 max 29 as 4242420281; +route 172.20.130.128/28 max 29 as 4242423759; +route 172.20.44.0/28 max 29 as 4242420380; +route 172.20.51.96/27 max 29 as 4242423618; +route 172.22.66.0/27 max 29 as 4242421207; +route 172.20.231.224/27 max 29 as 4242420469; +route 172.23.138.0/23 max 29 as 76118; +route 172.22.76.160/28 max 29 as 4242421011; +route 172.22.163.0/24 max 29 as 4242422002; +route 172.20.193.176/28 max 29 as 4242423335; +route 172.22.64.0/24 max 29 as 64664; +route 172.20.177.64/27 max 29 as 4242420944; +route 172.20.18.32/27 max 29 as 4242421232; +route 172.20.18.64/27 max 29 as 4242423754; +route 10.144.0.0/16 max 24 as 64859; +route 172.20.6.16/29 max 29 as 4242420789; +route 172.20.170.128/28 max 29 as 4242420296; +route 172.23.173.192/27 max 29 as 4242420081; +route 172.20.189.128/25 max 29 as 4242421223; +route 172.20.159.64/27 max 29 as 4242421115; +route 10.2.0.0/16 max 24 as 65511; +route 172.23.57.0/28 max 29 as 4242421905; +route 172.22.110.224/27 max 29 as 4242421918; +route 10.116.0.0/16 max 24 as 65525; +route 172.23.116.64/27 max 29 as 4242421335; +route 172.20.161.128/26 max 29 as 4242420666; +route 172.20.2.64/27 max 29 as 4242420164; +route 172.22.118.96/27 max 29 as 4242423217; +route 172.20.15.160/27 max 29 as 4242423310; +route 172.20.148.80/28 max 29 as 4242420316; +route 172.20.48.224/27 max 29 as 4242421938; +route 172.23.11.0/24 max 29 as 64526; +route 172.20.16.0/25 max 29 as 4242421926; +route 10.59.0.0/21 max 24 as 65041; +route 10.100.0.0/14 max 32 as 64654; +route 10.100.0.0/14 max 32 as 4242422718; +route 10.100.0.0/14 max 32 as 4242422480; +route 172.22.167.80/28 max 29 as 4242423343; +route 172.22.76.184/29 max 29 as 4242422547; +route 172.23.236.0/25 max 29 as 76190; +route 172.20.143.0/28 max 29 as 4242423120; +route 172.22.156.128/26 max 29 as 4242423783; +route 172.22.66.32/27 max 29 as 4242421876; +route 172.22.66.32/27 max 29 as 4201270021; +route 172.22.66.32/27 max 29 as 211876; +route 10.19.0.0/16 max 24 as 64869; +route 172.20.162.8/29 max 29 as 4242420254; +route 172.20.190.160/28 max 29 as 4242423759; +route 172.20.155.64/28 max 29 as 4242423566; +route 172.20.228.0/26 max 29 as 4242420121; +route 10.110.0.0/16 max 24 as 65110; +route 172.22.101.32/27 max 29 as 4242421717; +route 172.23.178.128/29 max 29 as 4242423351; +route 172.22.120.128/25 max 29 as 4242420806; +route 172.23.226.0/26 max 29 as 4242420226; +route 172.20.18.208/28 max 29 as 4242423965; +route 172.20.160.128/28 max 29 as 4242423759; +route 172.20.168.64/27 max 29 as 4242423335; +route 172.20.136.128/25 max 29 as 4242421948; +route 172.20.168.128/25 max 29 as 4242421332; +route 172.22.125.0/28 max 29 as 4242423974; +route 10.5.0.0/16 max 24 as 65077; +route 172.22.128.224/27 max 29 as 4242420320; +route 172.20.58.160/27 max 29 as 4242420813; +route 172.22.186.64/28 max 28 as 4242422502; +route 172.20.161.0/25 max 29 as 4242420113; +route 10.23.0.0/16 max 24 as 65210; +route 172.22.180.0/26 max 29 as 4242422292; +route 172.20.0.35/32 max 32 as 4242420656; +route 172.23.100.0/25 max 29 as 4242420980; +route 172.23.73.64/26 max 29 as 4242421220; +route 10.130.0.0/16 max 24 as 201173; +route 172.23.248.224/28 max 29 as 4242422481; +route 172.20.49.128/25 max 29 as 4242428192; +route 172.21.125.128/27 max 29 as 4242422053; +route 172.20.15.48/29 max 29 as 4242421103; +route 172.20.142.96/27 max 29 as 4242421120; +route 172.22.147.64/26 max 29 as 4242421474; +route 172.22.149.32/28 max 29 as 4242423225; +route 10.156.0.0/16 max 24 as 65120; +route 172.21.75.0/27 max 29 as 4242420526; +route 172.20.4.128/26 max 29 as 4242420049; +route 172.21.113.192/27 max 29 as 4242422911; +route 172.20.162.32/27 max 27 as 4242423964; +route 172.20.6.192/27 max 29 as 4242420756; +route 172.20.138.192/26 max 29 as 4242421997; +route 172.22.128.128/27 max 29 as 4242420185; +route 172.23.0.32/28 max 32 as 4242420321; +route 172.22.101.208/28 max 29 as 4242423620; +route 172.21.68.32/27 max 29 as 4242420925; +route 172.20.175.128/27 max 29 as 4242420505; +route 172.22.110.0/27 max 29 as 4242420077; +route 172.20.46.96/28 max 29 as 4242421043; +route 172.20.4.32/28 max 29 as 4242423677; +route 172.20.238.128/27 max 29 as 4242423878; +route 172.20.10.0/26 max 29 as 4242421406; +route 172.22.111.160/27 max 29 as 4242421008; +route 172.20.18.160/27 max 29 as 4242428988; +route 172.20.175.96/27 max 29 as 4242421508; +route 172.20.5.160/27 max 29 as 4242421065; +route 172.20.6.96/29 max 29 as 4242420981; +route 172.20.197.208/28 max 29 as 4242420116; +route 172.23.248.192/28 max 29 as 4242422480; +route 172.23.78.0/27 max 29 as 4242421180; +route 172.22.186.80/28 max 29 as 4242421458; +route 172.22.123.0/24 max 29 as 4242420916; +route 172.20.178.96/28 max 29 as 4242423506; +route 10.115.0.0/19 max 24 as 65115; +route 172.20.234.64/27 max 29 as 4242421297; +route 172.22.119.192/27 max 29 as 4242420209; +route 172.20.8.0/23 max 29 as 4242423201; +route 172.23.177.32/27 max 29 as 4242423236; +route 10.196.0.0/16 max 24 as 65196; +route 172.23.234.192/27 max 29 as 4242422950; +route 172.23.234.192/27 max 29 as 202265; +route 172.20.205.0/24 max 29 as 4242421049; +route 172.20.161.192/26 max 29 as 4242420074; +route 172.22.65.0/24 max 29 as 64665; +route 172.20.48.128/27 max 29 as 4242420181; +route 172.21.67.128/28 max 29 as 4242423010; +route 172.22.130.0/29 max 29 as 4242423377; +route 172.23.104.0/27 max 29 as 4242420423; +route 172.20.235.32/27 max 29 as 4242423807; +route 172.20.229.128/27 max 29 as 4242423951; +route 172.23.234.64/27 max 29 as 4242428989; +route 172.20.155.96/27 max 29 as 4242421129; +route 10.142.0.0/16 max 24 as 64946; +route 172.21.88.128/28 max 29 as 4242420199; +route 172.23.173.0/27 max 29 as 4242421178; +route 172.23.78.32/27 max 29 as 4242421930; +route 172.21.74.128/26 max 29 as 4242423767; +route 10.1.192.0/18 max 24 as 64863; +route 172.20.227.192/27 max 29 as 4242420058; +route 172.20.162.24/29 max 29 as 4242422249; +route 172.20.19.160/27 max 29 as 4242421240; +route 10.60.128.0/18 max 24 as 65043; +route 172.20.227.224/28 max 29 as 4242423434; +route 172.22.125.192/27 max 29 as 4242422848; +route 172.22.116.96/27 max 29 as 4242421324; +route 172.21.65.64/29 max 29 as 4242423999; +route 172.20.201.0/24 max 29 as 4242420642; +route 172.20.131.128/25 max 29 as 4242422365; +route 172.20.172.0/28 max 29 as 4242423160; +route 10.227.0.0/16 max 24 as 65079; +route 172.20.46.168/29 max 29 as 4242423395; +route 172.22.148.240/28 max 29 as 4242428200; +route 10.185.0.0/16 max 24 as 65142; +route 172.20.14.160/27 max 29 as 4242420997; +route 172.23.128.0/26 max 29 as 4242422747; +route 172.20.183.80/29 max 29 as 4242420156; +route 172.23.119.160/28 max 29 as 4242422901; +route 10.160.0.0/13 max 24 as 65079; +route 172.20.190.64/28 max 29 as 4242422431; +route 172.22.111.144/28 max 29 as 4242423321; +route 10.24.0.0/20 max 24 as 65045; +route 172.21.90.0/26 max 29 as 4242421018; +route 172.20.233.128/26 max 29 as 4242421288; +route 172.23.223.0/27 max 29 as 4242422027; +route 172.23.37.0/27 max 29 as 4242422339; +route 172.22.168.0/25 max 29 as 64768; +route 172.20.45.64/28 max 29 as 4242423667; +route 172.20.46.0/26 max 29 as 4242422600; +route 172.22.120.0/26 max 29 as 64720; +route 172.20.162.128/25 max 29 as 4242420115; +route 172.21.93.32/27 max 29 as 4242420969; +route 172.22.158.192/27 max 29 as 4242428593; +route 172.20.19.0/27 max 29 as 4242420530; +route 172.20.186.0/24 max 29 as 4242421588; +route 172.20.34.96/27 max 29 as 4242423214; +route 172.23.4.0/27 max 29 as 4242420617; +route 172.21.79.0/26 max 29 as 4242421500; +route 10.25.0.0/16 max 24 as 64858; +route 10.127.12.0/24 max 29 as 4242420140; +route 172.20.180.64/27 max 29 as 4242421308; +route 10.51.0.0/16 max 24 as 65054; +route 172.20.47.0/26 max 29 as 4242421123; +route 172.20.25.128/25 max 29 as 4242423991; +route 172.23.111.64/28 max 29 as 4242422327; +route 172.20.22.0/23 max 29 as 4242421410; +route 172.20.135.64/27 max 29 as 4242420810; +route 172.20.128.96/29 max 29 as 4242420206; +route 172.21.64.32/27 max 29 as 4242423843; +route 10.13.80.0/20 max 24 as 64886; +route 172.20.62.32/29 max 29 as 4242422019; +route 172.22.181.224/28 max 29 as 4242423353; +route 172.20.58.64/27 max 29 as 4242423556; +route 172.23.104.64/27 max 29 as 4242422761; +route 172.20.155.128/25 max 29 as 4242420064; +route 172.20.34.64/27 max 29 as 4242423214; +route 172.23.189.0/25 max 29 as 4242420045; +route 10.127.8.0/26 max 29 as 4242421037; +route 172.23.203.0/26 max 29 as 4242422376; +route 172.22.148.192/27 max 29 as 4242423110; +route 172.22.141.160/27 max 29 as 64737; +route 172.23.245.0/24 max 29 as 76175; +route 172.21.114.0/28 max 29 as 4242422049; +route 172.21.106.32/27 max 29 as 4242423738; +route 172.23.7.0/27 max 29 as 4242421225; +route 172.22.151.96/27 max 29 as 4242421552; +route 172.23.4.32/27 max 27 as 62396; +route 172.23.194.0/23 max 29 as 64623; +route 172.20.160.32/28 max 29 as 4242422742; +route 172.20.231.16/28 max 29 as 4242420488; +route 172.20.49.0/25 max 29 as 4242428192; +route 10.127.5.0/28 max 29 as 4201270012; +route 172.20.184.160/28 max 29 as 4242421788; +route 10.127.39.0/27 max 29 as 4201270009; +route 172.22.0.53/32 max 32 as 0; +route 172.21.66.64/27 max 29 as 4242423955; +route 172.20.51.32/27 max 29 as 4242421369; +route 10.64.0.0/16 max 24 as 65042; +route 172.22.132.128/28 max 29 as 4242423055; +route 172.21.66.192/27 max 29 as 4242421224; +route 172.22.58.0/24 max 29 as 64712; +route 172.20.184.0/27 max 29 as 4242423954; +route 172.20.51.0/27 max 29 as 4242423175; +route 172.20.48.160/28 max 29 as 4242422607; +route 172.22.134.192/26 max 29 as 4242421110; +route 172.20.128.88/29 max 29 as 4242422202; +route 10.24.128.0/18 max 24 as 64769; +route 172.22.75.0/24 max 29 as 64674; +route 172.22.75.0/24 max 29 as 64675; +route 172.20.66.64/28 max 29 as 64600; +route 172.20.66.64/28 max 29 as 4242420101; +route 172.20.245.224/27 max 29 as 4242423212; +route 172.22.54.0/24 max 29 as 64654; +route 172.23.177.16/28 max 29 as 4242423002; +route 172.22.108.0/26 max 29 as 4242421080; +route 172.20.15.96/27 max 29 as 4242422255; +route 172.23.120.0/28 max 29 as 4242422050; +route 172.20.129.64/26 max 29 as 4242421233; +route 10.188.0.0/16 max 24 as 65066; +route 172.20.248.0/24 max 29 as 4242422480; +route 10.139.0.0/16 max 24 as 65039; +route 172.22.152.0/25 max 29 as 64752; +route 172.23.101.192/27 max 29 as 4242422340; +route 172.20.60.0/23 max 29 as 4242423158; +route 172.21.65.96/27 max 29 as 4242421690; +route 172.21.80.96/27 max 29 as 4242423765; +route 172.23.92.0/24 max 29 as 4242423838; +route 172.22.36.0/23 max 29 as 64636; +route 172.23.217.0/27 max 29 as 4242423947; +route 172.20.12.128/28 max 29 as 4242420178; +route 172.20.54.32/28 max 29 as 4242422274; +route 172.22.137.96/27 max 29 as 4242422850; +route 10.72.0.0/16 max 24 as 65513; +route 172.22.128.0/27 max 29 as 31867; +route 172.21.121.64/27 max 29 as 4242423306; +route 172.23.150.128/25 max 29 as 4242420885; +route 172.20.21.192/26 max 29 as 4242423008; +route 10.252.0.0/18 max 24 as 64861; +route 172.23.168.128/27 max 29 as 4242421518; +route 172.20.58.128/27 max 29 as 4242420138; +route 172.21.100.128/25 max 29 as 4242423088; +route 172.21.100.128/25 max 29 as 140936; +route 172.21.100.128/25 max 29 as 38173; +route 172.23.202.0/24 max 29 as 4242420000; +route 10.86.0.0/15 max 24 as 65037; +route 10.204.0.0/16 max 24 as 64857; +route 172.22.143.0/24 max 29 as 4242420143; +route 172.20.6.160/27 max 29 as 4242421860; +route 172.23.99.64/27 max 29 as 4242423308; +route 172.20.195.80/28 max 29 as 4242428593; +route 172.22.111.64/27 max 29 as 4242422201; +route 172.20.59.144/28 max 29 as 4242422798; +route 172.20.195.128/27 max 29 as 4242421979; +route 172.23.119.224/28 max 29 as 4242420086; +route 172.22.254.0/26 max 29 as 64828; +route 10.26.64.0/18 max 24 as 4242420022; +route 172.20.176.0/24 max 29 as 4242421340; +route 10.145.0.0/16 max 24 as 65077; +route 172.23.198.0/24 max 29 as 76198; +route 172.23.215.160/27 max 29 as 4242421955; +route 172.22.120.64/26 max 29 as 4242423000; +route 10.11.64.0/20 max 24 as 64867; +route 172.20.54.48/29 max 29 as 4242422878; +route 172.22.159.128/27 max 29 as 4242420801; +route 10.31.0.0/16 max 24 as 44194; +route 10.24.32.0/19 max 24 as 64901; +route 172.20.177.32/27 max 29 as 4242422341; +route 172.20.33.128/25 max 29 as 4242421501; +route 172.21.84.0/27 max 29 as 4242422381; +route 172.22.115.0/25 max 29 as 4242421256; +route 172.23.147.0/24 max 29 as 64742; +route 172.20.2.224/27 max 29 as 4242421406; +route 10.126.0.0/16 max 24 as 65026; +route 172.23.183.24/29 max 29 as 4242422009; +route 172.23.140.0/23 max 29 as 4242422878; +route 172.23.50.0/26 max 29 as 4242423925; +route 10.33.0.0/16 max 24 as 64860; +route 172.21.125.64/27 max 29 as 4242423650; +route 172.20.228.128/26 max 29 as 4242423967; +route 172.22.63.0/28 max 29 as 4242420119; +route 172.22.63.0/28 max 29 as 64737; +route 172.22.63.0/28 max 29 as 4242422601; +route 172.20.139.192/26 max 29 as 4242422301; +route 172.20.140.0/23 max 29 as 4242420842; +route 10.158.0.0/15 max 24 as 65528; +route 10.195.0.0/16 max 24 as 65024; +route 172.22.189.0/26 max 29 as 4242421166; +route 172.23.164.0/23 max 29 as 76160; +route 172.23.3.128/26 max 29 as 4242422232; +route 172.20.2.0/27 max 29 as 4242421819; +route 172.20.20.160/27 max 29 as 4242423904; +route 172.23.239.0/25 max 29 as 4242422128; +route 10.68.0.0/20 max 24 as 64892; +route 172.20.57.0/24 max 29 as 4242422305; +route 172.20.228.96/27 max 29 as 4242421233; +route 10.11.0.0/18 max 24 as 65050; +route 10.229.0.0/16 max 24 as 65079; +route 172.21.125.224/27 max 29 as 4242422107; +route 172.22.122.160/27 max 29 as 4242420669; +route 10.176.0.0/15 max 24 as 65026; +route 10.10.0.0/16 max 24 as 65252; +route 172.20.18.112/28 max 29 as 4242423670; +route 172.20.51.64/27 max 29 as 4242420269; +route 172.20.158.128/26 max 29 as 4242421331; +route 172.20.58.192/27 max 29 as 4242420524; +route 172.23.119.192/27 max 29 as 4242420987; +route 172.20.175.176/28 max 29 as 4242420677; +route 172.23.158.128/27 max 29 as 4242423549; +route 172.21.89.192/26 max 29 as 4242421587; +route 10.15.0.0/18 max 24 as 64884; +route 172.23.83.0/25 max 29 as 4242422857; +route 172.22.180.64/26 max 29 as 4242422032; +route 172.22.76.96/27 max 29 as 4242422547; +route 172.23.64.0/25 max 29 as 4242421375; +route 172.20.10.64/27 max 29 as 4242420278; +route 172.20.129.192/26 max 29 as 4242423452; +route 172.22.167.64/28 max 29 as 4242423315; +route 172.22.43.0/24 max 29 as 64643; +route 172.22.68.0/27 max 29 as 4242421888; +route 172.23.183.16/29 max 29 as 4242423275; +route 172.20.20.80/28 max 29 as 4242423404; +route 172.20.12.192/27 max 29 as 4242422225; +route 172.20.184.96/27 max 29 as 4242423679; +route 172.20.13.192/27 max 29 as 4242420227; +route 172.23.43.16/29 max 29 as 4242423002; +route 172.20.190.144/28 max 29 as 4242423759; +route 172.22.110.160/27 max 29 as 4242422202; +route 172.20.235.0/27 max 29 as 4242423907; +route 172.23.125.0/29 max 29 as 4242423852; +route 172.22.133.160/29 max 29 as 4242423567; +route 172.20.34.160/28 max 29 as 4242420799; +route 10.70.0.0/18 max 24 as 65065; +route 172.21.99.32/27 max 29 as 0; +route 10.127.124.0/29 max 29 as 4242421214; +route 172.20.199.128/25 max 29 as 4242423991; +route 172.23.91.128/26 max 29 as 4242422189; +route 172.21.67.160/28 max 29 as 4242421091; +route 172.20.184.224/28 max 29 as 4242420078; +route 172.20.160.64/26 max 29 as 4242420616; +route 172.20.41.32/28 max 29 as 4242420208; +route 172.20.149.192/26 max 29 as 4242423322; +route 172.20.144.64/26 max 29 as 4242422180; +route 172.23.96.0/24 max 29 as 4242420101; +route 172.22.105.32/27 max 29 as 4242420177; +route 172.20.194.64/27 max 29 as 4242423602; +route 172.20.172.144/28 max 29 as 4242420447; +route 172.20.54.64/26 max 29 as 4242420527; +route 172.22.167.96/27 max 29 as 4242422526; +route 172.20.32.64/27 max 29 as 4242420640; +route 10.127.22.0/29 max 29 as 4201270011; +route 172.23.82.128/25 max 29 as 4242422857; +route 172.20.139.176/28 max 29 as 4242421273; +route 172.21.67.224/29 max 29 as 4242423927; +route 172.22.148.64/26 max 29 as 4242420047; +route 172.22.147.48/28 max 29 as 4242421474; +route 172.22.1.0/24 max 29 as 76198; +route 172.22.1.0/24 max 29 as 4242422321; +route 172.20.6.144/28 max 29 as 4242422644; +route 172.20.233.0/27 max 29 as 4242423255; +route 172.22.149.112/28 max 29 as 4242420339; +route 172.20.181.128/26 max 29 as 4242423247; +route 172.22.142.0/29 max 29 as 4242422441; +route 172.22.127.64/27 max 29 as 4242422227; +route 10.233.0.0/16 max 24 as 65079; +route 172.20.32.32/27 max 29 as 4242423140; +route 172.23.193.0/27 max 29 as 4242421516; +route 172.20.171.80/28 max 29 as 4242421564; +route 172.23.177.64/26 max 29 as 4242421987; +route 172.20.231.32/27 max 29 as 4242423859; +route 172.20.59.96/28 max 29 as 4242420182; +route 172.20.159.16/28 max 29 as 4242421055; +route 172.23.109.160/29 max 29 as 4242421325; +route 172.21.80.64/27 max 29 as 4242423618; +route 172.20.217.0/24 max 29 as 4242420217; +route 172.22.38.0/24 max 29 as 4242421761; +route 172.20.129.128/27 max 29 as 4242422609; +route 172.20.234.192/28 max 29 as 4242422289; +route 172.20.34.0/26 max 29 as 4242423966; +route 172.20.50.128/26 max 29 as 4242423512; +route 172.20.148.8/29 max 29 as 4242422506; +route 172.23.0.80/32 max 32 as 4242420123; +route 172.23.0.80/32 max 32 as 64737; +route 172.23.0.80/32 max 32 as 64719; +route 172.23.0.80/32 max 32 as 4242422601; +route 10.12.0.0/16 max 24 as 65048; +route 10.215.0.0/16 max 24 as 65083; +route 172.20.227.128/27 max 29 as 4242422543; +route 172.20.50.64/26 max 29 as 4242420110; +route 172.21.112.0/27 max 29 as 4242423642; +route 172.23.83.0/24 max 29 as 4242422857; +route 172.22.111.120/29 max 29 as 4242420823; +route 10.128.0.0/18 max 24 as 64877; +route 172.20.45.32/27 max 29 as 4242420168; +route 172.20.178.64/27 max 29 as 4242421404; +route 172.20.25.0/25 max 29 as 4242423991; +route 10.230.0.0/16 max 24 as 44194; +route 172.20.239.192/27 max 29 as 4242422439; +route 172.20.28.192/27 max 29 as 4242423350; +route 172.21.64.96/27 max 29 as 4242422065; +route 172.20.198.0/26 max 29 as 4242423850; +route 172.20.230.0/25 max 25 as 4242420144; +route 172.20.230.0/25 max 25 as 208391; +route 172.22.76.192/28 max 29 as 4242423442; +route 172.21.64.192/27 max 29 as 4242423843; +route 10.65.0.0/20 max 24 as 4242420420; +route 172.21.106.0/27 max 29 as 4242429990; +route 10.202.0.0/18 max 24 as 65522; +route 172.21.99.160/27 max 29 as 4242421592; +route 172.23.76.0/26 max 29 as 4242422305; +route 172.20.191.64/27 max 29 as 4242420191; +route 172.20.142.0/27 max 29 as 4242420886; +route 10.47.0.0/16 max 24 as 64862; +route 172.23.40.0/25 max 29 as 4242420515; +route 10.189.0.0/18 max 24 as 65189; +route 10.127.255.117/32 max 32 as 4201270008; +route 172.20.48.0/27 max 29 as 4242422707; +route 172.20.1.0/24 max 24 as 4242420119; +route 172.21.106.64/27 max 29 as 4242423952; +route 172.22.137.32/27 max 29 as 4242422647; +route 172.21.94.192/27 max 29 as 4242421850; +route 172.23.162.0/27 max 29 as 4242422890; +route 172.20.173.64/27 max 29 as 4242422011; +route 172.20.227.0/27 max 29 as 4242423965; +route 172.21.68.0/27 max 29 as 4242421097; +route 10.28.0.0/16 max 24 as 65397; +route 172.20.170.224/27 max 29 as 4242420157; +route 172.23.119.176/28 max 29 as 4242422950; +route 172.23.119.176/28 max 29 as 202265; +route 172.20.39.32/27 max 29 as 4242423537; +route 172.20.143.128/25 max 29 as 4242422575; +route 172.20.12.80/28 max 29 as 4242423610; +route 10.127.14.0/23 max 29 as 134098; +route 172.22.44.0/23 max 29 as 4242422333; +route 10.60.0.0/16 max 24 as 65060; +route 172.23.215.0/28 max 29 as 4242423441; +route 172.21.125.160/27 max 29 as 4242422991; +route 172.20.48.32/27 max 29 as 4242420573; +route 10.30.96.0/19 max 24 as 64904; +route 10.216.0.0/16 max 24 as 65034; +route 172.21.101.72/29 max 29 as 4242421814; +route 172.23.158.0/27 max 29 as 4242420809; +route 172.23.172.0/24 max 29 as 4242422800; +route 172.20.131.80/29 max 29 as 4242420789; +route 172.23.60.128/25 max 29 as 4242423158; +route 172.22.124.0/28 max 29 as 4242422024; +route 172.22.148.128/27 max 29 as 4242423811; +route 172.21.93.96/27 max 29 as 4242421789; +route 10.0.0.0/16 max 24 as 65079; +route 172.23.222.64/27 max 29 as 4242422027; +route 10.127.2.0/24 max 29 as 4201270000; +route 172.20.168.0/26 max 29 as 4242421015; +route 172.23.250.64/27 max 29 as 141776; +route 10.127.22.8/29 max 29 as 4201270011; +route 10.11.144.0/20 max 24 as 64874; +route 172.20.236.0/26 max 29 as 4242420312; +route 10.255.0.0/16 max 24 as 65533; +route 172.23.109.0/26 max 29 as 4242422387; +route 172.21.79.80/28 max 29 as 4242420186; +route 172.20.131.32/27 max 29 as 4242421958; +route 10.26.48.0/20 max 24 as 4242420022; +route 10.88.0.0/16 max 24 as 64902; +route 10.83.0.0/16 max 24 as 65024; +route 172.20.33.96/27 max 29 as 4242423854; +route 172.20.129.32/27 max 29 as 4242423338; +route 172.20.171.0/26 max 29 as 4242420125; +route 172.22.73.16/28 max 29 as 4242422378; +route 172.22.110.32/27 max 29 as 4242420808; +route 10.13.96.0/20 max 24 as 64895; +route 10.201.0.0/16 max 24 as 65051; +route 172.20.163.112/28 max 29 as 4242423645; +route 172.20.39.64/28 max 29 as 4242420789; +route 172.20.48.192/27 max 29 as 4242423774; +route 172.20.191.128/27 max 29 as 4242420780; +route 172.22.184.0/24 max 29 as 64784; +route 172.23.163.96/28 max 29 as 4242421202; +route 10.15.64.0/18 max 24 as 64893; +route 172.20.33.32/28 max 29 as 4242422935; +route 172.22.172.96/27 max 29 as 4242420511; +route 10.223.0.0/16 max 24 as 65038; +route 172.20.165.8/29 max 29 as 4242423821; +route 172.22.73.32/27 max 29 as 4242420189; +route 172.20.130.0/24 max 29 as 4242423759; +route 172.21.75.64/26 max 29 as 141011; +route 10.127.255.80/32 max 32 as 4201270000; +route 172.20.187.224/27 max 29 as 4242421607; +route 172.22.122.64/27 max 29 as 4242422843; +route 10.127.255.56/32 max 32 as 4201270004; +route 172.22.133.128/27 max 29 as 4242420159; +route 172.20.129.160/27 max 27 as 4242422601; +route 172.21.118.128/27 max 29 as 4242421551; +route 172.23.2.0/27 max 29 as 4242422604; +route 172.20.233.32/27 max 29 as 4242421555; +route 172.22.172.80/28 max 29 as 4242423612; +route 172.20.10.96/27 max 29 as 4242420153; +route 172.20.132.32/27 max 29 as 4242421916; +route 172.20.59.0/26 max 29 as 4242420527; +route 172.20.142.32/29 max 29 as 4242422673; +route 172.22.77.32/28 max 29 as 4242421817; +route 172.20.40.0/24 max 29 as 4242420124; +route 172.20.233.64/26 max 29 as 4242421130; +route 10.71.0.0/18 max 24 as 64889; +route 172.20.20.32/28 max 29 as 4242420560; +route 172.20.173.96/27 max 29 as 4242420196; +route 10.129.0.0/16 max 24 as 65056; +route 10.127.10.0/24 max 29 as 4201270010; +route 172.20.234.208/28 max 29 as 4242421098; +route 172.20.224.64/27 max 29 as 4242421070; +route 10.118.0.0/16 max 24 as 65044; +route 172.22.110.200/29 max 29 as 4242422115; +route 10.169.0.0/16 max 24 as 65534; +route 172.20.227.32/27 max 29 as 4242422005; +route 172.23.222.160/28 max 29 as 4242423626; +route 172.20.12.224/27 max 29 as 4242421525; +route 172.23.48.0/27 max 29 as 4242421048; +route 172.22.186.0/27 max 29 as 4242423027; +route 172.23.178.0/26 max 29 as 4242423510; +route 172.22.16.0/23 max 29 as 64616; +route 172.20.150.32/27 max 29 as 4242422240; +route 172.22.188.0/26 max 29 as 4242422681; +route 172.21.66.128/27 max 29 as 4242423886; +route 172.20.158.192/28 max 29 as 4242423704; +route 172.22.161.96/28 max 29 as 4242421280; +route 172.20.184.128/27 max 29 as 4242420540; +route 172.23.150.0/25 max 29 as 4242420158; +route 172.20.28.0/27 max 29 as 4242420154; +route 172.20.199.0/24 max 29 as 4242423991; +route 172.23.162.32/27 max 29 as 4242421602; +route 172.22.129.192/26 max 29 as 4242423976; +route 172.20.34.128/27 max 29 as 4242421928; +route 172.22.160.16/28 max 29 as 4242421707; +route 172.22.130.128/27 max 29 as 4242423270; +route 172.20.230.128/25 max 29 as 4242423151; +route 172.23.201.0/24 max 29 as 4242422287; +route 172.20.178.0/27 max 29 as 4242423238; +route 172.23.99.0/27 max 29 as 4242422499; +route 172.21.0.53/32 max 32 as 0; +route 172.21.101.80/29 max 29 as 4242420130; +route 172.20.5.128/27 max 29 as 4242420161; +route 172.23.99.32/27 max 29 as 4242423197; +route 172.22.129.64/26 max 29 as 4242423152; +route 10.40.0.0/16 max 24 as 65078; +route 10.127.127.0/24 max 29 as 4242422464; +route 172.21.106.160/27 max 29 as 4242420657; +route 172.21.89.32/27 max 29 as 4242421994; +route 172.21.99.192/27 max 29 as 4242420261; +route 10.26.0.0/16 max 24 as 65529; +route 172.20.155.80/29 max 29 as 4242420506; +route 172.20.24.0/23 max 29 as 4242423991; +route 172.20.228.192/28 max 29 as 4242421009; +route 172.20.174.0/27 max 29 as 4242422204; +route 172.22.51.0/24 max 29 as 4242420656; +route 10.134.0.0/16 max 24 as 64525; +route 172.23.186.0/27 max 29 as 4242421360; +route 172.20.204.192/26 max 29 as 4242421049; +route 172.22.137.0/27 max 29 as 4242422137; +route 172.22.122.96/27 max 29 as 4242422995; +route 10.1.0.0/18 max 24 as 64896; +route 172.22.76.208/28 max 29 as 4242421100; +route 172.22.137.64/27 max 29 as 4242422216; +route 10.228.0.0/16 max 24 as 65406; +route 172.20.6.24/29 max 29 as 4242421515; +route 10.55.192.0/18 max 24 as 65003; +route 172.23.89.0/27 max 29 as 4242420604; +route 172.20.238.32/29 max 29 as 4242423652; +route 172.20.164.96/27 max 29 as 4242420092; +route 172.22.101.80/28 max 29 as 4242427877; +route 10.127.8.160/27 max 29 as 4201270007; +route 172.22.252.224/27 max 29 as 4242422424; +route 172.22.180.128/26 max 29 as 4242421210; +route 172.20.58.224/27 max 29 as 4242423904; +route 172.20.14.128/27 max 29 as 4242423224; +route 10.11.112.0/20 max 24 as 64871; +route 172.20.159.128/27 max 29 as 4242420429; +route 172.23.163.32/27 max 29 as 4242420251; +route 172.23.10.0/27 max 29 as 4242421032; +route 10.46.0.0/18 max 24 as 64883; +route 10.127.41.0/24 max 29 as 4201270001; +route 10.127.13.0/24 max 29 as 4201270013; +route 172.21.79.96/27 max 29 as 4242422773; +route 172.23.83.128/25 max 29 as 4242422857; +route 172.20.224.128/26 max 29 as 4242422866; +route 172.20.187.192/27 max 29 as 4242422683; +route 172.20.12.96/27 max 29 as 4242423640; +route 10.252.64.0/18 max 24 as 64899; +route 172.23.235.0/25 max 29 as 76190; +route 172.20.239.128/26 max 29 as 4242423514; +route 172.20.21.32/27 max 29 as 4242423581; +route 172.22.173.0/24 max 29 as 64773; +route 172.22.173.0/24 max 29 as 4242421554; +route 172.21.89.64/27 max 29 as 4242420828; +route 10.55.128.0/18 max 24 as 65002; +route 172.22.230.128/25 max 29 as 4242420020; +route 10.49.0.0/18 max 24 as 64900; +route 172.20.6.224/27 max 29 as 4242421114; +route 172.22.121.0/24 max 29 as 4242423450; +route 172.22.158.144/28 max 29 as 4242423336; +route 172.23.151.128/29 max 29 as 4242429969; +route 172.20.197.184/29 max 29 as 4242421233; +route 10.13.0.0/18 max 24 as 65432; +route 10.109.0.0/16 max 24 as 65527; +route 172.22.137.128/27 max 29 as 4242421208; +route 10.67.0.0/16 max 24 as 64885; +route 172.20.32.96/28 max 29 as 4242420171; +route 172.22.162.0/26 max 29 as 4242422334; +route 172.20.31.64/29 max 29 as 4242421109; +route 172.21.99.0/27 max 29 as 0; +route 10.13.64.0/20 max 24 as 64856; +route 172.21.125.192/28 max 29 as 4242423560; +route 172.20.0.53/32 max 32 as 4242420119; +route 172.20.0.53/32 max 32 as 4242423914; +route 172.23.128.128/26 max 29 as 4242423883; +route 172.20.170.192/27 max 29 as 4242423934; +route 172.22.160.32/28 max 29 as 4242421632; +route 172.22.135.16/28 max 29 as 4242422203; +route 172.20.164.0/26 max 29 as 4242423023; +route 172.20.165.128/26 max 29 as 4242420112; +route 172.20.4.64/27 max 29 as 4242422684; +route 172.22.149.48/28 max 29 as 4242422027; +route 172.20.164.128/26 max 29 as 4242423169; +route 172.23.231.0/26 max 29 as 4242422037; +route 172.22.177.64/28 max 29 as 4242421977; +route 172.23.151.160/28 max 29 as 4242421457; +route 172.22.127.96/27 max 29 as 4242420076; +route 172.21.66.0/27 max 29 as 4242421224; +route 172.23.187.0/24 max 29 as 64633; +route 10.190.0.0/15 max 24 as 65019; +route 10.41.0.0/16 max 24 as 65079; +route 10.48.0.0/16 max 24 as 65251; +route 10.155.0.0/20 max 24 as 65125; +route 172.22.149.192/27 max 29 as 4242423938; +route 172.21.118.0/25 max 29 as 4242420118; +route 172.22.111.0/26 max 29 as 4242420124; +route 172.20.155.32/27 max 29 as 4242423156; +route 172.20.175.32/27 max 29 as 4242420550; +route 172.22.111.112/29 max 29 as 4242420176; +route 172.23.5.0/27 max 29 as 4242423740; +route 172.23.193.128/27 max 29 as 4242421289; +route 172.20.6.64/27 max 29 as 4242421576; +route 172.20.55.192/28 max 29 as 4242422610; +route 172.20.19.32/27 max 29 as 4242423375; +route 172.20.149.16/28 max 29 as 4242420308; +route 172.22.228.0/24 max 29 as 64828; +route 10.21.0.0/16 max 24 as 64780; +route 172.23.163.0/27 max 29 as 4242421200; +route 172.20.149.0/28 max 29 as 4242422550; +route 172.22.128.160/27 max 29 as 4242420225; +route 172.23.169.0/25 max 29 as 4242421230; +route 172.20.173.32/27 max 29 as 4242421542; +route 10.11.128.0/20 max 24 as 64872; +route 172.23.101.0/25 max 29 as 4242422200; +route 172.20.232.96/27 max 29 as 4242421415; +route 10.8.0.0/16 max 24 as 65053; +route 172.20.128.48/28 max 29 as 4242422747; +route 172.21.64.64/27 max 29 as 4242421116; +route 172.20.234.0/26 max 29 as 4242420205; +route 172.22.76.128/27 max 29 as 4242429998; +route 172.22.129.128/27 max 29 as 4242421702; +route 172.22.104.0/24 max 29 as 4242422044; +route 172.23.35.64/26 max 29 as 4242420309; +route 172.23.200.0/24 max 29 as 4242421271; +route 172.22.118.64/27 max 29 as 4242422238; +route 172.21.92.64/27 max 29 as 4242423419; +route 172.20.20.192/27 max 29 as 4242420163; +route 172.20.59.112/29 max 29 as 4242423446; +route 10.127.255.54/32 max 32 as 4201270006; +route 10.127.255.54/32 max 32 as 4242423618; +route 172.20.155.88/29 max 29 as 4242423036; +route 172.22.113.0/24 max 29 as 64713; +route 172.20.177.128/27 max 29 as 4242422992; +route 172.21.70.0/23 max 29 as 4242423158; +route 172.23.199.64/27 max 29 as 4242422016; +route 172.23.119.0/27 max 29 as 4242422727; +route 172.20.159.192/28 max 29 as 4242420775; +route 172.20.188.0/24 max 29 as 4242422369; +route 172.21.67.192/27 max 29 as 4242422092; +route 172.21.117.0/27 max 29 as 4242421010; +route 172.23.163.192/26 max 29 as 4242423941; +route 172.20.190.80/29 max 29 as 4242423926; +route 172.22.122.0/26 max 29 as 4242420180; +route 172.20.159.160/27 max 29 as 4242421709; +route 172.22.129.48/28 max 29 as 4242423486; +route 172.23.33.0/26 max 29 as 4242420803; +route 172.23.104.32/27 max 29 as 4242420416; +route 172.20.28.128/27 max 29 as 4242420216; +route 172.21.64.16/28 max 29 as 4242420835; +route 172.23.132.32/27 max 29 as 4242422772; +route 10.137.0.0/16 max 24 as 65433; +route 172.20.128.192/26 max 29 as 4242420977; +route 172.23.216.192/27 max 29 as 64773; +route 172.21.113.32/27 max 29 as 4242421010; +route 172.20.21.64/27 max 29 as 4242423949; +route 172.23.102.0/23 max 29 as 4242420321; +route 172.23.235.128/25 max 29 as 76190; +route 172.20.4.112/28 max 29 as 4242420194; +route 172.23.63.0/24 max 29 as 4242423006; +route 172.22.169.0/28 max 29 as 4242420131; +route 172.23.42.0/24 max 29 as 64600; +route 172.23.42.0/24 max 29 as 4242420101; +route 172.22.101.224/27 max 29 as 4242423142; +route 10.57.0.0/16 max 24 as 65067; +route 172.20.51.128/27 max 29 as 4242422021; +route 172.20.50.0/26 max 29 as 4242423723; +route 172.20.167.136/29 max 29 as 4242422113; +route 172.20.172.224/27 max 29 as 4242420993; +route 172.21.118.160/28 max 29 as 4242423535; +route 10.15.192.0/20 max 24 as 64891; +route 172.23.151.144/28 max 29 as 4242422678; +route 172.20.154.64/28 max 29 as 4242423221; +route 10.44.0.0/18 max 24 as 64882; +route 172.22.114.96/28 max 29 as 4242420228; +route 172.20.172.176/29 max 29 as 4242423999; +route 172.22.129.0/28 max 29 as 4242421702; +route 10.143.0.0/18 max 24 as 65489; +route 172.20.30.0/24 max 29 as 4242423042; +route 172.20.135.200/29 max 29 as 4242420448; +route 172.20.162.0/29 max 29 as 4242421702; +route 10.55.64.0/18 max 24 as 65001; +route 172.20.15.32/29 max 29 as 4242423766; +route 172.20.15.40/29 max 29 as 4242422131; +route 172.22.164.0/23 max 29 as 56662; +route 172.20.128.40/29 max 29 as 4242422878; +route 172.20.180.96/27 max 29 as 4242423345; +route 172.21.65.0/27 max 29 as 4242420778; +route 172.20.207.64/27 max 29 as 4242421113; +route 172.23.45.0/24 max 29 as 4242423342; +route 172.21.67.232/29 max 29 as 4242422093; +route 172.22.137.64/29 max 29 as 4242421149; +route 172.20.29.128/27 max 29 as 4242422405; +route 172.23.184.0/23 max 29 as 4242420184; +route 172.20.148.72/29 max 29 as 4242423402; +route 172.20.4.96/29 max 29 as 4242421722; +route 172.23.151.0/25 max 29 as 4242422125; +route 172.22.157.0/27 max 29 as 4242422022; +route 172.22.111.192/27 max 29 as 4242423339; +route 172.20.195.64/28 max 29 as 4242421221; +route 172.23.99.128/26 max 29 as 4242420731; +route 172.20.162.64/26 max 29 as 4242421588; +route 172.20.143.16/28 max 29 as 4242423569; +route 172.22.233.0/24 max 29 as 64833; +route 10.1.128.0/19 max 24 as 64864; diff --git a/roa_dn42_v6.conf b/roa_dn42_v6.conf new file mode 100644 index 0000000..2fe3663 --- /dev/null +++ b/roa_dn42_v6.conf @@ -0,0 +1,1263 @@ +# +# dn42regsrv ROA Generator +# Last Updated: 2021-04-15 04:54:47.949416106 +0000 UTC m=+8791456.197945829 +# Commit: 0ee2f54980bf3af46203b1badfd73de889481ae2 +# +route fd42:1919:810::/48 max 48 as 4242421288; +route fda1:cb1b:7582::/48 max 48 as 4242421602; +route fdb8:d95e:191a::/48 max 48 as 4242422866; +route fd73:111:e824::/48 max 64 as 65152; +route fd4c:2535:91::/48 max 64 as 4242422232; +route fd00:b709::/48 max 64 as 4242421103; +route fdca:abcd:58ca:affe::/64 max 64 as 64856; +route fd42:5943:cafe::/48 max 64 as 4242423308; +route fdfd:a97f:d939:689f::/64 max 64 as 4242420186; +route fd25:1952:c72e::/48 max 64 as 64876; +route fd54:31d8:beeb::/48 max 64 as 4242420798; +route fd6d:3f59:4c68::/48 max 64 as 4242423878; +route fd6d:3f59:4c68::/48 max 64 as 4242423878; +route fd11:4514:1937::/48 max 48 as 4242421937; +route fdfb:9a90:fa25::/48 max 64 as 4242423961; +route fd23:42:ac16::/56 max 64 as 64616; +route fd55:caa:bde3::/64 max 64 as 64654; +route fd55:caa:bde3::/64 max 64 as 4242422718; +route fd55:caa:bde3::/64 max 64 as 4242422480; +route fd80:9527::/48 max 64 as 4242421010; +route fd42:a551::/48 max 64 as 4242421554; +route fdd7:e654:c010::/48 max 64 as 4242422424; +route fda0:747e:ab29:7406::/64 max 64 as 65100; +route fd1b:be18:a185::/48 max 64 as 4242422378; +route fd1c:f73c:a945:2000::/52 max 64 as 4242422700; +route fd3b:1ac0:dc97:ccd::/64 max 64 as 4242422379; +route fd3f:e6b2:8a3e::/48 max 64 as 4242428989; +route fd4b:bae2:2594::/48 max 64 as 4242423059; +route fdcf:205f:3b98::/48 max 48 as 4242423399; +route fd3b:ac17:d710::/48 max 64 as 4242423481; +route fdea:1d13:b804::/48 max 64 as 4242420149; +route fdca:ffee:ffda::/48 max 64 as 65038; +route fdca:ffee:ffda::/48 max 64 as 4242420101; +route fd71:7ce:bfbb::/48 max 64 as 4242421190; +route fd42:ca7:3395::/48 max 48 as 4242423395; +route fdc7:d436:6765::/48 max 48 as 4242422340; +route fd42:6cef:5f39::/48 max 64 as 4242422747; +route fd91:de6e:e51d::/48 max 64 as 4242421169; +route fd92:8ef5:a5db::/48 max 64 as 4242422018; +route fdae:e2d8:34a1::/48 max 64 as 4242420756; +route fd5c:f0f:39fc::/48 max 64 as 4242423158; +route fd42:9478::/32 max 64 as 4242422548; +route fd88:4903:4b9f:d66f::/64 max 64 as 4242420017; +route fd98:308:41fc::/48 max 48 as 4242420308; +route fdc0:bc88:be::/48 max 64 as 4242421811; +route fd00:deca:fba0::/44 max 64 as 4242423815; +route fddd:118b:5dc0::/48 max 64 as 4242423146; +route fd37:b4dc:4b1e::/48 max 64 as 65037; +route fd07:d34:7969::/48 max 64 as 4242423618; +route fdfa:8c85:5ca3::/48 max 64 as 4242420416; +route fd10:a433:4b7d::/48 max 64 as 4242421826; +route fde6:36fc:c985::/64 max 64 as 65527; +route fd13:7744:b08d::/48 max 48 as 4242421359; +route fd42:b50d:baad::/48 max 64 as 4242420775; +route fd42:2950:201::/48 max 64 as 4242422950; +route fd42:2950:201::/48 max 64 as 202265; +route fd42:350a:700b::/48 max 48 as 4242420642; +route fd42:4242:2201::/48 max 64 as 4242422201; +route fd27:2313:eee5::/48 max 64 as 4242420342; +route fd80:8787::/48 max 64 as 4242421010; +route fd88:c7e:c7b7::/48 max 48 as 4242420112; +route fd13:b4dc:4b1e::/64 max 64 as 65052; +route fdbd:8e82:8b88::/48 max 64 as 4242421032; +route fd79:300d:6056::/48 max 64 as 4242421271; +route fd71:3840:a60a::/48 max 64 as 4242420771; +route fdab:896d:d34::/48 max 64 as 4242420093; +route fdb5:78b:64cc::/48 max 64 as 65181; +route fd42:10e3:10e8::/48 max 48 as 4242420853; +route fd68:a3ea:7c9a::/48 max 48 as 4242423767; +route fd42:8437:8437::/48 max 64 as 4242423847; +route fd00:801:3020::/44 max 64 as 4242420656; +route fd00:114:514::/48 max 64 as 4242420916; +route fdb6:2f8b:4f0f::/48 max 64 as 4242421333; +route fd7c:3727:9426::/48 max 64 as 4242421289; +route fd10:127:5f37:59df::/64 max 64 as 4201270000; +route fd4e:f2d7:88d2:fffb::/64 max 64 as 64899; +route fdee:1999:1005::/48 max 64 as 4242421069; +route fd94:a80f:cd40::/48 max 48 as 4242420312; +route fdd3:8430:5ba1::/48 max 48 as 4242420380; +route fd6c:c6ed:38d5::/48 max 64 as 4242423916; +route fdd8:2631:13ac::/48 max 64 as 4242421709; +route fd23:2333:2333::/48 max 64 as 4242420741; +route fddf:bf7:80::/48 max 64 as 64859; +route fd9b:37f7:faf7::/48 max 48 as 4242423012; +route fdcf:8538:9ad5::/48 max 64 as 4242423914; +route fd10:127:ffff:53::/64 max 64 as 4201270006; +route fd10:127:ffff:53::/64 max 64 as 4242423618; +route fd62:7eab:c85f::/48 max 64 as 4242422681; +route fd42:e621::/48 max 64 as 4242421488; +route fd2a:edfd:6bae::/48 max 64 as 4242420750; +route fd12:ee00:9898::/48 max 64 as 4242423640; +route fdbb:35ff:aa4e::/48 max 64 as 4242422891; +route fd01:374d:4ddd::/48 max 48 as 4242423869; +route fd12:f590:c38c::/48 max 48 as 4242421091; +route fdfc:694e:234f::/48 max 48 as 4242422904; +route fd66:b99:c0da::/48 max 48 as 17080; +route fd10:127:53:53::/64 max 64 as 4201270006; +route fd10:127:53:53::/64 max 64 as 4242423618; +route fd42:172:2026::/48 max 64 as 4242422100; +route fd23:42:c3d2:500::/56 max 64 as 64699; +route fdfd:468b:bab6::/48 max 48 as 4242423953; +route fdc5:30f7:af0a::/48 max 64 as 4242421097; +route fd10:127:7:3000::/52 max 64 as 4201270007; +route fd21:b4dc:4b00::/40 max 64 as 65019; +route fdd0:17ea:3a52::/48 max 64 as 4242420194; +route fd42:fe56:7891::/48 max 64 as 4242420191; +route fd42:beeb:beeb::/48 max 64 as 4242422342; +route fdfd:dead:c0d3::/48 max 64 as 4242421113; +route fd95:ea42:7f82::/48 max 48 as 4242421224; +route fd42:d3f7:97fa::/48 max 48 as 4242423240; +route fd42:dead:b33f::/48 max 64 as 4242423807; +route fd74:40ee:b38a::/48 max 64 as 4242423342; +route fd40:dead:beaf::/48 max 64 as 4242420066; +route fded:727b:6c7a::/48 max 64 as 4242421939; +route fd42:f1c1:b00c::/48 max 64 as 4242420204; +route fd3e:d065:66fd::/48 max 64 as 4242420721; +route fd65:a890:5050::/48 max 64 as 4242423602; +route fd30:fe56:7891::/48 max 48 as 4242421228; +route fd5c:adc5:16b1::/48 max 48 as 4242423323; +route fd10:127:7:4000::/50 max 64 as 4201270007; +route fd42:7331:a07c::/48 max 64 as 4242423230; +route fd7b:860b:8877::/48 max 64 as 64781; +route fd42:abcd:ef00::/48 max 64 as 4242421819; +route fdda:eafa:15ce::/48 max 64 as 4242420567; +route fd42:a:b::/48 max 64 as 64719; +route fd23:1d71:dd17::/48 max 48 as 4242423929; +route fd72:9b7f:e932::/48 max 64 as 4242420140; +route fd40:d8e8:5088::/48 max 48 as 4242422644; +route fd9d:d085:ba76::/48 max 48 as 4242422833; +route fd05:3aca:c3a0:aaaa::/64 max 64 as 0; +route fd42:c001:c0de::/48 max 64 as 4242423355; +route fd20:bdda:5df0::/48 max 64 as 4242421976; +route fdd3:e145:e3cc::/48 max 64 as 4242420193; +route fd42:c01d:beef::/48 max 64 as 4242421191; +route fdd0:448d:1447::/48 max 64 as 4242422021; +route fde8:21c6:9d82::/48 max 64 as 65433; +route fd8f:fcd6:b5b3::/48 max 64 as 4242421656; +route fdef:affe:edda::/48 max 64 as 65489; +route fdb2:b297:900d::/48 max 48 as 4242422024; +route fda5:ac02:e120::/48 max 48 as 4242422369; +route fd32:b22c:b2ea::/48 max 48 as 4242422115; +route fd75:fd19:617d::/48 max 48 as 4242423740; +route fd41:1441:1441::/48 max 64 as 4242421441; +route fd42:9564:c802::/48 max 64 as 4242421055; +route fd01:470:7d4c::/48 max 64 as 64600; +route fdc8:f5a0:6499::/48 max 64 as 4242423036; +route fd10:127:233:1c3a::/64 max 64 as 141706; +route fd00:67a2:7d02::/48 max 64 as 4242422462; +route fdd4:42d8:c154::/48 max 64 as 4242422801; +route fdd7:e654:c018::/48 max 64 as 4242422424; +route fded:8ea7:f687::/48 max 64 as 4242420225; +route fd00:801:3070::/44 max 64 as 4242420656; +route fd96:399d:d7bd::/48 max 48 as 46997; +route fdff:23:42::/48 max 64 as 4242423042; +route fd9d:5e08:b9f9:c3::/64 max 64 as 64654; +route fd9d:5e08:b9f9:c3::/64 max 64 as 4242422718; +route fd9d:5e08:b9f9:c3::/64 max 64 as 4242422480; +route fd94:e773:5413::/48 max 64 as 4242421008; +route fd18:18d9:adde::/48 max 64 as 4242421233; +route fd42:dead:d00d::/48 max 64 as 4242422727; +route fd63:672f:38e7::/48 max 64 as 4242422092; +route fdec:c0f1:afda::/64 max 64 as 65115; +route fd32:54d6:1962:ad35::/64 max 64 as 4242420017; +route fda6:2474:15a4::/48 max 48 as 4242423078; +route fd2e:56cf:1ec2::/48 max 64 as 4242423225; +route fd42:9942:e15b::/56 max 64 as 4242422161; +route fd8e:1889:b440::/48 max 48 as 4242423266; +route fd08:66b0:3114:56dd::/64 max 64 as 4242423938; +route fd17:149a:85f9::/48 max 64 as 4242423973; +route fd42:b10:1118::/48 max 64 as 4242420118; +route fd43:5602:29bd::/48 max 64 as 65024; +route fd42:22:168::/48 max 64 as 64768; +route fd66:5dc9:d084::/48 max 48 as 4242420299; +route fddf:4811:38a0::/48 max 48 as 4242422257; +route fd97:b8af:629c:7d45::/64 max 64 as 4242420017; +route fd42:5ee3:c44b::/48 max 64 as 4242420125; +route fd06:8187:fb00::/40 max 64 as 65026; +route fdf3:bd28:d90b::/48 max 48 as 4242420215; +route fdb2:48f2:8ac5::/48 max 48 as 4242422848; +route fd23:7764:3e32::/48 max 64 as 4242423265; +route fdf8:69c9:134::/48 max 64 as 4242420904; +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 4242423270; +route fdf8:52a8:1314::/48 max 48 as 4242421180; +route fd42:15:42::/48 max 64 as 4242421542; +route fd00:7882:4abb::/48 max 64 as 4242420211; +route fd0e:3d8c:2dd6:8e6e::/64 max 64 as 4242420651; +route fd56:5799:d8f6:1b75::/64 max 64 as 64737; +route fdac:ebc8:c8ba::/48 max 48 as 4242421296; +route fd00:f100:fe00::/48 max 64 as 4242422282; +route fdff:b87d:f5b0::/48 max 48 as 4242423605; +route fd56:4902:eca0::/48 max 48 as 4242422574; +route fdfc:2689:117c::/48 max 64 as 4242421301; +route fd3d:4e14::/32 max 64 as 4242421339; +route fd42:1a2b:de57::/48 max 64 as 4242422454; +route fd3b:ba37:f906::/60 max 64 as 4242420257; +route fd6d:a5fa:383c::/48 max 48 as 4242423962; +route fd42:fa76:1110::/48 max 64 as 4242421189; +route fdde:dead:beef::/48 max 48 as 4242421555; +route fd42:1b5:1b5::/48 max 64 as 4242423904; +route fd5b:d226:9706::/48 max 64 as 4242420153; +route fd06:e881:1300::/44 max 64 as 4242420842; +route fd09:d32f:5a03::/48 max 64 as 4242420505; +route fd94:3e63:c202::/48 max 64 as 4242423238; +route fda4:1721:8450::/48 max 64 as 65200; +route fdee:90fc:cafe::/48 max 64 as 4242423738; +route fd42:affe:face::/48 max 64 as 4242423889; +route fd95:2226:2153::/48 max 64 as 4242420154; +route fd42:d42:2706::/48 max 64 as 4242422600; +route fd42:6176:65::/48 max 48 as 4242420669; +route fdd9:cecf:b296::/48 max 64 as 4242423670; +route fdf4:71a1:fc81::/48 max 64 as 4242420304; +route fd70:96c9:ef26::/48 max 64 as 4242420077; +route fd7c:9293:9293::/48 max 48 as 4242421256; +route fd1b:7f7d:dd55::/48 max 64 as 4242420045; +route fd42:4399:7213::/48 max 64 as 4242423127; +route fdef:f20f:1337:cafe::/64 max 64 as 65190; +route fd42:192:cafe::/48 max 64 as 4242420192; +route fd50:9b3b:9cd6::/48 max 48 as 4242421227; +route fdf0:e6e6:b56::/48 max 48 as 4242420617; +route fd18:18d9:adde:f000::/52 max 64 as 4242421233; +route fd48:f77d:8142::/48 max 64 as 4242423328; +route fd10:127:10::/48 max 64 as 4201270010; +route fd56:b4dc:4b1e::/48 max 64 as 65037; +route fd00:801:30f0::/44 max 64 as 4242420656; +route fd35:eeee:eeee::/48 max 64 as 4242422006; +route fd42:4242:2233::/48 max 64 as 4242422233; +route fd2c:3214:3214::/48 max 64 as 4242423214; +route fd37:93a6:ed8f::/48 max 64 as 64827; +route fd42:4242:64::/48 max 64 as 4242420064; +route fd9b:8277:c31a::/48 max 64 as 4242423320; +route fd42:23:d3::/48 max 64 as 4242420075; +route fd13:ae3a:9022::/48 max 48 as 4242421043; +route fd42:d447:775c::/48 max 48 as 4242421070; +route fdca:88bb:ba3a::/48 max 48 as 4242420677; +route fda6:9506:1d5::/48 max 64 as 4242422541; +route fda6:9506:1d5::/48 max 64 as 4242422545; +route fded:fd48:3355::/48 max 48 as 4242423765; +route fd42:beef:dead::/48 max 64 as 4242420525; +route fd62:77fb:94bf::/48 max 64 as 4242423934; +route fd12:dbe1:d36c::/48 max 48 as 4242422843; +route fd92:2dff:d232::/48 max 64 as 64861; +route fd42:d42:d42:54::/64 max 64 as 4242420119; +route fd42:d42:d42:54::/64 max 64 as 4242423914; +route fd4f:c7fd:f1ea::/48 max 48 as 4242423883; +route fd96:ac77:1286::/48 max 64 as 4242422231; +route fd1d:62fd:3f4c:a247::/64 max 64 as 4242420017; +route fd65:f4d8:5327::/48 max 48 as 4242420969; +route fdfb:4242:e10d::/48 max 64 as 4242420115; +route fdc8:200e:654a::/48 max 64 as 4242423854; +route fdee:5477::/48 max 64 as 4242420527; +route fdb5:48f5:d278::/48 max 64 as 4242423156; +route fd42:c0de:6a6d::/48 max 64 as 4242423782; +route fdef:f30f:1337:cafe::/64 max 64 as 65190; +route fdfc:bdcd:a880::/48 max 48 as 4242423112; +route fd10:127:1919::/48 max 64 as 4201270003; +route fd10:127:13::/48 max 64 as 4201270013; +route fdc9:aa4d:b87c::/48 max 64 as 4242420646; +route fd89:35db:fc1::/63 max 64 as 4242420604; +route fdf5:b5b4:ae1a::/48 max 64 as 4242422226; +route fd8e:898d:caa3::/48 max 64 as 4242422044; +route fd01:470:1989::/64 max 64 as 4242421989; +route fd1c:f73c:a945:1000::/52 max 64 as 4242422700; +route fdcf:de54:13ef::/48 max 64 as 4242421508; +route fdfd:b19:7175:babe::/64 max 64 as 4242421110; +route fdfd:beef:beef:2::/64 max 64 as 4242420156; +route fd42:4242:2499::/48 max 64 as 4242422499; +route fdb3:4cc3:3bfb::/48 max 64 as 4242422225; +route fdb3:d376:9939::/48 max 64 as 64712; +route fd42:23:149::/48 max 64 as 4242420123; +route fd42:4992:6b6f::/48 max 64 as 4242428202; +route fd42:3103:5bca::/48 max 64 as 4242423310; +route fd42:0:f::/48 max 64 as 4242420991; +route fd22:cf08:697b::/48 max 48 as 4242421514; +route fd42:7373:7373::/48 max 64 as 4242423733; +route fd1c:f73c:a945:4000::/52 max 64 as 4242422700; +route fdb1:e13c:31ce::/48 max 64 as 4242421552; +route fdad:850e:9f6a:9cb3::/64 max 64 as 4242420190; +route fd00:801:3010::/44 max 64 as 4242420656; +route fd2e:b71f:7983::/48 max 48 as 4242422752; +route fd3c:99a3:21fb::/48 max 64 as 4242421942; +route fd40:aac4:93b0::/48 max 48 as 4242420216; +route fd1b:4ad0:c526::/48 max 64 as 4242423759; +route fdee:ac14:e700::/48 max 48 as 4242420343; +route fd2c:c87d:c2e::/48 max 64 as 4242421204; +route fd42:2606:32f4::/48 max 64 as 206633; +route fd18:3ab6:2508::/48 max 48 as 4242422512; +route fda0:747e:ab29:cafe::/64 max 64 as 65078; +route fd3d:714a:d119::/48 max 64 as 4242423113; +route fddf::/48 max 64 as 65064; +route fd00:801:30d0::/44 max 64 as 4242420656; +route fddc:3293:81a4::/48 max 64 as 4242422515; +route fd0b:4340:a0::/48 max 48 as 205532; +route fd10:127:233:1c3c::/64 max 64 as 141706; +route fd00:1953:615::/48 max 64 as 4242422761; +route fd42:badc:ab1e:903::/64 max 64 as 4242422305; +route fdf4:9abf:8175::/48 max 64 as 4242422236; +route fd6e:cab2:576b::/48 max 48 as 4242421155; +route fd42:8a73:3fbb::/48 max 64 as 4242420612; +route fd69:5611:6790::/48 max 48 as 4242420182; +route fdc8:dc88:ee11::/48 max 64 as 4242423088; +route fdc8:dc88:ee11::/48 max 64 as 140936; +route fdc8:dc88:ee11::/48 max 64 as 38173; +route fd01:67c:2ed8::/48 max 64 as 65038; +route fd6e:4d9b:686e::/48 max 64 as 4242423033; +route fdfd:face:4ace:1::/64 max 64 as 4242422050; +route fd34:afbb:3200::/48 max 64 as 4242421207; +route fde7:32ae:ee77::/48 max 64 as 4242422777; +route fd7e:79ee:a1ca::/48 max 64 as 4242422387; +route fdf7:bca:c983::/48 max 64 as 4242421518; +route fdc3:10cd:ae9c::/48 max 64 as 4242420789; +route fdfd:dead:c0de::/48 max 64 as 4242421230; +route fd42:172:23:255::/64 max 64 as 4242420255; +route fddf:51f8:5744::/48 max 64 as 4242421145; +route fd4e:adda:1964:e293::/64 max 64 as 4242420017; +route fd42:d42:d42:53::/64 max 64 as 64737; +route fd42:d42:d42:53::/64 max 64 as 4242422601; +route fd23:9fed:1099::/48 max 64 as 4242422816; +route fd42:f61:e12::/48 max 64 as 4242420235; +route fd00:aaaa:256::/48 max 64 as 4242420117; +route fd9e:e609:dde2::/48 max 48 as 4242422251; +route fd86:b4dc:4b1e::/48 max 64 as 65037; +route fd7b:9886:1c8c::/48 max 64 as 4242423404; +route fddd:20c2:cc1c::/48 max 64 as 4242423936; +route fda0:747e:ab29:2241::/64 max 64 as 65111; +route fd3f:a1f1:54ed::/48 max 64 as 4242422980; +route fdf7:f511:d0ce::/48 max 64 as 4242420560; +route fdc9:9999:9999:9900::/64 max 64 as 4242420199; +route fd42:64:713::/48 max 64 as 64713; +route fde0:93fa:7a0::/48 max 64 as 0; +route fd42:cd49:2dd2::/48 max 64 as 4242420418; +route fd23:ff11:11ff::/48 max 64 as 4242423255; +route fdef:6fb6:592d::/48 max 64 as 4242423189; +route fd42:4242:1375::/48 max 64 as 4242421375; +route fd00:feed:bec::/48 max 64 as 4242420802; +route fdcd:3682:1c17::/48 max 64 as 4242422002; +route fd02:152e:d070::/48 max 48 as 4242421719; +route fdd9:be:a2a::/48 max 48 as 4242421177; +route fd74:f654:a9c6::/48 max 48 as 4242421257; +route fd70:3377::/48 max 64 as 4242423377; +route fd41:9805:7b69:2000::/51 max 64 as 4242420845; +route fd41:9805:7b69:2000::/51 max 64 as 4242420846; +route fd41:9805:7b69:2000::/51 max 64 as 4242420847; +route fd00:65a8:93a4::/48 max 64 as 65142; +route fd23:dead:beef::/48 max 64 as 65432; +route fd42:217:cafe::/48 max 48 as 4242420217; +route fdcc:2a2d:646::/48 max 64 as 4242422402; +route fd00:1444:1821::/48 max 64 as 4242422914; +route fdbb:1126:ce06::/48 max 64 as 4242423140; +route fde7:76fd:7444::/48 max 64 as 4242420157; +route fd23:9cd1:20a5::/48 max 64 as 4242421335; +route fd23:a2b2:9527::/48 max 64 as 4242421223; +route fdc3:64db:4689::/48 max 48 as 4242423375; +route fdf4:2331:fa09::/48 max 48 as 4242420197; +route fda5:2522:729::/48 max 64 as 4242423917; +route fdc8:c633:5319::/48 max 64 as 4242421588; +route fdc9:83c1:d0ce::/48 max 48 as 4242422526; +route fd10:127:3262::/64 max 64 as 213262; +route fdb4:acab:1312::/48 max 48 as 4242422131; +route fdec:9e13:da5d::/48 max 64 as 4242423090; +route fd42:fdac:1111::/48 max 64 as 4242421404; +route fd10:fcac:b8f2::/48 max 64 as 4242421918; +route fd42:1234:1997::/48 max 64 as 4242421997; +route fd42:2605:5062::/48 max 64 as 4242422605; +route fd3b:8e88:5c2e::/48 max 64 as 4242420657; +route fd42:667c:6ad2::/48 max 64 as 4242420113; +route fda5:f049:ddcc::/48 max 48 as 4242420196; +route fd7c:55ea:fd3b::/48 max 64 as 4242422520; +route fdf4:83f1:6f4f::/48 max 48 as 4242420515; +route fdd9:78f:427::/48 max 64 as 4242422019; +route fd00:801:30e0::/44 max 64 as 4242420656; +route fda0:bbe1:38d::/48 max 64 as 4242420160; +route fd86:82d7:b2e1::/48 max 48 as 4242422668; +route fda0:add0:dec::/48 max 64 as 4242420235; +route fdca:ffee:ffa::/48 max 64 as 65050; +route fd42:ab17:ab17::/48 max 64 as 4242420822; +route fd42:4242:3920::/48 max 48 as 4242423920; +route fd42:dead:666::/48 max 64 as 4242422304; +route fd75:7a1:15b1::/48 max 64 as 4242423002; +route fdf3:ff62:1c72::/48 max 48 as 4242420799; +route fdbe:14a:7607::/48 max 48 as 4242423419; +route fd42:d42:542::/48 max 64 as 4242423942; +route fdea:dead:face::/48 max 64 as 4242420130; +route fdf8:34f6:4f6f::/48 max 64 as 4242420278; +route fdfa:7906:8262::/48 max 64 as 4242423947; +route fdcc:8b7e:4593::/48 max 48 as 4242421237; +route fd42:23:42::/48 max 64 as 64600; +route fd42:23:42::/48 max 64 as 4242420101; +route fdfd:6b61:7431::/48 max 64 as 4242421994; +route fd00:f100:fe00:2e10::/64 max 64 as 4242422282; +route fda9:26a9:1c47::/48 max 64 as 4242421050; +route fd5e:f77b:309f::/48 max 64 as 64634; +route fd10:127:7:c000::/51 max 64 as 4201270007; +route fd42:0:e::/48 max 64 as 4242420990; +route fd59:7dca:fcef::/48 max 48 as 4242420946; +route fd10:127:41::/48 max 64 as 4201270001; +route fd42:0:d::/48 max 64 as 4242420989; +route fda9:b90:2fab::/48 max 48 as 4242422619; +route fd42:465:1337::/48 max 64 as 4242420131; +route fd53:a4f3:7e0e::/48 max 64 as 4242420086; +route fd31:dfc3:e7d9::/48 max 64 as 4242420447; +route fd00:191e:1470::/48 max 48 as 4242421470; +route fd79:f856:16d9:8882::/64 max 64 as 4242420017; +route fd07:369:6502::/48 max 48 as 4242423468; +route fd38:cfa3:7091::/48 max 48 as 4242423856; +route fdef:1701:b5ee::/48 max 64 as 64875; +route fd00:801:3000::/44 max 64 as 4242420656; +route fd39:afba:d250::/48 max 48 as 4242423341; +route fd42:1441:1441::/48 max 64 as 4242421441; +route fd9e:5312:a3b3::/48 max 48 as 4242423704; +route fd4f:4e49:4f4e::/48 max 48 as 4242423847; +route fd41:3dc2:f135::/48 max 64 as 4242421118; +route fd42:fd6b:774e::/48 max 64 as 4242423306; +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 fd7b:7879:70d5::/48 max 48 as 4242423114; +route fd42:fe2c:d179::/48 max 64 as 4242422027; +route fd86:4169:1552::/48 max 48 as 4242420823; +route fd46:aa43::/32 max 64 as 64613; +route fd2c:3214:3214:2::/64 max 64 as 4242423214; +route fd42:39fc:2ad::/48 max 64 as 4242423949; +route fd78:62f:d291:3f33::/64 max 64 as 4242421977; +route fddf:ebfd:a801:2175::/64 max 64 as 64780; +route fdca:55e1:baca:baca::/64 max 64 as 65514; +route fd91:8ef5:a5db::/48 max 64 as 4242423298; +route fd08:a855:d4c7::/48 max 64 as 4242423027; +route fd8f:a905:397::/48 max 48 as 4242421423; +route fd83:8d95:230b::/48 max 64 as 4242423569; +route fd4b:9921:47d0::/48 max 48 as 4242420550; +route fd76:b436:28bc::/48 max 64 as 4242420003; +route fd10:127:aa66::/48 max 64 as 211876; +route fd10:127:aa66::/48 max 64 as 4201270021; +route fd10:127:aa66::/48 max 64 as 4242421876; +route fd42:f10:a15::/48 max 64 as 4242422100; +route fd01:5e19:11e1::/48 max 64 as 4242422506; +route fd44:ccc3:5454::/48 max 48 as 4242423535; +route fda3:db3f:c50d::/48 max 64 as 4242420145; +route fd5d:ff5f:269f::/48 max 48 as 4242420320; +route fd59:b1b7:1d1f::/48 max 64 as 65055; +route fd42:830:420::/48 max 64 as 4242420203; +route fda7:a975:bfc2::/48 max 64 as 4242420469; +route fd67:1c85:3021:27c0::/64 max 64 as 4242420097; +route fd93:feae:ea42::/48 max 48 as 4242423822; +route fdea:a15a:77b9::/48 max 64 as 64737; +route fd00:6666::/48 max 64 as 4242420803; +route fdf4:e251:75d9::/48 max 48 as 4242423271; +route fd71:fd89:c4f0:6ea6::/64 max 64 as 4242420017; +route fd00:bad:b00b::/64 max 64 as 4242420467; +route fd22:7135:7c82::/48 max 48 as 4242421017; +route fddf:375c:489e::/48 max 64 as 4242423566; +route fd51:cc31:30f5::/48 max 64 as 4242421642; +route fdb2:e864:673e::/48 max 64 as 4242423152; +route fd01:2f40:3d1d::/48 max 64 as 4242421201; +route fd3b:1784:edbb::/48 max 64 as 4242423055; +route fd42:4242:4200::/40 max 64 as 4242423991; +route fd71:cfc3:9259:6935::/64 max 64 as 4242423859; +route fd00:feed:ca7::/48 max 64 as 4242422688; +route fd59:a9db:1a5e:670::/64 max 64 as 4242420980; +route fd88:8888:8888::/48 max 48 as 4242420520; +route fdfc:3e4f:f3c0::/48 max 64 as 4242420020; +route fde7:56e7:ead3::/48 max 64 as 4242420246; +route fdf1:3daf:c397::/48 max 64 as 4242421269; +route fd00:490:cb2d::/52 max 64 as 64833; +route fd4e:f2d7:88d2:fffd::/64 max 64 as 64899; +route fd13:5940::/48 max 64 as 4242423064; +route fdfc:35df:d875::/48 max 48 as 4242421592; +route fd76:d330:272b::/48 max 48 as 4242423925; +route fda0:23:1f05:1::/64 max 64 as 4242423514; +route fd42:4242:17::/48 max 64 as 4242420017; +route fd00:801:3030::/44 max 64 as 4242420656; +route fdfc:ba7c:ca1::/48 max 64 as 64871; +route fde3:a7e3:7957::/48 max 64 as 4242423004; +route fd42:b10:1010::/48 max 64 as 4242422742; +route fd10:127:ee11::/48 max 64 as 38173; +route fd10:127:ee11::/48 max 64 as 140936; +route fd10:127:ee11::/48 max 64 as 4242423088; +route fda0:747e:ab29:e054::/64 max 64 as 64869; +route fdb8:90b8:5ba6:9d0d::/64 max 64 as 4242420406; +route fdbe:aea3:9424::/48 max 64 as 4242422137; +route fd42:e9ad:e297::/48 max 64 as 4242421369; +route fdd6:aff6:5f6f::/48 max 64 as 76198; +route fd42:d42:d42:6667::/64 max 64 as 64600; +route fd42:d42:d42:6667::/64 max 64 as 4242420101; +route fddc:5f35:fd47::/48 max 64 as 4242421911; +route fd43:6d1:3ee2::/48 max 64 as 4242420661; +route fd42:1707:1707::/48 max 64 as 4242421707; +route fd39:1c:2c1b::/48 max 64 as 4242422439; +route fdde:1e7e::/48 max 48 as 4242420707; +route fdf1:f170:b834::/48 max 64 as 4242420159; +route fd36:92df:6a62:9df2::/64 max 64 as 4242422575; +route fd42:4992:6b6d::/48 max 64 as 4242428200; +route fd71:2bc7:20dc::/48 max 48 as 4242423964; +route fd16:abc0:dffd::/48 max 64 as 4242420530; +route fd23:698f:1b00::/47 max 64 as 4242422180; +route fdef:5d0d:ee12::/48 max 48 as 64738; +route fd42:1130::/48 max 64 as 4242421130; +route fd8f:14c7:d318::/48 max 64 as 64889; +route fd93:2559:f2ef::/48 max 64 as 4242420053; +route fd42:dee:dee::/48 max 64 as 4242423424; +route fd7a:6aba:ee00::/48 max 48 as 4242421974; +route fd91:7b3d:8d19::/48 max 48 as 4242420524; +route fd01:470:f129::/48 max 64 as 4242422299; +route fd23:42:c3d2::/56 max 64 as 64698; +route fd42:128:26::/48 max 64 as 4242420128; +route fdc3:10cd:ae9e::/48 max 64 as 4242420789; +route fdd0:c468:8eb1::/48 max 64 as 4242423843; +route fd55:3eeb:fd5f::/48 max 64 as 4242420229; +route fd42:2935:3546::/48 max 64 as 4242422935; +route fd42:23:148::/48 max 64 as 76140; +route fd42:21:7::/48 max 64 as 4242422107; +route fda0:747e:ab29:7407::/64 max 64 as 64893; +route fdb4:4911:ccf8::/48 max 64 as 4242423506; +route fd5f:b56c:2823::/48 max 64 as 4242422678; +route fd42:fd42:dead::/48 max 48 as 4242420280; +route fd56:9016:dca5::/48 max 64 as 4242423773; +route fd00:4242:3348::/48 max 64 as 4242423348; +route fd63:1e39:6f73::/48 max 64 as 64697; +route fd63:1e39:6f73::/48 max 64 as 64766; +route fd15:1825:72::/48 max 64 as 4242421825; +route fd32:c1ee:db11::/48 max 64 as 4242420148; +route fd00:bad:c0de::/48 max 64 as 4242420206; +route fd42:4242:4242::/48 max 64 as 4242421124; +route fdfd:3ba:342d::/48 max 48 as 4242421239; +route fdff:8695:18b7::/48 max 48 as 203099; +route fda3:b3ab:126d::/48 max 48 as 4242423217; +route fd0f:8db3:d50a::/64 max 64 as 65046; +route fd42:4242:1842::/48 max 64 as 4242421842; +route fdae:e3cd:11d9::/48 max 48 as 4242420807; +route fd42:ccc:da::/48 max 64 as 4242420101; +route fd42:8700:90::/48 max 64 as 4242422061; +route fd7e:8af4:39dd::/48 max 64 as 4242422205; +route fd42:2247::/48 max 64 as 4242422247; +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 211876; +route fd16:fb99:7f9b::/48 max 48 as 4242422227; +route fdf0:9bb:7815::/48 max 48 as 4242420359; +route fd81:c3c8:e9a2::/48 max 48 as 4242421530; +route fd81:edb3:71d8::/48 max 48 as 4242422953; +route fd8f:e080:bfad::/48 max 48 as 4242423337; +route fd05:3aca:c3a0:a2c1::/64 max 64 as 0; +route fda7:fb2b:4733::/48 max 48 as 4242421848; +route fd10:127:308::/48 max 64 as 4242420308; +route fd42:c0de:ca7::/48 max 64 as 4242420208; +route fd03:7e46:2707::/48 max 64 as 4242421928; +route fdef:f00f:1337:cafe::/64 max 64 as 65190; +route fda8:391f:1052::/48 max 64 as 4242422049; +route fd4c:7750:c7e7::/48 max 64 as 4242422633; +route fd21:5c0c:9b7e::/48 max 64 as 4242421888; +route fd2d:82f6:9b63::/48 max 64 as 64828; +route fd53:a37c:9438::/48 max 64 as 4242429998; +route fd16:f8dc:8ef::/48 max 48 as 4242420062; +route fd0e:8db3:d50a::/64 max 64 as 65134; +route fdc8:8a2:b198::/48 max 64 as 64870; +route fd9b:d633:d173::/48 max 64 as 4242422037; +route fddd:ed3:375e::/48 max 64 as 4242421312; +route fde8:683b:185a::/48 max 48 as 4242423802; +route fd6e:9f67:5d93::/48 max 64 as 4242421589; +route fdfe:bf34:baaa::/48 max 64 as 4242420514; +route fd81:2009:2009::/48 max 64 as 4242422009; +route fd93:8225:737e::/48 max 64 as 4242421120; +route fddf:2460:2460::/48 max 64 as 4242422460; +route fd42:1:a::/48 max 64 as 4242420991; +route fd42:4242:2601:ffff::/64 max 64 as 0; +route fdbb:baba:2222::/48 max 48 as 4242422238; +route fd35:7250:d924::/48 max 48 as 4242421192; +route fd5e:86a9:f675::/48 max 64 as 4242421063; +route fd5e:724d:f1bb::/48 max 48 as 4242422590; +route fdce:d01:12e5::/48 max 48 as 4242420982; +route fd42:d42:d42:80::/64 max 64 as 64737; +route fd42:d42:d42:80::/64 max 64 as 4242420123; +route fd42:d42:d42:80::/64 max 64 as 64719; +route fd42:d42:d42:80::/64 max 64 as 4242422601; +route fd57:76a3:2ef4::/48 max 48 as 4242420828; +route fd89:aec1:ca45::/48 max 64 as 4242422942; +route fd46:972a:903b::/48 max 64 as 4242423620; +route fd42:bad:a55::/48 max 64 as 4242420124; +route fda0:b1c:8302::/48 max 64 as 4242421065; +route fda4:1721:8451::/48 max 64 as 65201; +route fd14:aad:efca::/48 max 64 as 4242420724; +route fd88:dead:beef::/48 max 64 as 4242423886; +route fd6e:3ad1:1722::/48 max 48 as 4242421913; +route fd10:127:7:2000::/54 max 64 as 4201270007; +route fd01:1926:817::/48 max 48 as 4242421332; +route fdf8:7e7f:d097::/48 max 48 as 4242420197; +route fd70:726f:662e::/48 max 64 as 4242421225; +route fdbf:54f1:66b8::/48 max 48 as 4242421525; +route fdee:70b9:860c::/48 max 64 as 4242421406; +route fd42:eef1:47b5::/48 max 64 as 4242420239; +route fd00:a:a::/48 max 64 as 4242420386; +route fd00:aaaa:251::/48 max 48 as 4242420144; +route fd00:aaaa:251::/48 max 48 as 208391; +route fdc6:9675:ebda::/48 max 48 as 4242423376; +route fd8a:3e99:6f68::/48 max 64 as 4242423943; +route fdb6:70fb:3966::/48 max 48 as 4242421210; +route fd06:e881:5380::/48 max 48 as 4242423197; +route fd42:471d:329f::/48 max 64 as 4242420573; +route fdbc:14ef:89dc::/48 max 64 as 4242423423; +route fde4:2355:54fe::/48 max 48 as 4242420185; +route fd72:be29:7c:3b1c::/64 max 64 as 4242421459; +route fd96:70f6:b174::/48 max 48 as 4242423270; +route fdd4:23a3:9727::/48 max 48 as 4242422339; +route fd42:4242:1907::/48 max 48 as 4242421907; +route fdec:c6a:4002::/48 max 48 as 4242420977; +route fd42:0:c::/48 max 64 as 4242420988; +route fd2c:a1bb:5a16::/48 max 64 as 4242421116; +route fd42:d42:d42:9050::/64 max 64 as 4242420022; +route fd42:d42:d42:9050::/64 max 64 as 4242420077; +route fdf6:8994:e4d9::/48 max 64 as 4242421541; +route fd53:707:41::/48 max 64 as 65044; +route fd71:297c:aac::/48 max 64 as 4242422249; +route fdff:0:fcd0::/48 max 64 as 0; +route fde1:e602:947a::/48 max 64 as 4242420174; +route fd42:ac17:64c0::/48 max 64 as 4242422042; +route fd41:4541:4d47::/48 max 48 as 4242421048; +route fd58:eb75:347d::/48 max 64 as 4242420428; +route fd11:11ae:7466::/48 max 64 as 65051; +route fdf7:e7a3:4888::/48 max 48 as 4242420335; +route fd99:b29a:7c20::/64 max 64 as 64886; +route fd42:ccc:fd::/48 max 64 as 4242422800; +route fdff:b02d:2ef7::/48 max 48 as 4242422341; +route fd00:801:3000::/40 max 64 as 4242420656; +route fd46:e3dc:db4a::/48 max 64 as 4242421037; +route fdd2:c9d1:ecb7::/48 max 64 as 4242423322; +route fd42:2b13:a29c::/48 max 64 as 4242420870; +route fdcf:cafe:eba::/48 max 48 as 4242420405; +route fd1a:91bf:fc44::/48 max 48 as 4242421401; +route fd42:1234:4567::/48 max 64 as 4242423450; +route fdf9:9417:5844::/64 max 64 as 64885; +route fdd9:a0b1:5bd0::/48 max 64 as 64863; +route fd21:4748:3647::/48 max 64 as 4242421474; +route fd2c:71c8:6038::/48 max 64 as 4242423214; +route fd87:3e50:cf33::/48 max 64 as 4242423939; +route fda3:7863:2204::/48 max 64 as 4242421407; +route fd5c:d982:d80d:9243::/64 max 64 as 4242420171; +route fdec::/48 max 64 as 4242422015; +route fd9d:5e08:b9f9::/48 max 64 as 4242421096; +route fda0:747e:ab29:209::/64 max 64 as 65397; +route fd42:100c:7121::/48 max 64 as 64877; +route fd73:6967:6672::/48 max 64 as 4242421267; +route fda0:747e:ab29:7405::/64 max 64 as 65066; +route fd42:7:7::/48 max 64 as 4242420095; +route fd42:ffc:ab1e::/48 max 64 as 4242420146; +route fd10:f851:a513::/48 max 64 as 4242420809; +route fd5b:dc38:47f5::/48 max 64 as 4242420742; +route fd51:2bb2:fd0d::/48 max 64 as 64654; +route fd51:2bb2:fd0d::/48 max 64 as 4242422718; +route fd51:2bb2:fd0d::/48 max 64 as 4242422480; +route fde6:402d:990d::/48 max 64 as 4242420576; +route fdd3:ca1e:a110::/48 max 64 as 4242421232; +route fd62:172:23:234::/64 max 64 as 4242423852; +route fd88:8888:abcd::/48 max 64 as 4242420448; +route fd88:ee35:b221::/48 max 48 as 4242423679; +route fd0a:d928:b30d::/48 max 64 as 65099; +route fd0c:62d:8e7::/48 max 64 as 4242423371; +route fdb9:fff1:dbbf::/48 max 64 as 4242423866; +route fd00:1926:817::/48 max 48 as 4242421331; +route fdbc:fddc:67ad::/48 max 48 as 4242423393; +route fd1b:9b7e:7a18::/48 max 64 as 4242423974; +route fd42:403::/64 max 64 as 4242420403; +route fd8f:4ef6:5402::/48 max 64 as 4242420540; +route fd84:fc6d:9cfb::/48 max 64 as 4242423228; +route fdca:ffee:ffa1::/48 max 64 as 65522; +route fd48:fcde:4242::/48 max 64 as 4242422022; +route fd4d:9197:24ee::/48 max 64 as 4242429946; +route fd42:ac1d:c0de::/48 max 64 as 4242423742; +route fd50:1910:cda4::/48 max 48 as 4242420998; +route fd42:39:7da::/56 max 64 as 4242421905; +route fd00:ffba:ffba::/64 max 64 as 65502; +route fd25:ae36:d470::/48 max 64 as 4242420751; +route fd64:cafe:cafe::/48 max 64 as 4242423400; +route fd42:da:1ab::/48 max 64 as 4242420172; +route fda0:cab1:e1e5:5b11::/64 max 64 as 65408; +route fda0:747e:ab29:e1ba::/64 max 64 as 65523; +route fdf7:17d5:de49:1000::/52 max 64 as 4242423906; +route fda9:26e:5805::/48 max 64 as 65039; +route fd2f:5119:f2c::/48 max 64 as 65196; +route fd54:fe4b:9ed1::/48 max 48 as 4242421722; +route fd40:bad:dead:babe::/64 max 64 as 4242420134; +route fd6c:3444:4e30:2118::/64 max 64 as 4242423849; +route fdee:d21b:6b8b::/48 max 48 as 4242422502; +route fd00:cafe:1337::/48 max 64 as 4242423420; +route fdc5:de8a:b004::/48 max 48 as 4242422216; +route fdef:c0f:fe::/48 max 64 as 76124; +route fd42:fe2c:d17a::/48 max 64 as 4242422028; +route fd58:5a8d:4d3f::/48 max 64 as 4242421226; +route fd42:172:2042::/48 max 64 as 4242422100; +route fd99:4d80:d90c::/48 max 64 as 4242423759; +route fd59:54c0:fab::/48 max 64 as 76175; +route fd42:4242:443::/48 max 48 as 4242420443; +route fd3d:1282:9113::/48 max 64 as 4242420167; +route fdb6:d08:686b::/48 max 64 as 4242420039; +route fd42:66da:c21a::/48 max 64 as 4242420081; +route fd6a:b179:7a6b::/48 max 48 as 4242423927; +route fd81:763a:ce01::/48 max 48 as 4242422248; +route fdfa:fa6:d7a1::/48 max 48 as 4242421202; +route fdfb:42d3:9346::/48 max 48 as 4242421608; +route fdc6:6093:bfda::/48 max 48 as 4242420723; +route fd42:c0ff:eeee::/48 max 64 as 4242423334; +route fdd8:da7b:92f5::/48 max 64 as 4242423621; +route fda4:c3cb:737c::/48 max 64 as 4242421035; +route fdfd:beef:beef:1::/64 max 64 as 4242420155; +route fdf7:facd:9346::/48 max 48 as 4242421115; +route fd42:d42:d42:9001::/64 max 64 as 4242421050; +route fdba:2737:210d::/48 max 64 as 4242422357; +route fd42:4242:2189::/48 max 64 as 4242422189; +route fd9e:b565:def3::/48 max 48 as 4242423565; +route fdc1:d4b:b89a::/48 max 64 as 4242423556; +route fd37:3b3:cae6::/48 max 64 as 141011; +route fd50:3c8f:b8b1::/48 max 64 as 4242423820; +route fd00:9990::/48 max 64 as 4242429990; +route fd98:de34:62e8::/48 max 48 as 4242422647; +route fd5b:d2a7::/44 max 64 as 4242421434; +route fd42:2882:2882::/48 max 64 as 4242422882; +route fdfb:df0c:c64::/48 max 64 as 4242420041; +route fd00:801:30a0::/44 max 64 as 4242420656; +route fd10:127:7:2672::/64 max 64 as 4201270007; +route fd27:3df4:67a1::/48 max 48 as 4242420393; +route fdef:ffc0:3dd7::/48 max 64 as 201173; +route fdfd:dead:c0de:1::/64 max 64 as 4242421230; +route fdca:ffee:8::/64 max 64 as 65511; +route fd42:456:e567::/48 max 64 as 4242422364; +route fda3:d993:602a:babe::/64 max 64 as 4242420781; +route fd10:49:4f::/48 max 64 as 4242420630; +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 fd42:a901:388e::/48 max 64 as 4242420260; +route fd42:3259:c01d::/48 max 64 as 4242420166; +route fd10:127:6324::/48 max 64 as 4201270018; +route fdbe:12d0:3d2::/64 max 64 as 64892; +route fd00:801:3090::/44 max 64 as 4242420656; +route fd6a:22f6:b683::/48 max 64 as 4242423338; +route fde3:4c0d:2836::/48 max 56 as 4242421280; +route fd49:5b5:b737::/48 max 48 as 4242420737; +route fd62:a393:3d91::/48 max 64 as 4242421128; +route fd44:ef30:15f::/48 max 48 as 4242422855; +route fd7e:7e3e:71be::/48 max 64 as 4242422492; +route fdef:f10f:1337:cafe::/64 max 64 as 65190; +route fd10:127:2f2f::/48 max 64 as 4201270020; +route fd8f:665e:49ae::/48 max 48 as 4242421458; +route fdea:2eb5:7420::/48 max 64 as 4242422673; +route fd42:d5d8:3c89::/48 max 64 as 4242421515; +route fd42:3110:4242::/48 max 64 as 4242423110; +route fd0b:10c0:9966::/48 max 64 as 4242420506; +route fd62:cd4d:28a1::/48 max 48 as 4242420173; +route fda1:384a:74de::/48 max 64 as 65525; +route fd96:5241:4544::/48 max 48 as 4242422683; +route fdde:690a:20fc:39ff::/64 max 64 as 4242422204; +route fd10:127:233::/48 max 64 as 140913; +route fd42:2950:202::/48 max 64 as 4242422950; +route fd42:2950:202::/48 max 64 as 202265; +route fd42:53fb:543a::/48 max 64 as 4242421408; +route fde8:ef06:b45a::/48 max 64 as 4242421360; +route fdfd:25fe:c901::/48 max 64 as 4242422284; +route fd42:42:c0de::/48 max 64 as 4242421940; +route fdbe:f027:9965::/48 max 64 as 4242421668; +route fdc7:3c9d:b889:a272::/64 max 64 as 65043; +route fd7e:e43c:78d9::/48 max 64 as 4242422144; +route fd8a:b0f1:babe::/48 max 64 as 4242423926; +route fd42:2347:a::/48 max 48 as 4242422347; +route fdcf:7494:4f2c::/48 max 64 as 4242420813; +route fdcd:eb58:c24a:6798::/64 max 64 as 4242420944; +route fdec:2b86:777::/48 max 64 as 4242423816; +route fdbc:db8d:b1cb::/48 max 64 as 4242421240; +route fd42:4242:2601:ac12::/64 max 64 as 4242422601; +route fd85:7370:a8a1::/48 max 48 as 4242421690; +route fd4e:f2d7:88d2:fffc::/64 max 64 as 64899; +route fdfa:6eef:c3e2::/48 max 64 as 4242420086; +route fd45:61ab:1bf2:bf79::/64 max 64 as 4242423642; +route fdae:43fb:3ab7::/48 max 48 as 4242420769; +route fd37:b948:9c2e::/48 max 64 as 4242423231; +route fd42:4242:1921::/48 max 64 as 4242421921; +route fdd3:5d16:b5dd::/48 max 64 as 65528; +route fda0:23:748b::/48 max 64 as 76190; +route fdc9:4a6d:2cdf::/48 max 64 as 4242421835; +route fd14:762d:bf6a::/48 max 48 as 4242422432; +route fda2:73ea:f77f::/48 max 48 as 4242420261; +route fd42:4242:3369:6102::/64 max 64 as 4242423369; +route fd42:cde1:1::/48 max 64 as 4242423967; +route fd91:9191:9191::/48 max 64 as 4242421181; +route fd5c:998a:b6a5::/48 max 48 as 4242420218; +route fd42:4992:acbd::/48 max 64 as 4242423504; +route fd42:d3ca::/48 max 64 as 4242421520; +route fde3:8334:267e::/48 max 48 as 4242420780; +route fd42:42:2166::/48 max 64 as 4242423141; +route fdbc:5fef:2184::/48 max 48 as 4242420281; +route fdbf:b130:d82f::/48 max 64 as 0; +route fd67:86ac:41f5::/48 max 64 as 4242423507; +route fdf2:453f:2c7f::/48 max 48 as 4242423599; +route fd42:568:127c::/48 max 64 as 4242420616; +route fdc3:10cd:ae9f::/48 max 64 as 4242420789; +route fd42:2313:eee5::/48 max 64 as 4242420342; +route fd01:38f7:e6d8:4e04::/64 max 64 as 4242420017; +route fdf7:17d5:de49::/48 max 64 as 4242423905; +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 fd81:e49c:ba39::/48 max 64 as 4242423452; +route fdef:17a0:ffb1:ffff::/64 max 64 as 4242420022; +route fd70:96c9:ef25::/48 max 64 as 4242420022; +route fdfd:cbac:cb51:5957::/64 max 64 as 4242422203; +route fd12:ac4a:1e71::/48 max 64 as 4242423882; +route fd81:763a:ce02::/48 max 48 as 4242423350; +route fd26:271b:761b::/48 max 64 as 4242423759; +route fd18:18d9:adde:40::/58 max 64 as 4242421233; +route fd42:5aaf:9fe8::/48 max 64 as 4242420666; +route fd83:d1d1:2690::/48 max 64 as 4242422690; +route fdc2:752c:29d1::/48 max 48 as 4242423636; +route fd42:f7b1:1078::/48 max 64 as 4242420210; +route fd97:36:c802::/48 max 48 as 62396; +route fd42:ac14:9400::/48 max 64 as 4242422043; +route fdc9:a4d4:c4ce::/48 max 64 as 4242422718; +route fd68:6868:6868::/48 max 64 as 4242423237; +route fd0d:138:9006::/48 max 64 as 64663; +route fda3:ea2d:b60a::/48 max 48 as 4242420228; +route fd00:801:30b0::/44 max 64 as 4242420656; +route fda8:5557:beb7::/48 max 64 as 4242423755; +route fdbc:f9dc:67ad::/48 max 64 as 4242422547; +route fd2c:2fa3:62f1::/48 max 64 as 4242423918; +route fde1:cb02:bc2c::/48 max 64 as 4242420901; +route fd18:18d9:adde::/58 max 64 as 4242421233; +route fd56:4147:5545::/48 max 64 as 4242420810; +route fd42:6c6d:616f::/48 max 64 as 4242423120; +route fd22:ad17:8e8d::/48 max 52 as 4242423073; +route fda7:f59b:35a9::/48 max 64 as 4242420835; +route fd7b:7d64:4dae::/48 max 64 as 4242423692; +route fd96:4252:4144::/48 max 48 as 4242421324; +route fd55:a814:708c::/48 max 64 as 4242422410; +route fd42:4242:2202::/48 max 64 as 4242422202; +route fd42:23c:ac1b::/48 max 64 as 64643; +route fd4e:f2d7:88d2:fffa::/64 max 64 as 64899; +route fdbf:6d9c:4e2d::/48 max 64 as 4242423944; +route fd62:e667:840a::/48 max 64 as 4242423315; +route fd42:a66a:faaf::/48 max 64 as 4242423976; +route fd42:76b8:1c05::/48 max 64 as 4242420947; +route fd44:3013:d703::/48 max 48 as 4242421325; +route fd28:4a00:7533::/48 max 64 as 4242421938; +route fdb2:a999:7f8c::/48 max 48 as 4242422389; +route fd11:ee7a:93aa::/48 max 64 as 4242420160; +route fded:e0fd:5fe::/48 max 64 as 4242420565; +route fdea:d017:225::/48 max 64 as 4242422250; +route fd42:4242:2707::/48 max 64 as 4242422707; +route fd4e:f2d7:88d2:ffff::/64 max 64 as 64899; +route fd4e:f2d7:88d2:fffe::/64 max 64 as 64769; +route fdc4:d762:2143::/48 max 64 as 64874; +route fd73:3033:1913::/48 max 64 as 4242421020; +route fd42:f10:411::/48 max 64 as 4242422100; +route fd2c:3214:3214::/64 max 64 as 4242423214; +route fd42:2950:101::/48 max 64 as 4242422950; +route fd42:2950:101::/48 max 64 as 202265; +route fd73:9390:9fad::/48 max 64 as 4242422095; +route fd28:cb8f:4c92::/48 max 64 as 4242421817; +route fdc5:a4a8:96d9::/48 max 48 as 4242422607; +route fdce:ebc5:bbd8::/48 max 64 as 4242423999; +route fdc5:ed74:2222::/48 max 64 as 4242423516; +route fd42:f61:e13::/48 max 64 as 4242422550; +route fd6b:79c1:f194::/48 max 64 as 4242422330; +route fd00:801:30c0::/44 max 64 as 4242420656; +route fd00:dead:beef::/48 max 64 as 4242420629; +route fdb1:e72a:343d::/48 max 64 as 4242420207; +route fd32:8411:abab::/48 max 64 as 4242422604; +route fd42:bbbb:cafe::/48 max 64 as 4242423965; +route fd44:4444:4444::/48 max 64 as 4242423311; +route fda0:747e:ab29:5142::/64 max 64 as 65120; +route fd42:c066:e081::/48 max 64 as 4242420092; +route fdd3:aff7:633e::/48 max 48 as 4242423533; +route fd42:4f81:ecf4::/48 max 48 as 4242421824; +route fd31:2352:60a9::/48 max 64 as 4242422626; +route fda4:be8c:4fd1::/48 max 48 as 4242423761; +route fd42:4242:339::/48 max 64 as 4242420339; +route fdd9:a233:58d9::/48 max 64 as 4242423158; +route fd40:2343:64:fa52::/64 max 64 as 4242420134; +route fd07:96ae:572e::/48 max 64 as 64901; +route fdfc:732b:1fa2::/48 max 64 as 4242423703; +route fd88:1926:817::/48 max 64 as 4242420251; +route fdb2:b712:e8e::/48 max 64 as 4242420177; +route fd00:4da1:c7fd::/48 max 48 as 4242422538; +route fd42:1ebc:34f0::/48 max 64 as 4242423169; +route fdd2:a44d:1d67::/48 max 64 as 4242421208; +route fdd1:1c64:66fd::/58 max 64 as 4242421233; +route fd05:a2d1:a767::/48 max 48 as 4242422237; +route fd42:c0de:ba5e::/48 max 64 as 4242421835; +route fdca:852a:928d::/48 max 64 as 4242420842; +route fd42:23:cda::/48 max 64 as 4242420101; +route fd42:23:cda::/48 max 64 as 65038; +route fd00:172:2334::/48 max 48 as 4242422900; +route fdb2:f582:b9d1::/48 max 64 as 4242423759; +route fdfd:beef:beef:beef::/64 max 64 as 4242420156; +route fd05:3aca:c3a0:abcd::/64 max 64 as 0; +route fd67:24bd:a1ea::/48 max 48 as 4242421220; +route fdfc:e23f:fb45:3234::/64 max 64 as 0; +route fdf5:b4f8:1e89::/48 max 64 as 4242422712; +route fd25:af2d:1f51::/48 max 48 as 4242421516; +route fd10:127:53::/48 max 64 as 4201270006; +route fd86:4ce:d32f::/48 max 64 as 4242423855; +route fd42:d42:511::/48 max 64 as 4242420511; +route fd12:9554:7f59::/48 max 64 as 4242423209; +route fd5f:7a63:c27f::/48 max 64 as 4242423040; +route fdf7:17d5:de49:f::/64 max 64 as 4242423907; +route fd69:5293:27d3::/48 max 64 as 4242423537; +route fd85:1dea:2093::/48 max 64 as 4242421009; +route fd00:bad:a55::/48 max 64 as 31867; +route fd31:3a4f:b7ae::/48 max 64 as 4242422773; +route fdd7:7db4:6366::/48 max 64 as 4242420568; +route fd00:bad:f00d::/48 max 64 as 4242420899; +route fd46:a312:514a::/48 max 48 as 4242422309; +route fdfd:dead:c0d3::/64 max 64 as 4242421113; +route fdef:1926:817::/48 max 64 as 4242420817; +route fda0:23:1f05:8000::/64 max 64 as 4242423513; +route fd70:336f:17f6:3465::/64 max 64 as 4242420017; +route fd62:172:23:125::/64 max 64 as 4242423852; +route fd04:52c0:4000::/48 max 64 as 4242423585; +route fd42:7879:7879::/48 max 64 as 4242421787; +route fdd5:7244:2776::/48 max 64 as 4242420161; +route fd81:fd4e:4f95::/48 max 64 as 4242420238; +route fd42:4242:2468::/48 max 64 as 4242422468; +route fdc1:31f:b14f::/48 max 64 as 64720; +route fd4a:2e8b:78bb:ae6e::/64 max 64 as 4242423935; +route fd42:d42:d42::/48 max 64 as 64737; +route fd44:8965:2e1c:2e76::/64 max 64 as 4242420017; +route fd9a:5c:48::/48 max 64 as 4242420181; +route fd00:1996:726::/48 max 64 as 4242422235; +route fda3:9087:3028::/48 max 64 as 4242421290; +route fdc3:10cd:aea0::/48 max 64 as 4242420789; +route fd00:fd00:192::/48 max 64 as 4242423560; +route fdf9:2eea:f030::/48 max 56 as 4242422004; +route fd23::/48 max 64 as 4242422037; +route fdee:eb2d:276a::/48 max 64 as 4242420801; +route fd00:1337:cafe::/48 max 64 as 64626; +route fd42:68c2:8747::/48 max 64 as 4242421178; +route fd42:4242:1099::/48 max 48 as 4242421099; +route fd69:1691:1691::/48 max 48 as 4242421691; +route fd42:2950:203::/48 max 64 as 4242422950; +route fd42:2950:203::/48 max 64 as 202265; +route fdc7:a5af:3231::/48 max 64 as 4242423339; +route fd95:bfa8:a5e2::/48 max 48 as 4242421916; +route fd0d:7f0:3003::/48 max 64 as 64663; +route fd10:127:ec39::/48 max 64 as 4201270009; +route fd42:9707:96bd::/48 max 64 as 4242423975; +route fd75:eca7:b62a::/48 max 48 as 4242423343; +route fdef:27db:3be::/48 max 64 as 4242423980; +route fd42:4242:3775::/48 max 64 as 4242423775; +route fdc8:6f52:c4fe::/48 max 48 as 4242422327; +route fd89:e30d:4035::/48 max 48 as 4242420710; +route fda0:23:1f05::/64 max 64 as 4242423513; +route fdb5:84c3:98c1::/48 max 64 as 64828; +route fd42:4242:23::/48 max 64 as 4242420510; +route fdfe:1647:a2bb::/48 max 64 as 4242421978; +route fda7:e8fa:a57f::/48 max 64 as 4242423211; +route fdb2:520f:f4a7::/48 max 64 as 4242423774; +route fdf8:adff:47b9::/48 max 64 as 4242422005; +route fdfe:b58d:7621::/48 max 64 as 4242421788; +route fd2d:a6da:8d1a:1408::/64 max 64 as 4242420013; +route fd42:c33e:bef4:228::/64 max 64 as 4242420121; +route fd42:1145:1419::/48 max 64 as 4242422464; +route fd9f:1630:5351::/48 max 64 as 4242423557; +route fdc2:1708:72bc::/48 max 64 as 4242422713; +route fd6b:869c:c4a1::/48 max 64 as 4242421860; +route fd79:3730:cc6::/48 max 64 as 4242421982; +route fd42:20:50::/48 max 64 as 4242423723; +route fd94:3ffe:d256::/48 max 64 as 4242421299; +route fdc3:10cd:ae9d::/48 max 64 as 4242420789; +route fdde:c0de:925::/48 max 48 as 4242420925; +route fd19:11ec:bed7::/48 max 48 as 4242421550; +route fd42:4242:2408::/48 max 48 as 4242422408; +route fd10:1074:41f6::/48 max 48 as 64752; +route fdbb:7278:face::/48 max 48 as 141776; +route fd10:127:7::/51 max 64 as 4201270007; +route fd91:5e17:f5f8::/48 max 48 as 4242422008; +route fd42:64:686::/48 max 64 as 64686; +route fdac:f820:373a::/48 max 64 as 4242422128; +route fddd:fe2f:de5a::/48 max 64 as 64773; +route fde0:105b:1d87::/48 max 64 as 64867; +route fd5e:6ea6:f0a1::/48 max 64 as 4242423331; +route fd94:278b:14c8::/48 max 48 as 4242421930; +route fd10:2ea2:4dae::/48 max 64 as 64894; +route fd78:1878:3450::/48 max 64 as 4242421841; +route fdf0:9bb:7814::/48 max 64 as 65060; +route fd5f:fd18:29d1:4f61::/64 max 64 as 4242420017; +route fda0:b455:bb86::/48 max 48 as 4242422514; +route fdf2:8800:6e97::/48 max 64 as 4242422017; +route fd8e:6470:7a23::/48 max 48 as 64742; +route fdaa:ff59:eb66::/48 max 64 as 4242423175; +route fd4f:4187:70be::/48 max 64 as 4242423968; +route fdbb:baba:2468::/48 max 64 as 4242420151; +route fd86:5946:61b2::/48 max 48 as 4242421273; +route fd00:801:3060::/44 max 64 as 4242420656; +route fddb:2cb:9699::/48 max 64 as 64890; +route fd62:cc46:576b::/48 max 64 as 4242422809; +route fdcf:3c00:e001::/48 max 64 as 4242422287; +route fd42::/48 max 64 as 4242423723; +route fdfa:454b:e441::/48 max 48 as 4242422522; +route fde1:122:9322::/48 max 60 as 4242423913; +route fdef:1337:b00b::/48 max 64 as 4242422609; +route fdff:feed:4242::/48 max 64 as 4242420252; +route fd1d:817:1926::/48 max 48 as 4242420644; +route fd4d:ce73:68f9::/48 max 48 as 4242421457; +route fd08:93f3:b7eb::/48 max 48 as 4242421535; +route fd6a:c707:c3c8:be2a::/64 max 64 as 4242421629; +route fd42:3a16:acd::/48 max 64 as 4242421221; +route fdd6:6392:5e0c::/48 max 48 as 4242420621; +route fd42:5d71:219::/48 max 48 as 4242420119; +route fd2a:8eb0:74bd::/48 max 64 as 4242423008; +route fd1c:f73c:a945:3000::/52 max 64 as 4242422700; +route fd89:35db:fc0::/48 max 48 as 4242420604; +route fd42:cafe::/44 max 64 as 4242423389; +route fdc6:dc8f:8c32::/48 max 64 as 4242421166; +route fd23:42:cda::/48 max 64 as 4242420101; +route fd22:622:1f6c::/48 max 64 as 4242420110; +route fdef:8387:28fe::/48 max 48 as 4242423486; +route fd21:b0e7:6c39:c241::/64 max 64 as 4242422798; +route fd42:180:3de0::/56 max 64 as 4242420119; +route fd42:180:3de0::/56 max 64 as 4242421191; +route fd42:180:3de0::/56 max 64 as 4242422601; +route fd42:b60d:6174::/48 max 64 as 4242422624; +route fd15:9ed:b71d::/48 max 48 as 4242420640; +route fd83:1110:6556::/48 max 64 as 4242421983; +route fd45:2e33:411e::/48 max 48 as 4242421149; +route fd10:127:7:ffff::/64 max 64 as 4201270007; +route fd42:c:5::/48 max 64 as 4242422305; +route fd6f:6e69:6f6e::/48 max 48 as 4242423847; +route fd78:ec3b:e9e7::/48 max 64 as 4242420141; +route fd42:5969:505::/48 max 48 as 4242421194; +route fd42:4242:815::/48 max 64 as 4242420815; +route fd18:18d9:adde:80::/58 max 64 as 4242421233; +route fd42:42:564::/48 max 64 as 4242421564; +route fdac:f3f:e7e2::/48 max 64 as 4242422333; +route fdbe:9dd8:7dbd::/48 max 64 as 4242421420; +route fd42:b641:760::/48 max 64 as 4242422292; +route fd74:e845:fe1a::/48 max 64 as 4242423360; +route fde0:ccf0:ac16::/48 max 48 as 4242423518; +route fd84:688d:22bb::/48 max 64 as 4242423932; +route fdaa:243c:4101::/48 max 48 as 4242422058; +route fd42:dead:cafe::/48 max 64 as 4242423955; +route fd8f:7f6d:be92:8716::/64 max 64 as 4242423652; +route fdef:17a0:fff1::/48 max 64 as 64860; +route fd42:6196:4000::/48 max 48 as 4242422255; +route fd22:3adc:a411::/48 max 48 as 4242422610; +route fdfd:dead:c0de::/64 max 64 as 4242421230; +route fd0a:3599:3930::/58 max 64 as 4242421233; +route fd1b:7fcf:884f::/48 max 64 as 4242423884; +route fd23:2a7a:15ae::/48 max 48 as 4242420286; +route fd50:7506::/48 max 48 as 4242420183; +route fd64:f233:8964::/48 max 64 as 4242422911; +route fda9:1b6e:e41d::/48 max 64 as 4242420305; +route fd42:beef:cafe::/48 max 64 as 4242421776; +route fd42:1926:817::/48 max 64 as 4242421926; +route fdec:4562:434f::/64 max 64 as 65520; +route fd7e:5330:e2d7::/48 max 64 as 4242422069; +route fde8:8e27:b925::/48 max 64 as 4242421276; +route fd10:127:1300::/48 max 64 as 207268; +route fd40:cc1e:c0de::/48 max 64 as 4242421955; +route fd0a:3599:3930::/48 max 64 as 4242421233; +route fde8:21c6:370b::/48 max 64 as 64891; +route fd26:13ad:1cb6::/48 max 48 as 4242423303; +route fda6:bf36:9b89::/48 max 48 as 4242421510; +route fd22:e95b:9938::/48 max 64 as 4242423581; +route fddd:fdef:2ea1::/48 max 64 as 4242421198; +route fd51:b39d:249f::/48 max 64 as 4242421717; +route fd2a:86c6:dbb7::/48 max 64 as 4242423351; +route fd33:ac1d:d1ce::/48 max 64 as 4242422684; +route fd42:ccc:fd::/64 max 64 as 4242422800; +route fd94:556f:fbc5::/48 max 48 as 4242423770; +route fdf1:621a:aca3::/48 max 64 as 64895; +route fd31:f6ee:ab9d::/48 max 64 as 64606; +route fd42:3667:3667::/48 max 64 as 4242423667; +route fd42:4999:6a6d::/48 max 64 as 4242420302; +route fd93:6244:7aef::/48 max 48 as 4242422011; +route fda1:d21:d67f::/48 max 64 as 4242420812; +route fd42:2950::/48 max 64 as 4242422950; +route fd42:2950::/48 max 64 as 202265; +route fd42:212:995::/48 max 48 as 4242422995; +route fd42:470:f0ef::/48 max 64 as 4242420180; +route fd42:4242:1337::/48 max 64 as 4242420414; +route fd2d:22:cafe::/48 max 64 as 4242420013; +route fd83:e002:c8a1::/48 max 64 as 64525; +route fdac:1662:9edd::/48 max 48 as 4242420032; +route fd00:58a8:7fb2::/48 max 48 as 4242422214; +route fdf3:d483:8617::/48 max 48 as 4242420976; +route fd42:e0f1:5b4b::/48 max 64 as 4242420164; +route fdfd:adad:adad::/48 max 64 as 4242421501; +route fda0:747e:ab29:2195::/64 max 64 as 65067; +route fdc4:b438:8c09::/48 max 64 as 4242423151; +route fd42:6:e160::/48 max 64 as 4242423160; +route fdc9:67ea:76a5::/48 max 64 as 4242422016; +route fd5a:2663:7b48::/48 max 64 as 135395; +route fd79:4df1:37c6:157e::/64 max 64 as 4242420178; +route fdfc:44e4:146e:8f69::/64 max 64 as 4242423821; +route fd00:abcd:e:100::/56 max 64 as 4242420198; +route fdaa:bad:ca75::/48 max 64 as 4242421632; +route fd42:23:139::/48 max 64 as 64649; +route fd85:50d:222d::/48 max 48 as 4242423954; +route fd03:4de4:6baa::/48 max 64 as 4242420309; +route fd42:4242:2601::/48 max 48 as 4242422601; +route fd68:edba:7c1a::/48 max 64 as 4242423435; +route fd42:df42::/48 max 64 as 64773; +route fd54:4355:b6ac::/48 max 64 as 4242420212; +route fdf4:a50a:5c1f::/64 max 64 as 64879; +route fd9e:2c7c:fea6::/47 max 64 as 4242422228; +route fd0b:da1a:9768::/48 max 48 as 4242422032; +route fdc3:10cd:ae9b::/48 max 64 as 4242420789; +route fdec:1:1:dead::/64 max 64 as 4242422015; +route fdc0:f16e:7051::/48 max 64 as 4242423567; +route fd42:3677::/48 max 64 as 4242423677; +route fda0:747e:ab29:5016::/64 max 64 as 64888; +route fd00:801:3040::/44 max 64 as 4242420656; +route fdab:18d6:beef::/48 max 48 as 4242423434; +route fd19:d101:719a::/48 max 64 as 4242423850; +route fd42:c:a::/48 max 64 as 4242421420; +route fd94:dba8:42b0::/48 max 64 as 4242422717; +route fd25:ce36:b7db::/48 max 64 as 4242420800; +route fd42:aacb:49ee::/48 max 64 as 4242420209; +route fd0c:70b0:1c7d::/48 max 48 as 4242421275; +route fd06:b047:f7de::/48 max 64 as 64872; +route fd67:f728:94ac::/48 max 48 as 4242423771; +route fdfd:e1f0:7019::/48 max 64 as 4242422386; +route fd42:9510:cad1::/48 max 64 as 4242420237; +route fdde:7b0b:8fb9::/48 max 64 as 4242423111; +route fd63:1e39:6f73:2929::/64 max 64 as 64654; +route fd63:1e39:6f73:2929::/64 max 64 as 4242422718; +route fd63:1e39:6f73:2929::/64 max 64 as 4242422480; +route fd39:e07d:e463::/48 max 64 as 4242421165; +route fdd1:957f:6ea9::/48 max 64 as 4242422053; +route fdc6:30c3:8662::/48 max 64 as 4242423377; +route fd10:127:23::/48 max 64 as 4201270014; +route fd9a:f34d:4541::/48 max 64 as 4242422200; +route fd10:127:7:8000::/50 max 64 as 4201270007; +route fddd:5d16:b5dd::/48 max 64 as 65026; +route fd0c:9a97:47dc::/48 max 64 as 64864; +route fd10:127:233:1000::/64 max 64 as 4242421025; +route fdbd:8259:fe95::/48 max 64 as 4242423890; +route fd00:cf35:9507::/48 max 64 as 4242423005; +route fd00:abcd:e::/48 max 64 as 4242420158; +route fd15:fe2c:d179::/48 max 64 as 4242422027; +route fd00:fd00:208::/48 max 64 as 4242423560; +route fd42:abc0:1::/48 max 64 as 4242423966; +route fd14:b4dc:4b1e::/64 max 64 as 65052; +route fdcd:a61d:f378::/48 max 48 as 4242423402; +route fdc7:d4c1:7b13::/48 max 48 as 4242423353; +route fd21:a07e:735e::/48 max 64 as 4242423991; +route fd1d:8832:3c69::/48 max 64 as 4242420488; +route fd42:4dd0:ff00::/48 max 64 as 4242422428; +route fde0:9750:6d9d::/48 max 48 as 4242420827; +route fdbb:8bb5:fb3d::/48 max 48 as 4242420074; +route fd69:9889:9692::/48 max 64 as 209557; +route fd69:9889:9692::/48 max 64 as 4242421214; +route fd67:3cc6:16f5::/48 max 64 as 4242421109; +route fd88:2e46:4b1c:5988::/64 max 64 as 4242420017; +route fdfd:face:4ac3::/48 max 48 as 4242421850; +route fdc7:3c9d:ff31::/48 max 64 as 65043; +route fdfd:beef:beef:dead::/64 max 64 as 4242420155; +route fd2a:7dd:7df::/48 max 64 as 4242420152; +route fd42:ae20:dc1c::/48 max 64 as 4242423454; +route fd42:4242:2405::/48 max 48 as 4242422405; +route fd68:ea13:20f::/48 max 64 as 4242423759; +route fd3b:6bc4:49ef::/48 max 64 as 4242421101; +route fd56:7778:783b::/48 max 64 as 4242420589; +route fd48:28ca:36b9::/48 max 64 as 4242421306; +route fd4e:f2d7:88d2:fff9::/64 max 64 as 64899; +route fd69:3053:a295::/48 max 64 as 4242423510; +route fd8c:fa9a:4b4a::/48 max 48 as 4242421789; +route fd2a:1805:30::/48 max 64 as 4242423805; +route fd63:b0d8:696e::/48 max 48 as 4242420316; +route fd1a:747a:d030::/48 max 48 as 4242423505; +route fdef:ffc0:4fff::/48 max 64 as 65080; +route fd19:e0a6:1295::/48 max 64 as 4242420321; +route fd42:2feb:5536::/48 max 64 as 4242420162; +route fd70:8d1:afc7::/48 max 48 as 4242423615; +route fde6:e763:a0e6::/48 max 48 as 4242422667; +route fd29:612d:9dd1::/48 max 48 as 4242423928; +route fd42:c0fe:babe::/48 max 64 as 4242421576; +route fdcc:60b6:2f38::/48 max 64 as 4242422441; +route fd80:96c2:e41e:3dcc::/64 max 64 as 4242420927; +route fdd1:1c64:66fd::/48 max 64 as 4242421233; +route fde2:7085:c6f3::/48 max 48 as 4242420195; +route fdbd:329d:c58a::/48 max 64 as 4242420528; +route fd9a:d414:cf1c::/48 max 64 as 4242420248; +route fd42:fa6::/48 max 64 as 4242421114; +route fd42:4992:6b6e::/48 max 64 as 4242428201; +route fdc7:4c8d:b889:a272::/64 max 64 as 64873; +route fd10:127:127::/48 max 64 as 4242422464; +route fd92:a682:9c0d::/48 max 64 as 4242423919; +route fd34:fe56:7891::/48 max 64 as 4242420909; +route fde9:7fb8:427f::/48 max 48 as 4242420175; +route fdf6:774:73c3::/48 max 64 as 4242423410; +route fdbd:8dc9:3d2b::/48 max 48 as 4242423952; +route fd0f:6965:e916::/48 max 48 as 4242422010; +route fdef:ffe0:3ed7::/48 max 64 as 64896; +route fdff:feed:c0de::/48 max 64 as 4242420138; +route fdb0:4339::/32 max 64 as 4242422345; +route fd73:8e01:9673::/48 max 64 as 4242423301; +route fd57:1523:5216::/48 max 64 as 4242423853; +route fd3f:7adb:2f06:ee82::/64 max 64 as 4242420829; +route fd00:801:3080::/44 max 64 as 4242420656; +route fd45:1b93:dddf::/48 max 48 as 4242422575; +route fd75:77d4:482b::/48 max 64 as 4242421297; +route fddd:a553:ee0e::/48 max 64 as 4242421119; +route fd39:b03e:6140:7ec1::/64 max 64 as 4242423124; +route fd33:9493:a6ed::/48 max 64 as 4242421243; +route fd62:44e1:da::/48 max 64 as 65032; +route fd1d:cc09:1366::/48 max 48 as 4242421607; +route fd97:4c4e:9d26::/48 max 64 as 64697; +route fdc7:5384:30::/48 max 64 as 64930; +route fd26:3adf:465e::/48 max 48 as 4242422850; +route fdd0:77f2:44de::/48 max 64 as 4242422077; +route fd86:bad:11b7::/48 max 56 as 4242421080; +route fd7a:c01e:db7c::/48 max 64 as 4242420176; +route fd42:4888:eb20::/48 max 64 as 4242421047; +route fd66:feed:beef::/48 max 64 as 4242423439; +route fda0:747e:ab29:9375::/64 max 64 as 65125; +route fd42:470:ed5d::/48 max 64 as 4242422065; +route fd1f:ce1e:ff42::/48 max 48 as 4242421307; +route fd42:23:205::/48 max 64 as 4242420205; +route fd05:a588:da19::/48 max 64 as 4242420226; +route fd6c:6c65:7669::/48 max 64 as 4242423811; +route fd42:bbbb:c0de::/48 max 64 as 4242420168; +route fdba:610:d1dd::/48 max 64 as 4242421630; +route fdc0:10ca:7105::/48 max 64 as 4242423173; +route fda1:d26b:7461::/48 max 64 as 4242420000; +route fdc0:9c8d:ce13::/48 max 48 as 4242422551; +route fd00:801:3050::/44 max 64 as 4242420656; +route fd2c:3214:3214:1::/64 max 64 as 4242423214; +route fd28:d639:e958::/48 max 64 as 4242422375; +route fdcc:3597:f3cf::/48 max 48 as 4242422992; +route fdcb:f420:d408::/48 max 64 as 4242423963; +route fd96:1337:1337::/48 max 64 as 4242422815; +route fdb8:dff5:dea0::/48 max 48 as 4242421098; +route fd42:7173:7800::/48 max 64 as 4242427761; +route fd68:beef:c0de::/48 max 64 as 4242423969; +route fdb1:8565:c849::/48 max 64 as 4242421199; +route fd0a:cdb3:cde7::/48 max 64 as 4242422705; +route fd37:13a8:98d6::/48 max 64 as 4242423783; +route fdfa:43:8ed5::/48 max 64 as 4242422404; +route fd40:2200:1975::/48 max 48 as 4242421975; +route fd7c:dfc0:d347::/48 max 64 as 4242420886; +route fdc6:c4fe:1de4::/48 max 64 as 65242; +route fdb7:439f:81b6::/48 max 64 as 4242423759; +route fd42:7616:60d2::/48 max 64 as 4242423264; +route fda7:c947:6d13::/48 max 64 as 4242420415; +route fdec:2fb6:2bdd::/48 max 64 as 4242420529; +route fd4e:f2d7:88d2:fff8::/64 max 64 as 64899; +route fd1c:f73c:a945::/48 max 64 as 4242422700; +route fd94:c9b4:7bda::/48 max 64 as 4242421475; +route fdce:3a98:4c1c::/48 max 48 as 4242423735; +route fdef:17a0:ffb1::/48 max 64 as 65529; +route fd10:7053:49de::/48 max 64 as 4242420789; +route fd5d:7bc7:ed1b::/48 max 64 as 4242423520; +route fdfd:1651:65:f398::/64 max 64 as 4242420165; +route fdcc:bb58:43b3::/48 max 64 as 4242423626; +route fdc5:7835:68c8::/48 max 48 as 4242421238; +route fd5b:a2c5:fe5c::/48 max 64 as 4242423321; +route fdc3:67ce:cc7e::/48 max 64 as 64946; +route fdff:49:461::/48 max 64 as 4242420420; +route fdf3:2049:5152::/48 max 64 as 64866;