diff --git a/README.md b/README.md index 615a7ab..99e64e7 100644 --- a/README.md +++ b/README.md @@ -55,3 +55,15 @@ For translations, please install ```luci-i18n-v2ray-*```. ## Build Please take a look to [build-openwrt.yml](./.github/workflows/build-openwrt.yml). + +## Update chroute + +```shell +curl -s 'https://ftp.apnic.net/stats/apnic/delegated-apnic-latest' | \ + awk -F '|' '{if($2=="CN"&&$3=="ipv4"){printf "%s/%d\n",$4,32-log($5)/log(2)}}' \ + > ./root/etc/luci_v2ray/chnroute.txt + +curl -s 'https://ftp.apnic.net/stats/apnic/delegated-apnic-latest' | \ + awk -F '|' '{if($2=="CN"&&$3=="ipv6"){printf "%s/%d\n",$4,$5}}' \ + > ./root/etc/luci_v2ray/chnroute6.txt +``` diff --git a/htdocs/luci-static/resources/view/v2ray/tools/converters.js b/htdocs/luci-static/resources/view/v2ray/tools/converters.js index c8ac4d1..fc6e7a2 100644 --- a/htdocs/luci-static/resources/view/v2ray/tools/converters.js +++ b/htdocs/luci-static/resources/view/v2ray/tools/converters.js @@ -27,24 +27,41 @@ return L.Class.extend({ } return Object.keys(n).sort().join("\n") + "\n"; }, - extractCHNRoute: function(t, e) { - void 0 === e && (e = !1); - for (var r = [], n = e ? /CN\|ipv6\|([0-9a-zA-Z:]+)\|(\d+)/ : /CN\|ipv4\|([\d.]+)\|(\d+)/, a = 0, s = t.split(/\r?\n/); a < s.length; a++) { - var i = s[a]; - if (i && 0 !== i.indexOf("#")) { - var c = i.match(n); - if (c && c.length >= 3) { - var l = c[1], u = c[2]; - if (e) r.push(l + "/" + u); else { - // base log - var o = 32 - Math.log(+u) / Math.log(2); - r.push(l + "/" + o); - } + + extractCHNRoute: function (delegatedlist, ipv6) { + void 0 === ipv6 && (ipv6 = !1); + + const delegatedLines = delegatedlist.split(/\r?\n/); + + const ipList = []; + + const regex = ipv6 + ? /CN\|ipv6\|([0-9a-zA-Z:]+)\|(\d+)/ + : /CN\|ipv4\|([\d.]+)\|(\d+)/; + + for (const line of delegatedLines) { + if (!line || line.indexOf("#") === 0) { + continue; + } + + const matches = line.match(regex); + if (matches && matches.length >= 3) { + const [, ip, value] = matches; + + if (ipv6) { + ipList.push(`${ip}/${value}`); + } else { + // base log + const mask = 32 - Math.log(+value) / Math.log(2); + + ipList.push(`${ip}/${mask}`); } } } - return r.join("\n") + "\n"; + + return ipList.join("\n") + "\n"; }, + vmessLinkToVmess: function(t) { var e, r, n; if (!t || !(t = t.trim()) || !(e = t.match(/^vmess:\/\/([a-zA-Z0-9/+]+={0,2})$/i)) || e.length < 2) return null; diff --git a/htdocs/luci-static/resources/view/v2ray/transparent-proxy.js b/htdocs/luci-static/resources/view/v2ray/transparent-proxy.js index f7e3bf4..ea38435 100644 --- a/htdocs/luci-static/resources/view/v2ray/transparent-proxy.js +++ b/htdocs/luci-static/resources/view/v2ray/transparent-proxy.js @@ -40,93 +40,305 @@ var gfwlistUrls = { // @ts-ignore return L.view.extend({ - handleListUpdate: function(t, e, r) { - var i = function() { - ui.hideModal(), window.location.reload(); - }, a = function(t, e, r) { - L.Request.request(L.url("admin/services/v2ray/request"), { - method: "post", - timeout: 6e4, - query: { - url: t, - token: L.env.token, - sessionid: L.env.sessionid - } - }).then((function(t) { - var a; - if (200 === t.status && (a = t.json())) { - var o = void 0; - if (!a.code && (o = a.content)) { - var s = r(o); - s ? function(t, e) { - fs.write("/etc/luci_v2ray/" + t + ".txt", e).then((function() { - ui.showModal(_("List Update"), [ E("p", _("%d list updated.").format(t)), E("div", { - class: "right" - }, E("button", { - class: "btn", - click: i - }, _("OK"))) ]); - })).catch((function(e) { - L.raise("Error", t + ".txt =>> " + e.message); - })); - }(e, s) : L.raise("Error", _("Failed to decode data.")); - } else L.raise("Error", a.message || _("Failed to fetch data.")); - } else L.raise("Error", t.statusText); - })).catch((function(t) { - ui.addNotification(null, E("p", t.message)); - })); + handleListUpdate(ev, section_id, listtype) { + const hideModal = function () { + ui.hideModal(); + + window.location.reload(); }; - switch (r) { - case "gfwlist": - var o = uci.get("luci_v2ray", e, "gfwlist_mirror") || "github"; - return a(gfwlistUrls[o], "gfwlist", (function(t) { - return converters.extractGFWList(t); - })); - - case "chnroute": - case "chnroute6": - var s = uci.get("luci_v2ray", e, "apnic_delegated_mirror") || "apnic"; - return a(apnicDelegatedUrls[s], "chnroute6", (function(t) { - return converters.extractCHNRoute(t, "chnroute6"); - })); - - default: - ui.addNotification(null, _("Unexpected error.")); + + switch (listtype) { + case "gfwlist": { + const gfwlistMirror = + uci.get("v2ray", section_id, "gfwlist_mirror") || "github"; + const url = gfwlistUrls[gfwlistMirror]; + + return L.Request.request(L.url("admin/services/v2ray/request"), { + method: "post", + timeout: 50 * 1000, + query: { + url: url, + token: L.env.token, + sessionid: L.env.sessionid, + }, + }) + .then(function (res) { + let data; + if (res.status === 200 && (data = res.json())) { + let content; + if (!data.code && (content = data.content)) { + const gfwlistDomains = converters.extractGFWList(content); + if (gfwlistDomains) { + fs.write("/etc/v2ray/gfwlist.txt", gfwlistDomains) + .then(function () { + ui.showModal(_("List Update"), [ + E("p", _("GFWList updated.")), + E( + "div", + { class: "right" }, + E( + "button", + { + class: "btn", + click: hideModal, + }, + _("OK") + ) + ), + ]); + }) + .catch(L.raise); + } else { + L.raise("Error", _("Failed to decode GFWList.")); + } + } else { + L.raise("Error", data.message || _("Failed to fetch GFWList.")); + } + } else { + L.raise("Error", res.statusText); + } + }) + .catch(function (e) { + ui.addNotification(null, E("p", e.message)); + }); + } + case "chnroute": + case "chnroute6": { + const delegatedMirror = + uci.get("v2ray", section_id, "apnic_delegated_mirror") || "apnic"; + + const url = apnicDelegatedUrls[delegatedMirror]; + + return L.Request.request(L.url("admin/services/v2ray/request"), { + method: "post", + timeout: 50 * 1000, + query: { + url: url, + token: L.env.token, + sessionid: L.env.sessionid, + }, + }) + .then(function (res) { + let data; + if (res.status === 200 && (data = res.json())) { + let content; + if ((content = data.content)) { + const ipList = converters.extractCHNRoute( + content, + listtype === "chnroute6" + ); + + fs.write(`/etc/v2ray/${listtype}.txt`, ipList) + .then(function () { + ui.showModal(_("List Update"), [ + E("p", _("CHNRoute list updated.")), + E( + "div", + { class: "right" }, + E( + "button", + { + class: "btn", + click: hideModal, + }, + _("OK") + ) + ), + ]); + }) + .catch(L.raise); + } else { + L.raise( + "Error", + data.message || _("Failed to fetch CHNRoute list.") + ); + } + } else { + L.raise("Error", res.statusText); + } + }) + .catch(function (e) { + ui.addNotification(null, E("p", e.message)); + }); + } + + default: { + ui.addNotification(null, _("Unexpected error.")); + } } }, - load: function() { + load: function () { return v2ray.getDokodemoDoorPorts(); }, - render: function(t) { - void 0 === t && (t = []); - var e, r = new form.Map("luci_v2ray", "%s - %s".format(_("V2Ray"), _("Transparent Proxy"))), i = r.section(form.NamedSection, "main_transparent_proxy", "transparent_proxy"); - (e = i.option(form.Value, "redirect_port", _("Redirect port"), _("Enable transparent proxy on Dokodemo-door port."))).value("", _("None")); - for (var a = 0, o = t; a < o.length; a++) { - var s = o[a]; - e.value(s.value, s.caption); + render: function (dokodemoDoorPorts) { + void 0 === dokodemoDoorPorts && (dokodemoDoorPorts = []); + const m = new form.Map( + "luci_v2ray", + "%s - %s".format(_("V2Ray"), _("Transparent Proxy")) + ); + + const s = m.section( + form.NamedSection, + "main_transparent_proxy", + "transparent_proxy" + ); + + let o; + + o = s.option( + form.Value, + "redirect_port", + _("Redirect port"), + _("Enable transparent proxy on Dokodemo-door port.") + ); + o.value("", _("None")); + for (const p of dokodemoDoorPorts) { + o.value(p.value, p.caption); } - return e.datatype = "port", (e = i.option(widgets.NetworkSelect, "lan_ifaces", _("LAN interfaces"), _("Enable proxy on selected interfaces."))).multiple = !0, - e.nocreate = !0, e.filter = function(t, e) { - return e.indexOf("wan") < 0; - }, e.rmempty = !1, e = i.option(form.Flag, "use_tproxy", _("Use TProxy"), _("Setup redirect rules with TProxy.")), - e = i.option(form.Flag, "only_privileged_ports", _("Only privileged ports"), _("Only redirect traffic on ports below 1024.")), - e = i.option(form.Flag, "redirect_udp", _("Redirect UDP"), _("Redirect UDP traffic to V2Ray.")), - (e = i.option(form.Flag, "redirect_dns", _("Redirect DNS"), _("Redirect DNS traffic to V2Ray."))).depends("redirect_udp", ""), - e.depends("redirect_udp", "0"), (e = i.option(form.ListValue, "proxy_mode", _("Proxy mode"), _("If enabled, iptables rules will be added to pre-filter traffic and then sent to V2Ray."))).value("default", _("Default")), - e.value("cn_direct", _("CN Direct")), e.value("cn_proxy", _("CN Proxy")), e.value("gfwlist_proxy", _("GFWList Proxy")), - (e = i.option(form.ListValue, "apnic_delegated_mirror", _("APNIC delegated mirror"))).value("apnic", "APNIC"), - e.value("arin", "ARIN"), e.value("ripe", "RIPE"), e.value("iana", "IANA"), (e = i.option(custom.ListStatusValue, "_chnroutelist", _("CHNRoute"))).listtype = "chnroute", - e.btntitle = _("Update"), e.btnstyle = "apply", e.onupdate = L.bind(this.handleListUpdate, this), - (e = i.option(form.ListValue, "gfwlist_mirror", _("GFWList mirror"))).value("github", "GitHub"), - e.value("gitlab", "GitLab"), e.value("bitbucket", "Bitbucket"), e.value("pagure", "Pagure"), - (e = i.option(custom.ListStatusValue, "_gfwlist", _("GFWList"))).listtype = "gfwlist", - e.btntitle = _("Update"), e.btnstyle = "apply", e.onupdate = L.bind(this.handleListUpdate, this), - (e = i.option(custom.TextValue, "_proxy_list", _("Extra proxy list"), _("One address per line. Allow types: DOMAIN, IP, CIDR. eg: %s, %s, %s").format("www.google.com", "1.1.1.1", "192.168.0.0/16"))).wrap = "off", - e.rows = 5, e.datatype = "string", e.filepath = "/etc/luci_v2ray/proxylist.txt", (e = i.option(custom.TextValue, "_direct_list", _("Extra direct list"), _("One address per line. Allow types: DOMAIN, IP, CIDR. eg: %s, %s, %s").format("www.google.com", "1.1.1.1", "192.168.0.0/16"))).wrap = "off", - e.rows = 5, e.datatype = "string", e.filepath = "/etc/luci_v2ray/directlist.txt", e = i.option(form.Value, "proxy_list_dns", _("Proxy list DNS"), _("DNS used for domains in proxy list, format: ip#port. eg: %s").format("1.1.1.1#53")), - e = i.option(form.Value, "direct_list_dns", _("Direct list DNS"), _("DNS used for domains in direct list, format: ip#port. eg: %s").format("114.114.114.114#53")), - (e = i.option(custom.TextValue, "_src_direct_list", _("Local devices direct outbound list"), _("One address per line. Allow types: IP, CIDR. eg: %s, %s").format("192.168.0.19", "192.168.0.0/16"))).wrap = "off", - e.rows = 3, e.datatype = "string", e.filepath = "/etc/luci_v2ray/srcdirectlist.txt", - r.render(); + o.datatype = "port"; + + o = s.option( + widgets.NetworkSelect, + "lan_ifaces", + _("LAN interfaces"), + _("Enable proxy on selected interfaces.") + ); + o.multiple = true; + o.nocreate = true; + o.filter = function (section_id, value) { + return value.indexOf("wan") < 0; + }; + o.rmempty = false; + + o = s.option( + form.Flag, + "use_tproxy", + _("Use TProxy"), + _("Setup redirect rules with TProxy.") + ); + + o = s.option( + form.Flag, + "only_privileged_ports", + _("Only privileged ports"), + _("Only redirect traffic on ports below 1024.") + ); + + o = s.option( + form.Flag, + "redirect_udp", + _("Redirect UDP"), + _("Redirect UDP traffic to V2Ray.") + ); + + o = s.option( + form.Flag, + "redirect_dns", + _("Redirect DNS"), + _("Redirect DNS traffic to V2Ray.") + ); + o.depends("redirect_udp", ""); + o.depends("redirect_udp", "0"); + + o = s.option( + form.ListValue, + "proxy_mode", + _("Proxy mode"), + _( + "If enabled, iptables rules will be added to pre-filter traffic and then sent to V2Ray." + ) + ); + o.value("default", _("Default")); + o.value("cn_direct", _("CN Direct")); + o.value("cn_proxy", _("CN Proxy")); + o.value("gfwlist_proxy", _("GFWList Proxy")); + + o = s.option( + form.ListValue, + "apnic_delegated_mirror", + _("APNIC delegated mirror") + ); + o.value("apnic", "APNIC"); + o.value("arin", "ARIN"); + o.value("ripe", "RIPE"); + o.value("iana", "IANA"); + + o = s.option(custom.ListStatusValue, "_chnroutelist", _("CHNRoute")); + o.listtype = "chnroute"; + o.btntitle = _("Update"); + o.btnstyle = "apply"; + o.onupdate = L.bind(this.handleListUpdate, this); + + o = s.option(form.ListValue, "gfwlist_mirror", _("GFWList mirror")); + o.value("github", "GitHub"); + o.value("gitlab", "GitLab"); + o.value("bitbucket", "Bitbucket"); + o.value("pagure", "Pagure"); + + o = s.option(custom.ListStatusValue, "_gfwlist", _("GFWList")); + o.listtype = "gfwlist"; + o.btntitle = _("Update"); + o.btnstyle = "apply"; + o.onupdate = L.bind(this.handleListUpdate, this); + + o = s.option( + custom.TextValue, + "_proxy_list", + _("Extra proxy list"), + _( + "One address per line. Allow types: DOMAIN, IP, CIDR. eg: %s, %s, %s" + ).format("www.google.com", "1.1.1.1", "192.168.0.0/16") + ); + o.wrap = "off"; + o.rows = 5; + o.datatype = "string"; + o.filepath = "/etc/luci_v2ray/proxylist.txt"; + + o = s.option( + custom.TextValue, + "_direct_list", + _("Extra direct list"), + _( + "One address per line. Allow types: DOMAIN, IP, CIDR. eg: %s, %s, %s" + ).format("www.google.com", "1.1.1.1", "192.168.0.0/16") + ); + o.wrap = "off"; + o.rows = 5; + o.datatype = "string"; + o.filepath = "/etc/luci_v2ray/directlist.txt"; + + o = s.option( + form.Value, + "proxy_list_dns", + _("Proxy list DNS"), + _( + "DNS used for domains in proxy list, format: ip#port. eg: %s" + ).format("1.1.1.1#53") + ); + + o = s.option( + form.Value, + "direct_list_dns", + _("Direct list DNS"), + _( + "DNS used for domains in direct list, format: ip#port. eg: %s" + ).format("114.114.114.114#53") + ); + + o = s.option( + custom.TextValue, + "_src_direct_list", + _("Local devices direct outbound list"), + _("One address per line. Allow types: IP, CIDR. eg: %s, %s").format( + "192.168.0.19", + "192.168.0.0/16" + ) + ); + o.wrap = "off"; + o.rows = 3; + o.datatype = "string"; + o.filepath = "/etc/luci_v2ray/srcdirectlist.txt"; + + return m.render(); } -}); \ No newline at end of file +}); diff --git a/root/etc/luci_v2ray/chnroute.txt b/root/etc/luci_v2ray/chnroute.txt index ec30255..174de1d 100644 --- a/root/etc/luci_v2ray/chnroute.txt +++ b/root/etc/luci_v2ray/chnroute.txt @@ -264,6 +264,11 @@ 42.242.0.0/15 42.244.0.0/14 42.248.0.0/13 +43.136.0.0/13 +43.144.0.0/13 +43.176.0.0/12 +43.192.0.0/14 +43.196.0.0/15 43.224.12.0/22 43.224.24.0/22 43.224.44.0/22 @@ -287,8 +292,6 @@ 43.225.76.0/22 43.225.84.0/22 43.225.120.0/22 -43.225.124.0/22 -43.225.140.0/22 43.225.172.0/22 43.225.180.0/22 43.225.208.0/22 @@ -423,11 +426,12 @@ 43.228.148.0/22 43.228.152.0/22 43.228.188.0/22 +43.228.204.0/22 +43.228.240.0/22 43.229.40.0/22 43.229.48.0/22 43.229.56.0/22 43.229.96.0/22 -43.229.120.0/22 43.229.136.0/22 43.229.140.0/22 43.229.144.0/22 @@ -450,7 +454,6 @@ 43.230.84.0/22 43.230.124.0/22 43.230.136.0/22 -43.230.168.0/22 43.230.220.0/22 43.230.224.0/22 43.230.228.0/22 @@ -597,7 +600,6 @@ 43.237.184.0/22 43.237.188.0/22 43.237.192.0/22 -43.237.196.0/22 43.237.200.0/22 43.237.204.0/22 43.237.208.0/22 @@ -721,7 +723,6 @@ 43.240.212.0/22 43.240.216.0/22 43.240.220.0/22 -43.240.236.0/22 43.240.240.0/22 43.240.244.0/22 43.240.248.0/22 @@ -744,7 +745,6 @@ 43.241.176.0/22 43.241.180.0/22 43.241.184.0/22 -43.241.196.0/22 43.241.208.0/22 43.241.212.0/22 43.241.216.0/22 @@ -758,8 +758,7 @@ 43.241.252.0/22 43.242.8.0/22 43.242.12.0/22 -43.242.16.0/22 -43.242.20.0/22 +43.242.16.0/21 43.242.24.0/22 43.242.28.0/22 43.242.44.0/22 @@ -794,16 +793,13 @@ 43.243.8.0/22 43.243.12.0/22 43.243.16.0/22 -43.243.24.0/22 43.243.88.0/22 43.243.128.0/22 43.243.136.0/22 43.243.144.0/22 43.243.148.0/22 43.243.156.0/22 -43.243.168.0/22 43.243.180.0/22 -43.243.188.0/22 43.243.228.0/22 43.243.232.0/22 43.243.244.0/22 @@ -833,7 +829,6 @@ 43.246.92.0/22 43.246.96.0/22 43.246.112.0/22 -43.246.212.0/22 43.246.228.0/22 43.247.4.0/22 43.247.8.0/22 @@ -948,7 +943,6 @@ 43.250.244.0/22 43.251.4.0/22 43.251.8.0/22 -43.251.12.0/22 43.251.36.0/22 43.251.100.0/22 43.251.116.0/22 @@ -956,10 +950,8 @@ 43.251.232.0/22 43.251.236.0/22 43.251.244.0/22 -43.252.40.0/22 43.252.48.0/22 43.252.56.0/22 -43.252.224.0/22 43.254.0.0/22 43.254.4.0/22 43.254.8.0/22 @@ -1011,9 +1003,7 @@ 43.255.76.0/22 43.255.84.0/22 43.255.96.0/22 -43.255.108.0/22 43.255.144.0/22 -43.255.168.0/22 43.255.176.0/22 43.255.184.0/22 43.255.192.0/22 @@ -1062,13 +1052,10 @@ 45.113.240.0/22 45.113.252.0/22 45.114.0.0/22 -45.114.12.0/22 45.114.32.0/22 45.114.40.0/22 45.114.52.0/22 45.114.96.0/22 -45.114.104.0/22 -45.114.108.0/22 45.114.124.0/22 45.114.136.0/22 45.114.196.0/22 @@ -1088,7 +1075,6 @@ 45.115.236.0/22 45.115.244.0/22 45.115.248.0/22 -45.116.12.0/22 45.116.16.0/22 45.116.24.0/22 45.116.32.0/22 @@ -1115,9 +1101,7 @@ 45.120.100.0/22 45.120.140.0/22 45.120.164.0/22 -45.120.220.0/22 45.120.240.0/22 -45.121.20.0/22 45.121.52.0/22 45.121.64.0/22 45.121.68.0/22 @@ -1224,11 +1208,8 @@ 45.124.176.0/22 45.124.208.0/22 45.124.248.0/22 -45.125.12.0/22 45.125.16.0/22 45.125.24.0/22 -45.125.28.0/22 -45.125.32.0/22 45.125.44.0/22 45.125.52.0/22 45.125.56.0/22 @@ -1239,7 +1220,6 @@ 45.125.92.0/22 45.125.96.0/22 45.125.100.0/22 -45.125.104.0/22 45.125.136.0/22 45.126.48.0/22 45.126.52.0/22 @@ -1252,9 +1232,6 @@ 45.126.220.0/22 45.127.8.0/22 45.127.12.0/22 -45.127.96.0/22 -45.127.116.0/22 -45.127.124.0/22 45.127.128.0/22 45.127.144.0/22 45.127.148.0/22 @@ -1292,9 +1269,7 @@ 45.249.28.0/22 45.249.32.0/22 45.249.36.0/22 -45.249.92.0/22 45.249.112.0/22 -45.249.180.0/22 45.249.188.0/22 45.249.192.0/22 45.249.196.0/22 @@ -1381,7 +1356,6 @@ 45.252.40.0/22 45.252.44.0/22 45.252.48.0/22 -45.252.60.0/22 45.252.84.0/22 45.252.88.0/22 45.252.92.0/22 @@ -1475,6 +1449,7 @@ 45.253.232.0/22 45.253.236.0/22 45.253.240.0/22 +45.253.244.0/22 45.254.0.0/22 45.254.4.0/22 45.254.8.0/22 @@ -1619,6 +1594,7 @@ 52.82.0.0/15 52.130.0.0/15 54.222.0.0/15 +57.176.0.0/15 58.14.0.0/15 58.16.0.0/16 58.17.0.0/17 @@ -1716,7 +1692,6 @@ 59.153.116.0/22 59.153.136.0/22 59.153.152.0/22 -59.153.156.0/22 59.153.164.0/22 59.153.168.0/22 59.153.172.0/22 @@ -1729,7 +1704,6 @@ 59.172.0.0/15 59.174.0.0/15 59.191.0.0/17 -59.191.240.0/20 59.192.0.0/10 60.0.0.0/13 60.8.0.0/15 @@ -1786,6 +1760,8 @@ 61.29.128.0/18 61.29.192.0/19 61.29.224.0/20 +61.29.240.0/22 +61.29.248.0/22 61.45.128.0/18 61.45.224.0/20 61.47.128.0/18 @@ -1880,12 +1856,15 @@ 101.2.172.0/22 101.4.0.0/14 101.16.0.0/12 -101.32.0.0/14 -101.36.0.0/17 +101.33.128.0/17 +101.34.0.0/15 +101.36.0.0/18 +101.36.64.0/19 101.36.128.0/17 101.37.0.0/16 101.38.0.0/15 -101.40.0.0/13 +101.40.0.0/15 +101.42.0.0/15 101.48.0.0/15 101.50.8.0/22 101.50.12.0/22 @@ -1949,7 +1928,9 @@ 101.234.96.0/19 101.236.0.0/14 101.240.0.0/14 -101.244.0.0/14 +101.244.0.0/16 +101.245.0.0/16 +101.246.0.0/15 101.248.0.0/15 101.251.0.0/22 101.251.8.0/21 @@ -1968,6 +1949,7 @@ 103.2.108.0/22 103.2.156.0/22 103.2.164.0/22 +103.2.188.0/23 103.2.200.0/22 103.2.204.0/22 103.2.208.0/22 @@ -2005,7 +1987,6 @@ 103.6.108.0/22 103.6.220.0/22 103.6.228.0/22 -103.7.4.0/22 103.7.28.0/22 103.7.140.0/22 103.7.212.0/22 @@ -2026,7 +2007,6 @@ 103.9.24.0/22 103.9.108.0/22 103.9.152.0/22 -103.9.192.0/22 103.9.248.0/22 103.9.252.0/22 103.10.0.0/22 @@ -2037,8 +2017,9 @@ 103.11.168.0/22 103.11.180.0/22 103.12.32.0/22 -103.12.68.0/22 +103.12.68.0/23 103.12.92.0/22 +103.12.98.0/23 103.12.136.0/22 103.12.184.0/22 103.12.232.0/22 @@ -2048,7 +2029,6 @@ 103.13.196.0/22 103.13.220.0/22 103.13.244.0/22 -103.14.32.0/22 103.14.84.0/22 103.14.100.0/22 103.14.132.0/22 @@ -2073,14 +2053,16 @@ 103.17.160.0/22 103.17.204.0/22 103.17.228.0/22 +103.18.186.0/23 103.18.192.0/22 +103.18.206.0/23 103.18.208.0/22 103.18.212.0/22 103.18.224.0/22 -103.19.0.0/22 103.19.12.0/22 103.19.40.0/22 103.19.44.0/22 +103.19.50.0/23 103.19.64.0/22 103.19.68.0/22 103.19.72.0/22 @@ -2093,6 +2075,8 @@ 103.20.128.0/22 103.20.160.0/22 103.20.248.0/22 +103.21.98.0/23 +103.21.102.0/23 103.21.112.0/22 103.21.116.0/22 103.21.136.0/22 @@ -2148,7 +2132,6 @@ 103.24.184.0/22 103.24.220.0/22 103.24.228.0/22 -103.24.248.0/22 103.24.252.0/22 103.25.8.0/23 103.25.20.0/22 @@ -2186,11 +2169,16 @@ 103.28.204.0/22 103.28.212.0/22 103.29.16.0/22 +103.29.24.0/23 +103.29.29.0/24 103.29.128.0/22 103.29.132.0/22 103.29.136.0/22 +103.29.236.0/23 103.30.20.0/22 103.30.96.0/22 +103.30.104.0/23 +103.30.106.0/23 103.30.148.0/22 103.30.200.0/22 103.30.228.0/22 @@ -2207,6 +2195,7 @@ 103.31.168.0/22 103.31.200.0/22 103.31.236.0/22 +103.31.242.0/23 103.32.0.0/22 103.32.4.0/22 103.32.8.0/22 @@ -2415,7 +2404,6 @@ 103.35.104.0/22 103.35.116.0/22 103.35.180.0/22 -103.35.200.0/22 103.35.220.0/22 103.36.28.0/22 103.36.36.0/22 @@ -2448,7 +2436,6 @@ 103.36.236.0/22 103.36.240.0/22 103.36.244.0/22 -103.37.0.0/22 103.37.12.0/22 103.37.16.0/22 103.37.24.0/22 @@ -2458,7 +2445,6 @@ 103.37.72.0/22 103.37.100.0/22 103.37.104.0/22 -103.37.124.0/22 103.37.136.0/22 103.37.140.0/22 103.37.144.0/22 @@ -2472,8 +2458,7 @@ 103.37.188.0/22 103.37.208.0/22 103.37.212.0/22 -103.37.216.0/22 -103.37.220.0/22 +103.37.216.0/21 103.37.248.0/22 103.37.252.0/22 103.38.0.0/22 @@ -2491,13 +2476,10 @@ 103.38.224.0/22 103.38.228.0/22 103.38.232.0/22 -103.38.252.0/22 -103.39.16.0/22 103.39.64.0/22 103.39.88.0/22 103.39.100.0/22 103.39.104.0/22 -103.39.108.0/22 103.39.160.0/22 103.39.164.0/22 103.39.168.0/22 @@ -2526,6 +2508,7 @@ 103.40.44.0/22 103.40.88.0/22 103.40.100.0/22 +103.40.158.0/23 103.40.192.0/22 103.40.212.0/22 103.40.220.0/22 @@ -2539,6 +2522,7 @@ 103.41.0.0/22 103.41.16.0/22 103.41.52.0/22 +103.41.116.0/22 103.41.140.0/22 103.41.148.0/22 103.41.152.0/22 @@ -2564,17 +2548,16 @@ 103.43.100.0/22 103.43.104.0/22 103.43.124.0/22 +103.43.132.0/22 103.43.184.0/22 103.43.192.0/22 103.43.196.0/22 103.43.208.0/22 103.43.220.0/22 103.43.224.0/22 -103.43.232.0/22 103.43.240.0/22 103.44.56.0/22 103.44.80.0/22 -103.44.88.0/22 103.44.120.0/22 103.44.124.0/22 103.44.132.0/22 @@ -2708,7 +2691,6 @@ 103.47.212.0/22 103.48.52.0/22 103.48.92.0/22 -103.48.144.0/22 103.48.148.0/22 103.48.152.0/22 103.48.156.0/22 @@ -2725,14 +2707,12 @@ 103.49.20.0/22 103.49.72.0/22 103.49.76.0/22 -103.49.92.0/22 103.49.96.0/22 103.49.108.0/22 103.49.128.0/22 103.49.176.0/22 103.49.180.0/22 103.49.196.0/22 -103.49.248.0/22 103.50.36.0/22 103.50.44.0/22 103.50.48.0/22 @@ -2780,7 +2760,6 @@ 103.52.176.0/22 103.52.184.0/22 103.52.196.0/22 -103.53.4.0/22 103.53.64.0/22 103.53.68.0/22 103.53.92.0/22 @@ -2795,17 +2774,14 @@ 103.53.204.0/22 103.53.208.0/22 103.53.212.0/22 -103.53.216.0/22 103.53.236.0/22 103.53.248.0/22 103.54.8.0/22 103.54.48.0/22 -103.54.60.0/22 103.54.160.0/22 103.54.164.0/22 103.54.212.0/22 103.54.240.0/22 -103.55.24.0/22 103.55.80.0/22 103.55.120.0/22 103.55.152.0/22 @@ -2818,11 +2794,13 @@ 103.56.16.0/22 103.56.20.0/22 103.56.32.0/22 -103.56.52.0/22 103.56.56.0/22 103.56.60.0/22 103.56.72.0/22 103.56.76.0/22 +103.56.94.0/23 +103.56.100.0/22 +103.56.104.0/22 103.56.140.0/22 103.56.152.0/22 103.56.184.0/22 @@ -2843,6 +2821,7 @@ 103.59.128.0/22 103.59.148.0/22 103.59.164.0/22 +103.59.168.0/23 103.60.32.0/22 103.60.44.0/22 103.60.164.0/22 @@ -2856,7 +2835,6 @@ 103.61.160.0/22 103.61.172.0/22 103.61.176.0/22 -103.61.184.0/22 103.61.188.0/22 103.62.24.0/22 103.62.52.0/22 @@ -3012,6 +2990,9 @@ 103.65.164.0/22 103.65.168.0/22 103.65.172.0/22 +103.65.204.0/23 +103.65.206.0/23 +103.65.224.0/23 103.66.32.0/22 103.66.40.0/22 103.66.92.0/22 @@ -3048,19 +3029,18 @@ 103.68.128.0/22 103.68.192.0/22 103.69.16.0/22 +103.69.62.0/23 103.69.116.0/22 103.69.132.0/22 103.69.152.0/22 -103.69.212.0/22 103.70.8.0/22 +103.70.14.0/23 103.70.148.0/22 -103.70.184.0/22 103.70.220.0/22 103.70.224.0/22 103.70.236.0/22 103.70.252.0/22 103.71.0.0/22 -103.71.32.0/22 103.71.48.0/22 103.71.68.0/22 103.71.72.0/22 @@ -3091,7 +3071,6 @@ 103.72.124.0/22 103.72.128.0/22 103.72.132.0/22 -103.72.144.0/22 103.72.148.0/22 103.72.172.0/22 103.72.180.0/22 @@ -3112,8 +3091,6 @@ 103.73.24.0/22 103.73.28.0/22 103.73.48.0/22 -103.73.88.0/22 -103.73.96.0/22 103.73.116.0/22 103.73.120.0/22 103.73.128.0/22 @@ -3144,7 +3121,7 @@ 103.74.156.0/22 103.74.204.0/22 103.74.232.0/22 -103.75.16.0/22 +103.75.82.0/23 103.75.88.0/22 103.75.92.0/22 103.75.104.0/22 @@ -3159,7 +3136,6 @@ 103.76.64.0/22 103.76.68.0/22 103.76.72.0/22 -103.76.84.0/22 103.76.92.0/22 103.76.216.0/22 103.76.220.0/22 @@ -3203,8 +3179,8 @@ 103.79.204.0/22 103.79.208.0/22 103.79.212.0/22 +103.79.228.0/23 103.79.240.0/22 -103.80.24.0/22 103.80.28.0/22 103.80.44.0/22 103.80.72.0/22 @@ -3253,9 +3229,9 @@ 103.84.48.0/22 103.84.64.0/22 103.84.72.0/22 -103.84.92.0/22 -103.84.108.0/22 103.84.136.0/22 +103.84.170.0/23 +103.84.204.0/23 103.85.20.0/22 103.85.24.0/22 103.85.44.0/22 @@ -3267,15 +3243,13 @@ 103.85.168.0/22 103.85.172.0/22 103.85.176.0/22 +103.85.186.0/23 103.85.224.0/22 103.86.28.0/22 103.86.32.0/22 -103.86.44.0/22 103.86.60.0/22 -103.86.68.0/22 103.86.80.0/22 103.86.84.0/22 -103.86.88.0/22 103.86.204.0/22 103.86.208.0/22 103.86.212.0/22 @@ -3309,11 +3283,7 @@ 103.88.64.0/22 103.88.72.0/22 103.88.96.0/22 -103.88.100.0/22 103.88.164.0/22 -103.88.176.0/22 -103.88.184.0/22 -103.88.188.0/22 103.88.212.0/22 103.89.28.0/22 103.89.96.0/22 @@ -3356,12 +3326,13 @@ 103.91.36.0/22 103.91.40.0/22 103.91.108.0/22 +103.91.112.0/23 +103.91.138.0/23 103.91.152.0/22 103.91.176.0/22 103.91.200.0/22 103.91.208.0/22 103.91.212.0/22 -103.91.219.0/24 103.91.236.0/22 103.91.252.0/22 103.92.0.0/22 @@ -3381,7 +3352,6 @@ 103.92.88.0/22 103.92.108.0/22 103.92.124.0/22 -103.92.128.0/24 103.92.132.0/22 103.92.156.0/22 103.92.164.0/22 @@ -3400,9 +3370,8 @@ 103.93.0.0/22 103.93.4.0/22 103.93.28.0/22 -103.93.76.0/22 103.93.84.0/22 -103.93.121.0/24 +103.93.142.0/23 103.93.152.0/22 103.93.180.0/22 103.93.204.0/22 @@ -3417,21 +3386,16 @@ 103.94.88.0/22 103.94.116.0/22 103.94.160.0/22 -103.94.180.0/22 103.94.200.0/22 -103.95.28.0/22 103.95.52.0/22 -103.95.64.0/22 103.95.68.0/22 103.95.88.0/22 103.95.92.0/22 -103.95.116.0/22 103.95.128.0/22 103.95.136.0/22 103.95.140.0/22 103.95.144.0/22 103.95.152.0/22 -103.95.207.0/24 103.95.216.0/22 103.95.220.0/22 103.95.224.0/22 @@ -3446,7 +3410,6 @@ 103.96.124.0/22 103.96.136.0/22 103.96.140.0/24 -103.96.148.0/22 103.96.152.0/22 103.96.156.0/22 103.96.160.0/22 @@ -3464,12 +3427,10 @@ 103.96.208.0/22 103.96.212.0/22 103.96.216.0/22 +103.96.224.0/23 103.97.8.0/22 103.97.12.0/22 -103.97.16.0/22 -103.97.20.0/22 -103.97.24.0/22 -103.97.28.0/22 +103.97.16.0/20 103.97.32.0/22 103.97.36.0/22 103.97.40.0/22 @@ -3486,8 +3447,8 @@ 103.97.148.0/22 103.97.188.0/22 103.97.192.0/22 -103.97.224.0/22 103.97.228.0/23 +103.98.0.0/23 103.98.28.0/23 103.98.40.0/22 103.98.44.0/22 @@ -3538,7 +3499,6 @@ 103.100.68.0/22 103.100.88.0/22 103.100.116.0/22 -103.100.140.0/22 103.100.144.0/22 103.100.236.0/22 103.100.240.0/22 @@ -3553,7 +3513,6 @@ 103.101.124.0/22 103.101.144.0/22 103.101.148.0/22 -103.101.153.0/24 103.101.180.0/22 103.101.184.0/22 103.102.76.0/22 @@ -3571,7 +3530,6 @@ 103.103.12.0/22 103.103.16.0/22 103.103.36.0/22 -103.103.68.0/22 103.103.72.0/22 103.103.176.0/22 103.103.188.0/22 @@ -3591,7 +3549,6 @@ 103.104.104.0/22 103.104.152.0/22 103.104.168.0/22 -103.104.172.0/22 103.104.188.0/22 103.104.198.0/23 103.104.252.0/22 @@ -3600,7 +3557,6 @@ 103.105.12.0/22 103.105.16.0/22 103.105.23.0/24 -103.105.56.0/22 103.105.60.0/22 103.105.116.0/22 103.105.132.0/22 @@ -3619,14 +3575,12 @@ 103.106.128.0/22 103.106.132.0/22 103.106.160.0/22 -103.106.188.0/22 103.106.196.0/22 103.106.202.0/23 103.106.212.0/22 103.106.244.0/22 103.106.252.0/22 103.107.0.0/22 -103.107.8.0/24 103.107.28.0/22 103.107.32.0/22 103.107.44.0/22 @@ -3641,38 +3595,29 @@ 103.107.216.0/22 103.107.220.0/22 103.108.52.0/22 -103.108.64.0/22 103.108.160.0/22 103.108.164.0/22 103.108.184.0/23 -103.108.188.0/23 103.108.192.0/22 103.108.196.0/22 103.108.208.0/22 103.108.212.0/22 103.108.224.0/22 103.108.244.0/22 -103.108.251.0/24 103.109.20.0/22 103.109.48.0/22 103.109.88.0/22 103.109.106.0/23 103.109.248.0/22 -103.110.32.0/22 103.110.80.0/23 103.110.92.0/22 -103.110.100.0/22 103.110.116.0/22 -103.110.127.0/24 -103.110.128.0/23 -103.110.131.0/24 103.110.132.0/22 103.110.136.0/22 103.110.152.0/22 103.110.156.0/22 103.110.188.0/22 103.110.204.0/22 -103.111.38.0/23 103.111.64.0/22 103.111.172.0/22 103.111.252.0/22 @@ -3688,7 +3633,6 @@ 103.112.140.0/22 103.112.172.0/22 103.112.184.0/22 -103.112.208.0/22 103.113.4.0/22 103.113.92.0/22 103.113.144.0/22 @@ -3719,9 +3663,7 @@ 103.115.92.0/22 103.115.120.0/22 103.115.148.0/22 -103.115.204.0/23 103.115.248.0/22 -103.116.20.0/22 103.116.40.0/22 103.116.64.0/22 103.116.72.0/22 @@ -3730,6 +3672,7 @@ 103.116.120.0/22 103.116.128.0/22 103.116.132.0/23 +103.116.138.0/23 103.116.148.0/22 103.116.184.0/22 103.116.206.0/23 @@ -3739,12 +3682,9 @@ 103.117.16.0/22 103.117.72.0/22 103.117.88.0/22 -103.117.132.0/22 103.117.136.0/22 103.117.188.0/22 103.117.220.0/22 -103.118.19.0/24 -103.118.36.0/22 103.118.52.0/22 103.118.56.0/22 103.118.60.0/22 @@ -3769,7 +3709,6 @@ 103.119.12.0/22 103.119.16.0/22 103.119.28.0/22 -103.119.44.0/22 103.119.104.0/22 103.119.115.0/24 103.119.156.0/22 @@ -3778,7 +3717,6 @@ 103.119.224.0/22 103.120.52.0/22 103.120.72.0/22 -103.120.76.0/24 103.120.88.0/22 103.120.96.0/22 103.120.100.0/22 @@ -3826,21 +3764,21 @@ 103.126.128.0/22 103.126.132.0/22 103.126.208.0/22 -103.126.241.0/24 103.129.52.0/22 -103.129.148.0/22 103.130.132.0/22 103.130.152.0/24 103.130.160.0/22 103.130.228.0/22 103.131.20.0/22 103.131.36.0/22 +103.131.138.0/23 103.131.152.0/22 103.131.168.0/22 103.131.176.0/22 103.131.224.0/22 103.131.228.0/22 103.131.240.0/22 +103.132.22.0/23 103.132.60.0/22 103.132.64.0/22 103.132.68.0/22 @@ -3866,6 +3804,7 @@ 103.133.232.0/22 103.134.12.0/24 103.134.196.0/22 +103.134.232.0/23 103.135.80.0/22 103.135.124.0/22 103.135.148.0/22 @@ -3879,12 +3818,10 @@ 103.135.236.0/22 103.136.128.0/22 103.136.232.0/22 -103.137.57.0/24 103.137.58.0/23 103.137.60.0/24 103.137.76.0/22 103.137.136.0/23 -103.137.149.0/24 103.137.180.0/22 103.137.236.0/22 103.138.2.0/23 @@ -3899,39 +3836,33 @@ 103.139.0.0/23 103.139.2.0/23 103.139.22.0/23 +103.139.92.0/23 103.139.113.0/24 103.139.134.0/23 103.139.136.0/23 103.139.172.0/23 -103.139.200.0/23 103.139.204.0/23 103.139.212.0/23 103.140.8.0/23 103.140.14.0/23 -103.140.46.0/23 103.140.70.0/23 103.140.126.0/23 103.140.140.0/23 103.140.144.0/23 103.140.152.0/23 103.140.192.0/23 -103.140.194.0/23 103.140.228.0/23 103.141.10.0/23 -103.141.36.0/23 103.141.58.0/23 103.141.128.0/23 103.141.186.0/23 -103.141.190.0/23 103.141.242.0/23 -103.142.0.0/23 103.142.28.0/23 103.142.58.0/23 103.142.82.0/23 103.142.96.0/23 103.142.102.0/23 103.142.122.0/23 -103.142.126.0/24 103.142.128.0/23 103.142.140.0/23 103.142.154.0/23 @@ -3960,10 +3891,273 @@ 103.144.66.0/23 103.144.70.0/23 103.144.72.0/23 -103.144.88.0/24 103.144.108.0/23 103.144.136.0/23 103.144.148.0/23 +103.144.158.0/23 +103.144.240.0/23 +103.145.38.0/23 +103.145.40.0/23 +103.145.42.0/23 +103.145.60.0/23 +103.145.72.0/23 +103.145.80.0/23 +103.145.86.0/23 +103.145.92.0/23 +103.145.94.0/23 +103.145.98.0/23 +103.145.106.0/23 +103.145.122.0/23 +103.145.188.0/23 +103.145.190.0/23 +103.146.72.0/23 +103.146.90.0/23 +103.146.124.0/23 +103.146.126.0/23 +103.146.138.0/23 +103.146.230.0/23 +103.146.236.0/23 +103.146.252.0/23 +103.147.12.0/23 +103.147.124.0/23 +103.147.198.0/23 +103.147.206.0/23 +103.148.174.0/23 +103.149.6.0/23 +103.149.17.0/24 +103.149.44.0/23 +103.149.110.0/23 +103.149.132.0/23 +103.149.144.0/23 +103.149.156.0/23 +103.149.181.0/24 +103.149.210.0/23 +103.149.214.0/23 +103.149.220.0/23 +103.149.242.0/23 +103.149.244.0/23 +103.149.246.0/23 +103.149.248.0/23 +103.150.10.0/23 +103.150.24.0/23 +103.150.66.0/23 +103.150.72.0/23 +103.150.122.0/23 +103.150.126.0/23 +103.150.128.0/23 +103.150.130.0/23 +103.150.146.0/23 +103.150.164.0/23 +103.150.172.0/23 +103.150.180.0/23 +103.150.200.0/23 +103.150.210.0/23 +103.150.214.0/23 +103.150.216.0/23 +103.150.244.0/23 +103.151.4.0/23 +103.151.44.0/23 +103.151.138.0/23 +103.151.142.0/23 +103.151.148.0/23 +103.151.150.0/23 +103.151.158.0/23 +103.151.178.0/23 +103.151.206.0/23 +103.151.216.0/23 +103.151.228.0/23 +103.152.14.0/23 +103.152.24.0/23 +103.152.28.0/23 +103.152.30.0/23 +103.152.56.0/23 +103.152.76.0/23 +103.152.98.0/23 +103.152.112.0/23 +103.152.120.0/23 +103.152.122.0/23 +103.152.132.0/23 +103.152.152.0/23 +103.152.168.0/23 +103.152.170.0/23 +103.152.186.0/23 +103.152.190.0/23 +103.152.192.0/23 +103.152.200.0/23 +103.152.208.0/23 +103.152.224.0/23 +103.152.226.0/23 +103.152.246.0/23 +103.152.250.0/23 +103.153.4.0/23 +103.153.36.0/23 +103.153.100.0/23 +103.153.114.0/23 +103.153.122.0/23 +103.153.128.0/23 +103.153.132.0/23 +103.153.138.0/23 +103.153.146.0/23 +103.153.160.0/23 +103.154.18.0/23 +103.154.30.0/23 +103.154.32.0/23 +103.154.40.0/23 +103.154.66.0/23 +103.154.162.0/23 +103.154.164.0/23 +103.154.168.0/23 +103.154.242.0/23 +103.155.14.0/23 +103.155.16.0/23 +103.155.34.0/23 +103.155.48.0/23 +103.155.76.0/23 +103.155.100.0/23 +103.155.110.0/23 +103.155.120.0/23 +103.155.214.0/23 +103.155.248.0/23 +103.156.28.0/23 +103.156.68.0/23 +103.156.78.0/23 +103.156.104.0/23 +103.156.158.0/23 +103.156.174.0/23 +103.156.186.0/23 +103.156.228.0/23 +103.157.30.0/23 +103.157.138.0/23 +103.157.174.0/23 +103.157.212.0/23 +103.157.234.0/23 +103.157.254.0/23 +103.158.0.0/23 +103.158.8.0/23 +103.158.16.0/23 +103.158.74.0/23 +103.158.190.0/23 +103.158.200.0/23 +103.158.224.0/23 +103.159.80.0/23 +103.159.122.0/23 +103.159.124.0/23 +103.159.134.0/23 +103.159.142.0/23 +103.160.32.0/23 +103.160.34.0/23 +103.160.112.0/23 +103.160.114.0/23 +103.160.244.0/23 +103.160.254.0/23 +103.161.14.0/23 +103.161.102.0/23 +103.161.138.0/23 +103.161.208.0/23 +103.161.220.0/23 +103.161.254.0/23 +103.162.10.0/23 +103.162.32.0/23 +103.162.116.0/23 +103.163.28.0/23 +103.163.32.0/23 +103.163.46.0/23 +103.163.74.0/23 +103.163.180.0/23 +103.164.4.0/23 +103.164.32.0/23 +103.164.40.0/23 +103.164.42.0/23 +103.164.64.0/23 +103.164.76.0/23 +103.164.178.0/23 +103.165.44.0/23 +103.165.52.0/23 +103.165.82.0/23 +103.165.110.0/23 +103.166.20.0/23 +103.166.50.0/23 +103.166.52.0/23 +103.166.54.0/23 +103.166.84.0/23 +103.166.138.0/23 +103.166.242.0/23 +103.166.246.0/23 +103.167.0.0/23 +103.167.36.0/23 +103.167.100.0/23 +103.168.98.0/23 +103.168.170.0/23 +103.169.50.0/23 +103.169.62.0/23 +103.169.108.0/23 +103.169.162.0/23 +103.169.202.0/23 +103.169.216.0/23 +103.170.4.0/23 +103.170.72.0/23 +103.170.134.0/23 +103.170.210.0/23 +103.170.212.0/23 +103.171.32.0/23 +103.171.166.0/23 +103.171.214.0/23 +103.172.32.0/23 +103.172.160.0/23 +103.172.191.0/24 +103.173.102.0/23 +103.173.182.0/23 +103.173.184.0/23 +103.174.94.0/23 +103.175.14.0/23 +103.175.98.0/23 +103.175.114.0/23 +103.175.118.0/23 +103.176.52.0/23 +103.176.222.0/23 +103.176.244.0/23 +103.177.28.0/23 +103.177.44.0/23 +103.177.70.0/23 +103.177.136.0/23 +103.177.162.0/23 +103.178.56.0/23 +103.178.240.0/23 +103.179.76.0/23 +103.179.78.0/23 +103.180.108.0/23 +103.180.226.0/23 +103.181.164.0/23 +103.181.234.0/23 +103.183.26.0/23 +103.183.66.0/23 +103.183.122.0/23 +103.183.124.0/23 +103.184.44.0/23 +103.184.46.0/23 +103.184.60.0/23 +103.185.78.0/23 +103.185.80.0/23 +103.185.228.0/23 +103.186.4.0/23 +103.186.108.0/23 +103.186.112.0/23 +103.186.136.0/23 +103.186.158.0/23 +103.186.162.0/23 +103.186.228.0/23 +103.189.92.0/23 +103.189.140.0/23 +103.189.152.0/23 +103.189.154.0/23 +103.190.20.0/23 +103.190.71.0/24 +103.190.104.0/23 +103.190.116.0/23 +103.190.118.0/23 +103.190.122.0/23 +103.191.102.0/23 +103.191.242.0/23 103.192.0.0/22 103.192.4.0/22 103.192.8.0/22 @@ -3997,10 +4191,7 @@ 103.193.40.0/22 103.193.44.0/22 103.193.120.0/22 -103.193.124.0/22 103.193.140.0/22 -103.193.144.0/22 -103.193.148.0/22 103.193.160.0/22 103.193.188.0/22 103.193.192.0/22 @@ -4011,16 +4202,12 @@ 103.193.228.0/22 103.193.232.0/22 103.193.236.0/22 -103.193.240.0/22 103.194.16.0/22 103.195.104.0/22 103.195.112.0/22 -103.195.136.0/22 103.195.148.0/22 103.195.152.0/22 103.195.160.0/22 -103.195.192.0/22 -103.196.60.0/22 103.196.64.0/22 103.196.72.0/22 103.196.88.0/22 @@ -4028,6 +4215,7 @@ 103.196.96.0/22 103.196.168.0/22 103.196.204.0/22 +103.197.0.0/22 103.197.180.0/22 103.197.228.0/22 103.198.20.0/22 @@ -4038,7 +4226,6 @@ 103.198.156.0/22 103.198.180.0/22 103.198.196.0/22 -103.198.200.0/22 103.198.216.0/22 103.198.220.0/22 103.198.224.0/22 @@ -4052,8 +4239,6 @@ 103.199.228.0/22 103.199.248.0/22 103.199.252.0/22 -103.200.28.0/22 -103.200.32.0/22 103.200.52.0/22 103.200.64.0/22 103.200.68.0/22 @@ -4199,7 +4384,6 @@ 103.203.24.0/22 103.203.28.0/22 103.203.32.0/22 -103.203.52.0/22 103.203.56.0/22 103.203.96.0/22 103.203.100.0/22 @@ -4227,6 +4411,7 @@ 103.204.148.0/22 103.204.152.0/22 103.204.196.0/22 +103.204.216.0/23 103.204.232.0/22 103.204.236.0/22 103.205.4.0/22 @@ -4248,11 +4433,9 @@ 103.205.252.0/22 103.206.0.0/22 103.206.44.0/22 -103.206.108.0/22 103.206.148.0/22 103.207.48.0/22 103.207.104.0/22 -103.207.164.0/22 103.207.184.0/22 103.207.188.0/22 103.207.192.0/22 @@ -4270,14 +4453,11 @@ 103.208.40.0/22 103.208.44.0/22 103.208.48.0/22 -103.208.148.0/22 103.209.112.0/22 103.209.136.0/22 103.209.200.0/22 103.209.208.0/22 103.209.216.0/22 -103.210.0.0/22 -103.210.20.0/22 103.210.96.0/22 103.210.156.0/22 103.210.160.0/22 @@ -4302,12 +4482,10 @@ 103.212.4.0/22 103.212.8.0/22 103.212.12.0/22 -103.212.32.0/22 103.212.44.0/22 103.212.48.0/22 103.212.84.0/22 103.212.100.0/22 -103.212.104.0/22 103.212.108.0/22 103.212.148.0/22 103.212.164.0/22 @@ -4345,11 +4523,12 @@ 103.213.180.0/22 103.213.184.0/22 103.213.188.0/22 -103.213.248.0/22 -103.214.32.0/22 +103.213.196.0/23 +103.213.198.0/23 +103.213.226.0/23 +103.213.232.0/23 103.214.48.0/22 103.214.84.0/22 -103.214.168.0/22 103.214.212.0/22 103.214.240.0/22 103.214.244.0/22 @@ -4359,13 +4538,10 @@ 103.215.44.0/22 103.215.48.0/22 103.215.100.0/22 -103.215.104.0/22 103.215.108.0/22 103.215.116.0/22 103.215.120.0/22 103.215.140.0/22 -103.215.184.0/22 -103.215.228.0/22 103.216.4.0/22 103.216.8.0/22 103.216.12.0/22 @@ -4381,6 +4557,7 @@ 103.216.108.0/22 103.216.136.0/22 103.216.152.0/22 +103.216.156.0/23 103.216.224.0/22 103.216.228.0/22 103.216.240.0/22 @@ -4411,7 +4588,6 @@ 103.217.196.0/22 103.217.200.0/22 103.217.204.0/22 -103.218.0.0/22 103.218.8.0/22 103.218.12.0/22 103.218.16.0/22 @@ -4433,7 +4609,7 @@ 103.218.84.0/22 103.218.88.0/22 103.218.92.0/22 -103.218.184.0/22 +103.218.178.0/23 103.218.192.0/22 103.218.196.0/22 103.218.200.0/22 @@ -4658,12 +4834,14 @@ 103.224.224.0/22 103.224.228.0/22 103.224.232.0/22 +103.225.18.0/24 103.225.84.0/22 103.226.16.0/22 103.226.40.0/22 103.226.56.0/22 103.226.60.0/22 103.226.80.0/22 +103.226.116.0/23 103.226.132.0/22 103.226.156.0/22 103.226.180.0/22 @@ -4681,10 +4859,7 @@ 103.227.212.0/22 103.227.228.0/22 103.228.12.0/22 -103.228.28.0/22 -103.228.68.0/22 103.228.88.0/22 -103.228.128.0/22 103.228.136.0/22 103.228.160.0/22 103.228.176.0/22 @@ -4707,6 +4882,8 @@ 103.230.28.0/22 103.230.44.0/22 103.230.96.0/22 +103.230.110.0/23 +103.230.128.0/23 103.230.196.0/22 103.230.200.0/22 103.230.204.0/22 @@ -4716,12 +4893,12 @@ 103.231.20.0/22 103.231.64.0/22 103.231.68.0/22 -103.231.144.0/22 103.231.180.0/22 103.231.184.0/22 103.231.244.0/22 103.232.4.0/22 103.232.144.0/22 +103.232.166.0/23 103.232.188.0/22 103.232.212.0/22 103.233.4.0/22 @@ -4730,6 +4907,8 @@ 103.233.104.0/22 103.233.128.0/22 103.233.136.0/22 +103.233.162.0/23 +103.233.178.0/23 103.233.228.0/22 103.234.0.0/22 103.234.20.0/22 @@ -4738,12 +4917,12 @@ 103.234.172.0/22 103.234.180.0/22 103.234.244.0/22 -103.235.16.0/22 103.235.48.0/22 103.235.56.0/22 103.235.60.0/22 103.235.80.0/22 103.235.84.0/22 +103.235.100.0/22 103.235.128.0/22 103.235.132.0/22 103.235.136.0/22 @@ -4787,6 +4966,7 @@ 103.236.88.0/22 103.236.92.0/22 103.236.96.0/22 +103.236.116.0/23 103.236.120.0/22 103.236.184.0/22 103.236.220.0/22 @@ -4803,6 +4983,7 @@ 103.237.28.0/22 103.237.68.0/22 103.237.88.0/22 +103.237.92.0/23 103.237.152.0/22 103.237.176.0/22 103.237.180.0/22 @@ -4843,6 +5024,7 @@ 103.238.132.0/22 103.238.140.0/22 103.238.144.0/22 +103.238.152.0/23 103.238.160.0/22 103.238.164.0/22 103.238.168.0/22 @@ -4857,10 +5039,8 @@ 103.239.0.0/22 103.239.44.0/22 103.239.68.0/22 -103.239.96.0/22 103.239.152.0/22 103.239.156.0/22 -103.239.176.0/22 103.239.180.0/22 103.239.184.0/22 103.239.192.0/22 @@ -4871,21 +5051,25 @@ 103.239.244.0/22 103.240.16.0/22 103.240.36.0/22 +103.240.42.0/23 103.240.72.0/22 103.240.84.0/22 103.240.124.0/22 -103.240.156.0/22 103.240.172.0/22 103.240.188.0/22 +103.240.200.0/23 +103.240.202.0/23 103.240.244.0/22 103.241.12.0/22 103.241.72.0/22 103.241.92.0/22 103.241.96.0/22 103.241.160.0/22 +103.241.172.0/23 103.241.184.0/22 103.241.188.0/22 103.241.220.0/22 +103.242.12.0/22 103.242.64.0/22 103.242.128.0/22 103.242.132.0/22 @@ -4900,6 +5084,7 @@ 103.243.136.0/22 103.243.252.0/22 103.244.16.0/22 +103.244.26.0/23 103.244.58.0/23 103.244.60.0/22 103.244.64.0/22 @@ -4913,6 +5098,7 @@ 103.244.232.0/22 103.244.252.0/22 103.245.23.0/24 +103.245.24.0/23 103.245.52.0/22 103.245.60.0/22 103.245.80.0/22 @@ -4928,6 +5114,7 @@ 103.247.168.0/22 103.247.172.0/22 103.247.176.0/22 +103.247.191.0/24 103.247.200.0/22 103.247.212.0/22 103.248.0.0/23 @@ -4938,7 +5125,6 @@ 103.248.168.0/22 103.248.192.0/22 103.248.212.0/22 -103.248.220.0/22 103.248.224.0/22 103.249.8.0/22 103.249.12.0/22 @@ -4966,7 +5152,6 @@ 103.250.248.0/22 103.250.252.0/22 103.251.32.0/22 -103.251.36.0/22 103.251.84.0/22 103.251.96.0/22 103.251.124.0/22 @@ -4974,7 +5159,6 @@ 103.251.160.0/22 103.251.192.0/22 103.251.204.0/22 -103.251.236.0/22 103.251.240.0/22 103.252.28.0/22 103.252.36.0/22 @@ -5011,6 +5195,7 @@ 103.255.140.0/22 103.255.184.0/22 103.255.200.0/22 +103.255.208.0/23 103.255.212.0/22 103.255.228.0/22 106.0.0.0/24 @@ -5093,6 +5278,7 @@ 111.72.0.0/13 111.85.0.0/16 111.91.192.0/19 +111.92.240.0/22 111.92.248.0/22 111.92.252.0/22 111.112.0.0/15 @@ -5186,7 +5372,6 @@ 113.208.128.0/17 113.209.0.0/16 113.212.0.0/18 -113.212.64.0/22 113.212.88.0/22 113.212.100.0/22 113.212.184.0/21 @@ -5214,7 +5399,8 @@ 114.111.160.0/19 114.112.0.0/14 114.116.0.0/16 -114.117.0.0/16 +114.117.0.0/17 +114.117.128.0/17 114.118.0.0/16 114.119.0.0/17 114.119.192.0/21 @@ -5223,12 +5409,15 @@ 114.119.208.0/20 114.119.224.0/19 114.132.0.0/16 +114.134.184.0/22 +114.134.188.0/23 114.135.0.0/16 114.138.0.0/15 114.141.64.0/21 114.141.80.0/22 114.141.84.0/22 114.141.128.0/18 +114.142.136.0/21 114.196.0.0/15 114.198.248.0/21 114.208.0.0/14 @@ -5317,7 +5506,9 @@ 116.193.164.0/22 116.193.176.0/21 116.194.0.0/15 -116.196.0.0/16 +116.196.0.0/17 +116.196.128.0/18 +116.196.192.0/18 116.197.160.0/22 116.197.164.0/22 116.198.0.0/16 @@ -5325,14 +5516,9 @@ 116.199.128.0/19 116.204.0.0/17 116.204.132.0/22 -116.204.168.0/22 116.204.216.0/22 116.204.232.0/22 -116.204.236.0/22 -116.204.244.0/22 116.205.0.0/16 -116.206.92.0/22 -116.206.176.0/22 116.207.0.0/16 116.208.0.0/14 116.212.160.0/20 @@ -5396,16 +5582,20 @@ 118.24.0.0/15 118.26.0.0/19 118.26.32.0/22 -118.26.36.0/22 118.26.40.0/21 118.26.48.0/21 118.26.56.0/21 118.26.64.0/19 118.26.96.0/21 -118.26.104.0/21 118.26.112.0/21 118.26.120.0/21 -118.26.128.0/17 +118.26.128.0/22 +118.26.133.0/24 +118.26.134.0/23 +118.26.136.0/21 +118.26.160.0/20 +118.26.188.0/22 +118.26.192.0/18 118.28.0.0/15 118.30.0.0/16 118.31.0.0/16 @@ -5426,7 +5616,6 @@ 118.103.168.0/22 118.103.172.0/22 118.103.176.0/22 -118.107.180.0/22 118.112.0.0/13 118.120.0.0/14 118.124.0.0/15 @@ -5441,16 +5630,31 @@ 118.186.0.0/15 118.188.0.0/16 118.190.0.0/16 -118.191.0.0/16 +118.191.0.0/21 +118.191.8.0/22 +118.191.12.0/24 +118.191.16.0/21 +118.191.64.0/20 +118.191.80.0/22 +118.191.128.0/19 +118.191.176.0/20 +118.191.192.0/20 +118.191.208.0/24 +118.191.216.0/22 +118.191.223.0/24 +118.191.224.0/24 +118.191.240.0/20 118.192.0.0/16 118.193.0.0/21 118.193.8.0/21 -118.193.32.0/19 -118.193.64.0/20 +118.193.48.0/21 118.193.96.0/19 118.193.128.0/17 118.194.0.0/17 -118.194.128.0/17 +118.194.128.0/18 +118.194.192.0/19 +118.194.224.0/22 +118.194.240.0/21 118.195.0.0/17 118.195.128.0/17 118.196.0.0/14 @@ -5503,7 +5707,6 @@ 119.40.128.0/17 119.41.0.0/16 119.42.0.0/19 -119.42.52.0/22 119.42.128.0/21 119.42.136.0/21 119.42.224.0/19 @@ -5538,7 +5741,9 @@ 119.162.0.0/15 119.164.0.0/14 119.176.0.0/12 -119.232.0.0/15 +119.232.0.0/16 +119.233.0.0/17 +119.233.128.0/17 119.235.128.0/18 119.248.0.0/14 119.252.96.0/21 @@ -5551,7 +5756,9 @@ 120.31.0.0/16 120.32.0.0/13 120.40.0.0/14 -120.44.0.0/14 +120.44.0.0/15 +120.46.0.0/16 +120.47.0.0/16 120.48.0.0/15 120.52.0.0/16 120.53.0.0/16 @@ -5616,6 +5823,7 @@ 121.76.0.0/15 121.79.128.0/18 121.89.0.0/16 +121.91.104.0/21 121.100.128.0/17 121.101.0.0/18 121.101.208.0/20 @@ -5632,7 +5840,8 @@ 122.0.64.0/18 122.0.128.0/17 122.4.0.0/14 -122.8.0.0/16 +122.8.0.0/17 +122.8.192.0/18 122.9.0.0/16 122.10.128.0/22 122.10.132.0/23 @@ -5704,7 +5913,6 @@ 123.58.64.0/19 123.58.96.0/19 123.58.128.0/18 -123.58.192.0/19 123.58.224.0/20 123.58.240.0/20 123.59.0.0/16 @@ -5751,7 +5959,6 @@ 123.242.196.0/22 123.244.0.0/14 123.249.0.0/16 -123.253.108.0/22 123.253.240.0/22 123.254.96.0/22 123.254.100.0/22 @@ -5778,7 +5985,8 @@ 124.64.0.0/15 124.66.0.0/17 124.67.0.0/16 -124.68.0.0/14 +124.68.0.0/15 +124.70.0.0/15 124.72.0.0/16 124.73.0.0/16 124.74.0.0/15 @@ -5885,7 +6093,6 @@ 139.5.160.0/22 139.5.192.0/22 139.5.204.0/22 -139.5.208.0/22 139.5.212.0/22 139.5.244.0/22 139.9.0.0/16 @@ -5911,7 +6118,8 @@ 140.179.0.0/16 140.205.0.0/16 140.206.0.0/15 -140.210.0.0/16 +140.210.0.0/17 +140.210.128.0/17 140.224.0.0/16 140.237.0.0/16 140.240.0.0/16 @@ -5920,10 +6128,12 @@ 140.249.0.0/16 140.250.0.0/16 140.255.0.0/16 +142.70.0.0/16 +142.86.0.0/16 +143.64.0.0/16 144.0.0.0/16 144.7.0.0/16 144.12.0.0/16 -144.48.8.0/22 144.48.64.0/22 144.48.88.0/22 144.48.156.0/22 @@ -5946,13 +6156,13 @@ 146.196.116.0/22 146.196.124.0/22 148.70.0.0/16 +149.41.0.0/16 150.0.0.0/16 150.115.0.0/16 150.121.0.0/16 150.122.0.0/16 150.129.136.0/22 150.129.192.0/22 -150.129.216.0/22 150.129.252.0/22 150.138.0.0/15 150.158.0.0/16 @@ -5982,12 +6192,12 @@ 150.242.192.0/22 150.242.212.0/22 150.242.224.0/22 -150.242.228.0/22 150.242.232.0/22 150.242.236.0/22 150.242.240.0/22 150.242.244.0/22 150.242.248.0/22 +150.248.0.0/16 150.255.0.0/16 152.104.128.0/17 152.136.0.0/16 @@ -6002,13 +6212,10 @@ 157.0.0.0/16 157.18.0.0/16 157.61.0.0/16 -157.119.0.0/22 157.119.8.0/22 157.119.12.0/22 157.119.16.0/22 157.119.28.0/22 -157.119.68.0/22 -157.119.112.0/22 157.119.132.0/22 157.119.136.0/22 157.119.140.0/22 @@ -6027,6 +6234,9 @@ 157.148.0.0/16 157.156.0.0/16 157.255.0.0/16 +158.60.0.0/16 +158.79.0.0/16 +159.27.0.0/16 159.75.0.0/16 159.226.0.0/16 160.19.208.0/22 @@ -6049,6 +6259,7 @@ 160.202.248.0/22 160.202.252.0/22 160.238.64.0/22 +161.120.0.0/16 161.189.0.0/16 161.207.0.0/16 162.14.0.0/16 @@ -6085,13 +6296,13 @@ 163.53.168.0/22 163.53.172.0/22 163.53.188.0/22 -163.53.220.0/22 163.53.240.0/22 163.125.0.0/16 163.142.0.0/16 163.177.0.0/16 163.179.0.0/16 163.204.0.0/16 +163.228.0.0/16 164.52.0.0/17 166.111.0.0/16 167.139.0.0/16 @@ -6114,7 +6325,10 @@ 172.81.192.0/18 175.0.0.0/12 175.16.0.0/13 -175.24.0.0/14 +175.24.0.0/16 +175.25.0.0/16 +175.26.0.0/16 +175.27.0.0/16 175.30.0.0/15 175.42.0.0/15 175.44.0.0/16 @@ -6140,7 +6354,6 @@ 175.176.156.0/22 175.176.176.0/22 175.176.188.0/22 -175.176.192.0/22 175.178.0.0/16 175.184.128.0/18 175.185.0.0/16 @@ -6173,7 +6386,9 @@ 180.178.112.0/22 180.178.116.0/22 180.178.192.0/18 -180.184.0.0/14 +180.184.0.0/15 +180.186.0.0/16 +180.187.0.0/16 180.188.0.0/17 180.189.148.0/22 180.200.252.0/22 @@ -6190,7 +6405,6 @@ 180.233.144.0/22 180.235.64.0/19 180.235.112.0/22 -180.235.136.0/22 182.16.144.0/22 182.16.148.0/22 182.16.192.0/19 @@ -6225,8 +6439,6 @@ 182.239.0.0/19 182.240.0.0/13 182.254.0.0/16 -182.255.32.0/22 -182.255.36.0/22 182.255.60.0/22 183.0.0.0/10 183.64.0.0/13 @@ -6251,9 +6463,9 @@ 185.203.36.0/22 188.131.128.0/17 192.51.188.0/24 -192.55.46.0/24 +192.55.46.0/23 192.55.68.0/22 -192.102.204.0/23 +192.102.204.0/22 192.124.154.0/24 192.140.128.0/22 192.140.132.0/22 @@ -6282,7 +6494,6 @@ 202.0.122.0/23 202.0.176.0/22 202.3.128.0/23 -202.3.134.0/24 202.4.128.0/19 202.4.252.0/22 202.5.208.0/22 @@ -6325,7 +6536,6 @@ 202.12.2.0/24 202.12.17.0/24 202.12.18.0/24 -202.12.19.0/24 202.12.72.0/24 202.12.84.0/23 202.12.96.0/24 @@ -6418,21 +6628,17 @@ 202.38.134.0/24 202.38.135.0/24 202.38.136.0/23 -202.38.138.0/24 202.38.140.0/23 202.38.142.0/23 -202.38.146.0/23 202.38.149.0/24 202.38.150.0/23 202.38.152.0/23 202.38.154.0/23 202.38.156.0/24 202.38.158.0/23 -202.38.160.0/23 202.38.164.0/22 202.38.168.0/23 202.38.170.0/24 -202.38.171.0/24 202.38.176.0/23 202.38.184.0/21 202.38.192.0/18 @@ -6491,7 +6697,6 @@ 202.52.34.0/24 202.52.47.0/24 202.52.143.0/24 -202.52.144.0/24 202.53.140.0/24 202.53.143.0/24 202.57.192.0/22 @@ -6502,7 +6707,6 @@ 202.57.216.0/22 202.57.240.0/20 202.58.0.0/24 -202.58.101.0/24 202.58.104.0/22 202.58.112.0/22 202.59.0.0/24 @@ -6566,7 +6770,6 @@ 202.74.42.0/24 202.74.52.0/24 202.74.80.0/20 -202.74.232.0/22 202.74.254.0/23 202.75.208.0/20 202.75.252.0/22 @@ -6600,7 +6803,6 @@ 202.89.108.0/22 202.89.119.0/24 202.89.232.0/21 -202.90.0.0/22 202.90.16.0/22 202.90.20.0/22 202.90.24.0/22 @@ -6614,25 +6816,21 @@ 202.90.193.0/24 202.90.196.0/24 202.90.205.0/24 -202.90.224.0/20 +202.90.224.0/21 +202.90.232.0/21 202.91.0.0/22 202.91.36.0/22 202.91.96.0/20 -202.91.128.0/22 202.91.176.0/20 202.91.224.0/19 -202.92.0.0/22 202.92.8.0/21 202.92.48.0/20 202.92.252.0/22 -202.93.0.0/22 202.93.252.0/22 -202.94.68.0/24 202.94.74.0/24 202.94.81.0/24 202.94.92.0/22 202.95.240.0/21 -202.95.252.0/22 202.96.0.0/18 202.96.64.0/21 202.96.72.0/21 @@ -6812,7 +7010,6 @@ 202.122.64.0/19 202.122.112.0/21 202.122.120.0/21 -202.122.128.0/24 202.122.132.0/24 202.123.96.0/20 202.123.116.0/22 @@ -6836,13 +7033,10 @@ 202.127.112.0/20 202.127.128.0/20 202.127.144.0/20 -202.127.160.0/21 202.127.192.0/23 202.127.194.0/23 202.127.196.0/22 202.127.200.0/21 -202.127.208.0/24 -202.127.209.0/24 202.127.212.0/22 202.127.216.0/21 202.127.224.0/19 @@ -6880,6 +7074,7 @@ 202.143.104.0/22 202.144.196.0/22 202.146.160.0/20 +202.146.184.0/23 202.146.186.0/24 202.146.188.0/22 202.146.196.0/22 @@ -7806,15 +8001,12 @@ 203.86.250.0/24 203.86.254.0/23 203.88.32.0/19 -203.88.100.0/22 203.88.192.0/19 -203.89.0.0/22 203.89.8.0/21 203.89.100.0/22 203.89.133.0/24 203.89.136.0/22 203.89.144.0/24 -203.90.0.0/22 203.90.8.0/22 203.90.12.0/22 203.90.128.0/19 @@ -7947,7 +8139,6 @@ 203.189.6.0/23 203.189.112.0/22 203.189.192.0/19 -203.189.232.0/22 203.189.240.0/22 203.190.96.0/20 203.190.249.0/24 @@ -7985,15 +8176,12 @@ 203.207.200.0/21 203.207.208.0/20 203.207.224.0/19 -203.208.0.0/20 -203.208.16.0/22 203.208.32.0/19 203.209.224.0/19 203.212.0.0/20 203.212.80.0/20 203.215.232.0/21 203.217.164.0/22 -203.223.0.0/20 203.223.16.0/21 204.52.191.0/24 210.2.0.0/20 @@ -8056,12 +8244,22 @@ 210.74.128.0/19 210.74.160.0/19 210.74.192.0/18 -210.75.0.0/16 +210.75.0.0/17 +210.75.128.0/19 +210.75.160.0/19 +210.75.192.0/19 +210.75.224.0/19 210.76.0.0/19 210.76.32.0/19 210.76.64.0/18 -210.76.128.0/17 -210.77.0.0/16 +210.76.128.0/18 +210.76.192.0/19 +210.76.224.0/19 +210.77.0.0/19 +210.77.32.0/19 +210.77.64.0/19 +210.77.96.0/19 +210.77.128.0/17 210.78.0.0/19 210.78.32.0/19 210.78.64.0/18 @@ -8110,7 +8308,11 @@ 211.143.0.0/16 211.144.0.0/15 211.146.0.0/16 -211.147.0.0/16 +211.147.0.0/17 +211.147.128.0/18 +211.147.192.0/20 +211.147.208.0/20 +211.147.224.0/19 211.148.0.0/14 211.152.0.0/15 211.154.0.0/16 @@ -8118,9 +8320,24 @@ 211.155.64.0/19 211.155.96.0/19 211.155.128.0/17 -211.156.0.0/14 +211.156.0.0/18 +211.156.64.0/20 +211.156.80.0/20 +211.156.96.0/19 +211.156.128.0/19 +211.156.160.0/20 +211.156.176.0/20 +211.156.192.0/18 +211.157.0.0/16 +211.158.0.0/15 211.160.0.0/14 -211.164.0.0/14 +211.164.0.0/15 +211.166.0.0/16 +211.167.0.0/17 +211.167.128.0/19 +211.167.160.0/20 +211.167.176.0/20 +211.167.192.0/18 212.64.0.0/17 212.129.128.0/17 218.0.0.0/16 @@ -8193,7 +8410,11 @@ 218.204.0.0/15 218.206.0.0/15 218.240.0.0/14 -218.244.0.0/15 +218.244.0.0/18 +218.244.64.0/19 +218.244.96.0/19 +218.244.128.0/17 +218.245.0.0/16 218.246.0.0/15 218.249.0.0/16 219.72.0.0/16 @@ -8401,7 +8622,8 @@ 223.116.0.0/15 223.120.128.0/17 223.121.128.0/17 -223.122.0.0/15 +223.122.128.0/17 +223.123.128.0/17 223.124.0.0/14 223.128.0.0/15 223.144.0.0/12 diff --git a/root/etc/luci_v2ray/chnroute6.txt b/root/etc/luci_v2ray/chnroute6.txt index a3e6b15..089f993 100644 --- a/root/etc/luci_v2ray/chnroute6.txt +++ b/root/etc/luci_v2ray/chnroute6.txt @@ -4,90 +4,483 @@ 2001:250:8000::/33 2001:251::/32 2001:252::/32 +2001:253::/32 2001:254::/32 +2001:255::/32 2001:256::/32 +2001:7fa:5::/48 +2001:7fa:10::/48 +2001:c68::/32 +2001:cc0::/32 +2001:da8::/32 +2001:da9::/32 +2001:daa::/32 +2001:dc7::/32 +2001:dd8:1::/48 +2001:dd8:5::/48 +2001:dd8:1a::/48 +2001:dd9::/48 +2001:df0:27e::/48 +2001:df0:423::/48 +2001:df0:9c0::/48 +2001:df0:1bc0::/48 +2001:df0:25c0::/48 +2001:df0:26c0::/48 +2001:df0:2e00::/48 +2001:df0:2e80::/48 +2001:df0:59c0::/48 +2001:df0:85c0::/48 +2001:df0:8d40::/48 +2001:df0:9d40::/48 +2001:df0:ac40::/48 +2001:df0:b180::/48 +2001:df0:bf80::/48 +2001:df0:d880::/48 +2001:df0:f8c0::/48 +2001:df1:c80::/48 +2001:df1:2b40::/48 +2001:df1:4580::/48 +2001:df1:5280::/48 +2001:df1:5b80::/48 +2001:df1:5fc0::/48 +2001:df1:6180::/48 +2001:df1:61c0::/48 +2001:df1:6b80::/48 +2001:df1:a100::/48 +2001:df1:bd80::/48 +2001:df1:c900::/48 +2001:df1:d180::/48 +2001:df1:da00::/48 +2001:df1:f480::/48 +2001:df1:f580::/48 +2001:df1:fd80::/48 +2001:df2:80::/48 +2001:df2:180::/48 +2001:df2:5780::/48 +2001:df2:8bc0::/48 +2001:df2:a580::/48 +2001:df2:c240::/48 +2001:df2:d4c0::/48 +2001:df3:1480::/48 +2001:df3:2a80::/48 +2001:df3:3a80::/48 +2001:df3:a680::/48 +2001:df3:b380::/48 +2001:df3:c380::/48 +2001:df3:c680::/48 +2001:df3:d880::/48 +2001:df3:ed80::/48 +2001:df3:ef80::/48 +2001:df4:880::/48 +2001:df4:d80::/48 +2001:df4:1280::/48 +2001:df4:1500::/48 +2001:df4:1880::/48 +2001:df4:2780::/48 +2001:df4:2e80::/48 +2001:df4:3d80::/48 +2001:df4:4b80::/48 +2001:df4:4d80::/48 +2001:df4:a680::/48 +2001:df4:a980::/48 +2001:df4:c180::/48 +2001:df4:c580::/48 +2001:df4:c780::/48 +2001:df4:cf00::/48 +2001:df4:de80::/48 +2001:df5:2080::/48 +2001:df5:5f80::/48 +2001:df5:7800::/48 +2001:df6:100::/48 +2001:df6:3d00::/48 +2001:df6:5d00::/48 +2001:df6:6800::/48 +2001:df6:9e80::/48 +2001:df6:9f80::/48 +2001:df6:df00::/48 +2001:df6:f400::/48 +2001:df7:1480::/48 +2001:df7:2b80::/48 +2001:df7:6600::/48 +2001:df7:ab00::/48 +2001:df7:e580::/48 +2001:e08::/32 +2001:e18::/32 +2001:e80::/32 +2001:e88::/32 +2001:f38::/32 +2001:f88::/32 2001:4438::/32 2001:4510::/29 2400:1040::/32 +2400:1160::/32 +2400:12c0::/32 2400:1340::/32 2400:1380::/32 +2400:15c0::/32 2400:1640::/32 +2400:16c0::/32 2400:1740::/32 +2400:17c0::/32 2400:1840::/32 +2400:18c0::/32 2400:1940::/32 +2400:19a0::/32 +2400:19c0::/32 +2400:1a40::/32 +2400:1ac0::/32 +2400:1b40::/32 +2400:1cc0::/32 +2400:1d40::/32 +2400:1dc0::/32 +2400:1e40::/32 +2400:1ec0::/32 +2400:1f40::/32 +2400:1fc0::/32 2400:3040::/32 2400:3140::/32 +2400:3160::/32 +2400:31c0::/32 2400:3200::/32 2400:3280::/32 +2400:32c0::/32 2400:3340::/32 +2400:33c0::/32 2400:3440::/32 +2400:34c0::/32 2400:3540::/32 +2400:35c0::/32 2400:3600::/32 2400:3640::/32 +2400:3660::/32 +2400:36c0::/32 +2400:38c0::/32 +2400:39c0::/32 +2400:3a00::/32 +2400:3a40::/32 +2400:3b40::/32 +2400:3bc0::/32 +2400:3c40::/32 +2400:3cc0::/32 +2400:3e00::/32 +2400:3f40::/32 +2400:3f60::/32 +2400:3fc0::/32 2400:4440::/32 +2400:44c0::/32 2400:4540::/32 2400:4600::/32 2400:4640::/32 +2400:46c0::/32 2400:4740::/32 +2400:4920::/32 +2400:4bc0::/32 +2400:4e00::/32 +2400:4e40::/32 2400:5080::/32 2400:5280::/32 2400:5400::/32 2400:5580::/32 +2400:55c0::/32 +2400:55e0::/32 2400:5600::/32 2400:5640::/32 +2400:56c0::/32 +2400:57c0::/32 2400:5840::/32 +2400:5a00::/32 +2400:5a40::/32 +2400:5a60::/32 +2400:5ac0::/32 +2400:5b40::/32 +2400:5bc0::/32 +2400:5c40::/32 +2400:5c80::/32 +2400:5cc0::/32 +2400:5e20::/32 +2400:5e80::/32 +2400:5ee0::/32 +2400:5f60::/32 +2400:5fc0::/32 2400:6000::/32 2400:6040::/32 +2400:60c0::/32 +2400:61c0::/32 2400:6200::/32 2400:6600::/32 2400:6640::/32 +2400:66a0::/32 +2400:66c0::/32 +2400:66e0::/32 2400:6740::/32 +2400:67a0::/32 +2400:67c0::/32 2400:6840::/32 +2400:68c0::/32 2400:6940::/32 +2400:69c0::/32 +2400:6a00::/32 +2400:6a40::/32 +2400:6ac0::/32 +2400:6b40::/32 +2400:6bc0::/32 +2400:6c40::/32 +2400:6cc0::/32 +2400:6d40::/32 +2400:6da0::/32 +2400:6dc0::/32 +2400:6e00::/32 +2400:6e40::/32 +2400:6e60::/32 +2400:6ec0::/32 +2400:6f40::/32 +2400:6f80::/32 +2400:6fc0::/32 2400:7040::/32 +2400:70a0::/32 2400:7100::/32 2400:7140::/32 +2400:71c0::/32 2400:7200::/32 2400:7240::/32 +2400:72c0::/32 +2400:72e0::/32 2400:7340::/32 +2400:73c0::/32 +2400:73e0::/32 2400:7440::/32 +2400:74c0::/32 2400:7540::/32 +2400:75a0::/28 +2400:75c0::/32 2400:7640::/32 2400:7680::/32 +2400:76c0::/32 2400:7740::/32 +2400:77c0::/32 +2400:79c0::/32 +2400:7ac0::/32 +2400:7ae0::/32 +2400:7bc0::/32 +2400:7f80::/32 +2400:7fc0::/32 2400:8080::/32 2400:8200::/32 +2400:82c0::/32 2400:8580::/32 2400:8600::/32 +2400:86a0::/32 +2400:86e0::/32 2400:8780::/32 +2400:87c0::/32 2400:8840::/32 +2400:8920::/32 2400:8980::/32 +2400:89c0::/32 +2400:8be0::/32 +2400:8ce0::/32 +2400:8e00::/32 +2400:8e60::/32 +2400:8f00::/32 +2400:8f60::/32 +2400:8fc0::/32 +2400:9020::/32 2400:9040::/32 2400:9340::/32 +2400:93e0::/32 +2400:9520::/32 2400:9580::/32 +2400:95c0::/32 +2400:95e0::/32 2400:9600::/32 +2400:9620::/32 +2400:98c0::/32 +2400:9960::/32 +2400:99e0::/32 +2400:9a00::/32 +2400:9ca0::/32 +2400:9e00::/32 +2400:a040::/32 +2400:a320::/32 +2400:a380::/32 +2400:a420::/32 +2400:a480::/32 +2400:a5a0::/32 +2400:a6a0::/32 +2400:a6e0::/32 +2400:a780::/32 +2400:a860::/32 +2400:a8a0::/32 +2400:a8c0::/32 +2400:a900::/32 +2400:a980::/32 +2400:a981::/32 +2400:a982::/31 +2400:a984::/30 +2400:a9a0::/32 +2400:abc0::/32 +2400:ae00::/32 +2400:b200::/32 +2400:b2c0::/32 +2400:b500::/32 +2400:b600::/32 +2400:b620::/32 +2400:b6c0::/32 +2400:b700::/32 +2400:b9a0::/32 +2400:b9c0::/32 +2400:ba00::/32 +2400:ba40::/32 +2400:ba41::/32 +2400:bac0::/32 +2400:be00::/32 +2400:bf00::/32 +2400:c200::/32 +2400:c380::/32 +2400:c840::/32 +2400:c8c0::/32 +2400:c940::/32 +2400:c9c0::/32 +2400:ca40::/32 +2400:cac0::/32 +2400:cb40::/32 +2400:cb80::/32 +2400:cbc0::/32 +2400:cc40::/32 +2400:cc80::/32 +2400:ccc0::/32 +2400:cd40::/32 +2400:cda0::/32 +2400:cdc0::/32 +2400:ce00::/32 +2400:ce40::/32 +2400:cf40::/32 +2400:cfc0::/32 +2400:d0a0::/32 +2400:d0c0::/32 +2400:d100::/32 +2400:d160::/32 +2400:d1c0::/32 +2400:d200::/32 +2400:d300::/32 +2400:d440::/32 +2400:d600::/32 +2400:d6a0::/32 +2400:d6c0::/32 +2400:d720::/32 +2400:d780::/32 +2400:d7a0::/32 +2400:da00::/32 +2400:da60::/32 +2400:dd00::/28 +2400:dd40::/32 +2400:dda0::/32 +2400:de00::/32 +2400:de20::/32 +2400:de80::/32 +2400:dee0::/32 +2400:e0c0::/32 +2400:e5c0::/32 +2400:e680::/32 +2400:e7e0::/32 +2400:e880::/32 +2400:ebc0::/32 +2400:ed60::/32 +2400:eda0::/32 +2400:edc0::/32 +2400:ee00::/32 +2400:eec0::/32 +2400:ef40::/32 +2400:f480::/32 +2400:f5c0::/32 +2400:f6e0::/32 +2400:f720::/32 +2400:f7c0::/32 +2400:f840::/32 +2400:f860::/32 +2400:f980::/32 +2400:fac0::/32 +2400:fb40::/32 +2400:fb60::/32 +2400:fbc0::/32 +2400:fc40::/32 +2400:fcc0::/32 +2400:fe00::/32 +2401:20::/32 +2401:60::/32 2401:80::/32 2401:140::/32 +2401:1c0::/32 2401:540::/32 -2401:780::/32 +2401:620::/32 +2401:7c0::/32 +2401:800::/32 +2401:9c0::/32 +2401:a00::/32 +2401:a40::/32 +2401:ac0::/32 +2401:b40::/32 +2401:ba0::/32 +2401:bc0::/32 +2401:c40::/32 +2401:cc0::/32 +2401:d40::/32 +2401:e00::/32 2401:1000::/32 +2401:1160::/32 +2401:11a0::/32 +2401:11c0::/32 2401:1200::/32 -2401:1740::/32 +2401:12c0::/32 +2401:1320::/32 +2401:13a0::/32 +2401:15c0::/32 +2401:18c0::/32 +2401:18e0::/28 2401:1940::/32 +2401:19c0::/32 +2401:1a40::/32 +2401:1ac0::/32 +2401:1c60::/32 +2401:1ce0::/32 +2401:1d40::/32 +2401:1da0::/32 +2401:1dc0::/32 +2401:1de0::/32 +2401:1e00::/32 +2401:1ec0::/32 +2401:1f40::/32 2401:2040::/32 2401:2080::/32 +2401:23c0::/32 2401:2600::/32 2401:2780::/32 2401:2980::/32 +2401:2a00::/32 +2401:2b40::/32 +2401:2e00::/32 +2401:2e20::/32 2401:3100::/32 2401:3380::/32 +2401:33c0::/32 2401:3440::/32 2401:3480::/32 +2401:34a0::/32 +2401:34a1::/32 +2401:34c0::/32 2401:3640::/32 2401:3780::/32 2401:3800::/32 2401:3880::/32 2401:3980::/32 +2401:3a00::/32 +2401:3a80::/32 +2401:3b80::/32 +2401:3c20::/32 +2401:3c80::/32 +2401:3d80::/32 +2401:3e80::/32 +2401:3f80::/32 2401:4080::/32 2401:4180::/32 2401:4280::/32 @@ -97,9 +490,16 @@ 2401:4680::/32 2401:4780::/32 2401:4880::/32 +2401:4a80::/32 +2401:4b00::/32 +2401:4f80::/32 2401:5180::/32 2401:5680::/32 +2401:59c0::/32 +2401:5b40::/32 +2401:5c80::/32 2401:7180::/32 +2401:71c0::/32 2401:7240::/32 2401:7340::/32 2401:7580::/32 @@ -108,78 +508,363 @@ 2401:7780::/32 2401:7880::/32 2401:7980::/32 +2401:7a00::/32 +2401:7a80::/32 +2401:7b80::/32 +2401:7bc0::/32 +2401:7c80::/32 +2401:7cc0::/32 +2401:7d40::/32 +2401:7d80::/32 +2401:7e00::/32 +2401:7f80::/32 2401:8200::/32 +2401:82c0::/32 2401:8380::/32 2401:8540::/32 2401:8600::/32 2401:8680::/32 2401:8840::/32 +2401:8d00::/32 +2401:8f40::/32 +2401:8fc0::/32 2401:9340::/32 -2401:9380::/32 2401:9600::/32 +2401:96c0::/32 2401:9740::/32 +2401:98c0::/32 +2401:9a00::/32 +2401:9ac0::/32 +2401:9b40::/32 +2401:9bc0::/32 +2401:9dc0::/32 +2401:9e40::/32 +2401:9f80::/32 +2401:a140::/32 +2401:a180::/32 +2401:a340::/32 +2401:a3c0::/32 +2401:a4c0::/32 +2401:a540::/32 +2401:a5c0::/32 +2401:a640::/32 +2401:a940::/32 +2401:a980::/32 +2401:aa00::/32 +2401:aa40::/32 +2401:acc0::/32 +2401:ad40::/32 +2401:adc0::/32 +2401:b040::/32 +2401:b180::/32 +2401:b340::/32 +2401:b400::/32 +2401:b480::/32 +2401:b4c0::/32 +2401:b540::/32 +2401:b580::/32 +2401:b600::/32 +2401:b680::/32 +2401:b6c0::/32 +2401:b7c0::/32 +2401:b940::/32 +2401:ba00::/32 +2401:ba40::/32 +2401:bb80::/32 +2401:be00::/32 +2401:c200::/32 +2401:c540::/32 +2401:c600::/32 +2401:c640::/32 +2401:c6c0::/32 +2401:c840::/32 +2401:c8c0::/32 +2401:ca00::/32 +2401:cb80::/32 +2401:cc00::/32 +2401:ce00::/32 +2401:cf40::/32 +2401:cfc0::/32 +2401:d0c0::/32 +2401:d140::/32 +2401:d180::/32 +2401:d2c0::/32 +2401:d340::/32 +2401:d780::/32 +2401:da00::/32 +2401:de00::/32 +2401:e080::/32 +2401:e0c0::/32 +2401:e140::/32 +2401:e240::/32 +2401:e2c0::/32 +2401:e340::/32 +2401:e6c0::/32 +2401:e840::/32 +2401:e8c0::/32 +2401:e940::/32 +2401:e9c0::/32 +2401:ec00::/32 +2401:ec40::/32 +2401:f300::/32 +2401:f7c0::/32 +2401:fa80::/32 +2401:fb80::/32 +2401:fc80::/32 +2401:fe80::/32 +2401:ffc0::/32 2402:440::/32 +2402:5c0::/32 2402:840::/32 -2402:880::/32 +2402:ac0::/32 +2402:e00::/32 +2402:fc0::/32 2402:1000::/32 2402:1440::/32 -2402:1540::/32 +2402:14c0::/32 2402:1600::/32 2402:1740::/32 +2402:19c0::/32 +2402:1ec0::/32 +2402:1f40::/32 +2402:1f80::/32 2402:2000::/32 2402:2280::/32 +2402:22c0::/32 2402:2440::/32 +2402:24c0::/32 2402:2540::/32 2402:2640::/32 -2402:2780::/32 +2402:27c0::/32 +2402:2a00::/32 +2402:2b80::/32 +2402:2bc0::/32 +2402:2d00::/32 +2402:2d80::/32 +2402:2e80::/32 +2402:2f40::/32 2402:3040::/32 -2402:3080::/32 2402:3140::/32 2402:3180::/32 +2402:31c0::/32 2402:3240::/32 +2402:33c0::/32 +2402:39c0::/32 +2402:3a40::/32 +2402:3ac0::/32 +2402:3c00::/32 +2402:3e00::/32 +2402:3ec0::/32 +2402:3f80::/32 2402:4140::/32 +2402:42c0::/32 2402:4340::/32 +2402:43c0::/32 2402:4440::/32 2402:4500::/32 2402:4540::/32 -2402:5140::/32 +2402:4a00::/32 +2402:4a40::/32 +2402:4a80::/32 +2402:4ac0::/32 +2402:4b80::/32 +2402:4bc0::/32 +2402:4c40::/32 +2402:4d80::/32 +2402:4e00::/32 +2402:4ec0::/32 +2402:4f80::/32 2402:5180::/32 -2402:5240::/32 +2402:52c0::/32 2402:5340::/32 2402:5880::/32 2402:5940::/32 +2402:59c0::/32 +2402:5a40::/32 +2402:5b40::/32 +2402:5bc0::/32 +2402:5d00::/32 +2402:5e00::/32 +2402:5e40::/32 +2402:5ec0::/32 +2402:5f40::/32 2402:6280::/32 +2402:62c0::/32 +2402:64c0::/32 +2402:66c0::/32 2402:6740::/32 +2402:67c0::/32 +2402:6a00::/32 +2402:6b40::/32 +2402:6bc0::/32 +2402:6e00::/32 +2402:6e80::/32 +2402:6f40::/32 +2402:6fc0::/32 2402:7040::/32 2402:7080::/32 +2402:70c0::/32 2402:7140::/32 +2402:71c0::/32 2402:7240::/32 +2402:72c0::/32 2402:7540::/32 +2402:75c0::/32 2402:7740::/32 +2402:7d00::/32 +2402:7d80::/32 2402:8180::/32 -2402:8280::/32 2402:8300::/32 2402:8380::/32 +2402:85c0::/32 2402:8800::/32 2402:8840::/32 2402:8900::/32 2402:8940::/32 +2402:89c0::/32 +2402:8b40::/32 +2402:8bc0::/32 +2402:8cc0::/32 +2402:8d40::/32 +2402:8f40::/32 +2402:8f80::/32 2402:9240::/32 +2402:92c0::/32 +2402:93c0::/32 2402:9440::/32 2402:9480::/32 +2402:94c0::/32 2402:9580::/32 +2402:95c0::/32 2402:9680::/32 +2402:96c0::/32 2402:9840::/32 +2402:98c0::/32 2402:9940::/32 +2402:9a80::/32 +2402:9b80::/32 +2402:9f80::/32 +2402:9fc0::/32 +2402:a080::/32 +2402:a180::/32 +2402:a200::/32 +2402:a240::/32 +2402:a280::/32 +2402:a380::/32 +2402:a3c0::/32 +2402:a640::/32 +2402:a680::/32 +2402:a6c0::/32 +2402:a840::/32 +2402:a880::/32 +2402:a9c0::/32 +2402:aa80::/32 +2402:ab80::/32 +2402:ae00::/32 +2402:ae40::/32 +2402:aec0::/32 +2402:af80::/32 +2402:afc0::/32 +2402:b080::/32 +2402:b200::/32 +2402:b440::/32 +2402:b6c0::/32 +2402:b880::/32 +2402:b8c0::/32 +2402:b940::/32 +2402:b980::/32 +2402:ba80::/32 +2402:bac0::/32 +2402:bbc0::/32 +2402:bf80::/32 +2402:c280::/32 +2402:c3c0::/32 +2402:c5c0::/32 +2402:c9c0::/32 +2402:cc40::/32 +2402:cf00::/32 +2402:cf40::/32 +2402:d040::/32 +2402:d140::/32 +2402:d2c0::/32 +2402:d300::/32 +2402:d340::/32 +2402:d380::/32 +2402:d5c0::/32 +2402:d6c0::/32 +2402:d740::/32 +2402:d780::/32 +2402:d880::/32 +2402:d980::/32 +2402:da40::/32 +2402:db40::/32 +2402:dcc0::/32 +2402:de40::/32 +2402:dec0::/32 +2402:df40::/32 +2402:dfc0::/32 +2402:e040::/32 +2402:e0c0::/32 +2402:e140::/32 +2402:e2c0::/32 +2402:e3c0::/32 +2402:e480::/32 +2402:e540::/32 +2402:e680::/32 +2402:e740::/32 +2402:e780::/32 +2402:e7c0::/32 +2402:e880::/32 +2402:e980::/32 +2402:eb80::/32 +2402:ec80::/32 +2402:ed80::/32 +2402:ef40::/32 +2402:ef80::/32 +2402:f000::/32 +2402:f140::/32 +2402:f480::/32 +2402:f540::/32 +2402:f580::/32 +2402:f740::/32 +2402:f780::/32 +2402:f8c0::/32 +2402:f980::/32 +2402:f9c0::/32 +2402:fac0::/32 +2402:fcc0::/32 +2402:ff40::/32 +2402:ffc0::/32 2403:600::/32 2403:700::/32 +2403:7c0::/32 2403:800::/31 2403:980::/32 +2403:a80::/32 +2403:b80::/32 +2403:c80::/32 +2403:d40::/32 +2403:d80::/32 +2403:e80::/32 +2403:f00::/32 +2403:f40::/32 +2403:f80::/32 +2403:fc0::/32 2403:1180::/32 2403:1340::/32 2403:1440::/32 2403:1580::/32 +2403:16c0::/32 +2403:17c0::/32 2403:1980::/32 +2403:1a40::/32 +2403:1b80::/32 +2403:1c80::/32 +2403:1d80::/32 +2403:1dc0::/32 +2403:1e80::/32 +2403:1ec0::/32 +2403:1f80::/32 2403:2040::/32 2403:2080::/32 2403:2180::/32 @@ -187,25 +872,57 @@ 2403:2280::/32 2403:2380::/32 2403:2440::/32 +2403:24c0::/32 2403:2580::/32 +2403:25c0::/32 2403:2680::/32 +2403:26c0::/32 2403:2740::/32 2403:2780::/32 +2403:28c0::/32 2403:2940::/32 +2403:2a00::/32 +2403:2a40::/32 +2403:2ac0::/32 +2403:2b40::/32 +2403:2bc0::/32 +2403:2cc0::/32 +2403:2f40::/32 +2403:2fc0::/32 2403:3040::/32 +2403:30c0::/32 2403:3140::/32 2403:3280::/32 +2403:32c0::/32 2403:3380::/32 2403:3480::/32 2403:3580::/32 2403:3640::/32 2403:3680::/32 +2403:36c0::/32 2403:3740::/32 2403:3780::/32 +2403:37c0::/32 2403:3840::/32 2403:3880::/32 +2403:38c0::/32 2403:3940::/32 2403:3980::/32 +2403:39c0::/32 +2403:3a40::/32 +2403:3b40::/32 +2403:3b80::/32 +2403:3bc0::/32 +2403:3c40::/32 +2403:3c80::/32 +2403:3cc0::/32 +2403:3d40::/32 +2403:3d80::/32 +2403:3dc0::/32 +2403:3e80::/32 +2403:3ec0::/32 +2403:3f40::/32 +2403:3f80::/32 2403:4080::/32 2403:4180::/32 2403:4240::/32 @@ -214,21 +931,44 @@ 2403:4380::/32 2403:4580::/32 2403:4680::/32 +2403:4780::/32 2403:4840::/32 2403:4880::/32 2403:4980::/32 +2403:4a40::/32 +2403:4a80::/32 +2403:4b40::/32 +2403:4b80::/32 +2403:4c80::/32 +2403:4cc0::/32 +2403:4d80::/32 +2403:4ec0::/32 2403:5040::/32 2403:5080::/32 +2403:50c0::/32 2403:5280::/32 2403:5380::/32 +2403:54c0::/32 2403:5540::/32 2403:5580::/32 2403:5640::/32 2403:5780::/32 +2403:58c0::/32 2403:5980::/32 +2403:5a80::/32 +2403:5b40::/32 +2403:5b80::/32 +2403:5c80::/32 +2403:5d80::/32 +2403:5e40::/32 +2403:5e80::/32 +2403:5ec0::/32 +2403:5f80::/32 +2403:5fc0::/32 2403:6080::/32 2403:6180::/32 2403:6280::/32 +2403:62c0::/32 2403:6380::/32 2403:6580::/32 2403:6680::/32 @@ -236,6 +976,13 @@ 2403:6780::/32 2403:6880::/32 2403:6980::/32 +2403:6a00::/32 +2403:6c80::/32 +2403:6d40::/32 +2403:6d80::/32 +2403:6e80::/32 +2403:6f40::/32 +2403:6fc0::/32 2403:7040::/32 2403:7080::/32 2403:7180::/32 @@ -244,17 +991,33 @@ 2403:7480::/32 2403:7540::/32 2403:7580::/32 +2403:76c0::/32 2403:7700::/32 2403:7840::/32 +2403:78c0::/32 +2403:7a80::/32 +2403:7b00::/32 +2403:7d80::/32 +2403:7e80::/32 +2403:7f80::/32 2403:8080::/32 2403:8180::/32 2403:8280::/32 2403:8380::/32 +2403:83c0::/32 2403:8480::/32 2403:8580::/32 2403:8880::/32 2403:8900::/32 2403:8980::/32 +2403:8a40::/32 +2403:8a80::/32 +2403:8b00::/32 +2403:8b80::/32 +2403:8c00::/32 +2403:8c80::/32 +2403:8d00::/32 +2403:8d80::/32 2403:9080::/32 2403:9180::/32 2403:9280::/32 @@ -264,6 +1027,127 @@ 2403:9680::/32 2403:9780::/32 2403:9880::/32 +2403:9a80::/32 +2403:9ac0::/32 +2403:9b00::/32 +2403:9b40::/32 +2403:9b80::/32 +2403:9c80::/32 +2403:9d00::/32 +2403:9d80::/32 +2403:9e40::/32 +2403:9e80::/32 +2403:9ec0::/32 +2403:9f80::/32 +2403:a100::/32 +2403:a140::/32 +2403:a200::/32 +2403:a300::/32 +2403:a480::/32 +2403:a580::/32 +2403:a680::/32 +2403:a6c0::/32 +2403:a780::/32 +2403:a880::/32 +2403:a940::/32 +2403:a980::/32 +2403:a9c0::/32 +2403:aa40::/32 +2403:aa80::/32 +2403:ab80::/32 +2403:ac00::/32 +2403:af80::/32 +2403:b080::/32 +2403:b180::/32 +2403:b280::/32 +2403:b380::/32 +2403:b400::/32 +2403:b480::/32 +2403:b580::/32 +2403:b680::/32 +2403:b780::/32 +2403:b880::/32 +2403:b980::/32 +2403:ba40::/32 +2403:c040::/32 +2403:c080::/32 +2403:c100::/32 +2403:c140::/32 +2403:c180::/32 +2403:c3c0::/32 +2403:c440::/32 +2403:c480::/32 +2403:c4c0::/32 +2403:c980::/32 +2403:cdc0::/32 +2403:cec0::/32 +2403:cf80::/32 +2403:d080::/32 +2403:d180::/32 +2403:d280::/32 +2403:d2c0::/32 +2403:d380::/32 +2403:d400::/32 +2403:d440::/32 +2403:d480::/32 +2403:d580::/32 +2403:d680::/32 +2403:d780::/32 +2403:d7c0::/32 +2403:d880::/32 +2403:d980::/32 +2403:d9c0::/32 +2403:da80::/32 +2403:dac0::/32 +2403:db00::/32 +2403:db80::/32 +2403:dc80::/32 +2403:dd80::/32 +2403:de80::/32 +2403:df80::/32 +2403:e080::/32 +2403:e180::/32 +2403:e280::/32 +2403:e300::/32 +2403:e480::/32 +2403:e500::/32 +2403:e580::/32 +2403:e640::/32 +2403:e680::/32 +2403:e700::/32 +2403:e780::/32 +2403:e7c0::/32 +2403:e880::/32 +2403:e980::/32 +2403:ea80::/32 +2403:eac0::/32 +2403:eb80::/32 +2403:ec80::/32 +2403:ed00::/32 +2403:ed40::/32 +2403:ed80::/32 +2403:ee80::/32 +2403:ef80::/32 +2403:f080::/32 +2403:f100::/32 +2403:f180::/32 +2403:f240::/32 +2403:f280::/32 +2403:f300::/32 +2403:f380::/32 +2403:f4c0::/32 +2403:f580::/32 +2403:f740::/32 +2403:f8c0::/32 +2403:f980::/32 +2403:fb00::/32 +2403:fb80::/32 +2403:fc40::/32 +2403:fe40::/32 +2403:fe80::/32 +2403:fec0::/32 +2403:ff80::/32 +2403:ffc0::/32 2404:100::/32 2404:158::/32 2404:240::/32 @@ -271,49 +1155,153 @@ 2404:440::/32 2404:480::/32 2404:680::/32 +2404:a80::/32 +2404:b80::/32 +2404:bc0::/32 +2404:c40::/32 +2404:d80::/32 +2404:f00::/32 +2404:f80::/32 2404:1080::/32 +2404:10c0::/32 2404:1180::/32 +2404:14c0::/32 2404:1880::/32 +2404:1c80::/32 +2404:1cc0::/32 +2404:1d80::/32 +2404:1e80::/32 +2404:1f40::/32 +2404:21c0::/32 +2404:30c0::/32 2404:3140::/32 +2404:31c0::/32 2404:3240::/32 +2404:32c0::/32 2404:3300::/32 2404:3340::/32 2404:3480::/32 +2404:35c0::/32 2404:3640::/32 +2404:36c0::/32 2404:3700::/32 2404:3740::/32 +2404:37c0::/32 2404:3840::/32 2404:3940::/32 +2404:3b00::/34 +2404:3bc0::/32 +2404:3c40::/32 +2404:3f40::/32 2404:4080::/32 +2404:41c0::/32 2404:4540::/32 2404:4740::/32 +2404:4bc0::/32 +2404:4d00::/32 +2404:4dc0::/32 +2404:51c0::/32 2404:5640::/32 +2404:5a80::/32 +2404:5b00::/32 +2404:5d00::/32 2404:6000::/32 2404:6100::/32 2404:6380::/32 2404:6500::/32 +2404:65c0::/32 +2404:6a40::/32 +2404:6f80::/32 2404:7100::/32 2404:7180::/32 +2404:71c0::/32 2404:7240::/32 +2404:74c0::/32 2404:7600::/32 2404:7740::/32 2404:7940::/32 +2404:7d00::/32 2404:8040::/32 +2404:80c0::/32 2404:8140::/32 +2404:81c0::/32 2404:8480::/32 2404:8580::/32 2404:8700::/32 2404:8880::/32 +2404:8a80::/32 +2404:8b00::/32 +2404:8dc0::/32 2404:9340::/32 -2404:9880::/32 +2404:9b80::/32 +2404:9c80::/32 +2404:a000::/32 +2404:a080::/32 +2404:a0c0::/32 +2404:a180::/32 +2404:a240::/32 +2404:a740::/32 +2404:b100::/32 +2404:b340::/32 +2404:b3c0::/32 +2404:b440::/32 +2404:b4c0::/32 +2404:b900::/32 +2404:bbc0::/32 +2404:bc40::/32 +2404:c1c0::/32 +2404:c240::/32 +2404:c2c0::/32 +2404:c300::/32 +2404:c3c0::/32 +2404:c440::/32 +2404:c4c0::/32 +2404:c540::/32 +2404:c5c0::/32 +2404:c640::/32 +2404:c940::/32 +2404:c9c0::/32 +2404:cd00::/32 +2404:d040::/32 +2404:d080::/32 +2404:d140::/32 +2404:d280::/32 +2404:d3c0::/32 +2404:d640::/32 +2404:d6c0::/32 +2404:d7c0::/32 +2404:d840::/32 +2404:dd80::/32 +2404:df00::/32 +2404:e280::/32 +2404:e540::/32 +2404:e5c0::/32 +2404:e780::/32 +2404:e880::/32 +2404:e8c0::/32 +2404:eb80::/32 +2404:ec40::/32 +2404:ecc0::/32 +2404:edc0::/32 +2404:f040::/32 +2404:f4c0::/32 +2404:f7c0::/32 2405:80::/32 2405:480::/32 2405:580::/32 2405:680::/32 +2405:6c0::/32 2405:780::/32 2405:880::/32 2405:940::/32 2405:980::/32 +2405:9c0::/32 +2405:a80::/32 +2405:b80::/32 +2405:c80::/32 +2405:d80::/32 +2405:e80::/32 +2405:f80::/32 2405:1080::/32 2405:1180::/32 2405:1280::/32 @@ -321,50 +1309,110 @@ 2405:1480::/32 2405:1580::/32 2405:1680::/32 +2405:18c0::/32 +2405:1c80::/32 +2405:1d80::/32 +2405:1e80::/32 +2405:1f80::/32 +2405:1fc0::/32 2405:2080::/32 2405:2180::/32 2405:2280::/32 2405:2340::/32 2405:2380::/32 2405:2480::/32 +2405:24c0::/32 2405:2580::/32 2405:2680::/32 2405:2780::/32 2405:2880::/32 2405:2980::/32 +2405:2a80::/32 +2405:2b80::/32 +2405:2bc0::/32 +2405:2c80::/32 +2405:2d80::/32 +2405:2e80::/32 +2405:2ec0::/32 +2405:2f40::/32 +2405:2f80::/32 2405:3140::/32 +2405:31c0::/32 +2405:37c0::/32 2405:3880::/32 2405:3980::/32 +2405:39c0::/32 +2405:3a80::/32 +2405:3ac0::/32 +2405:3b00::/32 +2405:3b80::/32 +2405:3bc0::/32 +2405:3c40::/32 +2405:3c80::/32 +2405:3d80::/32 +2405:3e80::/32 +2405:3f40::/32 +2405:3f80::/32 2405:4080::/32 2405:4140::/32 2405:4180::/32 +2405:41c0::/32 2405:4280::/32 2405:4380::/32 2405:4480::/32 +2405:44c0::/32 2405:4540::/32 2405:4580::/32 2405:4680::/32 2405:4780::/32 2405:4880::/32 2405:4980::/32 +2405:4a80::/32 +2405:4b80::/32 +2405:4d40::/32 +2405:4e80::/32 +2405:4f80::/32 2405:5080::/32 2405:5180::/32 2405:5240::/32 2405:5280::/32 +2405:52c0::/32 2405:5380::/32 2405:5480::/32 2405:5580::/32 2405:5680::/32 2405:5780::/32 +2405:57c0::/32 2405:5880::/32 2405:5980::/32 +2405:5a80::/32 +2405:5b80::/32 +2405:5c80::/32 +2405:5cc0::/32 +2405:5d40::/32 +2405:5d80::/32 +2405:5dc0::/32 +2405:5e80::/32 +2405:5f80::/32 2405:6080::/32 2405:6180::/32 2405:6200::/32 +2405:66c0::/32 2405:6880::/32 +2405:68c0::/32 2405:6940::/32 +2405:69c0::/32 +2405:6a80::/32 +2405:6b80::/32 +2405:6c80::/32 +2405:6d80::/32 +2405:6e80::/32 +2405:6f00::/32 +2405:6f80::/32 +2405:7040::/32 2405:7080::/32 2405:7180::/32 +2405:7240::/32 2405:7280::/32 2405:7380::/32 2405:7480::/32 @@ -372,30 +1420,126 @@ 2405:7680::/32 2405:7780::/32 2405:7880::/32 +2405:78c0::/32 2405:7980::/32 +2405:79c0::/32 +2405:7a80::/32 +2405:7b80::/32 +2405:7c80::/32 +2405:7d40::/32 +2405:7f40::/32 +2405:7fc0::/32 2405:8280::/32 2405:8480::/32 +2405:84c0::/32 2405:8580::/32 2405:8680::/32 2405:8780::/32 2405:8880::/32 2405:8980::/32 +2405:8a40::/32 +2405:8a80::/32 +2405:8ac0::/32 +2405:8b80::/32 +2405:8c80::/32 +2405:8d80::/32 +2405:8e80::/32 +2405:8f80::/32 2405:9080::/32 2405:9180::/32 2405:9280::/32 2405:9300::/32 +2405:9340::/32 2405:9380::/32 +2405:93c0::/32 2405:9480::/32 +2405:94c0::/32 2405:9580::/32 2405:9680::/32 2405:9700::/32 2405:9780::/32 +2405:97c0::/32 2405:9880::/32 2405:9900::/32 2405:9980::/32 +2405:99c0::/32 +2405:9a80::/32 +2405:9b00::/32 +2405:9b80::/32 +2405:9bc0::/32 +2405:9e00::/32 +2405:a240::/32 +2405:a3c0::/32 +2405:a500::/32 +2405:a680::/32 +2405:a900::/32 +2405:a980::/32 +2405:aa80::/32 +2405:ab00::/32 +2405:ad00::/32 +2405:af00::/32 +2405:b100::/32 +2405:b300::/32 +2405:b7c0::/32 +2405:b880::/32 +2405:b980::/32 +2405:bb00::/32 +2405:bd00::/32 +2405:bd80::/32 +2405:bdc0::/32 +2405:be80::/32 +2405:bf00::/32 +2405:c040::/32 +2405:c280::/32 +2405:c380::/32 +2405:c480::/32 +2405:c500::/32 +2405:c580::/32 +2405:c680::/32 +2405:c780::/32 +2405:c880::/32 +2405:c980::/32 +2405:ca80::/32 +2405:cb80::/32 +2405:cc80::/32 +2405:cd80::/32 +2405:ce80::/32 +2405:d280::/32 +2405:d4c0::/32 +2405:d700::/32 +2405:d740::/32 +2405:d900::/32 +2405:df40::/32 +2405:e000::/32 +2405:e040::/32 +2405:e1c0::/32 +2405:e600::/32 +2405:ed40::/32 +2405:ee80::/32 +2405:ef40::/30 +2405:f340::/32 +2405:f380::/32 +2405:f3c0::/32 +2405:f580::/32 +2405:f6c0::/32 +2405:f940::/32 +2405:fdc0::/32 +2405:fe80::/32 +2405:ff80::/32 +2406:40::/32 2406:80::/32 +2406:c0::/32 +2406:140::/32 2406:280::/32 +2406:440::/32 +2406:4c0::/32 +2406:7c0::/32 +2406:840::/32 2406:880::/32 +2406:8c0::/32 +2406:d80::/32 +2406:e80::/32 +2406:f80::/32 2406:1080::/32 2406:1100::/32 2406:1180::/32 @@ -403,59 +1547,117 @@ 2406:1380::/32 2406:1480::/32 2406:1580::/32 +2406:15c0::/32 2406:1680::/32 2406:1780::/32 2406:1880::/32 2406:1980::/32 +2406:1a80::/32 +2406:1b80::/32 +2406:1c80::/32 +2406:1d80::/32 +2406:1e40::/32 +2406:1e80::/32 +2406:1f80::/32 2406:2080::/32 -2406:2580::/32 +2406:2640::/32 2406:2700::/32 2406:2780::/32 2406:2880::/32 2406:2980::/32 +2406:2a80::/32 +2406:2b80::/32 +2406:2c40::/32 +2406:2c80::/32 +2406:2d80::/32 +2406:2e80::/32 +2406:2f80::/32 2406:3080::/32 2406:3180::/32 +2406:31c0::/32 2406:3280::/32 2406:3300::/32 +2406:3340::/32 2406:3380::/32 +2406:3440::/32 2406:3480::/32 +2406:34c0::/32 2406:3580::/32 +2406:3640::/32 2406:3680::/32 2406:3700::/32 2406:3780::/32 2406:3880::/32 2406:3980::/32 +2406:39c0::/32 +2406:3ac0::/32 +2406:3d80::/32 +2406:3e80::/32 +2406:3f80::/32 2406:4080::/32 +2406:40c0::/32 2406:4180::/32 2406:4280::/32 +2406:42c0::/32 +2406:4340::/32 2406:4380::/32 +2406:43c0::/32 2406:4480::/32 2406:4500::/32 2406:4680::/32 -2406:4980::/32 +2406:4b80::/32 +2406:4c80::/32 +2406:4d00::/32 +2406:4d80::/32 +2406:4e80::/32 +2406:4f00::/32 +2406:4f80::/32 2406:5080::/32 +2406:50c0::/32 2406:5180::/32 2406:5280::/32 +2406:52c0::/32 +2406:5340::/32 2406:5380::/32 2406:5480::/32 2406:5580::/32 2406:5680::/32 2406:5780::/32 +2406:5840::/32 2406:5880::/32 +2406:5940::/32 2406:5980::/32 +2406:5a40::/32 +2406:5ac0::/32 +2406:5b40::/32 +2406:5d80::/32 +2406:5e80::/32 +2406:5f80::/32 2406:6080::/32 2406:6100::/32 2406:6180::/32 +2406:61c0::/30 +2406:61c4::/30 2406:6280::/32 2406:6300::/32 +2406:6340::/32 2406:6380::/32 2406:6480::/32 2406:6500::/32 2406:6580::/32 +2406:65c0::/32 +2406:6640::/32 2406:6680::/32 2406:6780::/32 2406:6880::/32 2406:6980::/32 +2406:6a80::/32 +2406:6b80::/32 +2406:6bc0::/32 +2406:6c80::/32 +2406:6d80::/32 +2406:6e80::/32 +2406:6f80::/32 2406:7080::/32 2406:7280::/32 2406:7380::/32 @@ -465,6 +1667,14 @@ 2406:7780::/32 2406:7880::/32 2406:7980::/32 +2406:7a80::/32 +2406:7b80::/32 +2406:7c80::/32 +2406:7d00::/32 +2406:7d80::/32 +2406:7e80::/32 +2406:7f80::/32 +2406:7fc0::/32 2406:8080::/32 2406:8180::/32 2406:8280::/32 @@ -475,40 +1685,299 @@ 2406:8780::/32 2406:8880::/32 2406:8980::/32 +2406:8a80::/32 +2406:8b80::/32 +2406:8c80::/32 +2406:8d80::/32 +2406:8e80::/32 +2406:8f40::/32 +2406:8f80::/32 2406:9180::/32 2406:9200::/32 2406:9280::/32 2406:9380::/32 2406:9480::/32 +2406:94c0::/32 2406:9780::/32 +2406:9d80::/32 +2406:9e40::/32 +2406:9e80::/32 +2406:9f80::/32 +2406:a080::/32 +2406:a180::/32 +2406:a280::/32 +2406:a380::/32 +2406:a480::/32 +2406:a580::/32 +2406:a680::/32 +2406:a780::/32 +2406:a7c0::/32 +2406:a880::/32 +2406:a8c0::/32 +2406:a980::/32 +2406:aa80::/32 +2406:aac0::/32 +2406:ab80::/32 +2406:ac80::/32 +2406:acc0::/32 +2406:ad40::/32 +2406:ad80::/32 +2406:ae80::/32 +2406:af80::/32 +2406:b080::/32 +2406:b640::/32 +2406:b880::/32 +2406:b980::/32 +2406:ba80::/32 +2406:bb80::/32 +2406:bc80::/32 +2406:bd40::/32 +2406:bd80::/32 +2406:bdc0::/32 +2406:be80::/32 +2406:bf80::/32 +2406:c080::/32 +2406:c180::/32 +2406:c280::/32 +2406:c340::/32 +2406:c480::/32 +2406:c580::/32 +2406:c680::/32 +2406:c780::/32 +2406:c880::/32 +2406:c900::/32 +2406:c980::/32 +2406:ca80::/32 +2406:cac0::/32 +2406:cb80::/32 +2406:cc80::/32 +2406:cd80::/32 +2406:ce80::/32 +2406:cf00::/32 +2406:cf01::/32 +2406:cf02::/31 +2406:cf80::/32 +2406:d080::/32 +2406:d140::/32 +2406:d180::/32 +2406:d280::/32 +2406:d2c0::/32 +2406:d380::/32 +2406:d440::/32 +2406:d480::/32 +2406:d580::/32 +2406:d680::/32 +2406:d780::/32 +2406:d880::/32 +2406:d980::/32 +2406:db80::/32 +2406:dc80::/32 +2406:dd00::/32 +2406:dd80::/32 +2406:de80::/32 +2406:df80::/32 +2406:e080::/32 +2406:e180::/32 +2406:e2c0::/32 +2406:e380::/32 +2406:e3c0::/32 +2406:e500::/32 +2406:e580::/32 +2406:e680::/32 +2406:e780::/32 +2406:e8c0::/32 +2406:ea40::/28 +2406:f280::/32 +2406:f300::/32 +2406:f4c0::/32 +2406:f7c0::/32 +2406:f980::/32 +2406:fc80::/32 +2406:fd80::/32 +2406:fe80::/32 +2406:ff00::/32 2407:480::/32 2407:580::/32 -2407:1180::/32 +2407:cc0::/32 +2407:f40::/32 +2407:17c0::/32 2407:1900::/32 +2407:1d00::/32 2407:2280::/32 2407:2380::/32 +2407:23c0::/32 2407:2780::/32 +2407:2840::/32 +2407:2ac0::/32 +2407:31c0::/32 +2407:3340::/32 +2407:3540::/32 2407:3700::/32 +2407:3740::/32 +2407:37c0::/32 2407:3900::/32 +2407:3f40::/32 +2407:43c0::/32 +2407:4440::/32 2407:4580::/32 2407:4680::/32 +2407:4740::/32 2407:4880::/32 2407:4980::/32 +2407:4a80::/32 +2407:4c80::/32 +2407:4d80::/32 +2407:4e80::/32 +2407:4f00::/32 2407:5380::/32 +2407:53c0::/32 2407:5500::/32 2407:5780::/32 +2407:5840::/32 +2407:6040::/32 2407:6580::/32 +2407:6c40::/32 2407:7680::/32 2407:7780::/32 2407:7880::/32 2407:7980::/32 +2407:7c80::/32 +2407:7d00::/32 +2407:7d80::/32 +2407:7e80::/32 2407:8880::/32 +2407:8b80::/32 +2407:8f40::/32 2407:9080::/32 2407:9180::/32 +2407:94c0::/32 2407:9680::/32 2407:9980::/32 +2407:9b40::/32 +2407:9bc0::/32 +2407:9f00::/32 +2407:9f80::/32 +2407:a040::/32 +2407:a640::/32 +2407:a7c0::/32 +2407:a880::/32 +2407:a940::/32 +2407:ad80::/32 +2407:ae80::/32 +2407:af80::/32 +2407:b080::/32 +2407:b180::/32 +2407:b280::/32 +2407:b380::/32 +2407:b580::/32 +2407:b680::/32 +2407:b780::/32 +2407:b880::/32 +2407:b980::/32 +2407:ba00::/32 +2407:ba80::/32 +2407:bb80::/32 +2407:bc00::/32 +2407:bc80::/32 +2407:bd80::/32 +2407:bdc0::/32 +2407:be80::/32 +2407:bf80::/32 +2407:c080::/32 +2407:c380::/32 +2407:c400::/32 +2407:c480::/32 +2407:c580::/32 +2407:c680::/32 +2407:c780::/32 +2407:c880::/32 +2407:c900::/32 +2407:c980::/32 +2407:cb80::/32 +2407:cc80::/32 +2407:cd80::/32 +2407:ce80::/32 +2407:cf00::/32 +2407:cf80::/32 +2407:d480::/32 +2407:d580::/32 +2407:d680::/32 +2407:d780::/32 +2407:d7c0::/32 +2407:d880::/32 +2407:d8c0::/32 +2407:d980::/32 +2407:d9c0::/32 +2407:da80::/32 +2407:db80::/32 +2407:dc80::/32 +2407:dd80::/32 +2407:de80::/32 +2407:df80::/32 +2407:dfc0::/32 +2407:e080::/32 +2407:e180::/32 +2407:e280::/32 +2407:e380::/32 +2407:e480::/32 +2407:e580::/32 +2407:e680::/32 +2407:e780::/32 +2407:e800::/32 +2407:ea80::/32 +2407:eb80::/32 +2407:ec40::/32 +2407:ec80::/32 +2407:ecc0::/32 +2407:ed80::/32 +2407:ee80::/32 +2407:ef80::/32 +2407:f080::/32 +2407:f180::/32 +2407:f280::/32 +2407:f380::/32 +2407:f480::/32 +2407:f580::/32 +2407:f680::/32 +2407:f780::/32 +2407:f880::/32 +2407:f980::/32 +2407:fa80::/32 +2407:fb80::/32 +2407:fc80::/32 +2407:fd80::/32 2408:4000::/22 +2408:6000::/24 2408:8000::/22 2408:8400::/22 2408:8800::/21 +2409:2000::/21 +2409:6000::/20 2409:8000::/20 +240a:2000::/24 +240a:4000::/21 +240a:6000::/24 +240a:8000::/21 +240a:a000::/20 +240a:c000::/20 +240b:2000::/22 +240b:6000::/20 +240b:8000::/21 +240b:a000::/25 +240b:e000::/26 +240c::/28 +240c:4000::/22 +240c:8000::/21 +240c:c000::/20 +240d:4000::/21 +240d:8000::/24 +240e::/24 +240e:100::/24 +240e:200::/23 +240e:400::/22 +240e:800::/21 +240e:1000::/20 +240e:2000::/19 +240f:4000::/24 +240f:8000::/24 +240f:c000::/24