├── .DS_Store ├── .gitignore ├── .rvmrc ├── LICENSE ├── README.md ├── _config.yml ├── config ├── 2015-02-18-22-29-28-FslqbAaf.txt ├── chnroute.txt ├── chnroute2.txt └── well-known-site.txt ├── edkDKEDEDLELkdeRR ├── lib ├── domestic_addr.rb └── myresolver.rb ├── log └── test └── mydns.rb /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechen163/mydns/caf26525786e94d0d95922d2c02734660e51eba6/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | log/*.log 2 | log/*.* 3 | config/ovsroute.txt 4 | *sublime* 5 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # This is an RVM Project .rvmrc file, used to automatically load the ruby 4 | # development environment upon cd'ing into the directory 5 | 6 | # First we specify our desired [@], the @gemset name is optional, 7 | # Only full ruby name is supported here, for short names use: 8 | # echo "rvm use 2.4.0@dns" > .rvmrc 9 | environment_id="ruby-2.4.0@dns" 10 | 11 | # Uncomment the following lines if you want to verify rvm version per project 12 | # rvmrc_rvm_version="1.29.1 (latest)" # 1.10.1 seems like a safe start 13 | # eval "$(echo ${rvm_version}.${rvmrc_rvm_version} | __rvm_awk -F. '{print "[[ "$1*65536+$2*256+$3" -ge "$4*65536+$5*256+$6" ]]"}' )" || { 14 | # echo "This .rvmrc file requires at least RVM ${rvmrc_rvm_version}, aborting loading." 15 | # return 1 16 | # } 17 | 18 | # First we attempt to load the desired environment directly from the environment 19 | # file. This is very fast and efficient compared to running through the entire 20 | # CLI and selector. If you want feedback on which environment was used then 21 | # insert the word 'use' after --create as this triggers verbose mode. 22 | if [[ -d "${rvm_path:-$HOME/.rvm}/environments" 23 | && -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]] 24 | then 25 | \. "${rvm_path:-$HOME/.rvm}/environments/$environment_id" 26 | for __hook in "${rvm_path:-$HOME/.rvm}/hooks/after_use"* 27 | do 28 | if [[ -f "${__hook}" && -x "${__hook}" && -s "${__hook}" ]] 29 | then \. "${__hook}" || true 30 | fi 31 | done 32 | unset __hook 33 | if (( ${rvm_use_flag:=1} >= 1 )) # display automatically 34 | then 35 | if [[ $- == *i* ]] # check for interactive shells 36 | then printf "%b" "Using: $(tput setaf 2 2>/dev/null)$GEM_HOME$(tput sgr0 2>/dev/null)\n" # show the user the ruby and gemset they are using in green 37 | else printf "%b" "Using: $GEM_HOME\n" # don't use colors in non-interactive shells 38 | fi 39 | fi 40 | else 41 | # If the environment file has not yet been created, use the RVM CLI to select. 42 | rvm --create use "$environment_id" || { 43 | echo "Failed to create RVM environment '${environment_id}'." 44 | return 1 45 | } 46 | fi 47 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 mike chen 2 | 3 | This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 4 | 5 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 6 | 7 | You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | I use https://github.com/mikechen163/dohproxy as the current solution. 3 | 4 | ------------------------------------------------- 5 | 6 | dns is used for anti dns polution, inspired by [chinadns](https://github.com/clowwindy/ChinaDNS) 7 | 8 | the main dns lookup process is as follows: 9 | 10 | 1 checking the internal dns cache. 11 | if found and ttl valid ,return cached item 12 | 13 | 2 lookup in domestic resolvers , check the result against chnroute.txt. if found in file, this ip is in domestic use. return. 14 | 15 | 3 lookup in oversea dns resolver. if success, update internal cache. return . 16 | 17 | 4 Its better to use dnscrypt-proxy to ensure oversea dns query will not be poluted. 18 | 19 | 20 | #### INSTALL 21 | 22 | mydns is a ruby program and use rubydns,so use gem to install rubydns first. 23 | 24 | sudo gem install rubydns 25 | git clone https://github.com/mikechen163/mydns.git 26 | cd mydns 27 | sudo ruby mydns.rb 28 | 29 | the program default listen on 127.0.0.1:53,then use dig to test. 30 | 31 | dig @localhost -p 53 www.google.com 32 | 33 | ------------------------ 34 | #### 1 概述 35 | 36 | 要封锁某个网站,除了通过GFW禁止此网站之外,还可以通过DNS污染的方式,限制用户不能得到此网站正确的IP地址。 通过GFW限制网站,就像关闭了到达目的地的直达航班,还可以通过转机的方式到达;然而DNS污染直接修改了地图,用户在地图上根本找不到目的地。 37 | 38 | 在查询地图的时候,如果发现用户访问某个限制的地址,那么DNS污染就直接修改返回的结果,导致用户访问的地址,不是正确的地址。通过[dnscrypt-proxy](https://github.com/jedisct1/dnscrypt-proxy/)这个项目,访问DNS的请求被全程加密,从而可以解决DNS返回结果被污染的问题。 39 | 40 | 但这带来了新问题: 41 | 42 | 1 国外的DNS服务器,对于国内的ip域名的解析,很可能不是最合适的。例如电信网的用户访问国内的网站,国内的DNS服务器会根据发起源是电信网络,返回位于电信网络内的服务器位置,而海外的服务器返回结果则是和发起网络无关的,很可能返回一个位于联通网络的服务器,导致网站访问超慢。 43 | 44 | 2 国外DNS服务器本身访问时延就不小,因此整个网络访问速度也变慢。 45 | 46 | [chinadns](https://github.com/clowwindy/ChinaDNS)通过检查网站的IP地址列表,是否属于国内地址,从而解决了整个问题。 47 | 48 | #### 2 解决方案设计 49 | 50 | 解决这个问题需要一个运行在本机上的DNS缓存服务器。由于就运行在本机,所以不存在被污染的问题。方案设计如下 51 | 52 | 1 首先查看本地dns缓存,如果找到对应的那么项目,且ttl值合法,那么返回缓存中dns条目。否则进入步骤2 53 | 54 | 2 访问国内的dns服务器,检查返回结果中的ip地址,是否属于国内地址,如果是国内地址那么直接返回结果给用户。如果此IP地址不是国内地址那么进入步骤3 55 | 56 | 3 通过dnscrypt访问海外的dns服务器,如果返回值有效,更新缓存,返回结果给用户 57 | 58 | 59 | #### LICENSE 60 | 61 | Copyright (C) 2015 mike chen 62 | 63 | This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 64 | 65 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 66 | 67 | You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. 68 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | home_directory: . 2 | logfile : log/nlog.txt 3 | loglevel : DEBUG #DEBUG is detailed infomation 4 | chnroute : config/chnroute.txt #domestic ip range , same as chinadns file 5 | ovsroute : config/ovsroute.txt #oveesea host/ip pair , auto generated by this program 6 | default_ttl : 60 #reading oveasea host ip, set default ttl to this number 7 | longest_valid_ttl : 86400 #24 hours 8 | white_list_mode : true 9 | now_in_oversea : false 10 | 11 | bind_ip : 127.0.0.1 12 | bind_port : 53 13 | 14 | white_list: #this list will force to use oversea dns resolver 15 | name1 : google.com 16 | name2 : twitter.com 17 | name3 : facebook.com 18 | name4 : youtube.com 19 | name5 : cnn.com 20 | name6 : bbc.com 21 | name7 : digitalocean.com 22 | name8 : global.ssl.fastly.net 23 | name9 : amazon.com 24 | name10 : amazonaws.com 25 | name11 : github.com 26 | name12 : yahoo.com 27 | 28 | 29 | 30 | 31 | #for these domain, using domestic dns resolver result. 32 | # a $ means ending. ".cn$"" = ending in .cn 33 | force_using_domestic_resolve: 34 | name1 : .cn$ 35 | #name2 : apple.com 36 | #name3 : icloud.com 37 | # name4 : xueqiu.com 38 | # name5 : baidu.com 39 | 40 | domestic_dns_resolver: 41 | - protocol : udp 42 | address : 180.76.76.76 #baidu dns 43 | port : 53 44 | 45 | - protocol : udp 46 | address : 223.5.5.5 #alibaba dns server 47 | port : 53 48 | 49 | #- protocol : udp 50 | # address : 14.18.142.2 # cloudxns dns server 51 | # port : 53 52 | 53 | # - protocol : udp 54 | # address : 114.114.114.114 # 114 55 | # port : 53 56 | 57 | 58 | oversea_dns_resolver: 59 | # - protocol : udp 60 | # address : 127.0.0.1 #local dnscrypt server 61 | # port : 5533 62 | 63 | - protocol : udp 64 | address : 208.67.222.222 65 | port : 5353 66 | 67 | - protocol : udp 68 | address : 208.67.220.220 69 | port : 443 70 | 71 | # - protocol : tcp 72 | # address : 8.8.8.8 #google dns server 73 | # port : 53 74 | 75 | # - protocol : tcp 76 | # address : 8.8.4.4 #google dns server2 77 | # port : 53 78 | 79 | # - protocol : udp 80 | # address : 192.168.8.1 # erx route chinadns 81 | # port : 53 82 | 83 | 84 | # - protocol : udp 85 | # address : 192.168.8.1 # erx route chinadns 86 | # port : 5353 -------------------------------------------------------------------------------- /config/2015-02-18-22-29-28-FslqbAaf.txt: -------------------------------------------------------------------------------- 1 | [General and DNSCrypt information about Fusl's OpenNIC Tier2 DNS Servers] 2 | 3 | All servers have DNSCrypt configured on all its IP addresses and ports 4 | 54, 443, 1053, 1194, 5353, 8080 and 27015. In case you don't want to 5 | use DNSCrypt but your provider still blocks or intercepts DNS traffic 6 | on port 53 only, you can use this iptables rule (for Linux only) to 7 | redirect your DNS traffic to another port (replace $IP with the IP of 8 | the server). The rule can be extended to randomize ports or even IPs 9 | with every single query. 10 | 11 | iptables -t nat -A OUTPUT -p udp --dport 53 -j DNAT --to $IP:27015 12 | 13 | 14 | 15 | DNS-Server: fvz-rec-at-vie-01 16 | IPv4: 192.71.247.247 17 | IPv6: 2a03:f80:ed15:ca7:ea75:b12d:714:d234 18 | Location: Austria, Vienna 19 | DNSCrypt-Key: 68E7:D19C:94AB:12C8:8812:C26D:88E9:8381:C902:B0DA:C2CA:A70C:3ED6:2A80:6F91:4990 20 | DNSCrypt-Name: 2.fvz-rec-at-vie-01.dnscrypt-cert.meo.ws 21 | 22 | 23 | DNS-Server: fvz-rec-au-nsw-01 24 | IPv4: 163.47.20.30 25 | IPv6: 2406:d501::f40d:f86 26 | IPv6: 2406:d501::5f63:a46d 27 | IPv6: 2406:d501::4bfb:4353 28 | IPv6: 2406:d501::d9f:d957 29 | IPv6: 2406:d501::9e6:7b1d 30 | IPv6: 2406:d501::7ad8:49cf 31 | IPv6: 2406:d501::b106:bcf2 32 | IPv6: 2406:d501::f74:e314 33 | IPv6: 2406:d501::2607:8358 34 | IPv6: 2406:d501::6365:8df4 35 | Location: Sydney, Australia 36 | DNSCrypt-Key: 8DBC:4DF7:3850:9645:16B7:C8D7:4A93:8796:5E8B:D881:7A02:59FB:FE29:73D6:EE5B:BC58 37 | DNSCrypt-Name: 2.fvz-rec-au-nsw-01.dnscrypt-cert.meo.ws 38 | 39 | 40 | DNS-Server: fvz-rec-au-sa-01 41 | IPv4: 103.25.56.238 42 | IPv6: 2401:1400:1:1201:216:3cff:fea7:bcf7 43 | Location: Adelaide, Australia 44 | DNSCrypt-Key: 200C:CB86:169D:57B4:D7D1:2D36:37A8:BF86:720C:DBEF:7F7F:8146:FFCD:CC00:385D:1F37 45 | DNSCrypt-Name: 2.fvz-rec-au-sa-01.dnscrypt-cert.meo.ws 46 | 47 | 48 | DNS-Server: fvz-rec-au-vic-01 49 | IPv4: 111.223.227.125 50 | Location: Melbourne, Australia 51 | DNSCrypt-Key: 2CB6:7A7A:8CA5:FB21:3821:A49B:58F8:2ED1:5B77:7439:1D63:399E:66C6:F971:B9C4:78D2 52 | DNSCrypt-Name: 2.fvz-rec-au-vic-01.dnscrypt-cert.meo.ws 53 | 54 | 55 | DNS-Server: fvz-rec-au-wa-01 56 | IPv4: 103.241.0.207 57 | Location: Perth, Australia 58 | DNSCrypt-Key: 9F8B:5318:2261:3A0B:4442:AE99:D3AF:8A4F:D6C6:5807:C5D8:EBD3:70A9:FF9E:BAE8:20FD 59 | DNSCrypt-Name: 2.fvz-rec-au-wa-01.dnscrypt-cert.meo.ws 60 | 61 | 62 | DNS-Server: fvz-rec-be-vwv-01 63 | IPv4: 192.71.249.249 64 | Location: Oostkamp, Belgium 65 | DNSCrypt-Key: 26B5:70B0:0699:F86D:524D:706D:AE2B:4873:4309:E5C2:E937:23A2:8D76:F4F0:433A:7DB5 66 | DNSCrypt-Name: 2.fvz-rec-be-vwv-01.dnscrypt-cert.meo.ws 67 | 68 | 69 | DNS-Server: fvz-rec-ca-on-01 70 | IPv4: 69.28.67.83 71 | Location: Toronto, Canada 72 | DNSCrypt-Key: 8EE0:828C:9F1C:DEB7:6ECB:E4FE:A219:F34A:0B1C:4E8E:CE86:BA63:F135:EE76:C27A:E394 73 | DNSCrypt-Name: 2.fvz-rec-ca-on-01.dnscrypt-cert.meo.ws 74 | 75 | 76 | DNS-Server: fvz-rec-ch-zu-01 77 | IPv4: 192.121.170.170 78 | IPv6: 2a02:418:6050:ed15:ed15:ed15:e385:e640 79 | Location: Zurich, Switzerland 80 | DNSCrypt-Key: A5E8:95E4:A242:923C:470D:105B:80AD:F6AF:2951:A585:D893:0591:53D3:D1B9:8F27:FC53 81 | DNSCrypt-Name: 2.fvz-rec-ch-zu-01.dnscrypt-cert.meo.ws 82 | 83 | 84 | DNS-Server: fvz-rec-cl-vs-01 85 | IPv4: 37.235.52.191 86 | IPv6: 2a03:f80:56:37:235:52:191:1 87 | Location: Vina del Mar, Chile 88 | DNSCrypt-Key: 809E:3976:A815:9B6C:42F2:B245:6BA0:FC58:7B29:FAA9:4B0E:CDC0:5F81:5402:C070:1E99 89 | DNSCrypt-Name: 2.fvz-rec-cl-vs-01.dnscrypt-cert.meo.ws 90 | 91 | 92 | DNS-Server: fvz-rec-de-dus-01 93 | IPv4: 62.141.38.230 94 | IPv6: 2001:4ba0:cafe:383:123:4567:89ab:cdef 95 | IPv6: 2001:4ba0:cafe:383:a:dead:beef:b10b 96 | IPv6: 2001:4ba0:cafe:383:15:a:bad:1dea 97 | IPv6: 2001:4ba0:cafe:383::1 98 | Location: Dusseldorf, Germany 99 | DNSCrypt-Key: 1F92:37B2:4083:D058:E871:615B:59C7:3E28:EC54:FC4E:231D:017B:DA02:A532:6AF2:72BE 100 | DNSCrypt-Name: 2.fvz-rec-de-dus-01.dnscrypt-cert.meo.ws 101 | 102 | 103 | DNS-Server: fvz-rec-de-fra-01 104 | IPv4: 62.113.200.106 105 | IPv6: 2a00:f48:1026:0:f1f7:0:53f:a958 106 | IPv6: 2a00:f48:1026:0:f1f7:0:1342:1e5c 107 | IPv6: 2a00:f48:1026:0:f1f7:0:af82:e9f1 108 | IPv6: 2a00:f48:1026:0:f1f7:0:3476:386b 109 | IPv6: 2a00:f48:1026:0:f1f7:0:3a83:d484 110 | IPv6: 2a00:f48:1026:0:f1f7:0:30b6:c4f0 111 | IPv6: 2a00:f48:1026:0:f1f7:0:dc6b:9137 112 | IPv6: 2a00:f48:1026:0:f1f7:0:10cf:e872 113 | IPv6: 2a00:f48:1026:0:f1f7:0:2d26:752 114 | IPv6: 2a00:f48:1026:0:f1f7:0:7b0b:9c5e 115 | IPv6: 2a00:f48:1026:0:f1f7:0:51d5:2c63 116 | IPv6: 2a00:f48:1026:0:f1f7:0:ae49:8e8 117 | IPv6: 2a00:f48:1026:0:f1f7:0:ac5a:c1e5 118 | IPv6: 2a00:f48:1026:0:f1f7:0:2a83:3fab 119 | IPv6: 2a00:f48:1026:0:f1f7:0:e249:7d13 120 | IPv6: 2a00:f48:1026:0:f1f7:0:8b3c:23c8 121 | Location: Frankfurt, Germany 122 | DNSCrypt-Key: BD20:6A93:6A02:9240:75BE:9435:8BC9:7461:10D9:B30B:4AD7:61D0:C10A:71FC:8CA5:5260 123 | DNSCrypt-Name: 2.fvz-rec-de-fra-01.dnscrypt-cert.meo.ws 124 | 125 | 126 | DNS-Server: fvz-rec-de-fra-02 127 | IPv4: 84.200.83.161 128 | IPv6: 2001:1608:10:3::f:9 129 | Location: Frankfurt, Germany 130 | DNSCrypt-Key: E06F:D688:E536:A6C0:D819:1A27:3FA8:68FD:4DAE:F622:9464:2B66:0C0A:882D:7AEE:15BE 131 | DNSCrypt-Name: 2.fvz-rec-de-fra-02.dnscrypt-cert.meo.ws 132 | 133 | 134 | DNS-Server: fvz-rec-de-fra-03 135 | IPv4: 109.230.224.106 136 | IPv6: 2a02:d40:3:1:50d3:1eff:fe26:bb6a 137 | Location: Frankfurt, Germany 138 | DNSCrypt-Key: 6F4B:65F9:A4B1:B179:470E:B10B:01AF:8293:D617:6126:E1D6:5DF3:C3B1:1C04:20EF:E5A1 139 | DNSCrypt-Name: 2.fvz-rec-de-fra-03.dnscrypt-cert.meo.ws 140 | 141 | 142 | DNS-Server: fvz-rec-de-sn-01 143 | IPv4: 78.47.34.12 144 | IPv6: 2a01:4f8:192:2393::f023:90af 145 | Location: Falkenstein, Germany 146 | DNSCrypt-Key: BFD1:DBB1:25BF:96D0:A360:5292:C127:6B30:ED3E:03A3:E51F:FDD9:370A:1120:EC70:D0F1 147 | DNSCrypt-Name: 2.fvz-rec-de-sn-01.dnscrypt-cert.meo.ws 148 | 149 | 150 | DNS-Server: fvz-rec-fr-rbx-01 151 | IPv4: 37.59.72.228 152 | Location: Roubaix, France 153 | DNSCrypt-Key: FAE0:FFB7:E30B:69D6:09FC:FAD3:7126:ECE9:1AA6:E390:1549:89A2:1045:7605:A09C:A0C8 154 | DNSCrypt-Name: 2.fvz-rec-fr-rbx-01.dnscrypt-cert.meo.ws 155 | 156 | 157 | DNS-Server: fvz-rec-fr-sxb-01 158 | IPv4: 46.105.212.15 159 | Location: Strasbourg, France 160 | DNSCrypt-Key: DB91:D1E5:1D3B:993B:9677:D1A5:2C42:C46E:0397:D038:33D7:6D9E:7964:FEAC:0A16:4CFF 161 | DNSCrypt-Name: 2.fvz-rec-fr-sxb-01.dnscrypt-cert.meo.ws 162 | 163 | 164 | DNS-Server: fvz-rec-gb-eng-01 165 | IPv4: 178.79.174.162 166 | IPv6: 2a01:7e00::f03c:91ff:fe84:da61 167 | Location: London, England 168 | DNSCrypt-Key: 8E14:C710:FA49:6F5E:18D7:DA15:6E80:5CDD:F666:299F:438E:5798:63F1:4513:68D1:9B3A 169 | DNSCrypt-Name: 2.fvz-rec-gb-eng-01.dnscrypt-cert.meo.ws 170 | 171 | 172 | DNS-Server: fvz-rec-hk-nt-01 173 | IPv4: 151.236.20.236 174 | IPv6: 2a03:f80:852:151:236:20:236:1 175 | Location: New Territories, Hong Kong 176 | DNSCrypt-Key: AEE3:61A5:D48D:C08A:A333:34F4:9D66:6521:5983:0BA2:6BB1:A818:3558:BAC5:3510:6999 177 | DNSCrypt-Name: 2.fvz-rec-hk-nt-01.dnscrypt-cert.meo.ws 178 | 179 | 180 | DNS-Server: fvz-rec-hu-bu-01 181 | IPv4: 79.120.211.147 182 | Location: Budapest, Hungary 183 | DNSCrypt-Key: A733:7AA3:2C6B:5388:6847:7406:21A2:1605:5FB2:8913:DC99:F467:AC25:D71A:3EFB:5CAF 184 | DNSCrypt-Name: 2.fvz-rec-hu-bu-01.dnscrypt-cert.meo.ws 185 | 186 | 187 | DNS-Server: fvz-rec-il-ta-01 188 | IPv4: 193.182.144.144 189 | IPv6: 2a03:f80:972:193:182:144:144:1 190 | Location: Tel Aviv, Israel 191 | DNSCrypt-Key: D449:2F9E:B788:1940:18B7:AD4A:AFA6:BB90:3080:08A0:AC45:34A8:3E77:F9AE:3DC2:357F 192 | DNSCrypt-Name: 2.fvz-rec-il-ta-01.dnscrypt-cert.meo.ws 193 | 194 | 195 | DNS-Server: fvz-rec-im-dgl-01 196 | IPv4: 192.71.211.211 197 | IPv6: 2a03:f80:44:192:71:211:211:1 198 | Location: Douglas, Isle of Man 199 | DNSCrypt-Key: 8C67:31CA:9971:E934:ED55:56BF:5D63:E468:8997:E722:FF27:6D86:2D08:35F6:EA37:2292 200 | DNSCrypt-Name: 2.fvz-rec-im-dgl-01.dnscrypt-cert.meo.ws 201 | 202 | 203 | DNS-Server: fvz-rec-is-hf-01 204 | IPv4: 192.71.218.218 205 | IPv6: 2a03:f80:354:ca7:ea75:b12d:31:31 206 | Location: Hafnarfjordur, Iceland 207 | DNSCrypt-Key: EEE9:C4EA:1727:3DAE:C4C9:74CE:B4E3:F713:1BCA:C32A:8FF4:A672:818B:594A:3C7D:D1FB 208 | DNSCrypt-Name: 2.fvz-rec-is-hf-01.dnscrypt-cert.meo.ws 209 | 210 | 211 | DNS-Server: fvz-rec-jp-tk-01 212 | IPv4: 106.185.41.36 213 | IPv6: 2400:8900::f03c:91ff:fe84:b7b 214 | Location: Tokyo, Japan 215 | DNSCrypt-Key: A45D:3F4A:2F1E:1D22:47C2:2D75:0877:5735:724E:A144:607B:26B0:76DD:F990:CDD1:1411 216 | DNSCrypt-Name: 2.fvz-rec-jp-tk-01.dnscrypt-cert.meo.ws 217 | 218 | 219 | DNS-Server: fvz-rec-li-ba-01 220 | IPv4: 88.82.109.9 221 | IPv6: 2a02:380:4002:ed15:ed15:ed15:3170:4abe 222 | Location: Balzers, Liechtenstein 223 | DNSCrypt-Key: 97C1:5832:7B99:B023:B2D6:58AD:C60C:ADBA:294A:6D7B:82D0:1F40:5249:57C9:3F08:B9AD 224 | DNSCrypt-Name: 2.fvz-rec-li-ba-01.dnscrypt-cert.meo.ws 225 | 226 | 227 | DNS-Server: fvz-rec-nl-fl-01 228 | IPv4: 31.220.43.191 229 | IPv6: 2a00:1ca8:81:2b::5749 230 | Location: Dronten, Netherlands 231 | DNSCrypt-Key: EAD5:E575:EBEB:D93C:8D30:48EE:3AE1:A66D:34D0:A4E7:712E:8758:115F:EC81:BCAE:6297 232 | DNSCrypt-Name: 2.fvz-rec-nl-fl-01.dnscrypt-cert.meo.ws 233 | 234 | 235 | DNS-Server: fvz-rec-nl-nh-01 236 | IPv4: 151.236.29.92 237 | IPv6: 2a00:1768:1005:1000:1000:1000:e621:4948 238 | Location: Schiphol Rijk, Netherlands 239 | DNSCrypt-Key: 0F96:3272:B65D:3601:FA34:5578:DCDF:FC2D:82EF:50DD:2C5F:E338:5125:AF0C:FE8F:E226 240 | DNSCrypt-Name: 2.fvz-rec-nl-nh-01.dnscrypt-cert.meo.ws 241 | 242 | 243 | DNS-Server: fvz-rec-nz-auk-01 244 | IPv4: 163.47.21.44 245 | Location: Auckland, New Zealand 246 | DNSCrypt-Key: 74F2:57B9:AA90:5D56:B186:06C5:520E:CBB6:549F:609B:D87D:472D:10C7:46F6:571F:E76E 247 | DNSCrypt-Name: 2.fvz-rec-nz-auk-01.dnscrypt-cert.meo.ws 248 | 249 | 250 | DNS-Server: fvz-rec-ru-mow-01 251 | IPv4: 213.183.57.55 252 | IPv4: 213.183.57.57 253 | IPv6: 2a02:150:7:213:183:57:55:0 254 | Location: Russia, Moscow 255 | DNSCrypt-Key: 3CDA:6127:8201:5CDF:E799:43B4:4E46:2A56:B789:522A:E493:32ED:9029:4114:D375:322D 256 | DNSCrypt-Name: 2.fvz-rec-ru-mow-01.dnscrypt-cert.meo.ws 257 | 258 | 259 | DNS-Server: fvz-rec-se-ab-01 260 | IPv4: 31.220.5.106 261 | IPv6: 2a00:1a28:1157:84::342c 262 | Location: Stockholm, Sweden 263 | DNSCrypt-Key: 3FFA:D9E4:AE6F:B96D:C0FC:AB0D:66C5:F329:B40E:533F:4B19:D24B:A4B8:90EC:6CF1:EFE4 264 | DNSCrypt-Name: 2.fvz-rec-se-ab-01.dnscrypt-cert.meo.ws 265 | 266 | 267 | DNS-Server: fvz-rec-sg-ea-01 268 | IPv4: 103.25.202.192 269 | Location: Chai Chee, Singapore 270 | DNSCrypt-Key: 3A0D:7AFE:97D6:A42C:5621:F5CD:0484:B1C9:0EC7:DD3E:807E:22D0:D9FC:CB9B:C9B1:97D1 271 | DNSCrypt-Name: 2.fvz-rec-sg-ea-01.dnscrypt-cert.meo.ws 272 | 273 | 274 | DNS-Server: fvz-rec-us-ca-01 275 | IPv4: 74.207.241.202 276 | IPv6: 2600:3c01::f03c:91ff:fe84:da54 277 | Location: Fremont, USA 278 | DNSCrypt-Key: FAC6:3B37:8485:5E43:3CC3:8BBC:FA84:5DCB:8DF0:B683:3BB3:A116:126D:0C29:95CD:899F 279 | DNSCrypt-Name: 2.fvz-rec-us-ca-01.dnscrypt-cert.meo.ws 280 | 281 | 282 | DNS-Server: fvz-rec-us-ca-02 283 | IPv4: 104.245.33.185 284 | Location: San Francisco, USA 285 | DNSCrypt-Key: 9DF8:E6F0:2434:C1D2:A76D:578C:113D:26C8:8FAC:9CBB:8E22:86FF:D8A4:4317:467C:5469 286 | DNSCrypt-Name: 2.fvz-rec-us-ca-02.dnscrypt-cert.meo.ws 287 | 288 | 289 | DNS-Server: fvz-rec-us-fl-01 290 | IPv4: 104.245.39.112 291 | Location: Orlando, USA 292 | DNSCrypt-Key: 29A6:76E3:2447:7379:1E5A:D27B:80C3:FD92:C5D0:22EE:289E:4353:3BAB:AF86:3FC5:4672 293 | DNSCrypt-Name: 2.fvz-rec-us-fl-01.dnscrypt-cert.meo.ws 294 | 295 | 296 | DNS-Server: fvz-rec-us-ga-01 297 | IPv4: 74.207.232.103 298 | IPv6: 2600:3c02::f03c:91ff:fe84:dac2 299 | Location: Atlanta, USA 300 | DNSCrypt-Key: F584:75C4:5693:317A:1D8E:4232:76E7:9E63:D286:B12D:B472:5FA2:92D3:E714:1E46:459B 301 | DNSCrypt-Name: 2.fvz-rec-us-ga-01.dnscrypt-cert.meo.ws 302 | 303 | 304 | DNS-Server: fvz-rec-us-nj-01 305 | IPv4: 104.237.144.172 306 | IPv6: 2600:3c03::f03c:91ff:fe84:dac6 307 | Location: Newark, USA 308 | DNSCrypt-Key: 1FA4:DE34:8A9E:7AFE:09DA:C3E7:DF0A:2844:25E6:3136:A2AE:CB2E:2ABA:7AB7:CEDC:4EE9 309 | DNSCrypt-Name: 2.fvz-rec-us-nj-01.dnscrypt-cert.meo.ws 310 | 311 | 312 | DNS-Server: fvz-rec-us-tx-01 313 | IPv4: 104.237.136.225 314 | IPv6: 2600:3c00::f03c:91ff:fe84:da6f 315 | Location: Dallas, USA 316 | DNSCrypt-Key: 3AD3:9A08:6E1B:B3FD:8647:7D63:8DCE:68E0:AE98:A270:23D6:193D:CDE9:1198:F635:A34F 317 | DNSCrypt-Name: 2.fvz-rec-us-tx-01.dnscrypt-cert.meo.ws 318 | 319 | 320 | DNS-Server: fvz-rec-us-tx-02 321 | IPv4: 104.219.55.89 322 | Location: Dallas, USA 323 | DNSCrypt-Key: 7A41:1C32:21F6:0062:5EA3:8775:125D:5DA4:8FE3:1709:7919:D170:41C4:7E9A:DBB3:C7C3 324 | DNSCrypt-Name: 2.fvz-rec-us-tx-02.dnscrypt-cert.meo.ws 325 | 326 | 327 | DNS-Server: fvz-rec-us-wa-01 328 | IPv4: 23.226.230.72 329 | IPv6: 2604:180:1::ec0b:6535 330 | IPv6: 2604:180:1::8bcf:7b45 331 | IPv6: 2604:180:1::435:e35e 332 | IPv6: 2604:180:1::27a9:3f3b 333 | IPv6: 2604:180:1::e7d2:563e 334 | IPv6: 2604:180:1::a9ef:8168 335 | IPv6: 2604:180:1::1b72:ce49 336 | IPv6: 2604:180:1::36d5:16f3 337 | IPv6: 2604:180:1::a7be:d83b 338 | IPv6: 2604:180:1::65ef:f8c0 339 | IPv6: 2604:180:1::c56e:ab0b 340 | IPv6: 2604:180:1::6e84:c523 341 | IPv6: 2604:180:1::347b:b4e0 342 | IPv6: 2604:180:1::feca:5ec2 343 | IPv6: 2604:180:1::8d12:1dc 344 | IPv6: 2604:180:1::63d5:ba18 345 | Location: Seattle, USA 346 | DNSCrypt-Key: 48D8:70BF:2833:49E8:59AC:DD12:2D49:F119:DA7E:1CAB:A2D3:B9C0:F573:133D:8BC1:A26E 347 | DNSCrypt-Name: 2.fvz-rec-us-wa-01.dnscrypt-cert.meo.ws 348 | 349 | 350 | DNS-Server: fvz-rec-za-wc-01 351 | IPv4: 41.185.78.25 352 | Location: Cape Town, South Africa 353 | DNSCrypt-Key: 53C5:F511:4FC5:F090:9D93:F436:C6E7:C85C:DEB9:C252:1716:BFFC:1B26:3DCB:69F7:DBE2 354 | DNSCrypt-Name: 2.fvz-rec-za-wc-01.dnscrypt-cert.meo.ws 355 | -------------------------------------------------------------------------------- /config/chnroute2.txt: -------------------------------------------------------------------------------- 1 | 1.0.1.0/24 2 | 1.0.2.0/23 3 | 1.0.8.0/21 4 | 1.0.32.0/19 5 | 1.1.0.0/24 6 | 1.1.2.0/23 7 | 1.1.4.0/22 8 | 1.1.8.0/21 9 | 1.1.16.0/20 10 | 1.1.32.0/19 11 | 1.2.0.0/23 12 | 1.2.2.0/24 13 | 1.2.4.0/24 14 | 1.2.5.0/24 15 | 1.2.6.0/23 16 | 1.2.8.0/24 17 | 1.2.9.0/24 18 | 1.2.10.0/23 19 | 1.2.12.0/22 20 | 1.2.16.0/20 21 | 1.2.32.0/19 22 | 1.2.64.0/18 23 | 1.3.0.0/16 24 | 1.4.1.0/24 25 | 1.4.2.0/23 26 | 1.4.4.0/24 27 | 1.4.5.0/24 28 | 1.4.6.0/23 29 | 1.4.8.0/21 30 | 1.4.16.0/20 31 | 1.4.32.0/19 32 | 1.4.64.0/18 33 | 1.8.0.0/16 34 | 1.10.0.0/21 35 | 1.10.8.0/23 36 | 1.10.11.0/24 37 | 1.10.12.0/22 38 | 1.10.16.0/20 39 | 1.10.32.0/19 40 | 1.10.64.0/18 41 | 1.12.0.0/14 42 | 1.24.0.0/13 43 | 1.45.0.0/16 44 | 1.48.0.0/15 45 | 1.50.0.0/16 46 | 1.51.0.0/16 47 | 1.56.0.0/13 48 | 1.68.0.0/14 49 | 1.80.0.0/13 50 | 1.88.0.0/14 51 | 1.92.0.0/15 52 | 1.94.0.0/15 53 | 1.116.0.0/14 54 | 1.180.0.0/14 55 | 1.184.0.0/15 56 | 1.188.0.0/14 57 | 1.192.0.0/13 58 | 1.202.0.0/15 59 | 1.204.0.0/14 60 | 14.0.0.0/21 61 | 14.0.12.0/22 62 | 14.1.0.0/22 63 | 14.16.0.0/12 64 | 14.102.128.0/22 65 | 14.102.156.0/22 66 | 14.103.0.0/16 67 | 14.104.0.0/13 68 | 14.112.0.0/12 69 | 14.130.0.0/15 70 | 14.134.0.0/15 71 | 14.144.0.0/12 72 | 14.192.60.0/22 73 | 14.192.76.0/22 74 | 14.196.0.0/15 75 | 14.204.0.0/15 76 | 14.208.0.0/12 77 | 27.8.0.0/13 78 | 27.16.0.0/12 79 | 27.34.232.0/21 80 | 27.36.0.0/14 81 | 27.40.0.0/13 82 | 27.50.40.0/21 83 | 27.50.128.0/17 84 | 27.54.72.0/21 85 | 27.54.152.0/21 86 | 27.54.192.0/18 87 | 27.98.208.0/20 88 | 27.98.224.0/19 89 | 27.99.128.0/17 90 | 27.103.0.0/16 91 | 27.106.128.0/18 92 | 27.106.204.0/22 93 | 27.109.32.0/19 94 | 27.112.0.0/18 95 | 27.112.80.0/20 96 | 27.113.128.0/18 97 | 27.115.0.0/17 98 | 27.116.44.0/22 99 | 27.121.72.0/21 100 | 27.121.120.0/21 101 | 27.128.0.0/15 102 | 27.131.220.0/22 103 | 27.144.0.0/16 104 | 27.148.0.0/14 105 | 27.152.0.0/13 106 | 27.184.0.0/13 107 | 27.192.0.0/11 108 | 27.224.0.0/14 109 | 36.0.0.0/22 110 | 36.0.8.0/21 111 | 36.0.16.0/20 112 | 36.0.32.0/19 113 | 36.0.64.0/18 114 | 36.0.128.0/17 115 | 36.1.0.0/16 116 | 36.4.0.0/14 117 | 36.16.0.0/12 118 | 36.32.0.0/14 119 | 36.36.0.0/16 120 | 36.37.0.0/19 121 | 36.37.36.0/23 122 | 36.37.39.0/24 123 | 36.37.40.0/21 124 | 36.37.48.0/20 125 | 36.40.0.0/13 126 | 36.48.0.0/15 127 | 36.51.0.0/16 128 | 36.56.0.0/13 129 | 36.96.0.0/11 130 | 36.128.0.0/10 131 | 36.192.0.0/11 132 | 36.248.0.0/14 133 | 36.254.0.0/16 134 | 39.0.0.0/24 135 | 39.0.2.0/23 136 | 39.0.4.0/22 137 | 39.0.8.0/21 138 | 39.0.16.0/20 139 | 39.0.32.0/19 140 | 39.0.64.0/18 141 | 39.0.128.0/17 142 | 39.64.0.0/11 143 | 39.96.0.0/13 144 | 39.104.0.0/14 145 | 39.108.0.0/16 146 | 39.128.0.0/10 147 | 42.0.0.0/22 148 | 42.0.8.0/21 149 | 42.0.16.0/21 150 | 42.0.24.0/22 151 | 42.0.32.0/19 152 | 42.0.128.0/17 153 | 42.1.0.0/19 154 | 42.1.32.0/20 155 | 42.1.48.0/21 156 | 42.1.56.0/22 157 | 42.1.128.0/17 158 | 42.4.0.0/14 159 | 42.48.0.0/15 160 | 42.50.0.0/16 161 | 42.51.0.0/16 162 | 42.52.0.0/14 163 | 42.56.0.0/14 164 | 42.62.0.0/17 165 | 42.62.128.0/19 166 | 42.62.160.0/20 167 | 42.62.180.0/22 168 | 42.62.184.0/21 169 | 42.63.0.0/16 170 | 42.80.0.0/15 171 | 42.83.64.0/20 172 | 42.83.80.0/22 173 | 42.83.88.0/21 174 | 42.83.96.0/19 175 | 42.83.128.0/17 176 | 42.84.0.0/14 177 | 42.88.0.0/13 178 | 42.96.64.0/19 179 | 42.96.96.0/21 180 | 42.96.108.0/22 181 | 42.96.112.0/20 182 | 42.96.128.0/17 183 | 42.97.0.0/16 184 | 42.99.0.0/18 185 | 42.99.64.0/19 186 | 42.99.96.0/20 187 | 42.99.112.0/22 188 | 42.99.120.0/21 189 | 42.100.0.0/14 190 | 42.120.0.0/15 191 | 42.122.0.0/16 192 | 42.123.0.0/19 193 | 42.123.36.0/22 194 | 42.123.40.0/21 195 | 42.123.48.0/20 196 | 42.123.64.0/18 197 | 42.123.128.0/17 198 | 42.128.0.0/12 199 | 42.156.0.0/19 200 | 42.156.36.0/22 201 | 42.156.40.0/21 202 | 42.156.48.0/20 203 | 42.156.64.0/18 204 | 42.156.128.0/17 205 | 42.157.0.0/16 206 | 42.158.0.0/15 207 | 42.160.0.0/12 208 | 42.176.0.0/13 209 | 42.184.0.0/15 210 | 42.186.0.0/16 211 | 42.187.0.0/18 212 | 42.187.64.0/19 213 | 42.187.96.0/20 214 | 42.187.112.0/21 215 | 42.187.120.0/22 216 | 42.187.128.0/17 217 | 42.192.0.0/15 218 | 42.194.0.0/21 219 | 42.194.8.0/22 220 | 42.194.12.0/22 221 | 42.194.16.0/20 222 | 42.194.32.0/19 223 | 42.194.64.0/18 224 | 42.194.128.0/17 225 | 42.195.0.0/16 226 | 42.196.0.0/14 227 | 42.201.0.0/17 228 | 42.202.0.0/15 229 | 42.204.0.0/14 230 | 42.208.0.0/12 231 | 42.224.0.0/12 232 | 42.240.0.0/17 233 | 42.240.128.0/17 234 | 42.242.0.0/15 235 | 42.244.0.0/14 236 | 42.248.0.0/13 237 | 43.224.12.0/22 238 | 43.224.24.0/22 239 | 43.224.44.0/22 240 | 43.224.52.0/22 241 | 43.224.56.0/22 242 | 43.224.64.0/22 243 | 43.224.68.0/22 244 | 43.224.72.0/22 245 | 43.224.80.0/22 246 | 43.224.100.0/22 247 | 43.224.140.0/22 248 | 43.224.144.0/22 249 | 43.224.160.0/22 250 | 43.224.176.0/22 251 | 43.224.184.0/22 252 | 43.224.200.0/22 253 | 43.224.204.0/22 254 | 43.224.208.0/22 255 | 43.224.212.0/22 256 | 43.224.216.0/22 257 | 43.224.224.0/22 258 | 43.224.240.0/22 259 | 43.225.76.0/22 260 | 43.225.84.0/22 261 | 43.225.120.0/22 262 | 43.225.124.0/22 263 | 43.225.140.0/22 264 | 43.225.172.0/22 265 | 43.225.180.0/22 266 | 43.225.184.0/22 267 | 43.225.208.0/22 268 | 43.225.216.0/22 269 | 43.225.220.0/22 270 | 43.225.224.0/22 271 | 43.225.228.0/22 272 | 43.225.232.0/22 273 | 43.225.236.0/22 274 | 43.225.240.0/22 275 | 43.225.244.0/22 276 | 43.225.252.0/22 277 | 43.226.32.0/22 278 | 43.226.36.0/22 279 | 43.226.40.0/22 280 | 43.226.44.0/22 281 | 43.226.48.0/22 282 | 43.226.52.0/22 283 | 43.226.56.0/22 284 | 43.226.60.0/22 285 | 43.226.64.0/22 286 | 43.226.68.0/22 287 | 43.226.72.0/22 288 | 43.226.76.0/22 289 | 43.226.80.0/22 290 | 43.226.84.0/22 291 | 43.226.88.0/22 292 | 43.226.92.0/22 293 | 43.226.96.0/22 294 | 43.226.100.0/22 295 | 43.226.104.0/22 296 | 43.226.108.0/22 297 | 43.226.112.0/22 298 | 43.226.116.0/22 299 | 43.226.120.0/22 300 | 43.226.128.0/22 301 | 43.226.132.0/22 302 | 43.226.136.0/22 303 | 43.226.140.0/22 304 | 43.226.144.0/22 305 | 43.226.148.0/22 306 | 43.226.152.0/22 307 | 43.226.156.0/22 308 | 43.226.160.0/22 309 | 43.226.164.0/22 310 | 43.226.168.0/22 311 | 43.226.172.0/22 312 | 43.226.176.0/22 313 | 43.226.180.0/22 314 | 43.226.184.0/22 315 | 43.226.188.0/22 316 | 43.226.192.0/22 317 | 43.226.196.0/22 318 | 43.226.200.0/22 319 | 43.226.204.0/22 320 | 43.226.208.0/22 321 | 43.226.212.0/22 322 | 43.226.236.0/22 323 | 43.226.240.0/22 324 | 43.226.244.0/22 325 | 43.226.248.0/22 326 | 43.226.252.0/22 327 | 43.227.0.0/22 328 | 43.227.4.0/22 329 | 43.227.8.0/22 330 | 43.227.28.0/22 331 | 43.227.32.0/22 332 | 43.227.36.0/22 333 | 43.227.40.0/22 334 | 43.227.44.0/22 335 | 43.227.48.0/22 336 | 43.227.52.0/22 337 | 43.227.56.0/22 338 | 43.227.60.0/22 339 | 43.227.64.0/22 340 | 43.227.68.0/22 341 | 43.227.72.0/22 342 | 43.227.76.0/22 343 | 43.227.80.0/22 344 | 43.227.84.0/22 345 | 43.227.88.0/22 346 | 43.227.92.0/22 347 | 43.227.96.0/22 348 | 43.227.100.0/22 349 | 43.227.104.0/22 350 | 43.227.136.0/22 351 | 43.227.140.0/22 352 | 43.227.144.0/22 353 | 43.227.152.0/22 354 | 43.227.156.0/22 355 | 43.227.160.0/22 356 | 43.227.164.0/22 357 | 43.227.168.0/22 358 | 43.227.172.0/22 359 | 43.227.176.0/22 360 | 43.227.180.0/22 361 | 43.227.188.0/22 362 | 43.227.192.0/22 363 | 43.227.196.0/22 364 | 43.227.200.0/22 365 | 43.227.204.0/22 366 | 43.227.208.0/22 367 | 43.227.212.0/22 368 | 43.227.216.0/22 369 | 43.227.220.0/22 370 | 43.227.232.0/22 371 | 43.227.248.0/22 372 | 43.227.252.0/22 373 | 43.228.0.0/22 374 | 43.228.4.0/22 375 | 43.228.8.0/22 376 | 43.228.12.0/22 377 | 43.228.16.0/22 378 | 43.228.20.0/22 379 | 43.228.24.0/22 380 | 43.228.28.0/22 381 | 43.228.32.0/22 382 | 43.228.36.0/22 383 | 43.228.40.0/22 384 | 43.228.44.0/22 385 | 43.228.48.0/22 386 | 43.228.52.0/22 387 | 43.228.56.0/22 388 | 43.228.60.0/22 389 | 43.228.64.0/22 390 | 43.228.68.0/22 391 | 43.228.76.0/22 392 | 43.228.100.0/22 393 | 43.228.116.0/22 394 | 43.228.120.0/22 395 | 43.228.132.0/22 396 | 43.228.136.0/22 397 | 43.228.148.0/22 398 | 43.228.152.0/22 399 | 43.228.180.0/22 400 | 43.228.188.0/22 401 | 43.228.204.0/22 402 | 43.228.240.0/22 403 | 43.229.16.0/22 404 | 43.229.40.0/22 405 | 43.229.48.0/22 406 | 43.229.56.0/22 407 | 43.229.96.0/22 408 | 43.229.108.0/22 409 | 43.229.120.0/22 410 | 43.229.136.0/22 411 | 43.229.140.0/22 412 | 43.229.144.0/22 413 | 43.229.168.0/22 414 | 43.229.172.0/22 415 | 43.229.176.0/22 416 | 43.229.180.0/22 417 | 43.229.184.0/22 418 | 43.229.188.0/22 419 | 43.229.192.0/22 420 | 43.229.196.0/22 421 | 43.229.216.0/22 422 | 43.229.220.0/22 423 | 43.229.232.0/22 424 | 43.229.236.0/22 425 | 43.230.20.0/22 426 | 43.230.32.0/22 427 | 43.230.68.0/22 428 | 43.230.72.0/22 429 | 43.230.84.0/22 430 | 43.230.124.0/22 431 | 43.230.136.0/22 432 | 43.230.168.0/22 433 | 43.230.220.0/22 434 | 43.230.224.0/22 435 | 43.230.228.0/22 436 | 43.230.232.0/22 437 | 43.230.236.0/22 438 | 43.230.240.0/22 439 | 43.230.244.0/22 440 | 43.230.248.0/22 441 | 43.230.252.0/22 442 | 43.231.32.0/22 443 | 43.231.36.0/22 444 | 43.231.40.0/22 445 | 43.231.44.0/22 446 | 43.231.80.0/22 447 | 43.231.84.0/22 448 | 43.231.88.0/22 449 | 43.231.92.0/22 450 | 43.231.96.0/22 451 | 43.231.100.0/22 452 | 43.231.104.0/22 453 | 43.231.108.0/22 454 | 43.231.136.0/22 455 | 43.231.140.0/22 456 | 43.231.144.0/22 457 | 43.231.148.0/22 458 | 43.231.152.0/22 459 | 43.231.156.0/22 460 | 43.231.160.0/22 461 | 43.231.164.0/22 462 | 43.231.168.0/22 463 | 43.231.172.0/22 464 | 43.231.176.0/22 465 | 43.231.180.0/22 466 | 43.236.0.0/22 467 | 43.236.4.0/22 468 | 43.236.8.0/22 469 | 43.236.12.0/22 470 | 43.236.16.0/22 471 | 43.236.20.0/22 472 | 43.236.24.0/22 473 | 43.236.28.0/22 474 | 43.236.32.0/22 475 | 43.236.36.0/22 476 | 43.236.40.0/22 477 | 43.236.44.0/22 478 | 43.236.48.0/22 479 | 43.236.52.0/22 480 | 43.236.56.0/22 481 | 43.236.60.0/22 482 | 43.236.64.0/22 483 | 43.236.68.0/22 484 | 43.236.72.0/22 485 | 43.236.76.0/22 486 | 43.236.80.0/22 487 | 43.236.84.0/22 488 | 43.236.88.0/22 489 | 43.236.92.0/22 490 | 43.236.96.0/22 491 | 43.236.100.0/22 492 | 43.236.104.0/22 493 | 43.236.108.0/22 494 | 43.236.112.0/22 495 | 43.236.116.0/22 496 | 43.236.120.0/22 497 | 43.236.124.0/22 498 | 43.236.128.0/22 499 | 43.236.132.0/22 500 | 43.236.136.0/22 501 | 43.236.140.0/22 502 | 43.236.144.0/22 503 | 43.236.148.0/22 504 | 43.236.152.0/22 505 | 43.236.156.0/22 506 | 43.236.160.0/22 507 | 43.236.164.0/22 508 | 43.236.168.0/22 509 | 43.236.172.0/22 510 | 43.236.176.0/22 511 | 43.236.180.0/22 512 | 43.236.184.0/22 513 | 43.236.188.0/22 514 | 43.236.192.0/22 515 | 43.236.196.0/22 516 | 43.236.200.0/22 517 | 43.236.204.0/22 518 | 43.236.208.0/22 519 | 43.236.212.0/22 520 | 43.236.216.0/22 521 | 43.236.220.0/22 522 | 43.236.224.0/22 523 | 43.236.228.0/22 524 | 43.236.232.0/22 525 | 43.236.236.0/22 526 | 43.236.240.0/22 527 | 43.236.244.0/22 528 | 43.236.248.0/22 529 | 43.236.252.0/22 530 | 43.237.0.0/22 531 | 43.237.4.0/22 532 | 43.237.8.0/22 533 | 43.237.12.0/22 534 | 43.237.16.0/22 535 | 43.237.20.0/22 536 | 43.237.24.0/22 537 | 43.237.28.0/22 538 | 43.237.32.0/22 539 | 43.237.36.0/22 540 | 43.237.40.0/22 541 | 43.237.44.0/22 542 | 43.237.48.0/22 543 | 43.237.52.0/22 544 | 43.237.56.0/22 545 | 43.237.60.0/22 546 | 43.237.64.0/22 547 | 43.237.68.0/22 548 | 43.237.72.0/22 549 | 43.237.76.0/22 550 | 43.237.80.0/22 551 | 43.237.84.0/22 552 | 43.237.88.0/22 553 | 43.237.92.0/22 554 | 43.237.96.0/22 555 | 43.237.100.0/22 556 | 43.237.104.0/22 557 | 43.237.108.0/22 558 | 43.237.112.0/22 559 | 43.237.116.0/22 560 | 43.237.120.0/22 561 | 43.237.124.0/22 562 | 43.237.128.0/22 563 | 43.237.132.0/22 564 | 43.237.136.0/22 565 | 43.237.140.0/22 566 | 43.237.144.0/22 567 | 43.237.148.0/22 568 | 43.237.152.0/22 569 | 43.237.156.0/22 570 | 43.237.160.0/22 571 | 43.237.164.0/22 572 | 43.237.168.0/22 573 | 43.237.172.0/22 574 | 43.237.176.0/22 575 | 43.237.180.0/22 576 | 43.237.184.0/22 577 | 43.237.188.0/22 578 | 43.237.192.0/22 579 | 43.237.196.0/22 580 | 43.237.200.0/22 581 | 43.237.204.0/22 582 | 43.237.208.0/22 583 | 43.237.212.0/22 584 | 43.237.216.0/22 585 | 43.237.220.0/22 586 | 43.237.224.0/22 587 | 43.237.228.0/22 588 | 43.237.232.0/22 589 | 43.237.236.0/22 590 | 43.237.240.0/22 591 | 43.237.244.0/22 592 | 43.237.248.0/22 593 | 43.237.252.0/22 594 | 43.238.0.0/22 595 | 43.238.4.0/22 596 | 43.238.8.0/22 597 | 43.238.12.0/22 598 | 43.238.16.0/22 599 | 43.238.20.0/22 600 | 43.238.24.0/22 601 | 43.238.28.0/22 602 | 43.238.32.0/22 603 | 43.238.36.0/22 604 | 43.238.40.0/22 605 | 43.238.44.0/22 606 | 43.238.48.0/22 607 | 43.238.52.0/22 608 | 43.238.56.0/22 609 | 43.238.60.0/22 610 | 43.238.64.0/22 611 | 43.238.68.0/22 612 | 43.238.72.0/22 613 | 43.238.76.0/22 614 | 43.238.80.0/22 615 | 43.238.84.0/22 616 | 43.238.88.0/22 617 | 43.238.92.0/22 618 | 43.238.96.0/22 619 | 43.238.100.0/22 620 | 43.238.104.0/22 621 | 43.238.108.0/22 622 | 43.238.112.0/22 623 | 43.238.116.0/22 624 | 43.238.120.0/22 625 | 43.238.124.0/22 626 | 43.238.128.0/22 627 | 43.238.132.0/22 628 | 43.238.136.0/22 629 | 43.238.140.0/22 630 | 43.238.144.0/22 631 | 43.238.148.0/22 632 | 43.238.152.0/22 633 | 43.238.156.0/22 634 | 43.238.160.0/22 635 | 43.238.164.0/22 636 | 43.238.168.0/22 637 | 43.238.172.0/22 638 | 43.238.176.0/22 639 | 43.238.180.0/22 640 | 43.238.184.0/22 641 | 43.238.188.0/22 642 | 43.238.192.0/22 643 | 43.238.196.0/22 644 | 43.238.200.0/22 645 | 43.238.204.0/22 646 | 43.238.208.0/22 647 | 43.238.212.0/22 648 | 43.238.216.0/22 649 | 43.238.220.0/22 650 | 43.238.224.0/22 651 | 43.238.228.0/22 652 | 43.238.232.0/22 653 | 43.238.236.0/22 654 | 43.238.240.0/22 655 | 43.238.244.0/22 656 | 43.238.248.0/22 657 | 43.238.252.0/22 658 | 43.239.0.0/22 659 | 43.239.4.0/22 660 | 43.239.8.0/21 661 | 43.239.16.0/22 662 | 43.239.20.0/22 663 | 43.239.24.0/22 664 | 43.239.28.0/22 665 | 43.239.32.0/22 666 | 43.239.36.0/22 667 | 43.239.40.0/22 668 | 43.239.44.0/22 669 | 43.239.48.0/22 670 | 43.239.116.0/22 671 | 43.239.120.0/22 672 | 43.239.172.0/22 673 | 43.239.176.0/22 674 | 43.240.0.0/22 675 | 43.240.48.0/22 676 | 43.240.56.0/22 677 | 43.240.60.0/22 678 | 43.240.68.0/22 679 | 43.240.72.0/22 680 | 43.240.76.0/22 681 | 43.240.84.0/22 682 | 43.240.124.0/22 683 | 43.240.128.0/22 684 | 43.240.132.0/22 685 | 43.240.136.0/22 686 | 43.240.156.0/22 687 | 43.240.160.0/22 688 | 43.240.164.0/22 689 | 43.240.168.0/22 690 | 43.240.172.0/22 691 | 43.240.176.0/22 692 | 43.240.180.0/22 693 | 43.240.184.0/22 694 | 43.240.188.0/22 695 | 43.240.192.0/22 696 | 43.240.196.0/22 697 | 43.240.200.0/22 698 | 43.240.204.0/22 699 | 43.240.208.0/22 700 | 43.240.212.0/22 701 | 43.240.216.0/22 702 | 43.240.220.0/22 703 | 43.240.236.0/22 704 | 43.240.240.0/22 705 | 43.240.244.0/22 706 | 43.240.248.0/22 707 | 43.240.252.0/22 708 | 43.241.0.0/22 709 | 43.241.4.0/22 710 | 43.241.8.0/22 711 | 43.241.12.0/22 712 | 43.241.16.0/22 713 | 43.241.20.0/22 714 | 43.241.48.0/22 715 | 43.241.76.0/22 716 | 43.241.80.0/22 717 | 43.241.84.0/22 718 | 43.241.88.0/22 719 | 43.241.92.0/22 720 | 43.241.112.0/22 721 | 43.241.168.0/22 722 | 43.241.172.0/22 723 | 43.241.176.0/22 724 | 43.241.180.0/22 725 | 43.241.184.0/22 726 | 43.241.196.0/22 727 | 43.241.208.0/22 728 | 43.241.212.0/22 729 | 43.241.216.0/22 730 | 43.241.220.0/22 731 | 43.241.224.0/22 732 | 43.241.228.0/22 733 | 43.241.232.0/22 734 | 43.241.236.0/22 735 | 43.241.240.0/22 736 | 43.241.248.0/22 737 | 43.241.252.0/22 738 | 43.242.8.0/22 739 | 43.242.12.0/22 740 | 43.242.16.0/22 741 | 43.242.20.0/22 742 | 43.242.24.0/22 743 | 43.242.28.0/22 744 | 43.242.44.0/22 745 | 43.242.48.0/22 746 | 43.242.52.0/22 747 | 43.242.56.0/22 748 | 43.242.60.0/22 749 | 43.242.64.0/22 750 | 43.242.72.0/22 751 | 43.242.76.0/22 752 | 43.242.80.0/22 753 | 43.242.84.0/22 754 | 43.242.88.0/22 755 | 43.242.92.0/22 756 | 43.242.96.0/22 757 | 43.242.144.0/22 758 | 43.242.148.0/22 759 | 43.242.152.0/22 760 | 43.242.156.0/22 761 | 43.242.160.0/22 762 | 43.242.164.0/22 763 | 43.242.168.0/22 764 | 43.242.180.0/22 765 | 43.242.188.0/22 766 | 43.242.192.0/22 767 | 43.242.196.0/22 768 | 43.242.204.0/22 769 | 43.242.216.0/22 770 | 43.242.220.0/22 771 | 43.242.252.0/22 772 | 43.243.4.0/22 773 | 43.243.8.0/22 774 | 43.243.12.0/22 775 | 43.243.16.0/22 776 | 43.243.24.0/22 777 | 43.243.88.0/22 778 | 43.243.128.0/22 779 | 43.243.136.0/22 780 | 43.243.144.0/22 781 | 43.243.148.0/22 782 | 43.243.156.0/22 783 | 43.243.168.0/22 784 | 43.243.180.0/22 785 | 43.243.188.0/22 786 | 43.243.228.0/22 787 | 43.243.232.0/22 788 | 43.243.244.0/22 789 | 43.246.0.0/22 790 | 43.246.4.0/22 791 | 43.246.8.0/22 792 | 43.246.12.0/22 793 | 43.246.16.0/22 794 | 43.246.20.0/22 795 | 43.246.24.0/22 796 | 43.246.28.0/22 797 | 43.246.32.0/22 798 | 43.246.36.0/22 799 | 43.246.40.0/22 800 | 43.246.44.0/22 801 | 43.246.48.0/22 802 | 43.246.52.0/22 803 | 43.246.56.0/22 804 | 43.246.60.0/22 805 | 43.246.64.0/22 806 | 43.246.68.0/22 807 | 43.246.72.0/22 808 | 43.246.76.0/22 809 | 43.246.80.0/22 810 | 43.246.84.0/22 811 | 43.246.88.0/22 812 | 43.246.92.0/22 813 | 43.246.96.0/22 814 | 43.246.212.0/22 815 | 43.246.228.0/22 816 | 43.247.4.0/22 817 | 43.247.8.0/22 818 | 43.247.44.0/22 819 | 43.247.48.0/22 820 | 43.247.68.0/22 821 | 43.247.76.0/22 822 | 43.247.84.0/22 823 | 43.247.88.0/22 824 | 43.247.92.0/22 825 | 43.247.96.0/22 826 | 43.247.100.0/22 827 | 43.247.108.0/22 828 | 43.247.112.0/22 829 | 43.247.148.0/22 830 | 43.247.152.0/22 831 | 43.247.176.0/22 832 | 43.247.180.0/22 833 | 43.247.184.0/22 834 | 43.247.188.0/22 835 | 43.247.196.0/22 836 | 43.247.200.0/22 837 | 43.247.204.0/22 838 | 43.247.208.0/22 839 | 43.247.212.0/22 840 | 43.247.216.0/22 841 | 43.247.220.0/22 842 | 43.247.224.0/22 843 | 43.247.228.0/22 844 | 43.247.232.0/22 845 | 43.247.236.0/22 846 | 43.247.240.0/22 847 | 43.247.244.0/22 848 | 43.247.248.0/22 849 | 43.247.252.0/22 850 | 43.248.0.0/22 851 | 43.248.4.0/22 852 | 43.248.20.0/22 853 | 43.248.28.0/22 854 | 43.248.48.0/22 855 | 43.248.56.0/22 856 | 43.248.76.0/22 857 | 43.248.80.0/22 858 | 43.248.84.0/22 859 | 43.248.88.0/22 860 | 43.248.92.0/22 861 | 43.248.96.0/22 862 | 43.248.100.0/22 863 | 43.248.104.0/22 864 | 43.248.108.0/22 865 | 43.248.112.0/22 866 | 43.248.116.0/22 867 | 43.248.120.0/22 868 | 43.248.124.0/22 869 | 43.248.128.0/22 870 | 43.248.132.0/22 871 | 43.248.136.0/22 872 | 43.248.140.0/22 873 | 43.248.144.0/22 874 | 43.248.148.0/22 875 | 43.248.176.0/22 876 | 43.248.180.0/22 877 | 43.248.184.0/22 878 | 43.248.188.0/22 879 | 43.248.192.0/22 880 | 43.248.196.0/22 881 | 43.248.200.0/22 882 | 43.248.204.0/22 883 | 43.248.208.0/22 884 | 43.248.228.0/22 885 | 43.248.232.0/22 886 | 43.248.244.0/22 887 | 43.249.0.0/22 888 | 43.249.4.0/22 889 | 43.249.8.0/22 890 | 43.249.24.0/22 891 | 43.249.120.0/22 892 | 43.249.132.0/22 893 | 43.249.136.0/22 894 | 43.249.144.0/22 895 | 43.249.148.0/22 896 | 43.249.152.0/22 897 | 43.249.156.0/22 898 | 43.249.160.0/22 899 | 43.249.164.0/22 900 | 43.249.168.0/22 901 | 43.249.192.0/22 902 | 43.249.236.0/22 903 | 43.250.4.0/22 904 | 43.250.12.0/22 905 | 43.250.16.0/22 906 | 43.250.20.0/22 907 | 43.250.28.0/22 908 | 43.250.32.0/22 909 | 43.250.36.0/22 910 | 43.250.72.0/22 911 | 43.250.96.0/22 912 | 43.250.100.0/22 913 | 43.250.104.0/22 914 | 43.250.108.0/22 915 | 43.250.112.0/22 916 | 43.250.116.0/22 917 | 43.250.128.0/22 918 | 43.250.144.0/22 919 | 43.250.148.0/22 920 | 43.250.160.0/22 921 | 43.250.168.0/22 922 | 43.250.172.0/22 923 | 43.250.176.0/22 924 | 43.250.200.0/22 925 | 43.250.212.0/22 926 | 43.250.216.0/22 927 | 43.250.220.0/22 928 | 43.250.236.0/22 929 | 43.250.244.0/22 930 | 43.251.4.0/22 931 | 43.251.8.0/22 932 | 43.251.12.0/22 933 | 43.251.16.0/23 934 | 43.251.36.0/22 935 | 43.251.116.0/22 936 | 43.251.192.0/22 937 | 43.251.232.0/22 938 | 43.251.236.0/22 939 | 43.251.244.0/22 940 | 43.252.40.0/22 941 | 43.252.48.0/22 942 | 43.252.56.0/22 943 | 43.252.224.0/22 944 | 43.254.0.0/22 945 | 43.254.4.0/22 946 | 43.254.8.0/22 947 | 43.254.24.0/22 948 | 43.254.36.0/22 949 | 43.254.44.0/22 950 | 43.254.52.0/22 951 | 43.254.64.0/22 952 | 43.254.72.0/22 953 | 43.254.84.0/22 954 | 43.254.88.0/22 955 | 43.254.92.0/22 956 | 43.254.100.0/22 957 | 43.254.104.0/22 958 | 43.254.112.0/22 959 | 43.254.116.0/22 960 | 43.254.128.0/22 961 | 43.254.136.0/22 962 | 43.254.140.0/22 963 | 43.254.144.0/22 964 | 43.254.148.0/22 965 | 43.254.152.0/22 966 | 43.254.156.0/22 967 | 43.254.168.0/22 968 | 43.254.172.0/22 969 | 43.254.180.0/22 970 | 43.254.184.0/22 971 | 43.254.188.0/22 972 | 43.254.192.0/22 973 | 43.254.196.0/22 974 | 43.254.200.0/22 975 | 43.254.208.0/22 976 | 43.254.220.0/22 977 | 43.254.224.0/22 978 | 43.254.228.0/22 979 | 43.254.232.0/22 980 | 43.254.236.0/22 981 | 43.254.240.0/22 982 | 43.254.248.0/22 983 | 43.254.252.0/22 984 | 43.255.0.0/22 985 | 43.255.4.0/22 986 | 43.255.8.0/22 987 | 43.255.16.0/22 988 | 43.255.48.0/22 989 | 43.255.60.0/22 990 | 43.255.64.0/22 991 | 43.255.68.0/22 992 | 43.255.72.0/22 993 | 43.255.76.0/22 994 | 43.255.84.0/22 995 | 43.255.96.0/22 996 | 43.255.108.0/22 997 | 43.255.144.0/22 998 | 43.255.168.0/22 999 | 43.255.176.0/22 1000 | 43.255.184.0/22 1001 | 43.255.192.0/22 1002 | 43.255.200.0/22 1003 | 43.255.204.0/22 1004 | 43.255.208.0/22 1005 | 43.255.212.0/22 1006 | 43.255.224.0/22 1007 | 43.255.228.0/22 1008 | 43.255.232.0/22 1009 | 43.255.244.0/22 1010 | 45.64.112.0/23 1011 | 45.112.132.0/22 1012 | 45.112.188.0/22 1013 | 45.112.208.0/22 1014 | 45.112.212.0/22 1015 | 45.112.216.0/22 1016 | 45.112.220.0/22 1017 | 45.112.228.0/22 1018 | 45.112.232.0/22 1019 | 45.112.236.0/22 1020 | 45.113.12.0/22 1021 | 45.113.16.0/22 1022 | 45.113.20.0/22 1023 | 45.113.24.0/22 1024 | 45.113.28.0/22 1025 | 45.113.40.0/22 1026 | 45.113.52.0/22 1027 | 45.113.56.0/22 1028 | 45.113.72.0/22 1029 | 45.113.108.0/22 1030 | 45.113.144.0/22 1031 | 45.113.148.0/22 1032 | 45.113.168.0/22 1033 | 45.113.176.0/22 1034 | 45.113.184.0/22 1035 | 45.113.200.0/22 1036 | 45.113.204.0/22 1037 | 45.113.208.0/22 1038 | 45.113.212.0/22 1039 | 45.113.216.0/22 1040 | 45.113.220.0/22 1041 | 45.113.228.0/22 1042 | 45.113.240.0/22 1043 | 45.113.252.0/22 1044 | 45.114.0.0/22 1045 | 45.114.12.0/22 1046 | 45.114.32.0/22 1047 | 45.114.40.0/22 1048 | 45.114.52.0/22 1049 | 45.114.96.0/22 1050 | 45.114.104.0/22 1051 | 45.114.136.0/22 1052 | 45.114.196.0/22 1053 | 45.114.200.0/22 1054 | 45.114.228.0/22 1055 | 45.114.236.0/22 1056 | 45.114.252.0/22 1057 | 45.115.44.0/22 1058 | 45.115.100.0/22 1059 | 45.115.120.0/22 1060 | 45.115.132.0/22 1061 | 45.115.144.0/22 1062 | 45.115.156.0/22 1063 | 45.115.164.0/22 1064 | 45.115.200.0/22 1065 | 45.115.212.0/22 1066 | 45.115.216.0/22 1067 | 45.115.228.0/22 1068 | 45.115.236.0/22 1069 | 45.115.244.0/22 1070 | 45.115.248.0/22 1071 | 45.116.12.0/22 1072 | 45.116.16.0/22 1073 | 45.116.20.0/22 1074 | 45.116.24.0/22 1075 | 45.116.32.0/22 1076 | 45.116.36.0/22 1077 | 45.116.52.0/22 1078 | 45.116.60.0/22 1079 | 45.116.64.0/22 1080 | 45.116.96.0/22 1081 | 45.116.100.0/22 1082 | 45.116.140.0/22 1083 | 45.116.152.0/22 1084 | 45.116.208.0/22 1085 | 45.117.8.0/22 1086 | 45.117.20.0/22 1087 | 45.117.40.0/22 1088 | 45.117.68.0/22 1089 | 45.117.124.0/22 1090 | 45.117.252.0/22 1091 | 45.119.52.0/22 1092 | 45.119.60.0/22 1093 | 45.119.64.0/22 1094 | 45.119.68.0/22 1095 | 45.119.72.0/22 1096 | 45.119.104.0/22 1097 | 45.119.116.0/22 1098 | 45.119.160.0/22 1099 | 45.119.232.0/22 1100 | 45.120.100.0/22 1101 | 45.120.140.0/22 1102 | 45.120.156.0/22 1103 | 45.120.164.0/22 1104 | 45.120.220.0/22 1105 | 45.120.240.0/22 1106 | 45.121.20.0/22 1107 | 45.121.52.0/22 1108 | 45.121.64.0/22 1109 | 45.121.68.0/22 1110 | 45.121.72.0/22 1111 | 45.121.92.0/22 1112 | 45.121.96.0/22 1113 | 45.121.104.0/22 1114 | 45.121.172.0/22 1115 | 45.121.176.0/22 1116 | 45.121.212.0/22 1117 | 45.121.240.0/22 1118 | 45.121.244.0/22 1119 | 45.121.248.0/22 1120 | 45.121.252.0/22 1121 | 45.122.0.0/22 1122 | 45.122.4.0/22 1123 | 45.122.8.0/22 1124 | 45.122.12.0/22 1125 | 45.122.16.0/22 1126 | 45.122.20.0/22 1127 | 45.122.24.0/22 1128 | 45.122.28.0/22 1129 | 45.122.32.0/22 1130 | 45.122.36.0/22 1131 | 45.122.40.0/22 1132 | 45.122.60.0/22 1133 | 45.122.64.0/22 1134 | 45.122.68.0/22 1135 | 45.122.72.0/22 1136 | 45.122.76.0/22 1137 | 45.122.80.0/22 1138 | 45.122.84.0/22 1139 | 45.122.88.0/22 1140 | 45.122.92.0/22 1141 | 45.122.96.0/22 1142 | 45.122.100.0/22 1143 | 45.122.104.0/22 1144 | 45.122.108.0/22 1145 | 45.122.112.0/22 1146 | 45.122.116.0/22 1147 | 45.122.160.0/22 1148 | 45.122.164.0/22 1149 | 45.122.168.0/22 1150 | 45.122.172.0/22 1151 | 45.122.176.0/22 1152 | 45.122.180.0/22 1153 | 45.122.184.0/22 1154 | 45.122.188.0/22 1155 | 45.122.192.0/22 1156 | 45.122.196.0/22 1157 | 45.122.200.0/22 1158 | 45.122.204.0/22 1159 | 45.122.208.0/22 1160 | 45.122.212.0/22 1161 | 45.122.216.0/22 1162 | 45.123.28.0/22 1163 | 45.123.32.0/22 1164 | 45.123.36.0/22 1165 | 45.123.44.0/22 1166 | 45.123.48.0/22 1167 | 45.123.52.0/22 1168 | 45.123.56.0/22 1169 | 45.123.60.0/22 1170 | 45.123.64.0/22 1171 | 45.123.68.0/22 1172 | 45.123.72.0/22 1173 | 45.123.76.0/22 1174 | 45.123.80.0/22 1175 | 45.123.84.0/22 1176 | 45.123.88.0/22 1177 | 45.123.120.0/22 1178 | 45.123.128.0/22 1179 | 45.123.132.0/22 1180 | 45.123.136.0/22 1181 | 45.123.148.0/22 1182 | 45.123.152.0/22 1183 | 45.123.156.0/22 1184 | 45.123.164.0/22 1185 | 45.123.168.0/22 1186 | 45.123.172.0/22 1187 | 45.123.176.0/22 1188 | 45.123.180.0/22 1189 | 45.123.184.0/22 1190 | 45.123.204.0/22 1191 | 45.123.212.0/22 1192 | 45.123.224.0/22 1193 | 45.123.228.0/22 1194 | 45.123.232.0/22 1195 | 45.123.236.0/22 1196 | 45.123.240.0/22 1197 | 45.123.244.0/22 1198 | 45.123.248.0/22 1199 | 45.123.252.0/22 1200 | 45.124.0.0/22 1201 | 45.124.20.0/22 1202 | 45.124.28.0/22 1203 | 45.124.32.0/22 1204 | 45.124.36.0/22 1205 | 45.124.44.0/22 1206 | 45.124.68.0/22 1207 | 45.124.76.0/22 1208 | 45.124.80.0/22 1209 | 45.124.100.0/22 1210 | 45.124.124.0/22 1211 | 45.124.172.0/22 1212 | 45.124.176.0/22 1213 | 45.124.208.0/22 1214 | 45.124.248.0/22 1215 | 45.124.252.0/22 1216 | 45.125.12.0/22 1217 | 45.125.16.0/22 1218 | 45.125.24.0/22 1219 | 45.125.28.0/22 1220 | 45.125.32.0/22 1221 | 45.125.44.0/22 1222 | 45.125.52.0/22 1223 | 45.125.56.0/22 1224 | 45.125.76.0/22 1225 | 45.125.80.0/22 1226 | 45.125.84.0/22 1227 | 45.125.88.0/22 1228 | 45.125.92.0/22 1229 | 45.125.96.0/22 1230 | 45.125.100.0/22 1231 | 45.125.104.0/22 1232 | 45.125.136.0/22 1233 | 45.126.48.0/22 1234 | 45.126.52.0/22 1235 | 45.126.100.0/22 1236 | 45.126.108.0/22 1237 | 45.126.112.0/22 1238 | 45.126.116.0/22 1239 | 45.126.120.0/22 1240 | 45.126.212.0/22 1241 | 45.126.220.0/22 1242 | 45.127.8.0/22 1243 | 45.127.12.0/22 1244 | 45.127.36.0/22 1245 | 45.127.96.0/22 1246 | 45.127.116.0/22 1247 | 45.127.124.0/22 1248 | 45.127.128.0/22 1249 | 45.127.144.0/22 1250 | 45.127.148.0/22 1251 | 45.127.156.0/22 1252 | 45.127.216.0/22 1253 | 47.92.0.0/14 1254 | 47.96.0.0/11 1255 | 49.4.0.0/14 1256 | 49.51.0.0/16 1257 | 49.52.0.0/14 1258 | 49.64.0.0/11 1259 | 49.112.0.0/13 1260 | 49.120.0.0/14 1261 | 49.128.0.0/24 1262 | 49.128.2.0/23 1263 | 49.140.0.0/15 1264 | 49.152.0.0/14 1265 | 49.208.0.0/15 1266 | 49.210.0.0/15 1267 | 49.220.0.0/14 1268 | 49.232.0.0/14 1269 | 49.239.0.0/18 1270 | 49.239.192.0/18 1271 | 49.246.224.0/19 1272 | 54.222.0.0/15 1273 | 58.14.0.0/15 1274 | 58.16.0.0/16 1275 | 58.17.0.0/17 1276 | 58.17.128.0/17 1277 | 58.18.0.0/16 1278 | 58.19.0.0/16 1279 | 58.20.0.0/16 1280 | 58.21.0.0/16 1281 | 58.22.0.0/15 1282 | 58.24.0.0/15 1283 | 58.30.0.0/15 1284 | 58.32.0.0/13 1285 | 58.40.0.0/15 1286 | 58.42.0.0/16 1287 | 58.43.0.0/16 1288 | 58.44.0.0/14 1289 | 58.48.0.0/13 1290 | 58.56.0.0/15 1291 | 58.58.0.0/16 1292 | 58.59.0.0/17 1293 | 58.59.128.0/17 1294 | 58.60.0.0/14 1295 | 58.65.232.0/21 1296 | 58.66.0.0/15 1297 | 58.68.128.0/17 1298 | 58.82.0.0/17 1299 | 58.83.0.0/17 1300 | 58.83.128.0/17 1301 | 58.87.64.0/18 1302 | 58.99.128.0/17 1303 | 58.100.0.0/15 1304 | 58.116.0.0/14 1305 | 58.128.0.0/13 1306 | 58.144.0.0/16 1307 | 58.154.0.0/15 1308 | 58.192.0.0/15 1309 | 58.194.0.0/15 1310 | 58.196.0.0/15 1311 | 58.198.0.0/15 1312 | 58.200.0.0/13 1313 | 58.208.0.0/12 1314 | 58.240.0.0/15 1315 | 58.242.0.0/15 1316 | 58.244.0.0/15 1317 | 58.246.0.0/15 1318 | 58.248.0.0/13 1319 | 59.32.0.0/13 1320 | 59.40.0.0/15 1321 | 59.42.0.0/16 1322 | 59.43.0.0/16 1323 | 59.44.0.0/14 1324 | 59.48.0.0/16 1325 | 59.49.0.0/17 1326 | 59.49.128.0/17 1327 | 59.50.0.0/16 1328 | 59.51.0.0/17 1329 | 59.51.128.0/17 1330 | 59.52.0.0/14 1331 | 59.56.0.0/14 1332 | 59.60.0.0/15 1333 | 59.62.0.0/15 1334 | 59.64.0.0/14 1335 | 59.68.0.0/14 1336 | 59.72.0.0/15 1337 | 59.74.0.0/15 1338 | 59.76.0.0/16 1339 | 59.77.0.0/16 1340 | 59.78.0.0/15 1341 | 59.80.0.0/15 1342 | 59.82.0.0/15 1343 | 59.107.0.0/17 1344 | 59.107.128.0/17 1345 | 59.108.0.0/15 1346 | 59.110.0.0/15 1347 | 59.151.0.0/17 1348 | 59.153.4.0/22 1349 | 59.153.32.0/22 1350 | 59.153.60.0/22 1351 | 59.153.64.0/22 1352 | 59.153.68.0/22 1353 | 59.153.72.0/22 1354 | 59.153.92.0/22 1355 | 59.153.116.0/22 1356 | 59.153.136.0/22 1357 | 59.153.152.0/22 1358 | 59.153.156.0/22 1359 | 59.153.164.0/22 1360 | 59.153.168.0/22 1361 | 59.153.172.0/22 1362 | 59.153.176.0/22 1363 | 59.153.180.0/22 1364 | 59.153.184.0/22 1365 | 59.153.188.0/22 1366 | 59.153.192.0/22 1367 | 59.155.0.0/16 1368 | 59.172.0.0/15 1369 | 59.174.0.0/15 1370 | 59.191.0.0/17 1371 | 59.191.240.0/20 1372 | 59.192.0.0/10 1373 | 60.0.0.0/13 1374 | 60.8.0.0/15 1375 | 60.10.0.0/16 1376 | 60.11.0.0/16 1377 | 60.12.0.0/16 1378 | 60.13.0.0/18 1379 | 60.13.64.0/18 1380 | 60.13.128.0/17 1381 | 60.14.0.0/15 1382 | 60.16.0.0/13 1383 | 60.24.0.0/14 1384 | 60.28.0.0/15 1385 | 60.30.0.0/16 1386 | 60.31.0.0/16 1387 | 60.55.0.0/16 1388 | 60.63.0.0/16 1389 | 60.160.0.0/15 1390 | 60.162.0.0/15 1391 | 60.164.0.0/15 1392 | 60.166.0.0/15 1393 | 60.168.0.0/13 1394 | 60.176.0.0/12 1395 | 60.194.0.0/15 1396 | 60.200.0.0/14 1397 | 60.204.0.0/16 1398 | 60.205.0.0/16 1399 | 60.206.0.0/15 1400 | 60.208.0.0/13 1401 | 60.216.0.0/15 1402 | 60.218.0.0/15 1403 | 60.220.0.0/14 1404 | 60.232.0.0/15 1405 | 60.235.0.0/16 1406 | 60.245.128.0/17 1407 | 60.247.0.0/16 1408 | 60.252.0.0/16 1409 | 60.253.128.0/17 1410 | 60.255.0.0/16 1411 | 61.4.80.0/22 1412 | 61.4.84.0/22 1413 | 61.4.88.0/21 1414 | 61.4.176.0/20 1415 | 61.8.160.0/20 1416 | 61.28.0.0/20 1417 | 61.28.16.0/20 1418 | 61.28.32.0/19 1419 | 61.28.64.0/18 1420 | 61.29.128.0/18 1421 | 61.29.192.0/19 1422 | 61.29.224.0/20 1423 | 61.29.240.0/20 1424 | 61.45.128.0/18 1425 | 61.45.224.0/20 1426 | 61.47.128.0/18 1427 | 61.48.0.0/14 1428 | 61.52.0.0/15 1429 | 61.54.0.0/16 1430 | 61.55.0.0/16 1431 | 61.87.192.0/18 1432 | 61.128.0.0/15 1433 | 61.130.0.0/15 1434 | 61.132.0.0/16 1435 | 61.133.0.0/17 1436 | 61.133.128.0/17 1437 | 61.134.0.0/18 1438 | 61.134.64.0/19 1439 | 61.134.96.0/19 1440 | 61.134.128.0/18 1441 | 61.134.192.0/18 1442 | 61.135.0.0/16 1443 | 61.136.0.0/18 1444 | 61.136.64.0/18 1445 | 61.136.128.0/17 1446 | 61.137.0.0/17 1447 | 61.137.128.0/17 1448 | 61.138.0.0/18 1449 | 61.138.64.0/18 1450 | 61.138.128.0/18 1451 | 61.138.192.0/18 1452 | 61.139.0.0/17 1453 | 61.139.128.0/18 1454 | 61.139.192.0/18 1455 | 61.140.0.0/14 1456 | 61.144.0.0/14 1457 | 61.148.0.0/15 1458 | 61.150.0.0/15 1459 | 61.152.0.0/16 1460 | 61.153.0.0/16 1461 | 61.154.0.0/15 1462 | 61.156.0.0/16 1463 | 61.157.0.0/16 1464 | 61.158.0.0/17 1465 | 61.158.128.0/17 1466 | 61.159.0.0/18 1467 | 61.159.64.0/18 1468 | 61.159.128.0/17 1469 | 61.160.0.0/16 1470 | 61.161.0.0/18 1471 | 61.161.64.0/18 1472 | 61.161.128.0/17 1473 | 61.162.0.0/16 1474 | 61.163.0.0/16 1475 | 61.164.0.0/16 1476 | 61.165.0.0/16 1477 | 61.166.0.0/16 1478 | 61.167.0.0/16 1479 | 61.168.0.0/16 1480 | 61.169.0.0/16 1481 | 61.170.0.0/15 1482 | 61.172.0.0/14 1483 | 61.176.0.0/16 1484 | 61.177.0.0/16 1485 | 61.178.0.0/16 1486 | 61.179.0.0/16 1487 | 61.180.0.0/17 1488 | 61.180.128.0/17 1489 | 61.181.0.0/16 1490 | 61.182.0.0/16 1491 | 61.183.0.0/16 1492 | 61.184.0.0/14 1493 | 61.188.0.0/16 1494 | 61.189.0.0/17 1495 | 61.189.128.0/17 1496 | 61.190.0.0/15 1497 | 61.232.0.0/14 1498 | 61.236.0.0/15 1499 | 61.240.0.0/14 1500 | 101.0.0.0/22 1501 | 101.1.0.0/22 1502 | 101.2.172.0/22 1503 | 101.4.0.0/14 1504 | 101.16.0.0/12 1505 | 101.32.0.0/14 1506 | 101.36.0.0/16 1507 | 101.37.0.0/16 1508 | 101.38.0.0/15 1509 | 101.40.0.0/13 1510 | 101.48.0.0/15 1511 | 101.50.56.0/22 1512 | 101.52.0.0/16 1513 | 101.53.100.0/22 1514 | 101.54.0.0/16 1515 | 101.55.224.0/21 1516 | 101.64.0.0/13 1517 | 101.72.0.0/14 1518 | 101.76.0.0/15 1519 | 101.78.0.0/22 1520 | 101.78.32.0/19 1521 | 101.80.0.0/12 1522 | 101.96.0.0/21 1523 | 101.96.8.0/22 1524 | 101.96.16.0/20 1525 | 101.96.128.0/17 1526 | 101.99.96.0/19 1527 | 101.101.64.0/19 1528 | 101.101.100.0/24 1529 | 101.101.102.0/23 1530 | 101.101.104.0/21 1531 | 101.101.112.0/20 1532 | 101.102.64.0/19 1533 | 101.102.100.0/23 1534 | 101.102.102.0/24 1535 | 101.102.104.0/21 1536 | 101.102.112.0/20 1537 | 101.104.0.0/14 1538 | 101.110.64.0/19 1539 | 101.110.96.0/20 1540 | 101.110.116.0/22 1541 | 101.110.120.0/21 1542 | 101.120.0.0/14 1543 | 101.124.0.0/15 1544 | 101.126.0.0/16 1545 | 101.128.0.0/22 1546 | 101.128.8.0/21 1547 | 101.128.16.0/20 1548 | 101.128.32.0/19 1549 | 101.129.0.0/16 1550 | 101.130.0.0/15 1551 | 101.132.0.0/14 1552 | 101.144.0.0/12 1553 | 101.192.0.0/14 1554 | 101.196.0.0/14 1555 | 101.200.0.0/15 1556 | 101.203.128.0/19 1557 | 101.203.160.0/21 1558 | 101.203.172.0/22 1559 | 101.203.176.0/20 1560 | 101.204.0.0/14 1561 | 101.224.0.0/13 1562 | 101.232.0.0/15 1563 | 101.234.64.0/21 1564 | 101.234.76.0/22 1565 | 101.234.80.0/20 1566 | 101.234.96.0/19 1567 | 101.236.0.0/14 1568 | 101.240.0.0/14 1569 | 101.244.0.0/14 1570 | 101.248.0.0/15 1571 | 101.251.0.0/22 1572 | 101.251.8.0/21 1573 | 101.251.16.0/20 1574 | 101.251.32.0/19 1575 | 101.251.64.0/18 1576 | 101.251.128.0/17 1577 | 101.252.0.0/15 1578 | 101.254.0.0/16 1579 | 103.1.8.0/22 1580 | 103.1.20.0/22 1581 | 103.1.24.0/22 1582 | 103.1.72.0/22 1583 | 103.1.88.0/22 1584 | 103.1.168.0/22 1585 | 103.2.108.0/22 1586 | 103.2.156.0/22 1587 | 103.2.164.0/22 1588 | 103.2.200.0/22 1589 | 103.2.204.0/22 1590 | 103.2.208.0/22 1591 | 103.2.212.0/22 1592 | 103.3.84.0/22 1593 | 103.3.88.0/22 1594 | 103.3.92.0/22 1595 | 103.3.96.0/22 1596 | 103.3.100.0/22 1597 | 103.3.104.0/22 1598 | 103.3.108.0/22 1599 | 103.3.112.0/22 1600 | 103.3.116.0/22 1601 | 103.3.120.0/22 1602 | 103.3.124.0/22 1603 | 103.3.128.0/22 1604 | 103.3.132.0/22 1605 | 103.3.136.0/22 1606 | 103.3.140.0/22 1607 | 103.3.148.0/22 1608 | 103.3.152.0/22 1609 | 103.3.156.0/22 1610 | 103.4.56.0/22 1611 | 103.4.168.0/22 1612 | 103.4.184.0/22 1613 | 103.5.36.0/22 1614 | 103.5.52.0/22 1615 | 103.5.56.0/22 1616 | 103.5.252.0/22 1617 | 103.6.76.0/22 1618 | 103.6.220.0/22 1619 | 103.7.4.0/22 1620 | 103.7.28.0/22 1621 | 103.7.212.0/22 1622 | 103.7.216.0/22 1623 | 103.7.220.0/22 1624 | 103.8.4.0/22 1625 | 103.8.8.0/22 1626 | 103.8.32.0/22 1627 | 103.8.52.0/22 1628 | 103.8.108.0/22 1629 | 103.8.156.0/22 1630 | 103.8.200.0/22 1631 | 103.8.204.0/22 1632 | 103.8.220.0/22 1633 | 103.9.8.0/22 1634 | 103.9.152.0/22 1635 | 103.9.248.0/22 1636 | 103.9.252.0/22 1637 | 103.10.0.0/22 1638 | 103.10.16.0/22 1639 | 103.10.84.0/22 1640 | 103.10.111.0/24 1641 | 103.10.140.0/22 1642 | 103.11.180.0/22 1643 | 103.12.32.0/22 1644 | 103.12.68.0/22 1645 | 103.12.136.0/22 1646 | 103.12.184.0/22 1647 | 103.12.232.0/22 1648 | 103.13.124.0/22 1649 | 103.13.144.0/22 1650 | 103.13.196.0/22 1651 | 103.13.244.0/22 1652 | 103.14.84.0/22 1653 | 103.14.112.0/22 1654 | 103.14.132.0/22 1655 | 103.14.136.0/22 1656 | 103.14.156.0/22 1657 | 103.14.240.0/22 1658 | 103.15.4.0/22 1659 | 103.15.8.0/22 1660 | 103.15.16.0/22 1661 | 103.15.96.0/22 1662 | 103.15.200.0/22 1663 | 103.16.52.0/22 1664 | 103.16.80.0/22 1665 | 103.16.84.0/22 1666 | 103.16.88.0/22 1667 | 103.16.108.0/22 1668 | 103.16.124.0/22 1669 | 103.17.40.0/22 1670 | 103.17.120.0/22 1671 | 103.17.160.0/22 1672 | 103.17.204.0/22 1673 | 103.17.228.0/22 1674 | 103.18.192.0/22 1675 | 103.18.208.0/22 1676 | 103.18.212.0/22 1677 | 103.18.224.0/22 1678 | 103.19.12.0/22 1679 | 103.19.40.0/22 1680 | 103.19.44.0/22 1681 | 103.19.64.0/22 1682 | 103.19.68.0/22 1683 | 103.19.72.0/22 1684 | 103.19.232.0/22 1685 | 103.20.12.0/22 1686 | 103.20.32.0/22 1687 | 103.20.112.0/22 1688 | 103.20.128.0/22 1689 | 103.20.160.0/22 1690 | 103.20.248.0/22 1691 | 103.21.112.0/22 1692 | 103.21.116.0/22 1693 | 103.21.136.0/22 1694 | 103.21.140.0/22 1695 | 103.21.176.0/22 1696 | 103.21.208.0/22 1697 | 103.21.240.0/22 1698 | 103.22.0.0/22 1699 | 103.22.4.0/22 1700 | 103.22.8.0/22 1701 | 103.22.12.0/22 1702 | 103.22.16.0/22 1703 | 103.22.20.0/22 1704 | 103.22.24.0/22 1705 | 103.22.28.0/22 1706 | 103.22.32.0/22 1707 | 103.22.36.0/22 1708 | 103.22.40.0/22 1709 | 103.22.44.0/22 1710 | 103.22.48.0/22 1711 | 103.22.52.0/22 1712 | 103.22.56.0/22 1713 | 103.22.60.0/22 1714 | 103.22.64.0/22 1715 | 103.22.68.0/22 1716 | 103.22.72.0/22 1717 | 103.22.76.0/22 1718 | 103.22.80.0/22 1719 | 103.22.84.0/22 1720 | 103.22.88.0/22 1721 | 103.22.92.0/22 1722 | 103.22.100.0/22 1723 | 103.22.104.0/22 1724 | 103.22.108.0/22 1725 | 103.22.112.0/22 1726 | 103.22.116.0/22 1727 | 103.22.120.0/22 1728 | 103.22.124.0/22 1729 | 103.22.188.0/22 1730 | 103.22.228.0/22 1731 | 103.22.252.0/22 1732 | 103.23.8.0/22 1733 | 103.23.56.0/22 1734 | 103.23.160.0/22 1735 | 103.23.164.0/22 1736 | 103.23.176.0/22 1737 | 103.23.228.0/22 1738 | 103.24.116.0/22 1739 | 103.24.128.0/22 1740 | 103.24.144.0/22 1741 | 103.24.176.0/22 1742 | 103.24.184.0/22 1743 | 103.24.220.0/22 1744 | 103.24.228.0/22 1745 | 103.24.248.0/22 1746 | 103.24.252.0/22 1747 | 103.25.8.0/23 1748 | 103.25.20.0/22 1749 | 103.25.24.0/22 1750 | 103.25.28.0/22 1751 | 103.25.32.0/22 1752 | 103.25.36.0/22 1753 | 103.25.40.0/22 1754 | 103.25.48.0/22 1755 | 103.25.64.0/22 1756 | 103.25.68.0/22 1757 | 103.25.148.0/22 1758 | 103.25.156.0/22 1759 | 103.25.216.0/22 1760 | 103.26.0.0/22 1761 | 103.26.64.0/22 1762 | 103.26.156.0/22 1763 | 103.26.160.0/22 1764 | 103.26.228.0/22 1765 | 103.26.240.0/22 1766 | 103.27.4.0/22 1767 | 103.27.12.0/22 1768 | 103.27.24.0/22 1769 | 103.27.56.0/22 1770 | 103.27.96.0/22 1771 | 103.27.208.0/22 1772 | 103.27.240.0/22 1773 | 103.28.4.0/22 1774 | 103.28.8.0/22 1775 | 103.28.204.0/22 1776 | 103.29.16.0/22 1777 | 103.29.128.0/22 1778 | 103.29.132.0/22 1779 | 103.29.136.0/22 1780 | 103.30.20.0/22 1781 | 103.30.96.0/22 1782 | 103.30.148.0/22 1783 | 103.30.200.0/22 1784 | 103.30.228.0/22 1785 | 103.30.236.0/22 1786 | 103.31.0.0/22 1787 | 103.31.48.0/22 1788 | 103.31.52.0/22 1789 | 103.31.56.0/22 1790 | 103.31.60.0/22 1791 | 103.31.64.0/22 1792 | 103.31.68.0/22 1793 | 103.31.148.0/22 1794 | 103.31.160.0/22 1795 | 103.31.168.0/22 1796 | 103.31.200.0/22 1797 | 103.32.0.0/22 1798 | 103.32.4.0/22 1799 | 103.32.8.0/22 1800 | 103.32.12.0/22 1801 | 103.32.16.0/22 1802 | 103.32.20.0/22 1803 | 103.32.24.0/22 1804 | 103.32.28.0/22 1805 | 103.32.32.0/22 1806 | 103.32.36.0/22 1807 | 103.32.40.0/22 1808 | 103.32.44.0/22 1809 | 103.32.48.0/22 1810 | 103.32.52.0/22 1811 | 103.32.56.0/22 1812 | 103.32.60.0/22 1813 | 103.32.64.0/22 1814 | 103.32.68.0/22 1815 | 103.32.72.0/22 1816 | 103.32.76.0/22 1817 | 103.32.80.0/22 1818 | 103.32.84.0/22 1819 | 103.32.88.0/22 1820 | 103.32.92.0/22 1821 | 103.32.96.0/22 1822 | 103.32.100.0/22 1823 | 103.32.104.0/22 1824 | 103.32.108.0/22 1825 | 103.32.112.0/22 1826 | 103.32.116.0/22 1827 | 103.32.120.0/22 1828 | 103.32.124.0/22 1829 | 103.32.128.0/22 1830 | 103.32.132.0/22 1831 | 103.32.136.0/22 1832 | 103.32.140.0/22 1833 | 103.32.144.0/22 1834 | 103.32.148.0/22 1835 | 103.32.152.0/22 1836 | 103.32.156.0/22 1837 | 103.32.160.0/22 1838 | 103.32.164.0/22 1839 | 103.32.168.0/22 1840 | 103.32.172.0/22 1841 | 103.32.176.0/22 1842 | 103.32.180.0/22 1843 | 103.32.184.0/22 1844 | 103.32.188.0/22 1845 | 103.32.192.0/22 1846 | 103.32.196.0/22 1847 | 103.32.200.0/22 1848 | 103.32.204.0/22 1849 | 103.32.208.0/22 1850 | 103.32.212.0/22 1851 | 103.32.216.0/22 1852 | 103.32.220.0/22 1853 | 103.32.224.0/22 1854 | 103.32.228.0/22 1855 | 103.32.232.0/22 1856 | 103.32.236.0/22 1857 | 103.32.240.0/22 1858 | 103.32.244.0/22 1859 | 103.32.248.0/22 1860 | 103.32.252.0/22 1861 | 103.33.0.0/22 1862 | 103.33.4.0/22 1863 | 103.33.8.0/22 1864 | 103.33.12.0/22 1865 | 103.33.16.0/22 1866 | 103.33.20.0/22 1867 | 103.33.24.0/22 1868 | 103.33.28.0/22 1869 | 103.33.32.0/22 1870 | 103.33.36.0/22 1871 | 103.33.40.0/22 1872 | 103.33.44.0/22 1873 | 103.33.48.0/22 1874 | 103.33.52.0/22 1875 | 103.33.56.0/22 1876 | 103.33.60.0/22 1877 | 103.33.64.0/22 1878 | 103.33.68.0/22 1879 | 103.33.72.0/22 1880 | 103.33.76.0/22 1881 | 103.33.80.0/22 1882 | 103.33.84.0/22 1883 | 103.33.88.0/22 1884 | 103.33.92.0/22 1885 | 103.33.96.0/22 1886 | 103.33.100.0/22 1887 | 103.33.104.0/22 1888 | 103.33.108.0/22 1889 | 103.33.112.0/22 1890 | 103.33.116.0/22 1891 | 103.33.120.0/22 1892 | 103.33.124.0/22 1893 | 103.33.128.0/22 1894 | 103.33.132.0/22 1895 | 103.33.136.0/22 1896 | 103.33.140.0/22 1897 | 103.33.144.0/22 1898 | 103.33.148.0/22 1899 | 103.33.152.0/22 1900 | 103.33.156.0/22 1901 | 103.33.160.0/22 1902 | 103.33.164.0/22 1903 | 103.33.168.0/22 1904 | 103.33.172.0/22 1905 | 103.33.176.0/22 1906 | 103.33.180.0/22 1907 | 103.33.184.0/22 1908 | 103.33.188.0/22 1909 | 103.33.192.0/22 1910 | 103.33.196.0/22 1911 | 103.33.200.0/22 1912 | 103.33.204.0/22 1913 | 103.33.208.0/22 1914 | 103.33.212.0/22 1915 | 103.33.216.0/22 1916 | 103.33.220.0/22 1917 | 103.33.224.0/22 1918 | 103.33.228.0/22 1919 | 103.33.232.0/22 1920 | 103.33.236.0/22 1921 | 103.33.240.0/22 1922 | 103.33.244.0/22 1923 | 103.33.248.0/22 1924 | 103.33.252.0/22 1925 | 103.34.0.0/22 1926 | 103.34.4.0/22 1927 | 103.34.8.0/22 1928 | 103.34.12.0/22 1929 | 103.34.16.0/22 1930 | 103.34.20.0/22 1931 | 103.34.24.0/22 1932 | 103.34.28.0/22 1933 | 103.34.32.0/22 1934 | 103.34.36.0/22 1935 | 103.34.40.0/22 1936 | 103.34.44.0/22 1937 | 103.34.48.0/22 1938 | 103.34.52.0/22 1939 | 103.34.56.0/22 1940 | 103.34.60.0/22 1941 | 103.34.64.0/22 1942 | 103.34.68.0/22 1943 | 103.34.72.0/22 1944 | 103.34.76.0/22 1945 | 103.34.80.0/22 1946 | 103.34.84.0/22 1947 | 103.34.88.0/22 1948 | 103.34.92.0/22 1949 | 103.34.96.0/22 1950 | 103.34.100.0/22 1951 | 103.34.104.0/22 1952 | 103.34.108.0/22 1953 | 103.34.112.0/22 1954 | 103.34.116.0/22 1955 | 103.34.120.0/22 1956 | 103.34.124.0/22 1957 | 103.34.128.0/22 1958 | 103.34.132.0/22 1959 | 103.34.136.0/22 1960 | 103.34.140.0/22 1961 | 103.34.144.0/22 1962 | 103.34.148.0/22 1963 | 103.34.152.0/22 1964 | 103.34.156.0/22 1965 | 103.34.160.0/22 1966 | 103.34.164.0/22 1967 | 103.34.168.0/22 1968 | 103.34.172.0/22 1969 | 103.34.176.0/22 1970 | 103.34.180.0/22 1971 | 103.34.184.0/22 1972 | 103.34.188.0/22 1973 | 103.34.192.0/22 1974 | 103.34.196.0/22 1975 | 103.34.200.0/22 1976 | 103.34.204.0/22 1977 | 103.34.208.0/22 1978 | 103.34.212.0/22 1979 | 103.34.216.0/22 1980 | 103.34.220.0/22 1981 | 103.34.224.0/22 1982 | 103.34.228.0/22 1983 | 103.34.232.0/22 1984 | 103.34.236.0/22 1985 | 103.34.240.0/22 1986 | 103.34.244.0/22 1987 | 103.34.248.0/22 1988 | 103.34.252.0/22 1989 | 103.35.0.0/22 1990 | 103.35.4.0/22 1991 | 103.35.8.0/22 1992 | 103.35.12.0/22 1993 | 103.35.16.0/22 1994 | 103.35.20.0/22 1995 | 103.35.24.0/22 1996 | 103.35.28.0/22 1997 | 103.35.32.0/22 1998 | 103.35.36.0/22 1999 | 103.35.40.0/22 2000 | 103.35.44.0/22 2001 | 103.35.48.0/22 2002 | 103.35.104.0/22 2003 | 103.35.116.0/22 2004 | 103.35.200.0/22 2005 | 103.35.220.0/22 2006 | 103.36.20.0/22 2007 | 103.36.28.0/22 2008 | 103.36.36.0/22 2009 | 103.36.56.0/22 2010 | 103.36.60.0/22 2011 | 103.36.64.0/22 2012 | 103.36.72.0/22 2013 | 103.36.96.0/22 2014 | 103.36.132.0/22 2015 | 103.36.136.0/22 2016 | 103.36.160.0/22 2017 | 103.36.164.0/22 2018 | 103.36.168.0/22 2019 | 103.36.172.0/22 2020 | 103.36.176.0/22 2021 | 103.36.180.0/22 2022 | 103.36.184.0/22 2023 | 103.36.188.0/22 2024 | 103.36.192.0/22 2025 | 103.36.196.0/22 2026 | 103.36.200.0/22 2027 | 103.36.204.0/22 2028 | 103.36.208.0/22 2029 | 103.36.212.0/22 2030 | 103.36.216.0/22 2031 | 103.36.220.0/22 2032 | 103.36.224.0/22 2033 | 103.36.228.0/22 2034 | 103.36.232.0/22 2035 | 103.36.236.0/22 2036 | 103.36.240.0/22 2037 | 103.36.244.0/22 2038 | 103.37.0.0/22 2039 | 103.37.12.0/22 2040 | 103.37.16.0/22 2041 | 103.37.24.0/22 2042 | 103.37.44.0/22 2043 | 103.37.52.0/22 2044 | 103.37.56.0/22 2045 | 103.37.72.0/22 2046 | 103.37.100.0/22 2047 | 103.37.104.0/22 2048 | 103.37.124.0/22 2049 | 103.37.136.0/22 2050 | 103.37.140.0/22 2051 | 103.37.144.0/22 2052 | 103.37.148.0/22 2053 | 103.37.152.0/22 2054 | 103.37.156.0/22 2055 | 103.37.160.0/22 2056 | 103.37.164.0/22 2057 | 103.37.172.0/22 2058 | 103.37.176.0/22 2059 | 103.37.208.0/22 2060 | 103.37.212.0/22 2061 | 103.37.216.0/22 2062 | 103.37.220.0/22 2063 | 103.37.248.0/22 2064 | 103.37.252.0/22 2065 | 103.38.0.0/22 2066 | 103.38.32.0/22 2067 | 103.38.40.0/22 2068 | 103.38.44.0/22 2069 | 103.38.56.0/22 2070 | 103.38.76.0/22 2071 | 103.38.84.0/22 2072 | 103.38.92.0/22 2073 | 103.38.96.0/22 2074 | 103.38.116.0/22 2075 | 103.38.132.0/22 2076 | 103.38.140.0/22 2077 | 103.38.220.0/22 2078 | 103.38.224.0/22 2079 | 103.38.228.0/22 2080 | 103.38.232.0/22 2081 | 103.38.252.0/22 2082 | 103.39.16.0/22 2083 | 103.39.64.0/22 2084 | 103.39.88.0/22 2085 | 103.39.100.0/22 2086 | 103.39.104.0/22 2087 | 103.39.108.0/22 2088 | 103.39.144.0/22 2089 | 103.39.160.0/22 2090 | 103.39.164.0/22 2091 | 103.39.168.0/22 2092 | 103.39.172.0/22 2093 | 103.39.176.0/22 2094 | 103.39.180.0/22 2095 | 103.39.184.0/22 2096 | 103.39.188.0/22 2097 | 103.39.200.0/22 2098 | 103.39.204.0/22 2099 | 103.39.208.0/22 2100 | 103.39.212.0/22 2101 | 103.39.216.0/22 2102 | 103.39.220.0/22 2103 | 103.39.224.0/22 2104 | 103.39.228.0/22 2105 | 103.39.232.0/22 2106 | 103.40.12.0/22 2107 | 103.40.16.0/22 2108 | 103.40.20.0/22 2109 | 103.40.24.0/22 2110 | 103.40.28.0/22 2111 | 103.40.32.0/22 2112 | 103.40.36.0/22 2113 | 103.40.40.0/22 2114 | 103.40.44.0/22 2115 | 103.40.88.0/22 2116 | 103.40.100.0/22 2117 | 103.40.112.0/22 2118 | 103.40.192.0/22 2119 | 103.40.212.0/22 2120 | 103.40.220.0/22 2121 | 103.40.228.0/22 2122 | 103.40.232.0/22 2123 | 103.40.236.0/22 2124 | 103.40.240.0/22 2125 | 103.40.244.0/22 2126 | 103.40.248.0/22 2127 | 103.40.252.0/22 2128 | 103.41.0.0/22 2129 | 103.41.16.0/22 2130 | 103.41.52.0/22 2131 | 103.41.116.0/22 2132 | 103.41.140.0/22 2133 | 103.41.148.0/22 2134 | 103.41.152.0/22 2135 | 103.41.160.0/22 2136 | 103.41.164.0/22 2137 | 103.41.220.0/22 2138 | 103.41.224.0/22 2139 | 103.41.228.0/22 2140 | 103.41.232.0/22 2141 | 103.42.8.0/22 2142 | 103.42.24.0/22 2143 | 103.42.28.0/22 2144 | 103.42.32.0/22 2145 | 103.42.64.0/22 2146 | 103.42.68.0/22 2147 | 103.42.76.0/22 2148 | 103.42.104.0/22 2149 | 103.42.180.0/22 2150 | 103.42.232.0/22 2151 | 103.43.16.0/22 2152 | 103.43.24.0/22 2153 | 103.43.84.0/22 2154 | 103.43.96.0/22 2155 | 103.43.100.0/22 2156 | 103.43.104.0/22 2157 | 103.43.124.0/22 2158 | 103.43.132.0/22 2159 | 103.43.164.0/22 2160 | 103.43.184.0/22 2161 | 103.43.192.0/22 2162 | 103.43.196.0/22 2163 | 103.43.208.0/22 2164 | 103.43.220.0/22 2165 | 103.43.224.0/22 2166 | 103.43.232.0/22 2167 | 103.43.240.0/22 2168 | 103.44.56.0/22 2169 | 103.44.80.0/22 2170 | 103.44.88.0/22 2171 | 103.44.120.0/22 2172 | 103.44.124.0/22 2173 | 103.44.132.0/22 2174 | 103.44.144.0/22 2175 | 103.44.152.0/22 2176 | 103.44.168.0/22 2177 | 103.44.176.0/22 2178 | 103.44.180.0/22 2179 | 103.44.184.0/22 2180 | 103.44.188.0/22 2181 | 103.44.192.0/22 2182 | 103.44.196.0/22 2183 | 103.44.200.0/22 2184 | 103.44.204.0/22 2185 | 103.44.224.0/22 2186 | 103.44.236.0/22 2187 | 103.44.240.0/22 2188 | 103.44.244.0/22 2189 | 103.44.248.0/22 2190 | 103.44.252.0/22 2191 | 103.45.0.0/22 2192 | 103.45.4.0/22 2193 | 103.45.8.0/22 2194 | 103.45.12.0/22 2195 | 103.45.16.0/22 2196 | 103.45.20.0/22 2197 | 103.45.24.0/22 2198 | 103.45.28.0/22 2199 | 103.45.32.0/22 2200 | 103.45.36.0/22 2201 | 103.45.40.0/22 2202 | 103.45.44.0/22 2203 | 103.45.48.0/22 2204 | 103.45.52.0/22 2205 | 103.45.56.0/22 2206 | 103.45.60.0/22 2207 | 103.45.72.0/22 2208 | 103.45.76.0/22 2209 | 103.45.80.0/22 2210 | 103.45.84.0/22 2211 | 103.45.88.0/22 2212 | 103.45.92.0/22 2213 | 103.45.96.0/22 2214 | 103.45.100.0/22 2215 | 103.45.104.0/22 2216 | 103.45.108.0/22 2217 | 103.45.112.0/22 2218 | 103.45.116.0/22 2219 | 103.45.120.0/22 2220 | 103.45.124.0/22 2221 | 103.45.128.0/22 2222 | 103.45.132.0/22 2223 | 103.45.136.0/22 2224 | 103.45.140.0/22 2225 | 103.45.144.0/22 2226 | 103.45.148.0/22 2227 | 103.45.152.0/22 2228 | 103.45.156.0/22 2229 | 103.45.160.0/22 2230 | 103.45.164.0/22 2231 | 103.45.168.0/22 2232 | 103.45.172.0/22 2233 | 103.45.176.0/22 2234 | 103.45.180.0/22 2235 | 103.45.184.0/22 2236 | 103.45.188.0/22 2237 | 103.45.192.0/22 2238 | 103.45.196.0/22 2239 | 103.45.200.0/22 2240 | 103.45.204.0/22 2241 | 103.45.208.0/22 2242 | 103.45.212.0/22 2243 | 103.45.216.0/22 2244 | 103.45.220.0/22 2245 | 103.45.224.0/22 2246 | 103.45.248.0/22 2247 | 103.46.0.0/22 2248 | 103.46.12.0/22 2249 | 103.46.16.0/22 2250 | 103.46.20.0/22 2251 | 103.46.24.0/22 2252 | 103.46.28.0/22 2253 | 103.46.32.0/22 2254 | 103.46.36.0/22 2255 | 103.46.40.0/22 2256 | 103.46.44.0/22 2257 | 103.46.48.0/22 2258 | 103.46.52.0/22 2259 | 103.46.56.0/22 2260 | 103.46.60.0/22 2261 | 103.46.64.0/22 2262 | 103.46.68.0/22 2263 | 103.46.72.0/22 2264 | 103.46.76.0/22 2265 | 103.46.80.0/22 2266 | 103.46.84.0/22 2267 | 103.46.88.0/22 2268 | 103.46.92.0/22 2269 | 103.46.96.0/22 2270 | 103.46.100.0/22 2271 | 103.46.104.0/22 2272 | 103.46.108.0/22 2273 | 103.46.112.0/22 2274 | 103.46.116.0/22 2275 | 103.46.120.0/22 2276 | 103.46.124.0/22 2277 | 103.46.128.0/22 2278 | 103.46.132.0/22 2279 | 103.46.136.0/22 2280 | 103.46.152.0/22 2281 | 103.46.156.0/22 2282 | 103.46.160.0/22 2283 | 103.46.164.0/22 2284 | 103.46.168.0/22 2285 | 103.46.172.0/22 2286 | 103.46.176.0/22 2287 | 103.46.180.0/22 2288 | 103.46.244.0/22 2289 | 103.46.248.0/22 2290 | 103.47.4.0/22 2291 | 103.47.20.0/22 2292 | 103.47.36.0/22 2293 | 103.47.40.0/22 2294 | 103.47.48.0/22 2295 | 103.47.80.0/22 2296 | 103.47.96.0/22 2297 | 103.47.108.0/22 2298 | 103.47.116.0/22 2299 | 103.47.120.0/22 2300 | 103.47.136.0/22 2301 | 103.47.140.0/22 2302 | 103.47.200.0/22 2303 | 103.47.212.0/22 2304 | 103.47.220.0/22 2305 | 103.47.248.0/22 2306 | 103.48.20.0/22 2307 | 103.48.52.0/22 2308 | 103.48.92.0/22 2309 | 103.48.144.0/22 2310 | 103.48.148.0/22 2311 | 103.48.152.0/22 2312 | 103.48.156.0/22 2313 | 103.48.202.0/23 2314 | 103.48.216.0/22 2315 | 103.48.220.0/22 2316 | 103.48.224.0/22 2317 | 103.48.228.0/22 2318 | 103.48.232.0/22 2319 | 103.48.236.0/22 2320 | 103.48.240.0/22 2321 | 103.48.244.0/22 2322 | 103.49.12.0/22 2323 | 103.49.20.0/22 2324 | 103.49.72.0/22 2325 | 103.49.76.0/22 2326 | 103.49.92.0/22 2327 | 103.49.96.0/22 2328 | 103.49.108.0/22 2329 | 103.49.128.0/22 2330 | 103.49.176.0/22 2331 | 103.49.180.0/22 2332 | 103.49.196.0/22 2333 | 103.49.248.0/22 2334 | 103.50.36.0/22 2335 | 103.50.44.0/22 2336 | 103.50.48.0/22 2337 | 103.50.52.0/22 2338 | 103.50.56.0/22 2339 | 103.50.60.0/22 2340 | 103.50.64.0/22 2341 | 103.50.68.0/22 2342 | 103.50.72.0/22 2343 | 103.50.108.0/22 2344 | 103.50.112.0/22 2345 | 103.50.116.0/22 2346 | 103.50.120.0/22 2347 | 103.50.124.0/22 2348 | 103.50.132.0/22 2349 | 103.50.136.0/22 2350 | 103.50.140.0/22 2351 | 103.50.172.0/22 2352 | 103.50.176.0/22 2353 | 103.50.180.0/22 2354 | 103.50.184.0/22 2355 | 103.50.188.0/22 2356 | 103.50.192.0/22 2357 | 103.50.196.0/22 2358 | 103.50.200.0/22 2359 | 103.50.220.0/22 2360 | 103.50.224.0/22 2361 | 103.50.228.0/22 2362 | 103.50.232.0/22 2363 | 103.50.236.0/22 2364 | 103.50.240.0/22 2365 | 103.50.244.0/22 2366 | 103.50.248.0/22 2367 | 103.52.40.0/22 2368 | 103.52.72.0/22 2369 | 103.52.76.0/22 2370 | 103.52.80.0/22 2371 | 103.52.84.0/22 2372 | 103.52.96.0/22 2373 | 103.52.100.0/22 2374 | 103.52.104.0/22 2375 | 103.52.160.0/22 2376 | 103.52.164.0/22 2377 | 103.52.172.0/22 2378 | 103.52.176.0/22 2379 | 103.52.184.0/22 2380 | 103.52.196.0/22 2381 | 103.53.4.0/22 2382 | 103.53.64.0/22 2383 | 103.53.68.0/22 2384 | 103.53.92.0/22 2385 | 103.53.100.0/22 2386 | 103.53.124.0/22 2387 | 103.53.128.0/22 2388 | 103.53.132.0/22 2389 | 103.53.136.0/22 2390 | 103.53.140.0/22 2391 | 103.53.144.0/22 2392 | 103.53.160.0/22 2393 | 103.53.180.0/22 2394 | 103.53.204.0/22 2395 | 103.53.208.0/22 2396 | 103.53.216.0/22 2397 | 103.53.236.0/22 2398 | 103.53.248.0/22 2399 | 103.54.8.0/22 2400 | 103.54.48.0/22 2401 | 103.54.60.0/22 2402 | 103.54.160.0/22 2403 | 103.54.164.0/22 2404 | 103.54.212.0/22 2405 | 103.54.228.0/22 2406 | 103.54.240.0/22 2407 | 103.55.24.0/22 2408 | 103.55.80.0/22 2409 | 103.55.120.0/22 2410 | 103.55.152.0/22 2411 | 103.55.172.0/22 2412 | 103.55.204.0/22 2413 | 103.55.208.0/22 2414 | 103.55.228.0/22 2415 | 103.55.236.0/22 2416 | 103.55.240.0/22 2417 | 103.56.8.0/22 2418 | 103.56.16.0/22 2419 | 103.56.20.0/22 2420 | 103.56.32.0/22 2421 | 103.56.52.0/22 2422 | 103.56.56.0/22 2423 | 103.56.60.0/22 2424 | 103.56.72.0/22 2425 | 103.56.76.0/22 2426 | 103.56.100.0/22 2427 | 103.56.104.0/22 2428 | 103.56.140.0/22 2429 | 103.56.152.0/22 2430 | 103.56.184.0/22 2431 | 103.56.200.0/22 2432 | 103.56.216.0/22 2433 | 103.57.12.0/22 2434 | 103.57.52.0/22 2435 | 103.57.56.0/22 2436 | 103.57.76.0/22 2437 | 103.57.108.0/22 2438 | 103.57.136.0/22 2439 | 103.57.196.0/22 2440 | 103.58.24.0/22 2441 | 103.58.182.0/23 2442 | 103.59.76.0/22 2443 | 103.59.100.0/22 2444 | 103.59.112.0/22 2445 | 103.59.116.0/22 2446 | 103.59.120.0/22 2447 | 103.59.124.0/22 2448 | 103.59.128.0/22 2449 | 103.59.148.0/22 2450 | 103.59.164.0/22 2451 | 103.59.216.0/22 2452 | 103.60.32.0/22 2453 | 103.60.44.0/22 2454 | 103.60.164.0/22 2455 | 103.60.228.0/22 2456 | 103.60.236.0/22 2457 | 103.61.60.0/22 2458 | 103.61.104.0/22 2459 | 103.61.140.0/22 2460 | 103.61.152.0/22 2461 | 103.61.156.0/22 2462 | 103.61.160.0/22 2463 | 103.61.172.0/22 2464 | 103.61.176.0/22 2465 | 103.61.184.0/22 2466 | 103.61.188.0/22 2467 | 103.62.24.0/22 2468 | 103.62.52.0/22 2469 | 103.62.72.0/22 2470 | 103.62.76.0/22 2471 | 103.62.80.0/22 2472 | 103.62.84.0/22 2473 | 103.62.88.0/22 2474 | 103.62.96.0/22 2475 | 103.62.100.0/22 2476 | 103.62.104.0/22 2477 | 103.62.108.0/22 2478 | 103.62.112.0/22 2479 | 103.62.116.0/22 2480 | 103.62.120.0/22 2481 | 103.62.124.0/22 2482 | 103.62.128.0/22 2483 | 103.62.132.0/22 2484 | 103.62.156.0/22 2485 | 103.62.160.0/22 2486 | 103.62.164.0/22 2487 | 103.62.168.0/22 2488 | 103.62.172.0/22 2489 | 103.62.176.0/22 2490 | 103.62.180.0/22 2491 | 103.62.184.0/22 2492 | 103.62.188.0/22 2493 | 103.62.192.0/22 2494 | 103.62.204.0/22 2495 | 103.62.208.0/22 2496 | 103.62.212.0/22 2497 | 103.62.216.0/22 2498 | 103.62.220.0/22 2499 | 103.62.224.0/22 2500 | 103.63.32.0/22 2501 | 103.63.36.0/22 2502 | 103.63.40.0/22 2503 | 103.63.44.0/22 2504 | 103.63.48.0/22 2505 | 103.63.52.0/22 2506 | 103.63.56.0/22 2507 | 103.63.60.0/22 2508 | 103.63.64.0/22 2509 | 103.63.68.0/22 2510 | 103.63.72.0/22 2511 | 103.63.76.0/22 2512 | 103.63.80.0/22 2513 | 103.63.84.0/22 2514 | 103.63.88.0/22 2515 | 103.63.140.0/22 2516 | 103.63.144.0/22 2517 | 103.63.152.0/22 2518 | 103.63.160.0/22 2519 | 103.63.164.0/22 2520 | 103.63.168.0/22 2521 | 103.63.172.0/22 2522 | 103.63.176.0/22 2523 | 103.63.180.0/22 2524 | 103.63.184.0/22 2525 | 103.63.192.0/22 2526 | 103.63.196.0/22 2527 | 103.63.200.0/22 2528 | 103.63.204.0/22 2529 | 103.63.208.0/22 2530 | 103.63.240.0/22 2531 | 103.63.244.0/22 2532 | 103.63.248.0/22 2533 | 103.63.252.0/22 2534 | 103.192.0.0/22 2535 | 103.192.4.0/22 2536 | 103.192.8.0/22 2537 | 103.192.12.0/22 2538 | 103.192.16.0/22 2539 | 103.192.20.0/22 2540 | 103.192.24.0/22 2541 | 103.192.28.0/22 2542 | 103.192.48.0/22 2543 | 103.192.52.0/22 2544 | 103.192.56.0/22 2545 | 103.192.84.0/22 2546 | 103.192.88.0/22 2547 | 103.192.92.0/22 2548 | 103.192.96.0/22 2549 | 103.192.100.0/22 2550 | 103.192.104.0/22 2551 | 103.192.108.0/22 2552 | 103.192.112.0/22 2553 | 103.192.128.0/22 2554 | 103.192.132.0/22 2555 | 103.192.136.0/22 2556 | 103.192.140.0/22 2557 | 103.192.144.0/22 2558 | 103.192.164.0/22 2559 | 103.192.188.0/22 2560 | 103.192.208.0/22 2561 | 103.192.212.0/22 2562 | 103.192.216.0/22 2563 | 103.192.252.0/22 2564 | 103.193.40.0/22 2565 | 103.193.44.0/22 2566 | 103.193.120.0/22 2567 | 103.193.124.0/22 2568 | 103.193.140.0/22 2569 | 103.193.144.0/22 2570 | 103.193.148.0/22 2571 | 103.193.160.0/22 2572 | 103.193.188.0/22 2573 | 103.193.192.0/22 2574 | 103.193.212.0/22 2575 | 103.193.216.0/22 2576 | 103.193.220.0/22 2577 | 103.193.224.0/22 2578 | 103.193.228.0/22 2579 | 103.193.232.0/22 2580 | 103.193.236.0/22 2581 | 103.193.240.0/22 2582 | 103.194.16.0/22 2583 | 103.194.230.0/23 2584 | 103.195.104.0/22 2585 | 103.195.112.0/22 2586 | 103.195.136.0/22 2587 | 103.195.148.0/22 2588 | 103.195.152.0/22 2589 | 103.195.160.0/22 2590 | 103.195.192.0/22 2591 | 103.196.60.0/22 2592 | 103.196.64.0/22 2593 | 103.196.72.0/22 2594 | 103.196.88.0/22 2595 | 103.196.92.0/22 2596 | 103.196.96.0/22 2597 | 103.196.168.0/22 2598 | 103.196.184.0/22 2599 | 103.196.204.0/22 2600 | 103.197.180.0/22 2601 | 103.197.228.0/22 2602 | 103.197.252.0/22 2603 | 103.198.20.0/22 2604 | 103.198.60.0/22 2605 | 103.198.64.0/22 2606 | 103.198.72.0/22 2607 | 103.198.124.0/22 2608 | 103.198.156.0/22 2609 | 103.198.180.0/22 2610 | 103.198.196.0/22 2611 | 103.198.200.0/22 2612 | 103.198.216.0/22 2613 | 103.198.220.0/22 2614 | 103.198.224.0/22 2615 | 103.198.228.0/22 2616 | 103.198.232.0/22 2617 | 103.198.236.0/22 2618 | 103.198.240.0/22 2619 | 103.198.244.0/22 2620 | 103.224.40.0/22 2621 | 103.224.44.0/22 2622 | 103.224.60.0/22 2623 | 103.224.80.0/22 2624 | 103.224.220.0/22 2625 | 103.224.224.0/22 2626 | 103.224.228.0/22 2627 | 103.224.232.0/22 2628 | 103.225.84.0/22 2629 | 103.226.16.0/22 2630 | 103.226.40.0/22 2631 | 103.226.56.0/22 2632 | 103.226.60.0/22 2633 | 103.226.80.0/22 2634 | 103.226.116.0/22 2635 | 103.226.132.0/22 2636 | 103.226.156.0/22 2637 | 103.226.180.0/22 2638 | 103.226.196.0/22 2639 | 103.227.48.0/22 2640 | 103.227.72.0/22 2641 | 103.227.76.0/22 2642 | 103.227.80.0/22 2643 | 103.227.100.0/22 2644 | 103.227.120.0/22 2645 | 103.227.132.0/22 2646 | 103.227.136.0/22 2647 | 103.227.196.0/22 2648 | 103.227.204.0/22 2649 | 103.227.212.0/22 2650 | 103.227.228.0/22 2651 | 103.228.12.0/22 2652 | 103.228.28.0/22 2653 | 103.228.68.0/22 2654 | 103.228.88.0/22 2655 | 103.228.128.0/22 2656 | 103.228.160.0/22 2657 | 103.228.176.0/22 2658 | 103.228.204.0/22 2659 | 103.228.208.0/22 2660 | 103.228.228.0/22 2661 | 103.228.232.0/22 2662 | 103.229.20.0/22 2663 | 103.229.136.0/22 2664 | 103.229.148.0/22 2665 | 103.229.172.0/22 2666 | 103.229.212.0/22 2667 | 103.229.216.0/22 2668 | 103.229.220.0/22 2669 | 103.229.228.0/22 2670 | 103.229.236.0/22 2671 | 103.229.240.0/22 2672 | 103.230.0.0/22 2673 | 103.230.28.0/22 2674 | 103.230.40.0/22 2675 | 103.230.44.0/22 2676 | 103.230.96.0/22 2677 | 103.230.196.0/22 2678 | 103.230.200.0/22 2679 | 103.230.204.0/22 2680 | 103.230.212.0/22 2681 | 103.230.236.0/22 2682 | 103.231.16.0/22 2683 | 103.231.20.0/22 2684 | 103.231.64.0/22 2685 | 103.231.68.0/22 2686 | 103.231.144.0/22 2687 | 103.231.180.0/22 2688 | 103.231.184.0/22 2689 | 103.231.244.0/22 2690 | 103.232.4.0/22 2691 | 103.232.144.0/22 2692 | 103.232.212.0/22 2693 | 103.233.4.0/22 2694 | 103.233.44.0/22 2695 | 103.233.52.0/22 2696 | 103.233.104.0/22 2697 | 103.233.128.0/22 2698 | 103.233.136.0/22 2699 | 103.233.228.0/22 2700 | 103.234.0.0/22 2701 | 103.234.20.0/22 2702 | 103.234.56.0/22 2703 | 103.234.124.0/22 2704 | 103.234.128.0/22 2705 | 103.234.172.0/22 2706 | 103.234.180.0/22 2707 | 103.234.244.0/22 2708 | 103.235.16.0/22 2709 | 103.235.48.0/22 2710 | 103.235.56.0/22 2711 | 103.235.60.0/22 2712 | 103.235.80.0/22 2713 | 103.235.84.0/22 2714 | 103.235.128.0/22 2715 | 103.235.132.0/22 2716 | 103.235.136.0/22 2717 | 103.235.140.0/22 2718 | 103.235.144.0/22 2719 | 103.235.148.0/22 2720 | 103.235.184.0/22 2721 | 103.235.192.0/22 2722 | 103.235.200.0/22 2723 | 103.235.220.0/22 2724 | 103.235.224.0/22 2725 | 103.235.228.0/22 2726 | 103.235.232.0/22 2727 | 103.235.236.0/22 2728 | 103.235.240.0/22 2729 | 103.235.244.0/22 2730 | 103.235.248.0/22 2731 | 103.235.252.0/22 2732 | 103.236.0.0/22 2733 | 103.236.4.0/22 2734 | 103.236.8.0/22 2735 | 103.236.12.0/22 2736 | 103.236.16.0/22 2737 | 103.236.20.0/22 2738 | 103.236.24.0/22 2739 | 103.236.28.0/22 2740 | 103.236.32.0/22 2741 | 103.236.36.0/22 2742 | 103.236.40.0/22 2743 | 103.236.44.0/22 2744 | 103.236.48.0/22 2745 | 103.236.52.0/22 2746 | 103.236.56.0/22 2747 | 103.236.60.0/22 2748 | 103.236.64.0/22 2749 | 103.236.68.0/22 2750 | 103.236.72.0/22 2751 | 103.236.76.0/22 2752 | 103.236.80.0/22 2753 | 103.236.84.0/22 2754 | 103.236.88.0/22 2755 | 103.236.92.0/22 2756 | 103.236.96.0/22 2757 | 103.236.120.0/22 2758 | 103.236.184.0/22 2759 | 103.236.220.0/22 2760 | 103.236.232.0/22 2761 | 103.236.240.0/22 2762 | 103.236.244.0/22 2763 | 103.236.248.0/22 2764 | 103.236.252.0/22 2765 | 103.237.0.0/22 2766 | 103.237.4.0/22 2767 | 103.237.8.0/22 2768 | 103.237.12.0/22 2769 | 103.237.24.0/22 2770 | 103.237.28.0/22 2771 | 103.237.68.0/22 2772 | 103.237.88.0/22 2773 | 103.237.152.0/22 2774 | 103.237.176.0/22 2775 | 103.237.180.0/22 2776 | 103.237.184.0/22 2777 | 103.237.188.0/22 2778 | 103.237.192.0/22 2779 | 103.237.196.0/22 2780 | 103.237.200.0/22 2781 | 103.237.204.0/22 2782 | 103.237.208.0/22 2783 | 103.237.212.0/22 2784 | 103.237.216.0/22 2785 | 103.237.220.0/22 2786 | 103.237.224.0/22 2787 | 103.237.228.0/22 2788 | 103.237.232.0/22 2789 | 103.237.236.0/22 2790 | 103.237.240.0/22 2791 | 103.237.244.0/22 2792 | 103.237.248.0/22 2793 | 103.237.252.0/22 2794 | 103.238.0.0/22 2795 | 103.238.4.0/22 2796 | 103.238.16.0/22 2797 | 103.238.20.0/22 2798 | 103.238.24.0/22 2799 | 103.238.28.0/22 2800 | 103.238.32.0/22 2801 | 103.238.36.0/22 2802 | 103.238.40.0/22 2803 | 103.238.44.0/22 2804 | 103.238.48.0/22 2805 | 103.238.52.0/22 2806 | 103.238.56.0/22 2807 | 103.238.88.0/22 2808 | 103.238.92.0/22 2809 | 103.238.96.0/22 2810 | 103.238.132.0/22 2811 | 103.238.140.0/22 2812 | 103.238.144.0/22 2813 | 103.238.160.0/22 2814 | 103.238.164.0/22 2815 | 103.238.168.0/22 2816 | 103.238.172.0/22 2817 | 103.238.176.0/22 2818 | 103.238.180.0/22 2819 | 103.238.184.0/22 2820 | 103.238.188.0/22 2821 | 103.238.196.0/22 2822 | 103.238.204.0/22 2823 | 103.238.252.0/22 2824 | 103.239.0.0/22 2825 | 103.239.40.0/22 2826 | 103.239.44.0/22 2827 | 103.239.68.0/22 2828 | 103.239.96.0/22 2829 | 103.239.152.0/22 2830 | 103.239.156.0/22 2831 | 103.239.176.0/22 2832 | 103.239.180.0/22 2833 | 103.239.184.0/22 2834 | 103.239.192.0/22 2835 | 103.239.196.0/22 2836 | 103.239.204.0/22 2837 | 103.239.208.0/22 2838 | 103.239.224.0/22 2839 | 103.239.244.0/22 2840 | 103.240.16.0/22 2841 | 103.240.36.0/22 2842 | 103.240.72.0/22 2843 | 103.240.84.0/22 2844 | 103.240.124.0/22 2845 | 103.240.156.0/22 2846 | 103.240.172.0/22 2847 | 103.240.244.0/22 2848 | 103.241.12.0/22 2849 | 103.241.72.0/22 2850 | 103.241.92.0/22 2851 | 103.241.96.0/22 2852 | 103.241.160.0/22 2853 | 103.241.184.0/22 2854 | 103.241.188.0/22 2855 | 103.241.220.0/22 2856 | 103.242.8.0/22 2857 | 103.242.64.0/22 2858 | 103.242.128.0/22 2859 | 103.242.132.0/22 2860 | 103.242.160.0/22 2861 | 103.242.168.0/22 2862 | 103.242.172.0/22 2863 | 103.242.176.0/22 2864 | 103.242.200.0/22 2865 | 103.242.212.0/22 2866 | 103.242.220.0/22 2867 | 103.242.240.0/22 2868 | 103.243.24.0/22 2869 | 103.243.136.0/22 2870 | 103.243.252.0/22 2871 | 103.244.16.0/22 2872 | 103.244.58.0/23 2873 | 103.244.60.0/22 2874 | 103.244.64.0/22 2875 | 103.244.68.0/22 2876 | 103.244.72.0/22 2877 | 103.244.76.0/22 2878 | 103.244.80.0/22 2879 | 103.244.84.0/22 2880 | 103.244.164.0/22 2881 | 103.244.232.0/22 2882 | 103.244.252.0/22 2883 | 103.245.23.0/24 2884 | 103.245.52.0/22 2885 | 103.245.60.0/22 2886 | 103.245.80.0/22 2887 | 103.245.124.0/22 2888 | 103.245.128.0/22 2889 | 103.246.8.0/22 2890 | 103.246.12.0/22 2891 | 103.246.120.0/22 2892 | 103.246.124.0/22 2893 | 103.246.132.0/22 2894 | 103.246.152.0/22 2895 | 103.246.156.0/22 2896 | 103.247.168.0/22 2897 | 103.247.172.0/22 2898 | 103.247.176.0/22 2899 | 103.247.200.0/22 2900 | 103.247.212.0/22 2901 | 103.248.0.0/23 2902 | 103.248.64.0/22 2903 | 103.248.100.0/22 2904 | 103.248.124.0/22 2905 | 103.248.152.0/22 2906 | 103.248.168.0/22 2907 | 103.248.192.0/22 2908 | 103.248.212.0/22 2909 | 103.248.224.0/22 2910 | 103.248.228.0/22 2911 | 103.249.12.0/22 2912 | 103.249.52.0/22 2913 | 103.249.128.0/22 2914 | 103.249.136.0/22 2915 | 103.249.144.0/22 2916 | 103.249.164.0/22 2917 | 103.249.168.0/22 2918 | 103.249.172.0/22 2919 | 103.249.176.0/22 2920 | 103.249.188.0/22 2921 | 103.249.192.0/22 2922 | 103.249.244.0/22 2923 | 103.249.252.0/22 2924 | 103.250.32.0/22 2925 | 103.250.104.0/22 2926 | 103.250.124.0/22 2927 | 103.250.180.0/22 2928 | 103.250.192.0/22 2929 | 103.250.216.0/22 2930 | 103.250.224.0/22 2931 | 103.250.236.0/22 2932 | 103.250.248.0/22 2933 | 103.250.252.0/22 2934 | 103.251.32.0/22 2935 | 103.251.84.0/22 2936 | 103.251.96.0/22 2937 | 103.251.124.0/22 2938 | 103.251.128.0/22 2939 | 103.251.160.0/22 2940 | 103.251.204.0/22 2941 | 103.251.236.0/22 2942 | 103.251.240.0/22 2943 | 103.252.28.0/22 2944 | 103.252.36.0/22 2945 | 103.252.64.0/22 2946 | 103.252.104.0/22 2947 | 103.252.172.0/22 2948 | 103.252.204.0/22 2949 | 103.252.208.0/22 2950 | 103.252.232.0/22 2951 | 103.252.248.0/22 2952 | 103.253.4.0/22 2953 | 103.253.60.0/22 2954 | 103.253.204.0/22 2955 | 103.253.220.0/22 2956 | 103.253.224.0/22 2957 | 103.253.232.0/22 2958 | 103.254.8.0/22 2959 | 103.254.20.0/22 2960 | 103.254.64.0/22 2961 | 103.254.68.0/22 2962 | 103.254.72.0/22 2963 | 103.254.76.0/22 2964 | 103.254.112.0/22 2965 | 103.254.176.0/22 2966 | 103.254.188.0/22 2967 | 103.254.196.0/24 2968 | 103.254.220.0/22 2969 | 103.255.68.0/22 2970 | 103.255.88.0/22 2971 | 103.255.92.0/22 2972 | 103.255.136.0/22 2973 | 103.255.140.0/22 2974 | 103.255.184.0/22 2975 | 103.255.200.0/22 2976 | 103.255.208.0/22 2977 | 103.255.212.0/22 2978 | 103.255.228.0/22 2979 | 106.0.0.0/24 2980 | 106.0.2.0/23 2981 | 106.0.4.0/22 2982 | 106.0.8.0/21 2983 | 106.0.16.0/20 2984 | 106.0.64.0/18 2985 | 106.2.0.0/15 2986 | 106.4.0.0/14 2987 | 106.8.0.0/15 2988 | 106.11.0.0/16 2989 | 106.12.0.0/14 2990 | 106.16.0.0/12 2991 | 106.32.0.0/12 2992 | 106.48.0.0/15 2993 | 106.50.0.0/16 2994 | 106.52.0.0/14 2995 | 106.56.0.0/13 2996 | 106.74.0.0/16 2997 | 106.75.0.0/16 2998 | 106.80.0.0/12 2999 | 106.108.0.0/14 3000 | 106.112.0.0/13 3001 | 106.120.0.0/13 3002 | 106.224.0.0/12 3003 | 110.6.0.0/15 3004 | 110.16.0.0/14 3005 | 110.40.0.0/14 3006 | 110.44.144.0/20 3007 | 110.48.0.0/16 3008 | 110.51.0.0/16 3009 | 110.52.0.0/15 3010 | 110.56.0.0/13 3011 | 110.64.0.0/15 3012 | 110.72.0.0/15 3013 | 110.75.0.0/17 3014 | 110.75.128.0/19 3015 | 110.75.160.0/19 3016 | 110.75.192.0/18 3017 | 110.76.0.0/19 3018 | 110.76.32.0/19 3019 | 110.76.156.0/22 3020 | 110.76.184.0/22 3021 | 110.76.192.0/18 3022 | 110.77.0.0/17 3023 | 110.80.0.0/13 3024 | 110.88.0.0/14 3025 | 110.93.32.0/19 3026 | 110.94.0.0/15 3027 | 110.96.0.0/11 3028 | 110.152.0.0/14 3029 | 110.156.0.0/15 3030 | 110.165.32.0/19 3031 | 110.166.0.0/15 3032 | 110.172.192.0/18 3033 | 110.173.0.0/19 3034 | 110.173.32.0/20 3035 | 110.173.64.0/19 3036 | 110.173.96.0/19 3037 | 110.173.192.0/19 3038 | 110.176.0.0/13 3039 | 110.184.0.0/13 3040 | 110.192.0.0/11 3041 | 110.228.0.0/14 3042 | 110.232.32.0/19 3043 | 110.236.0.0/15 3044 | 110.240.0.0/12 3045 | 111.0.0.0/10 3046 | 111.66.0.0/16 3047 | 111.67.192.0/20 3048 | 111.68.64.0/19 3049 | 111.72.0.0/13 3050 | 111.85.0.0/16 3051 | 111.91.192.0/19 3052 | 111.112.0.0/15 3053 | 111.114.0.0/15 3054 | 111.116.0.0/15 3055 | 111.118.200.0/21 3056 | 111.119.64.0/18 3057 | 111.119.128.0/19 3058 | 111.120.0.0/14 3059 | 111.124.0.0/16 3060 | 111.126.0.0/15 3061 | 111.128.0.0/11 3062 | 111.160.0.0/13 3063 | 111.170.0.0/16 3064 | 111.172.0.0/14 3065 | 111.176.0.0/13 3066 | 111.186.0.0/15 3067 | 111.192.0.0/12 3068 | 111.208.0.0/14 3069 | 111.212.0.0/14 3070 | 111.221.28.0/24 3071 | 111.221.128.0/17 3072 | 111.222.0.0/16 3073 | 111.223.240.0/22 3074 | 111.223.248.0/22 3075 | 111.224.0.0/14 3076 | 111.228.0.0/14 3077 | 111.235.96.0/19 3078 | 111.235.156.0/22 3079 | 111.235.160.0/19 3080 | 112.0.0.0/10 3081 | 112.64.0.0/15 3082 | 112.66.0.0/15 3083 | 112.73.0.0/16 3084 | 112.74.0.0/15 3085 | 112.80.0.0/13 3086 | 112.88.0.0/13 3087 | 112.96.0.0/15 3088 | 112.98.0.0/15 3089 | 112.100.0.0/14 3090 | 112.109.128.0/17 3091 | 112.111.0.0/16 3092 | 112.112.0.0/14 3093 | 112.116.0.0/15 3094 | 112.122.0.0/15 3095 | 112.124.0.0/14 3096 | 112.128.0.0/14 3097 | 112.132.0.0/16 3098 | 112.137.48.0/21 3099 | 112.192.0.0/14 3100 | 112.224.0.0/11 3101 | 113.0.0.0/13 3102 | 113.8.0.0/15 3103 | 113.11.192.0/19 3104 | 113.12.0.0/14 3105 | 113.16.0.0/15 3106 | 113.18.0.0/16 3107 | 113.24.0.0/14 3108 | 113.31.0.0/16 3109 | 113.44.0.0/14 3110 | 113.48.0.0/14 3111 | 113.52.160.0/19 3112 | 113.54.0.0/15 3113 | 113.56.0.0/15 3114 | 113.58.0.0/16 3115 | 113.59.0.0/17 3116 | 113.59.224.0/22 3117 | 113.62.0.0/15 3118 | 113.64.0.0/11 3119 | 113.96.0.0/12 3120 | 113.112.0.0/13 3121 | 113.120.0.0/13 3122 | 113.128.0.0/15 3123 | 113.130.96.0/20 3124 | 113.130.112.0/21 3125 | 113.132.0.0/14 3126 | 113.136.0.0/13 3127 | 113.194.0.0/15 3128 | 113.197.100.0/22 3129 | 113.200.0.0/15 3130 | 113.202.0.0/16 3131 | 113.204.0.0/14 3132 | 113.208.96.0/19 3133 | 113.208.128.0/17 3134 | 113.209.0.0/16 3135 | 113.212.0.0/18 3136 | 113.212.100.0/22 3137 | 113.212.184.0/21 3138 | 113.213.0.0/17 3139 | 113.214.0.0/15 3140 | 113.218.0.0/15 3141 | 113.220.0.0/14 3142 | 113.224.0.0/12 3143 | 113.240.0.0/13 3144 | 113.248.0.0/14 3145 | 114.28.0.0/16 3146 | 114.54.0.0/15 3147 | 114.60.0.0/14 3148 | 114.64.0.0/14 3149 | 114.68.0.0/16 3150 | 114.79.64.0/18 3151 | 114.80.0.0/12 3152 | 114.96.0.0/13 3153 | 114.104.0.0/14 3154 | 114.110.0.0/20 3155 | 114.110.64.0/18 3156 | 114.111.0.0/19 3157 | 114.111.160.0/19 3158 | 114.112.0.0/14 3159 | 114.116.0.0/15 3160 | 114.118.0.0/16 3161 | 114.119.0.0/17 3162 | 114.119.128.0/18 3163 | 114.119.192.0/21 3164 | 114.119.200.0/22 3165 | 114.119.204.0/22 3166 | 114.119.208.0/20 3167 | 114.119.224.0/19 3168 | 114.132.0.0/16 3169 | 114.135.0.0/16 3170 | 114.138.0.0/15 3171 | 114.141.64.0/21 3172 | 114.141.128.0/18 3173 | 114.196.0.0/15 3174 | 114.198.248.0/21 3175 | 114.208.0.0/14 3176 | 114.212.0.0/15 3177 | 114.214.0.0/16 3178 | 114.215.0.0/16 3179 | 114.216.0.0/13 3180 | 114.224.0.0/12 3181 | 114.240.0.0/12 3182 | 115.24.0.0/14 3183 | 115.28.0.0/15 3184 | 115.32.0.0/14 3185 | 115.44.0.0/15 3186 | 115.46.0.0/16 3187 | 115.47.0.0/16 3188 | 115.48.0.0/12 3189 | 115.69.64.0/20 3190 | 115.84.0.0/18 3191 | 115.84.192.0/19 3192 | 115.85.192.0/18 3193 | 115.100.0.0/14 3194 | 115.104.0.0/14 3195 | 115.120.0.0/14 3196 | 115.124.16.0/20 3197 | 115.148.0.0/14 3198 | 115.152.0.0/15 3199 | 115.154.0.0/15 3200 | 115.156.0.0/15 3201 | 115.158.0.0/16 3202 | 115.159.0.0/16 3203 | 115.166.64.0/19 3204 | 115.168.0.0/14 3205 | 115.172.0.0/14 3206 | 115.180.0.0/14 3207 | 115.190.0.0/15 3208 | 115.192.0.0/11 3209 | 115.224.0.0/12 3210 | 116.0.8.0/21 3211 | 116.0.24.0/21 3212 | 116.1.0.0/16 3213 | 116.2.0.0/15 3214 | 116.4.0.0/14 3215 | 116.8.0.0/14 3216 | 116.13.0.0/16 3217 | 116.16.0.0/12 3218 | 116.50.0.0/20 3219 | 116.52.0.0/14 3220 | 116.56.0.0/15 3221 | 116.58.128.0/20 3222 | 116.58.208.0/20 3223 | 116.60.0.0/14 3224 | 116.66.0.0/17 3225 | 116.69.0.0/16 3226 | 116.70.0.0/17 3227 | 116.76.0.0/15 3228 | 116.78.0.0/15 3229 | 116.85.0.0/16 3230 | 116.89.144.0/20 3231 | 116.90.80.0/20 3232 | 116.90.184.0/21 3233 | 116.95.0.0/16 3234 | 116.112.0.0/14 3235 | 116.116.0.0/15 3236 | 116.128.0.0/10 3237 | 116.192.0.0/16 3238 | 116.193.16.0/20 3239 | 116.193.32.0/19 3240 | 116.193.176.0/21 3241 | 116.194.0.0/15 3242 | 116.196.0.0/16 3243 | 116.198.0.0/16 3244 | 116.199.0.0/17 3245 | 116.199.128.0/19 3246 | 116.204.0.0/15 3247 | 116.207.0.0/16 3248 | 116.208.0.0/14 3249 | 116.212.160.0/20 3250 | 116.213.64.0/18 3251 | 116.213.128.0/17 3252 | 116.214.32.0/19 3253 | 116.214.64.0/20 3254 | 116.214.128.0/17 3255 | 116.215.0.0/16 3256 | 116.216.0.0/14 3257 | 116.224.0.0/12 3258 | 116.242.0.0/15 3259 | 116.244.0.0/15 3260 | 116.246.0.0/15 3261 | 116.248.0.0/15 3262 | 116.251.64.0/18 3263 | 116.252.0.0/15 3264 | 116.254.128.0/17 3265 | 116.255.128.0/17 3266 | 117.8.0.0/13 3267 | 117.21.0.0/16 3268 | 117.22.0.0/15 3269 | 117.24.0.0/13 3270 | 117.32.0.0/13 3271 | 117.40.0.0/14 3272 | 117.44.0.0/15 3273 | 117.48.0.0/14 3274 | 117.53.48.0/20 3275 | 117.53.176.0/20 3276 | 117.57.0.0/16 3277 | 117.58.0.0/17 3278 | 117.59.0.0/16 3279 | 117.60.0.0/14 3280 | 117.64.0.0/13 3281 | 117.72.0.0/15 3282 | 117.74.64.0/20 3283 | 117.74.80.0/20 3284 | 117.74.128.0/17 3285 | 117.75.0.0/16 3286 | 117.76.0.0/14 3287 | 117.80.0.0/12 3288 | 117.100.0.0/15 3289 | 117.103.16.0/20 3290 | 117.103.40.0/21 3291 | 117.103.72.0/21 3292 | 117.103.128.0/20 3293 | 117.104.168.0/21 3294 | 117.106.0.0/15 3295 | 117.112.0.0/13 3296 | 117.120.64.0/18 3297 | 117.120.128.0/17 3298 | 117.121.0.0/17 3299 | 117.121.128.0/18 3300 | 117.121.192.0/21 3301 | 117.122.128.0/17 3302 | 117.124.0.0/14 3303 | 117.128.0.0/10 3304 | 118.24.0.0/15 3305 | 118.26.0.0/16 3306 | 118.28.0.0/15 3307 | 118.30.0.0/16 3308 | 118.31.0.0/16 3309 | 118.64.0.0/15 3310 | 118.66.0.0/16 3311 | 118.67.112.0/20 3312 | 118.72.0.0/13 3313 | 118.80.0.0/15 3314 | 118.84.0.0/15 3315 | 118.88.32.0/19 3316 | 118.88.64.0/18 3317 | 118.88.128.0/17 3318 | 118.89.0.0/16 3319 | 118.91.240.0/20 3320 | 118.102.16.0/20 3321 | 118.102.32.0/21 3322 | 118.112.0.0/13 3323 | 118.120.0.0/14 3324 | 118.124.0.0/15 3325 | 118.126.0.0/16 3326 | 118.127.128.0/19 3327 | 118.132.0.0/14 3328 | 118.144.0.0/14 3329 | 118.178.0.0/16 3330 | 118.180.0.0/14 3331 | 118.184.0.0/17 3332 | 118.184.128.0/17 3333 | 118.186.0.0/15 3334 | 118.188.0.0/16 3335 | 118.190.0.0/16 3336 | 118.191.0.0/16 3337 | 118.192.0.0/16 3338 | 118.193.0.0/20 3339 | 118.193.16.0/20 3340 | 118.193.32.0/19 3341 | 118.193.64.0/20 3342 | 118.193.80.0/20 3343 | 118.193.96.0/19 3344 | 118.193.128.0/17 3345 | 118.194.0.0/17 3346 | 118.194.128.0/17 3347 | 118.195.0.0/17 3348 | 118.195.128.0/17 3349 | 118.196.0.0/14 3350 | 118.202.0.0/15 3351 | 118.204.0.0/14 3352 | 118.212.0.0/16 3353 | 118.213.0.0/16 3354 | 118.224.0.0/14 3355 | 118.228.0.0/15 3356 | 118.230.0.0/16 3357 | 118.239.0.0/16 3358 | 118.242.0.0/16 3359 | 118.244.0.0/14 3360 | 118.248.0.0/13 3361 | 119.0.0.0/15 3362 | 119.2.0.0/19 3363 | 119.2.128.0/17 3364 | 119.3.0.0/16 3365 | 119.4.0.0/14 3366 | 119.8.0.0/16 3367 | 119.10.0.0/17 3368 | 119.15.136.0/21 3369 | 119.16.0.0/16 3370 | 119.18.192.0/20 3371 | 119.18.208.0/21 3372 | 119.18.224.0/20 3373 | 119.18.240.0/20 3374 | 119.19.0.0/16 3375 | 119.20.0.0/14 3376 | 119.27.64.0/18 3377 | 119.27.128.0/19 3378 | 119.27.160.0/19 3379 | 119.27.192.0/18 3380 | 119.28.0.0/15 3381 | 119.30.48.0/20 3382 | 119.31.192.0/19 3383 | 119.32.0.0/14 3384 | 119.36.0.0/16 3385 | 119.37.0.0/17 3386 | 119.37.128.0/18 3387 | 119.37.192.0/18 3388 | 119.38.0.0/17 3389 | 119.38.128.0/18 3390 | 119.38.192.0/20 3391 | 119.38.208.0/20 3392 | 119.38.224.0/19 3393 | 119.39.0.0/16 3394 | 119.40.0.0/18 3395 | 119.40.64.0/20 3396 | 119.40.128.0/17 3397 | 119.41.0.0/16 3398 | 119.42.0.0/19 3399 | 119.42.128.0/21 3400 | 119.42.136.0/21 3401 | 119.42.224.0/19 3402 | 119.44.0.0/15 3403 | 119.48.0.0/13 3404 | 119.57.0.0/16 3405 | 119.58.0.0/16 3406 | 119.59.128.0/17 3407 | 119.60.0.0/16 3408 | 119.61.0.0/16 3409 | 119.62.0.0/16 3410 | 119.63.32.0/19 3411 | 119.75.208.0/20 3412 | 119.78.0.0/15 3413 | 119.80.0.0/16 3414 | 119.82.208.0/20 3415 | 119.84.0.0/14 3416 | 119.88.0.0/14 3417 | 119.96.0.0/13 3418 | 119.108.0.0/15 3419 | 119.112.0.0/13 3420 | 119.120.0.0/13 3421 | 119.128.0.0/12 3422 | 119.144.0.0/14 3423 | 119.148.160.0/20 3424 | 119.148.176.0/20 3425 | 119.151.192.0/18 3426 | 119.160.200.0/21 3427 | 119.161.128.0/17 3428 | 119.162.0.0/15 3429 | 119.164.0.0/14 3430 | 119.176.0.0/12 3431 | 119.232.0.0/15 3432 | 119.235.128.0/18 3433 | 119.248.0.0/14 3434 | 119.252.96.0/21 3435 | 119.252.240.0/20 3436 | 119.253.0.0/16 3437 | 119.254.0.0/15 3438 | 120.0.0.0/12 3439 | 120.24.0.0/14 3440 | 120.30.0.0/16 3441 | 120.31.0.0/16 3442 | 120.32.0.0/13 3443 | 120.40.0.0/14 3444 | 120.44.0.0/14 3445 | 120.48.0.0/15 3446 | 120.52.0.0/16 3447 | 120.53.0.0/16 3448 | 120.54.0.0/15 3449 | 120.64.0.0/14 3450 | 120.68.0.0/14 3451 | 120.72.32.0/19 3452 | 120.72.128.0/17 3453 | 120.76.0.0/14 3454 | 120.80.0.0/13 3455 | 120.88.8.0/21 3456 | 120.90.0.0/15 3457 | 120.92.0.0/16 3458 | 120.94.0.0/16 3459 | 120.95.0.0/16 3460 | 120.128.0.0/14 3461 | 120.132.0.0/17 3462 | 120.132.128.0/17 3463 | 120.133.0.0/16 3464 | 120.134.0.0/15 3465 | 120.136.128.0/18 3466 | 120.137.0.0/17 3467 | 120.143.128.0/19 3468 | 120.192.0.0/10 3469 | 121.0.8.0/21 3470 | 121.0.16.0/20 3471 | 121.4.0.0/15 3472 | 121.8.0.0/13 3473 | 121.16.0.0/13 3474 | 121.24.0.0/14 3475 | 121.28.0.0/15 3476 | 121.30.0.0/16 3477 | 121.31.0.0/16 3478 | 121.32.0.0/14 3479 | 121.36.0.0/16 3480 | 121.37.0.0/16 3481 | 121.38.0.0/15 3482 | 121.40.0.0/14 3483 | 121.46.0.0/18 3484 | 121.46.128.0/17 3485 | 121.47.0.0/16 3486 | 121.48.0.0/15 3487 | 121.50.8.0/21 3488 | 121.51.0.0/16 3489 | 121.52.160.0/19 3490 | 121.52.208.0/20 3491 | 121.52.224.0/19 3492 | 121.54.176.0/21 3493 | 121.55.0.0/18 3494 | 121.56.0.0/15 3495 | 121.58.0.0/17 3496 | 121.58.136.0/21 3497 | 121.58.144.0/20 3498 | 121.58.160.0/21 3499 | 121.59.0.0/16 3500 | 121.60.0.0/14 3501 | 121.68.0.0/14 3502 | 121.76.0.0/15 3503 | 121.79.128.0/18 3504 | 121.89.0.0/16 3505 | 121.100.128.0/17 3506 | 121.101.0.0/18 3507 | 121.101.208.0/20 3508 | 121.192.0.0/16 3509 | 121.193.0.0/16 3510 | 121.194.0.0/15 3511 | 121.196.0.0/14 3512 | 121.200.192.0/21 3513 | 121.201.0.0/16 3514 | 121.204.0.0/14 3515 | 121.224.0.0/12 3516 | 121.248.0.0/14 3517 | 121.255.0.0/16 3518 | 122.0.64.0/18 3519 | 122.0.128.0/17 3520 | 122.4.0.0/14 3521 | 122.8.0.0/16 3522 | 122.9.0.0/16 3523 | 122.10.0.0/17 3524 | 122.10.128.0/17 3525 | 122.11.0.0/17 3526 | 122.12.0.0/16 3527 | 122.13.0.0/16 3528 | 122.14.0.0/16 3529 | 122.48.0.0/16 3530 | 122.49.0.0/18 3531 | 122.51.0.0/16 3532 | 122.64.0.0/11 3533 | 122.96.0.0/15 3534 | 122.102.0.0/20 3535 | 122.102.64.0/20 3536 | 122.102.80.0/20 3537 | 122.112.0.0/14 3538 | 122.119.0.0/16 3539 | 122.128.120.0/21 3540 | 122.136.0.0/13 3541 | 122.144.128.0/17 3542 | 122.152.192.0/18 3543 | 122.156.0.0/14 3544 | 122.188.0.0/14 3545 | 122.192.0.0/14 3546 | 122.198.0.0/16 3547 | 122.200.64.0/18 3548 | 122.201.48.0/20 3549 | 122.204.0.0/14 3550 | 122.224.0.0/12 3551 | 122.240.0.0/13 3552 | 122.248.24.0/21 3553 | 122.248.48.0/20 3554 | 122.255.64.0/21 3555 | 123.0.128.0/18 3556 | 123.4.0.0/14 3557 | 123.8.0.0/13 3558 | 123.49.128.0/17 3559 | 123.50.160.0/19 3560 | 123.52.0.0/14 3561 | 123.56.0.0/15 3562 | 123.58.0.0/17 3563 | 123.58.128.0/18 3564 | 123.58.192.0/19 3565 | 123.58.224.0/20 3566 | 123.58.240.0/20 3567 | 123.59.0.0/16 3568 | 123.60.0.0/16 3569 | 123.61.0.0/16 3570 | 123.62.0.0/16 3571 | 123.64.0.0/11 3572 | 123.96.0.0/15 3573 | 123.98.0.0/17 3574 | 123.99.128.0/17 3575 | 123.100.0.0/19 3576 | 123.101.0.0/16 3577 | 123.103.0.0/17 3578 | 123.108.128.0/20 3579 | 123.108.208.0/20 3580 | 123.112.0.0/12 3581 | 123.128.0.0/13 3582 | 123.136.80.0/20 3583 | 123.137.0.0/16 3584 | 123.138.0.0/15 3585 | 123.144.0.0/14 3586 | 123.148.0.0/16 3587 | 123.149.0.0/16 3588 | 123.150.0.0/15 3589 | 123.152.0.0/13 3590 | 123.160.0.0/14 3591 | 123.164.0.0/14 3592 | 123.168.0.0/14 3593 | 123.172.0.0/15 3594 | 123.174.0.0/15 3595 | 123.176.60.0/22 3596 | 123.176.80.0/20 3597 | 123.177.0.0/16 3598 | 123.178.0.0/15 3599 | 123.180.0.0/14 3600 | 123.184.0.0/14 3601 | 123.188.0.0/14 3602 | 123.196.0.0/15 3603 | 123.199.128.0/17 3604 | 123.206.0.0/15 3605 | 123.232.0.0/14 3606 | 123.242.0.0/17 3607 | 123.244.0.0/14 3608 | 123.249.0.0/16 3609 | 123.253.0.0/16 3610 | 124.6.64.0/18 3611 | 124.14.0.0/15 3612 | 124.16.0.0/15 3613 | 124.20.0.0/16 3614 | 124.21.0.0/20 3615 | 124.21.16.0/20 3616 | 124.21.32.0/19 3617 | 124.21.64.0/18 3618 | 124.21.128.0/17 3619 | 124.22.0.0/15 3620 | 124.28.192.0/18 3621 | 124.29.0.0/17 3622 | 124.31.0.0/16 3623 | 124.40.112.0/20 3624 | 124.40.128.0/18 3625 | 124.40.192.0/19 3626 | 124.42.0.0/17 3627 | 124.42.128.0/17 3628 | 124.47.0.0/18 3629 | 124.64.0.0/15 3630 | 124.66.0.0/17 3631 | 124.67.0.0/16 3632 | 124.68.0.0/14 3633 | 124.72.0.0/16 3634 | 124.73.0.0/16 3635 | 124.74.0.0/15 3636 | 124.76.0.0/14 3637 | 124.88.0.0/16 3638 | 124.89.0.0/17 3639 | 124.89.128.0/17 3640 | 124.90.0.0/15 3641 | 124.92.0.0/14 3642 | 124.108.8.0/21 3643 | 124.108.40.0/21 3644 | 124.109.96.0/21 3645 | 124.112.0.0/15 3646 | 124.114.0.0/15 3647 | 124.116.0.0/16 3648 | 124.117.0.0/16 3649 | 124.118.0.0/15 3650 | 124.126.0.0/15 3651 | 124.128.0.0/13 3652 | 124.147.128.0/17 3653 | 124.151.0.0/16 3654 | 124.152.0.0/16 3655 | 124.156.0.0/16 3656 | 124.160.0.0/16 3657 | 124.161.0.0/16 3658 | 124.162.0.0/16 3659 | 124.163.0.0/16 3660 | 124.164.0.0/14 3661 | 124.172.0.0/15 3662 | 124.174.0.0/15 3663 | 124.192.0.0/15 3664 | 124.196.0.0/16 3665 | 124.200.0.0/13 3666 | 124.220.0.0/14 3667 | 124.224.0.0/16 3668 | 124.225.0.0/16 3669 | 124.226.0.0/15 3670 | 124.228.0.0/14 3671 | 124.232.0.0/15 3672 | 124.234.0.0/15 3673 | 124.236.0.0/14 3674 | 124.240.0.0/17 3675 | 124.240.128.0/18 3676 | 124.242.0.0/16 3677 | 124.243.192.0/18 3678 | 124.248.0.0/17 3679 | 124.249.0.0/16 3680 | 124.250.0.0/15 3681 | 124.254.0.0/18 3682 | 125.31.192.0/18 3683 | 125.32.0.0/16 3684 | 125.33.0.0/16 3685 | 125.34.0.0/16 3686 | 125.35.0.0/17 3687 | 125.35.128.0/17 3688 | 125.36.0.0/14 3689 | 125.40.0.0/13 3690 | 125.58.128.0/17 3691 | 125.61.128.0/17 3692 | 125.62.0.0/18 3693 | 125.64.0.0/13 3694 | 125.72.0.0/16 3695 | 125.73.0.0/16 3696 | 125.74.0.0/15 3697 | 125.76.0.0/17 3698 | 125.76.128.0/17 3699 | 125.77.0.0/16 3700 | 125.78.0.0/15 3701 | 125.80.0.0/13 3702 | 125.88.0.0/13 3703 | 125.96.0.0/15 3704 | 125.98.0.0/16 3705 | 125.104.0.0/13 3706 | 125.112.0.0/12 3707 | 125.169.0.0/16 3708 | 125.171.0.0/16 3709 | 125.208.0.0/18 3710 | 125.210.0.0/16 3711 | 125.211.0.0/16 3712 | 125.213.0.0/17 3713 | 125.214.96.0/19 3714 | 125.215.0.0/18 3715 | 125.216.0.0/15 3716 | 125.218.0.0/16 3717 | 125.219.0.0/16 3718 | 125.220.0.0/15 3719 | 125.222.0.0/15 3720 | 125.254.128.0/18 3721 | 125.254.192.0/18 3722 | 139.9.0.0/16 3723 | 139.129.0.0/16 3724 | 139.148.0.0/16 3725 | 139.155.0.0/16 3726 | 139.159.0.0/16 3727 | 139.170.0.0/16 3728 | 139.176.0.0/16 3729 | 139.183.0.0/16 3730 | 139.186.0.0/16 3731 | 139.189.0.0/16 3732 | 139.196.0.0/14 3733 | 139.200.0.0/13 3734 | 139.208.0.0/13 3735 | 139.217.0.0/16 3736 | 139.219.0.0/16 3737 | 139.220.0.0/15 3738 | 139.224.0.0/16 3739 | 139.226.0.0/15 3740 | 140.75.0.0/16 3741 | 140.143.0.0/16 3742 | 140.205.0.0/16 3743 | 140.206.0.0/15 3744 | 140.210.0.0/16 3745 | 140.224.0.0/16 3746 | 140.237.0.0/16 3747 | 140.240.0.0/16 3748 | 140.243.0.0/16 3749 | 140.246.0.0/16 3750 | 140.249.0.0/16 3751 | 140.250.0.0/16 3752 | 140.255.0.0/16 3753 | 144.0.0.0/16 3754 | 144.7.0.0/16 3755 | 144.12.0.0/16 3756 | 144.52.0.0/16 3757 | 144.123.0.0/16 3758 | 144.255.0.0/16 3759 | 150.0.0.0/16 3760 | 150.115.0.0/16 3761 | 150.121.0.0/16 3762 | 150.122.0.0/16 3763 | 150.129.136.0/22 3764 | 150.129.152.0/22 3765 | 150.129.192.0/22 3766 | 150.129.216.0/22 3767 | 150.129.252.0/22 3768 | 150.138.0.0/15 3769 | 150.223.0.0/16 3770 | 150.242.0.0/22 3771 | 150.242.4.0/22 3772 | 150.242.8.0/22 3773 | 150.242.28.0/22 3774 | 150.242.44.0/22 3775 | 150.242.48.0/22 3776 | 150.242.52.0/22 3777 | 150.242.56.0/22 3778 | 150.242.76.0/22 3779 | 150.242.80.0/22 3780 | 150.242.92.0/22 3781 | 150.242.96.0/22 3782 | 150.242.112.0/22 3783 | 150.242.116.0/22 3784 | 150.242.120.0/22 3785 | 150.242.152.0/22 3786 | 150.242.156.0/22 3787 | 150.242.160.0/22 3788 | 150.242.164.0/22 3789 | 150.242.168.0/22 3790 | 150.242.184.0/22 3791 | 150.242.188.0/22 3792 | 150.242.192.0/22 3793 | 150.242.212.0/22 3794 | 150.242.224.0/22 3795 | 150.242.232.0/22 3796 | 150.242.236.0/22 3797 | 150.242.240.0/22 3798 | 150.242.244.0/22 3799 | 150.242.248.0/22 3800 | 150.255.0.0/16 3801 | 152.104.128.0/17 3802 | 153.0.0.0/16 3803 | 153.3.0.0/16 3804 | 153.34.0.0/15 3805 | 153.36.0.0/15 3806 | 153.99.0.0/16 3807 | 153.101.0.0/16 3808 | 153.118.0.0/15 3809 | 157.0.0.0/16 3810 | 157.18.0.0/16 3811 | 157.61.0.0/16 3812 | 157.122.0.0/16 3813 | 157.148.0.0/16 3814 | 157.156.0.0/16 3815 | 157.255.0.0/16 3816 | 159.226.0.0/16 3817 | 161.207.0.0/16 3818 | 162.105.0.0/16 3819 | 163.0.0.0/16 3820 | 163.47.4.0/22 3821 | 163.53.0.0/22 3822 | 163.53.4.0/22 3823 | 163.53.8.0/22 3824 | 163.53.12.0/22 3825 | 163.53.36.0/22 3826 | 163.53.40.0/22 3827 | 163.53.44.0/22 3828 | 163.53.48.0/22 3829 | 163.53.52.0/22 3830 | 163.53.56.0/22 3831 | 163.53.60.0/22 3832 | 163.53.64.0/22 3833 | 163.53.88.0/22 3834 | 163.53.92.0/22 3835 | 163.53.96.0/22 3836 | 163.53.100.0/22 3837 | 163.53.104.0/22 3838 | 163.53.108.0/22 3839 | 163.53.112.0/22 3840 | 163.53.116.0/22 3841 | 163.53.120.0/22 3842 | 163.53.124.0/22 3843 | 163.53.128.0/22 3844 | 163.53.132.0/22 3845 | 163.53.136.0/22 3846 | 163.53.160.0/22 3847 | 163.53.164.0/22 3848 | 163.53.168.0/22 3849 | 163.53.172.0/22 3850 | 163.53.188.0/22 3851 | 163.53.220.0/22 3852 | 163.53.240.0/22 3853 | 163.125.0.0/16 3854 | 163.142.0.0/16 3855 | 163.177.0.0/16 3856 | 163.179.0.0/16 3857 | 163.204.0.0/16 3858 | 166.111.0.0/16 3859 | 167.139.0.0/16 3860 | 167.189.0.0/16 3861 | 167.220.244.0/22 3862 | 168.160.0.0/16 3863 | 171.8.0.0/13 3864 | 171.34.0.0/15 3865 | 171.36.0.0/14 3866 | 171.40.0.0/13 3867 | 171.80.0.0/14 3868 | 171.84.0.0/14 3869 | 171.88.0.0/13 3870 | 171.104.0.0/13 3871 | 171.112.0.0/14 3872 | 171.116.0.0/14 3873 | 171.120.0.0/13 3874 | 171.208.0.0/12 3875 | 175.0.0.0/12 3876 | 175.16.0.0/13 3877 | 175.24.0.0/14 3878 | 175.30.0.0/15 3879 | 175.42.0.0/15 3880 | 175.44.0.0/16 3881 | 175.46.0.0/15 3882 | 175.48.0.0/12 3883 | 175.64.0.0/11 3884 | 175.102.0.0/16 3885 | 175.106.128.0/17 3886 | 175.146.0.0/15 3887 | 175.148.0.0/14 3888 | 175.152.0.0/14 3889 | 175.160.0.0/12 3890 | 175.178.0.0/16 3891 | 175.184.128.0/18 3892 | 175.185.0.0/16 3893 | 175.186.0.0/15 3894 | 175.188.0.0/14 3895 | 180.76.0.0/16 3896 | 180.77.0.0/16 3897 | 180.78.0.0/15 3898 | 180.84.0.0/15 3899 | 180.86.0.0/16 3900 | 180.88.0.0/14 3901 | 180.94.56.0/21 3902 | 180.94.96.0/20 3903 | 180.95.128.0/17 3904 | 180.96.0.0/11 3905 | 180.129.128.0/17 3906 | 180.130.0.0/16 3907 | 180.136.0.0/13 3908 | 180.148.16.0/21 3909 | 180.148.152.0/21 3910 | 180.148.216.0/21 3911 | 180.148.224.0/19 3912 | 180.149.128.0/19 3913 | 180.150.160.0/19 3914 | 180.152.0.0/13 3915 | 180.160.0.0/12 3916 | 180.178.192.0/18 3917 | 180.184.0.0/14 3918 | 180.188.0.0/17 3919 | 180.189.148.0/22 3920 | 180.200.252.0/22 3921 | 180.201.0.0/16 3922 | 180.202.0.0/15 3923 | 180.208.0.0/15 3924 | 180.210.224.0/19 3925 | 180.212.0.0/15 3926 | 180.222.224.0/19 3927 | 180.223.0.0/16 3928 | 180.233.0.0/18 3929 | 180.233.64.0/19 3930 | 180.235.64.0/19 3931 | 182.16.192.0/19 3932 | 182.18.0.0/17 3933 | 182.23.184.0/21 3934 | 182.23.200.0/21 3935 | 182.32.0.0/12 3936 | 182.48.96.0/19 3937 | 182.49.0.0/16 3938 | 182.50.0.0/20 3939 | 182.50.112.0/20 3940 | 182.51.0.0/16 3941 | 182.54.0.0/17 3942 | 182.61.0.0/16 3943 | 182.80.0.0/14 3944 | 182.84.0.0/14 3945 | 182.88.0.0/14 3946 | 182.92.0.0/16 3947 | 182.96.0.0/12 3948 | 182.112.0.0/12 3949 | 182.128.0.0/12 3950 | 182.144.0.0/13 3951 | 182.157.0.0/16 3952 | 182.160.64.0/19 3953 | 182.174.0.0/15 3954 | 182.200.0.0/13 3955 | 182.236.128.0/17 3956 | 182.238.0.0/16 3957 | 182.239.0.0/19 3958 | 182.240.0.0/13 3959 | 182.254.0.0/16 3960 | 183.0.0.0/10 3961 | 183.64.0.0/13 3962 | 183.78.180.0/22 3963 | 183.81.180.0/22 3964 | 183.84.0.0/15 3965 | 183.91.128.0/22 3966 | 183.91.136.0/21 3967 | 183.91.144.0/20 3968 | 183.92.0.0/14 3969 | 183.128.0.0/11 3970 | 183.160.0.0/13 3971 | 183.168.0.0/15 3972 | 183.170.0.0/16 3973 | 183.172.0.0/14 3974 | 183.182.0.0/19 3975 | 183.184.0.0/13 3976 | 183.192.0.0/10 3977 | 192.124.154.0/24 3978 | 192.188.170.0/24 3979 | 202.0.100.0/23 3980 | 202.0.122.0/23 3981 | 202.0.176.0/22 3982 | 202.3.128.0/23 3983 | 202.4.128.0/19 3984 | 202.4.252.0/22 3985 | 202.6.6.0/23 3986 | 202.6.66.0/23 3987 | 202.6.72.0/23 3988 | 202.6.87.0/24 3989 | 202.6.88.0/23 3990 | 202.6.92.0/23 3991 | 202.6.103.0/24 3992 | 202.6.108.0/24 3993 | 202.6.110.0/23 3994 | 202.6.114.0/24 3995 | 202.6.176.0/20 3996 | 202.8.0.0/24 3997 | 202.8.2.0/23 3998 | 202.8.4.0/23 3999 | 202.8.12.0/24 4000 | 202.8.24.0/24 4001 | 202.8.77.0/24 4002 | 202.8.128.0/19 4003 | 202.8.192.0/20 4004 | 202.9.32.0/24 4005 | 202.9.34.0/23 4006 | 202.9.48.0/23 4007 | 202.9.51.0/24 4008 | 202.9.52.0/23 4009 | 202.9.54.0/24 4010 | 202.9.57.0/24 4011 | 202.9.58.0/23 4012 | 202.10.64.0/20 4013 | 202.12.1.0/24 4014 | 202.12.2.0/24 4015 | 202.12.17.0/24 4016 | 202.12.18.0/24 4017 | 202.12.19.0/24 4018 | 202.12.72.0/24 4019 | 202.12.84.0/23 4020 | 202.12.96.0/24 4021 | 202.12.98.0/23 4022 | 202.12.106.0/24 4023 | 202.12.111.0/24 4024 | 202.12.116.0/24 4025 | 202.14.64.0/23 4026 | 202.14.69.0/24 4027 | 202.14.73.0/24 4028 | 202.14.74.0/23 4029 | 202.14.76.0/24 4030 | 202.14.78.0/23 4031 | 202.14.88.0/24 4032 | 202.14.97.0/24 4033 | 202.14.104.0/23 4034 | 202.14.108.0/23 4035 | 202.14.111.0/24 4036 | 202.14.114.0/23 4037 | 202.14.118.0/23 4038 | 202.14.124.0/23 4039 | 202.14.127.0/24 4040 | 202.14.129.0/24 4041 | 202.14.135.0/24 4042 | 202.14.136.0/24 4043 | 202.14.149.0/24 4044 | 202.14.151.0/24 4045 | 202.14.157.0/24 4046 | 202.14.158.0/23 4047 | 202.14.169.0/24 4048 | 202.14.170.0/23 4049 | 202.14.176.0/24 4050 | 202.14.184.0/23 4051 | 202.14.208.0/23 4052 | 202.14.213.0/24 4053 | 202.14.219.0/24 4054 | 202.14.220.0/24 4055 | 202.14.222.0/23 4056 | 202.14.225.0/24 4057 | 202.14.226.0/23 4058 | 202.14.231.0/24 4059 | 202.14.235.0/24 4060 | 202.14.236.0/23 4061 | 202.14.238.0/24 4062 | 202.14.239.0/24 4063 | 202.14.246.0/24 4064 | 202.14.251.0/24 4065 | 202.20.66.0/24 4066 | 202.20.79.0/24 4067 | 202.20.87.0/24 4068 | 202.20.88.0/23 4069 | 202.20.90.0/24 4070 | 202.20.94.0/23 4071 | 202.20.114.0/24 4072 | 202.20.117.0/24 4073 | 202.20.120.0/24 4074 | 202.20.125.0/24 4075 | 202.20.127.0/24 4076 | 202.21.131.0/24 4077 | 202.21.132.0/24 4078 | 202.21.141.0/24 4079 | 202.21.142.0/24 4080 | 202.21.147.0/24 4081 | 202.21.148.0/24 4082 | 202.21.150.0/23 4083 | 202.21.152.0/23 4084 | 202.21.154.0/24 4085 | 202.21.156.0/24 4086 | 202.22.248.0/22 4087 | 202.22.252.0/22 4088 | 202.27.136.0/23 4089 | 202.38.0.0/23 4090 | 202.38.2.0/23 4091 | 202.38.8.0/21 4092 | 202.38.48.0/20 4093 | 202.38.64.0/19 4094 | 202.38.96.0/19 4095 | 202.38.128.0/23 4096 | 202.38.130.0/23 4097 | 202.38.132.0/23 4098 | 202.38.134.0/24 4099 | 202.38.135.0/24 4100 | 202.38.136.0/23 4101 | 202.38.138.0/24 4102 | 202.38.140.0/23 4103 | 202.38.142.0/23 4104 | 202.38.146.0/23 4105 | 202.38.149.0/24 4106 | 202.38.150.0/23 4107 | 202.38.152.0/23 4108 | 202.38.154.0/23 4109 | 202.38.156.0/24 4110 | 202.38.158.0/23 4111 | 202.38.160.0/23 4112 | 202.38.164.0/22 4113 | 202.38.168.0/23 4114 | 202.38.170.0/24 4115 | 202.38.171.0/24 4116 | 202.38.176.0/23 4117 | 202.38.184.0/21 4118 | 202.38.192.0/18 4119 | 202.40.4.0/23 4120 | 202.40.7.0/24 4121 | 202.40.15.0/24 4122 | 202.40.135.0/24 4123 | 202.40.136.0/24 4124 | 202.40.140.0/24 4125 | 202.40.143.0/24 4126 | 202.40.144.0/23 4127 | 202.40.150.0/24 4128 | 202.40.155.0/24 4129 | 202.40.156.0/24 4130 | 202.40.158.0/23 4131 | 202.40.162.0/24 4132 | 202.41.8.0/23 4133 | 202.41.11.0/24 4134 | 202.41.12.0/23 4135 | 202.41.128.0/24 4136 | 202.41.130.0/23 4137 | 202.41.152.0/21 4138 | 202.41.192.0/24 4139 | 202.41.240.0/20 4140 | 202.43.76.0/22 4141 | 202.43.144.0/20 4142 | 202.44.16.0/20 4143 | 202.44.67.0/24 4144 | 202.44.74.0/24 4145 | 202.44.129.0/24 4146 | 202.44.132.0/23 4147 | 202.44.146.0/23 4148 | 202.45.0.0/23 4149 | 202.45.2.0/24 4150 | 202.45.15.0/24 4151 | 202.45.16.0/20 4152 | 202.46.16.0/23 4153 | 202.46.18.0/24 4154 | 202.46.20.0/23 4155 | 202.46.32.0/19 4156 | 202.46.128.0/24 4157 | 202.46.224.0/20 4158 | 202.47.82.0/23 4159 | 202.47.126.0/24 4160 | 202.47.128.0/24 4161 | 202.47.130.0/23 4162 | 202.57.240.0/20 4163 | 202.58.0.0/24 4164 | 202.59.0.0/24 4165 | 202.59.212.0/22 4166 | 202.59.232.0/23 4167 | 202.59.236.0/24 4168 | 202.60.48.0/21 4169 | 202.60.96.0/21 4170 | 202.60.112.0/20 4171 | 202.60.132.0/22 4172 | 202.60.136.0/21 4173 | 202.60.144.0/20 4174 | 202.62.112.0/22 4175 | 202.62.248.0/22 4176 | 202.62.252.0/24 4177 | 202.62.255.0/24 4178 | 202.63.81.0/24 4179 | 202.63.82.0/23 4180 | 202.63.84.0/22 4181 | 202.63.88.0/21 4182 | 202.63.160.0/19 4183 | 202.63.248.0/22 4184 | 202.65.0.0/21 4185 | 202.65.8.0/23 4186 | 202.67.0.0/22 4187 | 202.69.4.0/22 4188 | 202.69.16.0/20 4189 | 202.70.0.0/19 4190 | 202.70.96.0/20 4191 | 202.70.192.0/20 4192 | 202.72.40.0/21 4193 | 202.72.80.0/20 4194 | 202.73.128.0/22 4195 | 202.74.8.0/21 4196 | 202.74.80.0/20 4197 | 202.74.254.0/23 4198 | 202.75.208.0/20 4199 | 202.75.252.0/22 4200 | 202.76.252.0/22 4201 | 202.77.80.0/21 4202 | 202.77.92.0/22 4203 | 202.78.8.0/21 4204 | 202.79.224.0/21 4205 | 202.79.248.0/22 4206 | 202.80.192.0/21 4207 | 202.80.200.0/21 4208 | 202.81.0.0/22 4209 | 202.83.252.0/22 4210 | 202.84.0.0/22 4211 | 202.84.4.0/22 4212 | 202.84.8.0/21 4213 | 202.84.16.0/23 4214 | 202.84.24.0/21 4215 | 202.85.208.0/20 4216 | 202.86.249.0/24 4217 | 202.86.252.0/22 4218 | 202.87.80.0/20 4219 | 202.89.8.0/21 4220 | 202.89.232.0/21 4221 | 202.90.0.0/22 4222 | 202.90.112.0/20 4223 | 202.90.196.0/24 4224 | 202.90.224.0/20 4225 | 202.91.0.0/22 4226 | 202.91.96.0/20 4227 | 202.91.128.0/22 4228 | 202.91.176.0/20 4229 | 202.91.224.0/19 4230 | 202.92.0.0/22 4231 | 202.92.8.0/21 4232 | 202.92.48.0/20 4233 | 202.92.252.0/22 4234 | 202.93.0.0/22 4235 | 202.93.252.0/22 4236 | 202.94.92.0/22 4237 | 202.95.0.0/22 4238 | 202.95.4.0/22 4239 | 202.95.8.0/21 4240 | 202.95.16.0/20 4241 | 202.95.240.0/21 4242 | 202.95.252.0/22 4243 | 202.96.0.0/18 4244 | 202.96.64.0/21 4245 | 202.96.72.0/21 4246 | 202.96.80.0/20 4247 | 202.96.96.0/21 4248 | 202.96.104.0/21 4249 | 202.96.112.0/20 4250 | 202.96.128.0/21 4251 | 202.96.136.0/21 4252 | 202.96.144.0/20 4253 | 202.96.160.0/21 4254 | 202.96.168.0/21 4255 | 202.96.176.0/20 4256 | 202.96.192.0/21 4257 | 202.96.200.0/21 4258 | 202.96.208.0/20 4259 | 202.96.224.0/21 4260 | 202.96.232.0/21 4261 | 202.96.240.0/20 4262 | 202.97.0.0/21 4263 | 202.97.8.0/21 4264 | 202.97.16.0/20 4265 | 202.97.32.0/19 4266 | 202.97.64.0/19 4267 | 202.97.96.0/20 4268 | 202.97.112.0/20 4269 | 202.97.128.0/18 4270 | 202.97.192.0/19 4271 | 202.97.224.0/21 4272 | 202.97.232.0/21 4273 | 202.97.240.0/20 4274 | 202.98.0.0/21 4275 | 202.98.8.0/21 4276 | 202.98.16.0/20 4277 | 202.98.32.0/21 4278 | 202.98.40.0/21 4279 | 202.98.48.0/20 4280 | 202.98.64.0/19 4281 | 202.98.96.0/21 4282 | 202.98.104.0/21 4283 | 202.98.112.0/20 4284 | 202.98.128.0/19 4285 | 202.98.160.0/21 4286 | 202.98.168.0/21 4287 | 202.98.176.0/20 4288 | 202.98.192.0/21 4289 | 202.98.200.0/21 4290 | 202.98.208.0/20 4291 | 202.98.224.0/21 4292 | 202.98.232.0/21 4293 | 202.98.240.0/20 4294 | 202.99.0.0/18 4295 | 202.99.64.0/19 4296 | 202.99.96.0/21 4297 | 202.99.104.0/21 4298 | 202.99.112.0/20 4299 | 202.99.128.0/19 4300 | 202.99.160.0/21 4301 | 202.99.168.0/21 4302 | 202.99.176.0/20 4303 | 202.99.192.0/21 4304 | 202.99.200.0/21 4305 | 202.99.208.0/20 4306 | 202.99.224.0/21 4307 | 202.99.232.0/21 4308 | 202.99.240.0/20 4309 | 202.100.0.0/21 4310 | 202.100.8.0/21 4311 | 202.100.16.0/20 4312 | 202.100.32.0/19 4313 | 202.100.64.0/21 4314 | 202.100.72.0/21 4315 | 202.100.80.0/20 4316 | 202.100.96.0/21 4317 | 202.100.104.0/21 4318 | 202.100.112.0/20 4319 | 202.100.128.0/21 4320 | 202.100.136.0/21 4321 | 202.100.144.0/20 4322 | 202.100.160.0/21 4323 | 202.100.168.0/21 4324 | 202.100.176.0/20 4325 | 202.100.192.0/21 4326 | 202.100.200.0/21 4327 | 202.100.208.0/20 4328 | 202.100.224.0/19 4329 | 202.101.0.0/18 4330 | 202.101.64.0/19 4331 | 202.101.96.0/19 4332 | 202.101.128.0/18 4333 | 202.101.192.0/19 4334 | 202.101.224.0/21 4335 | 202.101.232.0/21 4336 | 202.101.240.0/20 4337 | 202.102.0.0/19 4338 | 202.102.32.0/19 4339 | 202.102.64.0/18 4340 | 202.102.128.0/21 4341 | 202.102.136.0/21 4342 | 202.102.144.0/20 4343 | 202.102.160.0/19 4344 | 202.102.192.0/21 4345 | 202.102.200.0/21 4346 | 202.102.208.0/20 4347 | 202.102.224.0/21 4348 | 202.102.232.0/21 4349 | 202.102.240.0/20 4350 | 202.103.0.0/21 4351 | 202.103.8.0/21 4352 | 202.103.16.0/20 4353 | 202.103.32.0/19 4354 | 202.103.64.0/19 4355 | 202.103.96.0/21 4356 | 202.103.104.0/21 4357 | 202.103.112.0/20 4358 | 202.103.128.0/18 4359 | 202.103.192.0/19 4360 | 202.103.224.0/21 4361 | 202.103.232.0/21 4362 | 202.103.240.0/20 4363 | 202.104.0.0/15 4364 | 202.106.0.0/16 4365 | 202.107.0.0/17 4366 | 202.107.128.0/17 4367 | 202.108.0.0/16 4368 | 202.109.0.0/16 4369 | 202.110.0.0/18 4370 | 202.110.64.0/18 4371 | 202.110.128.0/18 4372 | 202.110.192.0/18 4373 | 202.111.0.0/17 4374 | 202.111.128.0/19 4375 | 202.111.160.0/19 4376 | 202.111.192.0/18 4377 | 202.112.0.0/16 4378 | 202.113.0.0/20 4379 | 202.113.16.0/20 4380 | 202.113.32.0/19 4381 | 202.113.64.0/18 4382 | 202.113.128.0/18 4383 | 202.113.192.0/19 4384 | 202.113.224.0/20 4385 | 202.113.240.0/20 4386 | 202.114.0.0/19 4387 | 202.114.32.0/19 4388 | 202.114.64.0/18 4389 | 202.114.128.0/17 4390 | 202.115.0.0/19 4391 | 202.115.32.0/19 4392 | 202.115.64.0/18 4393 | 202.115.128.0/17 4394 | 202.116.0.0/19 4395 | 202.116.32.0/20 4396 | 202.116.48.0/20 4397 | 202.116.64.0/19 4398 | 202.116.96.0/19 4399 | 202.116.128.0/17 4400 | 202.117.0.0/18 4401 | 202.117.64.0/18 4402 | 202.117.128.0/17 4403 | 202.118.0.0/19 4404 | 202.118.32.0/19 4405 | 202.118.64.0/18 4406 | 202.118.128.0/17 4407 | 202.119.0.0/19 4408 | 202.119.32.0/19 4409 | 202.119.64.0/20 4410 | 202.119.80.0/20 4411 | 202.119.96.0/19 4412 | 202.119.128.0/17 4413 | 202.120.0.0/18 4414 | 202.120.64.0/18 4415 | 202.120.128.0/17 4416 | 202.121.0.0/16 4417 | 202.122.0.0/21 4418 | 202.122.32.0/21 4419 | 202.122.64.0/19 4420 | 202.122.112.0/21 4421 | 202.122.120.0/21 4422 | 202.122.128.0/24 4423 | 202.122.132.0/24 4424 | 202.123.96.0/20 4425 | 202.123.116.0/22 4426 | 202.123.120.0/22 4427 | 202.124.16.0/21 4428 | 202.124.24.0/22 4429 | 202.125.112.0/20 4430 | 202.125.176.0/20 4431 | 202.127.0.0/23 4432 | 202.127.2.0/24 4433 | 202.127.3.0/24 4434 | 202.127.4.0/24 4435 | 202.127.5.0/24 4436 | 202.127.6.0/23 4437 | 202.127.12.0/22 4438 | 202.127.16.0/20 4439 | 202.127.40.0/21 4440 | 202.127.48.0/20 4441 | 202.127.112.0/20 4442 | 202.127.128.0/20 4443 | 202.127.144.0/20 4444 | 202.127.160.0/21 4445 | 202.127.192.0/23 4446 | 202.127.194.0/23 4447 | 202.127.196.0/22 4448 | 202.127.200.0/21 4449 | 202.127.208.0/24 4450 | 202.127.209.0/24 4451 | 202.127.212.0/22 4452 | 202.127.216.0/21 4453 | 202.127.224.0/19 4454 | 202.130.0.0/19 4455 | 202.130.224.0/19 4456 | 202.131.16.0/21 4457 | 202.131.48.0/20 4458 | 202.131.208.0/20 4459 | 202.133.32.0/20 4460 | 202.134.58.0/24 4461 | 202.134.128.0/20 4462 | 202.136.48.0/20 4463 | 202.136.208.0/20 4464 | 202.136.224.0/20 4465 | 202.137.231.0/24 4466 | 202.141.160.0/19 4467 | 202.142.16.0/20 4468 | 202.143.4.0/22 4469 | 202.143.16.0/20 4470 | 202.143.32.0/20 4471 | 202.143.56.0/21 4472 | 202.146.160.0/20 4473 | 202.146.188.0/22 4474 | 202.146.196.0/22 4475 | 202.146.200.0/21 4476 | 202.147.144.0/20 4477 | 202.148.32.0/20 4478 | 202.148.64.0/19 4479 | 202.148.96.0/19 4480 | 202.149.32.0/19 4481 | 202.149.160.0/19 4482 | 202.149.224.0/19 4483 | 202.150.16.0/20 4484 | 202.150.32.0/20 4485 | 202.150.56.0/22 4486 | 202.150.192.0/20 4487 | 202.150.224.0/19 4488 | 202.151.0.0/22 4489 | 202.151.128.0/19 4490 | 202.152.176.0/20 4491 | 202.153.0.0/22 4492 | 202.153.48.0/20 4493 | 202.157.192.0/19 4494 | 202.158.160.0/19 4495 | 202.160.176.0/20 4496 | 202.162.67.0/24 4497 | 202.162.75.0/24 4498 | 202.164.0.0/20 4499 | 202.164.96.0/19 4500 | 202.165.96.0/20 4501 | 202.165.176.0/20 4502 | 202.165.208.0/20 4503 | 202.165.239.0/24 4504 | 202.165.240.0/23 4505 | 202.165.243.0/24 4506 | 202.165.245.0/24 4507 | 202.165.251.0/24 4508 | 202.165.252.0/22 4509 | 202.166.224.0/19 4510 | 202.168.160.0/20 4511 | 202.168.176.0/20 4512 | 202.170.128.0/19 4513 | 202.170.216.0/21 4514 | 202.170.224.0/19 4515 | 202.171.216.0/21 4516 | 202.171.235.0/24 4517 | 202.172.0.0/22 4518 | 202.173.0.0/22 4519 | 202.173.8.0/21 4520 | 202.173.112.0/22 4521 | 202.173.120.0/22 4522 | 202.173.224.0/19 4523 | 202.174.64.0/20 4524 | 202.176.224.0/19 4525 | 202.179.240.0/20 4526 | 202.180.128.0/19 4527 | 202.180.208.0/21 4528 | 202.181.112.0/20 4529 | 202.182.32.0/20 4530 | 202.182.192.0/19 4531 | 202.189.0.0/18 4532 | 202.189.80.0/20 4533 | 202.189.184.0/21 4534 | 202.191.0.0/24 4535 | 202.191.68.0/22 4536 | 202.191.72.0/21 4537 | 202.191.80.0/20 4538 | 202.192.0.0/13 4539 | 202.200.0.0/14 4540 | 202.204.0.0/14 4541 | 203.0.4.0/22 4542 | 203.0.10.0/23 4543 | 203.0.18.0/24 4544 | 203.0.24.0/24 4545 | 203.0.42.0/23 4546 | 203.0.45.0/24 4547 | 203.0.46.0/23 4548 | 203.0.81.0/24 4549 | 203.0.82.0/23 4550 | 203.0.90.0/23 4551 | 203.0.96.0/23 4552 | 203.0.104.0/21 4553 | 203.0.114.0/23 4554 | 203.0.122.0/24 4555 | 203.0.128.0/24 4556 | 203.0.130.0/23 4557 | 203.0.132.0/22 4558 | 203.0.137.0/24 4559 | 203.0.142.0/24 4560 | 203.0.144.0/24 4561 | 203.0.146.0/24 4562 | 203.0.148.0/24 4563 | 203.0.150.0/23 4564 | 203.0.152.0/24 4565 | 203.0.177.0/24 4566 | 203.0.224.0/24 4567 | 203.1.4.0/22 4568 | 203.1.18.0/24 4569 | 203.1.26.0/23 4570 | 203.1.65.0/24 4571 | 203.1.66.0/23 4572 | 203.1.70.0/23 4573 | 203.1.76.0/23 4574 | 203.1.90.0/24 4575 | 203.1.97.0/24 4576 | 203.1.98.0/23 4577 | 203.1.100.0/22 4578 | 203.1.108.0/24 4579 | 203.1.253.0/24 4580 | 203.1.254.0/24 4581 | 203.2.64.0/21 4582 | 203.2.73.0/24 4583 | 203.2.112.0/21 4584 | 203.2.126.0/23 4585 | 203.2.140.0/24 4586 | 203.2.150.0/24 4587 | 203.2.152.0/22 4588 | 203.2.156.0/23 4589 | 203.2.160.0/21 4590 | 203.2.180.0/23 4591 | 203.2.196.0/23 4592 | 203.2.209.0/24 4593 | 203.2.214.0/23 4594 | 203.2.226.0/23 4595 | 203.2.229.0/24 4596 | 203.2.236.0/23 4597 | 203.3.68.0/24 4598 | 203.3.72.0/23 4599 | 203.3.75.0/24 4600 | 203.3.80.0/21 4601 | 203.3.96.0/22 4602 | 203.3.105.0/24 4603 | 203.3.112.0/21 4604 | 203.3.120.0/24 4605 | 203.3.123.0/24 4606 | 203.3.135.0/24 4607 | 203.3.139.0/24 4608 | 203.3.143.0/24 4609 | 203.4.132.0/23 4610 | 203.4.134.0/24 4611 | 203.4.151.0/24 4612 | 203.4.152.0/22 4613 | 203.4.174.0/23 4614 | 203.4.180.0/24 4615 | 203.4.186.0/24 4616 | 203.4.205.0/24 4617 | 203.4.208.0/22 4618 | 203.4.227.0/24 4619 | 203.4.230.0/23 4620 | 203.5.4.0/23 4621 | 203.5.7.0/24 4622 | 203.5.8.0/23 4623 | 203.5.11.0/24 4624 | 203.5.21.0/24 4625 | 203.5.22.0/24 4626 | 203.5.44.0/24 4627 | 203.5.46.0/23 4628 | 203.5.52.0/22 4629 | 203.5.56.0/23 4630 | 203.5.60.0/23 4631 | 203.5.114.0/23 4632 | 203.5.118.0/24 4633 | 203.5.120.0/24 4634 | 203.5.172.0/24 4635 | 203.5.180.0/23 4636 | 203.5.182.0/24 4637 | 203.5.185.0/24 4638 | 203.5.186.0/24 4639 | 203.5.188.0/23 4640 | 203.5.190.0/24 4641 | 203.5.195.0/24 4642 | 203.5.214.0/23 4643 | 203.5.218.0/23 4644 | 203.6.131.0/24 4645 | 203.6.136.0/24 4646 | 203.6.138.0/23 4647 | 203.6.142.0/24 4648 | 203.6.150.0/23 4649 | 203.6.157.0/24 4650 | 203.6.159.0/24 4651 | 203.6.224.0/20 4652 | 203.6.248.0/23 4653 | 203.7.129.0/24 4654 | 203.7.138.0/23 4655 | 203.7.147.0/24 4656 | 203.7.150.0/23 4657 | 203.7.158.0/24 4658 | 203.7.192.0/23 4659 | 203.7.200.0/24 4660 | 203.8.0.0/24 4661 | 203.8.8.0/24 4662 | 203.8.23.0/24 4663 | 203.8.24.0/21 4664 | 203.8.70.0/24 4665 | 203.8.82.0/24 4666 | 203.8.86.0/23 4667 | 203.8.91.0/24 4668 | 203.8.110.0/23 4669 | 203.8.115.0/24 4670 | 203.8.166.0/23 4671 | 203.8.169.0/24 4672 | 203.8.173.0/24 4673 | 203.8.184.0/24 4674 | 203.8.186.0/23 4675 | 203.8.190.0/23 4676 | 203.8.192.0/24 4677 | 203.8.197.0/24 4678 | 203.8.198.0/23 4679 | 203.8.203.0/24 4680 | 203.8.209.0/24 4681 | 203.8.210.0/23 4682 | 203.8.212.0/22 4683 | 203.8.217.0/24 4684 | 203.8.220.0/24 4685 | 203.9.32.0/24 4686 | 203.9.36.0/23 4687 | 203.9.57.0/24 4688 | 203.9.63.0/24 4689 | 203.9.65.0/24 4690 | 203.9.70.0/23 4691 | 203.9.72.0/24 4692 | 203.9.75.0/24 4693 | 203.9.76.0/23 4694 | 203.9.96.0/22 4695 | 203.9.100.0/23 4696 | 203.9.108.0/24 4697 | 203.9.158.0/24 4698 | 203.10.34.0/24 4699 | 203.10.56.0/24 4700 | 203.10.74.0/23 4701 | 203.10.84.0/22 4702 | 203.10.88.0/24 4703 | 203.10.95.0/24 4704 | 203.10.125.0/24 4705 | 203.11.70.0/24 4706 | 203.11.76.0/22 4707 | 203.11.82.0/24 4708 | 203.11.84.0/22 4709 | 203.11.100.0/22 4710 | 203.11.109.0/24 4711 | 203.11.117.0/24 4712 | 203.11.122.0/24 4713 | 203.11.126.0/24 4714 | 203.11.136.0/22 4715 | 203.11.141.0/24 4716 | 203.11.142.0/23 4717 | 203.11.180.0/22 4718 | 203.11.208.0/22 4719 | 203.12.16.0/24 4720 | 203.12.19.0/24 4721 | 203.12.24.0/24 4722 | 203.12.57.0/24 4723 | 203.12.65.0/24 4724 | 203.12.66.0/24 4725 | 203.12.70.0/23 4726 | 203.12.87.0/24 4727 | 203.12.88.0/21 4728 | 203.12.100.0/23 4729 | 203.12.103.0/24 4730 | 203.12.114.0/24 4731 | 203.12.118.0/24 4732 | 203.12.130.0/24 4733 | 203.12.137.0/24 4734 | 203.12.196.0/22 4735 | 203.12.200.0/21 4736 | 203.12.211.0/24 4737 | 203.12.219.0/24 4738 | 203.12.226.0/24 4739 | 203.12.240.0/22 4740 | 203.13.18.0/24 4741 | 203.13.24.0/24 4742 | 203.13.44.0/23 4743 | 203.13.80.0/21 4744 | 203.13.88.0/23 4745 | 203.13.92.0/22 4746 | 203.13.173.0/24 4747 | 203.13.224.0/23 4748 | 203.13.227.0/24 4749 | 203.13.233.0/24 4750 | 203.14.24.0/22 4751 | 203.14.33.0/24 4752 | 203.14.56.0/24 4753 | 203.14.61.0/24 4754 | 203.14.62.0/24 4755 | 203.14.104.0/24 4756 | 203.14.114.0/23 4757 | 203.14.118.0/24 4758 | 203.14.162.0/24 4759 | 203.14.184.0/21 4760 | 203.14.192.0/24 4761 | 203.14.194.0/23 4762 | 203.14.214.0/24 4763 | 203.14.231.0/24 4764 | 203.14.246.0/24 4765 | 203.15.0.0/20 4766 | 203.15.20.0/23 4767 | 203.15.22.0/24 4768 | 203.15.87.0/24 4769 | 203.15.88.0/23 4770 | 203.15.105.0/24 4771 | 203.15.112.0/21 4772 | 203.15.130.0/23 4773 | 203.15.149.0/24 4774 | 203.15.151.0/24 4775 | 203.15.156.0/22 4776 | 203.15.174.0/24 4777 | 203.15.227.0/24 4778 | 203.15.232.0/21 4779 | 203.15.240.0/23 4780 | 203.15.246.0/24 4781 | 203.16.10.0/24 4782 | 203.16.12.0/23 4783 | 203.16.16.0/21 4784 | 203.16.27.0/24 4785 | 203.16.38.0/24 4786 | 203.16.49.0/24 4787 | 203.16.50.0/23 4788 | 203.16.58.0/24 4789 | 203.16.133.0/24 4790 | 203.16.161.0/24 4791 | 203.16.162.0/24 4792 | 203.16.186.0/23 4793 | 203.16.228.0/24 4794 | 203.16.238.0/24 4795 | 203.16.240.0/24 4796 | 203.16.245.0/24 4797 | 203.17.2.0/24 4798 | 203.17.18.0/24 4799 | 203.17.28.0/24 4800 | 203.17.39.0/24 4801 | 203.17.56.0/24 4802 | 203.17.74.0/23 4803 | 203.17.88.0/23 4804 | 203.17.136.0/24 4805 | 203.17.164.0/24 4806 | 203.17.187.0/24 4807 | 203.17.190.0/23 4808 | 203.17.231.0/24 4809 | 203.17.233.0/24 4810 | 203.17.248.0/24 4811 | 203.17.255.0/24 4812 | 203.18.2.0/23 4813 | 203.18.4.0/24 4814 | 203.18.7.0/24 4815 | 203.18.31.0/24 4816 | 203.18.37.0/24 4817 | 203.18.48.0/23 4818 | 203.18.52.0/24 4819 | 203.18.72.0/22 4820 | 203.18.80.0/23 4821 | 203.18.87.0/24 4822 | 203.18.100.0/23 4823 | 203.18.105.0/24 4824 | 203.18.107.0/24 4825 | 203.18.110.0/24 4826 | 203.18.129.0/24 4827 | 203.18.131.0/24 4828 | 203.18.132.0/23 4829 | 203.18.144.0/24 4830 | 203.18.153.0/24 4831 | 203.18.199.0/24 4832 | 203.18.208.0/24 4833 | 203.18.211.0/24 4834 | 203.18.215.0/24 4835 | 203.19.18.0/24 4836 | 203.19.24.0/24 4837 | 203.19.30.0/24 4838 | 203.19.32.0/21 4839 | 203.19.41.0/24 4840 | 203.19.44.0/23 4841 | 203.19.46.0/24 4842 | 203.19.58.0/24 4843 | 203.19.60.0/23 4844 | 203.19.64.0/24 4845 | 203.19.68.0/24 4846 | 203.19.72.0/24 4847 | 203.19.101.0/24 4848 | 203.19.111.0/24 4849 | 203.19.131.0/24 4850 | 203.19.133.0/24 4851 | 203.19.144.0/24 4852 | 203.19.149.0/24 4853 | 203.19.156.0/24 4854 | 203.19.176.0/24 4855 | 203.19.178.0/23 4856 | 203.19.208.0/24 4857 | 203.19.228.0/22 4858 | 203.19.233.0/24 4859 | 203.19.242.0/24 4860 | 203.19.248.0/23 4861 | 203.19.255.0/24 4862 | 203.20.17.0/24 4863 | 203.20.40.0/23 4864 | 203.20.48.0/24 4865 | 203.20.61.0/24 4866 | 203.20.65.0/24 4867 | 203.20.84.0/23 4868 | 203.20.89.0/24 4869 | 203.20.106.0/23 4870 | 203.20.115.0/24 4871 | 203.20.117.0/24 4872 | 203.20.118.0/23 4873 | 203.20.122.0/24 4874 | 203.20.126.0/23 4875 | 203.20.135.0/24 4876 | 203.20.136.0/21 4877 | 203.20.150.0/24 4878 | 203.20.230.0/24 4879 | 203.20.232.0/24 4880 | 203.20.236.0/24 4881 | 203.21.0.0/23 4882 | 203.21.2.0/24 4883 | 203.21.8.0/24 4884 | 203.21.10.0/24 4885 | 203.21.18.0/24 4886 | 203.21.33.0/24 4887 | 203.21.34.0/24 4888 | 203.21.41.0/24 4889 | 203.21.44.0/24 4890 | 203.21.68.0/24 4891 | 203.21.82.0/24 4892 | 203.21.96.0/22 4893 | 203.21.124.0/24 4894 | 203.21.136.0/23 4895 | 203.21.145.0/24 4896 | 203.21.206.0/24 4897 | 203.22.24.0/24 4898 | 203.22.28.0/23 4899 | 203.22.31.0/24 4900 | 203.22.68.0/24 4901 | 203.22.76.0/24 4902 | 203.22.78.0/24 4903 | 203.22.84.0/24 4904 | 203.22.87.0/24 4905 | 203.22.92.0/22 4906 | 203.22.99.0/24 4907 | 203.22.106.0/24 4908 | 203.22.122.0/23 4909 | 203.22.131.0/24 4910 | 203.22.163.0/24 4911 | 203.22.166.0/24 4912 | 203.22.170.0/24 4913 | 203.22.176.0/21 4914 | 203.22.194.0/24 4915 | 203.22.242.0/23 4916 | 203.22.245.0/24 4917 | 203.22.246.0/24 4918 | 203.22.252.0/23 4919 | 203.23.0.0/24 4920 | 203.23.47.0/24 4921 | 203.23.61.0/24 4922 | 203.23.62.0/23 4923 | 203.23.73.0/24 4924 | 203.23.85.0/24 4925 | 203.23.92.0/22 4926 | 203.23.98.0/24 4927 | 203.23.107.0/24 4928 | 203.23.112.0/24 4929 | 203.23.130.0/24 4930 | 203.23.140.0/23 4931 | 203.23.172.0/24 4932 | 203.23.182.0/24 4933 | 203.23.186.0/23 4934 | 203.23.192.0/24 4935 | 203.23.197.0/24 4936 | 203.23.198.0/24 4937 | 203.23.204.0/22 4938 | 203.23.224.0/24 4939 | 203.23.226.0/23 4940 | 203.23.228.0/22 4941 | 203.23.249.0/24 4942 | 203.23.251.0/24 4943 | 203.24.13.0/24 4944 | 203.24.18.0/24 4945 | 203.24.27.0/24 4946 | 203.24.43.0/24 4947 | 203.24.56.0/24 4948 | 203.24.58.0/24 4949 | 203.24.67.0/24 4950 | 203.24.74.0/24 4951 | 203.24.79.0/24 4952 | 203.24.80.0/23 4953 | 203.24.84.0/23 4954 | 203.24.86.0/24 4955 | 203.24.90.0/24 4956 | 203.24.111.0/24 4957 | 203.24.112.0/24 4958 | 203.24.116.0/24 4959 | 203.24.122.0/23 4960 | 203.24.145.0/24 4961 | 203.24.152.0/23 4962 | 203.24.157.0/24 4963 | 203.24.161.0/24 4964 | 203.24.167.0/24 4965 | 203.24.186.0/23 4966 | 203.24.199.0/24 4967 | 203.24.202.0/24 4968 | 203.24.212.0/23 4969 | 203.24.217.0/24 4970 | 203.24.219.0/24 4971 | 203.24.244.0/24 4972 | 203.25.19.0/24 4973 | 203.25.20.0/23 4974 | 203.25.46.0/24 4975 | 203.25.48.0/21 4976 | 203.25.64.0/23 4977 | 203.25.91.0/24 4978 | 203.25.99.0/24 4979 | 203.25.100.0/24 4980 | 203.25.106.0/24 4981 | 203.25.131.0/24 4982 | 203.25.135.0/24 4983 | 203.25.138.0/24 4984 | 203.25.147.0/24 4985 | 203.25.153.0/24 4986 | 203.25.154.0/23 4987 | 203.25.164.0/24 4988 | 203.25.166.0/24 4989 | 203.25.174.0/23 4990 | 203.25.180.0/24 4991 | 203.25.182.0/24 4992 | 203.25.191.0/24 4993 | 203.25.199.0/24 4994 | 203.25.200.0/24 4995 | 203.25.202.0/23 4996 | 203.25.208.0/20 4997 | 203.25.229.0/24 4998 | 203.25.235.0/24 4999 | 203.25.236.0/24 5000 | 203.25.242.0/24 5001 | 203.26.12.0/24 5002 | 203.26.34.0/24 5003 | 203.26.49.0/24 5004 | 203.26.50.0/24 5005 | 203.26.55.0/24 5006 | 203.26.56.0/23 5007 | 203.26.60.0/24 5008 | 203.26.65.0/24 5009 | 203.26.68.0/24 5010 | 203.26.76.0/24 5011 | 203.26.80.0/24 5012 | 203.26.84.0/24 5013 | 203.26.97.0/24 5014 | 203.26.102.0/23 5015 | 203.26.115.0/24 5016 | 203.26.116.0/24 5017 | 203.26.129.0/24 5018 | 203.26.143.0/24 5019 | 203.26.144.0/24 5020 | 203.26.148.0/23 5021 | 203.26.154.0/24 5022 | 203.26.158.0/23 5023 | 203.26.170.0/24 5024 | 203.26.173.0/24 5025 | 203.26.176.0/24 5026 | 203.26.185.0/24 5027 | 203.26.202.0/23 5028 | 203.26.210.0/24 5029 | 203.26.214.0/24 5030 | 203.26.222.0/24 5031 | 203.26.224.0/24 5032 | 203.26.228.0/24 5033 | 203.26.232.0/24 5034 | 203.27.0.0/24 5035 | 203.27.10.0/24 5036 | 203.27.15.0/24 5037 | 203.27.16.0/24 5038 | 203.27.20.0/24 5039 | 203.27.22.0/23 5040 | 203.27.40.0/24 5041 | 203.27.45.0/24 5042 | 203.27.53.0/24 5043 | 203.27.65.0/24 5044 | 203.27.66.0/24 5045 | 203.27.81.0/24 5046 | 203.27.88.0/24 5047 | 203.27.102.0/24 5048 | 203.27.109.0/24 5049 | 203.27.117.0/24 5050 | 203.27.121.0/24 5051 | 203.27.122.0/23 5052 | 203.27.125.0/24 5053 | 203.27.200.0/24 5054 | 203.27.202.0/24 5055 | 203.27.233.0/24 5056 | 203.27.241.0/24 5057 | 203.27.250.0/24 5058 | 203.28.10.0/24 5059 | 203.28.12.0/24 5060 | 203.28.33.0/24 5061 | 203.28.34.0/23 5062 | 203.28.43.0/24 5063 | 203.28.44.0/24 5064 | 203.28.54.0/24 5065 | 203.28.56.0/24 5066 | 203.28.73.0/24 5067 | 203.28.74.0/24 5068 | 203.28.76.0/24 5069 | 203.28.86.0/24 5070 | 203.28.88.0/24 5071 | 203.28.112.0/24 5072 | 203.28.131.0/24 5073 | 203.28.136.0/24 5074 | 203.28.140.0/24 5075 | 203.28.145.0/24 5076 | 203.28.165.0/24 5077 | 203.28.169.0/24 5078 | 203.28.170.0/24 5079 | 203.28.178.0/23 5080 | 203.28.185.0/24 5081 | 203.28.187.0/24 5082 | 203.28.196.0/24 5083 | 203.28.226.0/23 5084 | 203.28.239.0/24 5085 | 203.29.2.0/24 5086 | 203.29.8.0/23 5087 | 203.29.13.0/24 5088 | 203.29.14.0/24 5089 | 203.29.28.0/24 5090 | 203.29.46.0/24 5091 | 203.29.57.0/24 5092 | 203.29.61.0/24 5093 | 203.29.63.0/24 5094 | 203.29.69.0/24 5095 | 203.29.73.0/24 5096 | 203.29.81.0/24 5097 | 203.29.90.0/24 5098 | 203.29.95.0/24 5099 | 203.29.100.0/24 5100 | 203.29.103.0/24 5101 | 203.29.112.0/24 5102 | 203.29.120.0/22 5103 | 203.29.182.0/23 5104 | 203.29.187.0/24 5105 | 203.29.189.0/24 5106 | 203.29.190.0/24 5107 | 203.29.205.0/24 5108 | 203.29.210.0/24 5109 | 203.29.217.0/24 5110 | 203.29.227.0/24 5111 | 203.29.231.0/24 5112 | 203.29.233.0/24 5113 | 203.29.234.0/24 5114 | 203.29.248.0/24 5115 | 203.29.254.0/23 5116 | 203.30.16.0/23 5117 | 203.30.25.0/24 5118 | 203.30.27.0/24 5119 | 203.30.29.0/24 5120 | 203.30.66.0/24 5121 | 203.30.81.0/24 5122 | 203.30.87.0/24 5123 | 203.30.111.0/24 5124 | 203.30.121.0/24 5125 | 203.30.123.0/24 5126 | 203.30.152.0/24 5127 | 203.30.156.0/24 5128 | 203.30.162.0/24 5129 | 203.30.173.0/24 5130 | 203.30.175.0/24 5131 | 203.30.187.0/24 5132 | 203.30.194.0/24 5133 | 203.30.217.0/24 5134 | 203.30.220.0/24 5135 | 203.30.222.0/24 5136 | 203.30.232.0/23 5137 | 203.30.235.0/24 5138 | 203.30.240.0/23 5139 | 203.30.246.0/24 5140 | 203.30.250.0/23 5141 | 203.31.45.0/24 5142 | 203.31.46.0/24 5143 | 203.31.49.0/24 5144 | 203.31.51.0/24 5145 | 203.31.54.0/23 5146 | 203.31.69.0/24 5147 | 203.31.72.0/24 5148 | 203.31.80.0/24 5149 | 203.31.85.0/24 5150 | 203.31.97.0/24 5151 | 203.31.105.0/24 5152 | 203.31.106.0/24 5153 | 203.31.108.0/23 5154 | 203.31.124.0/24 5155 | 203.31.162.0/24 5156 | 203.31.174.0/24 5157 | 203.31.177.0/24 5158 | 203.31.181.0/24 5159 | 203.31.187.0/24 5160 | 203.31.189.0/24 5161 | 203.31.204.0/24 5162 | 203.31.220.0/24 5163 | 203.31.222.0/23 5164 | 203.31.225.0/24 5165 | 203.31.229.0/24 5166 | 203.31.248.0/23 5167 | 203.31.253.0/24 5168 | 203.32.20.0/24 5169 | 203.32.48.0/23 5170 | 203.32.56.0/24 5171 | 203.32.60.0/24 5172 | 203.32.62.0/24 5173 | 203.32.68.0/23 5174 | 203.32.76.0/24 5175 | 203.32.81.0/24 5176 | 203.32.84.0/23 5177 | 203.32.95.0/24 5178 | 203.32.102.0/24 5179 | 203.32.105.0/24 5180 | 203.32.130.0/24 5181 | 203.32.133.0/24 5182 | 203.32.140.0/24 5183 | 203.32.152.0/24 5184 | 203.32.186.0/23 5185 | 203.32.192.0/24 5186 | 203.32.196.0/24 5187 | 203.32.203.0/24 5188 | 203.32.204.0/23 5189 | 203.32.212.0/24 5190 | 203.33.4.0/24 5191 | 203.33.7.0/24 5192 | 203.33.8.0/21 5193 | 203.33.21.0/24 5194 | 203.33.26.0/24 5195 | 203.33.32.0/24 5196 | 203.33.63.0/24 5197 | 203.33.64.0/24 5198 | 203.33.67.0/24 5199 | 203.33.68.0/24 5200 | 203.33.73.0/24 5201 | 203.33.79.0/24 5202 | 203.33.100.0/24 5203 | 203.33.122.0/24 5204 | 203.33.129.0/24 5205 | 203.33.131.0/24 5206 | 203.33.145.0/24 5207 | 203.33.156.0/24 5208 | 203.33.158.0/23 5209 | 203.33.174.0/24 5210 | 203.33.185.0/24 5211 | 203.33.200.0/24 5212 | 203.33.202.0/23 5213 | 203.33.204.0/24 5214 | 203.33.206.0/23 5215 | 203.33.214.0/23 5216 | 203.33.224.0/23 5217 | 203.33.226.0/24 5218 | 203.33.233.0/24 5219 | 203.33.243.0/24 5220 | 203.33.250.0/24 5221 | 203.34.4.0/24 5222 | 203.34.21.0/24 5223 | 203.34.27.0/24 5224 | 203.34.39.0/24 5225 | 203.34.48.0/23 5226 | 203.34.54.0/24 5227 | 203.34.56.0/23 5228 | 203.34.67.0/24 5229 | 203.34.69.0/24 5230 | 203.34.76.0/24 5231 | 203.34.92.0/24 5232 | 203.34.106.0/24 5233 | 203.34.113.0/24 5234 | 203.34.147.0/24 5235 | 203.34.150.0/24 5236 | 203.34.152.0/23 5237 | 203.34.161.0/24 5238 | 203.34.162.0/24 5239 | 203.34.187.0/24 5240 | 203.34.192.0/21 5241 | 203.34.204.0/22 5242 | 203.34.232.0/24 5243 | 203.34.240.0/24 5244 | 203.34.242.0/24 5245 | 203.34.245.0/24 5246 | 203.34.251.0/24 5247 | 203.55.2.0/23 5248 | 203.55.4.0/24 5249 | 203.55.10.0/24 5250 | 203.55.13.0/24 5251 | 203.55.22.0/24 5252 | 203.55.30.0/24 5253 | 203.55.93.0/24 5254 | 203.55.101.0/24 5255 | 203.55.109.0/24 5256 | 203.55.110.0/24 5257 | 203.55.116.0/23 5258 | 203.55.119.0/24 5259 | 203.55.128.0/23 5260 | 203.55.146.0/23 5261 | 203.55.192.0/24 5262 | 203.55.196.0/24 5263 | 203.55.218.0/23 5264 | 203.55.221.0/24 5265 | 203.55.224.0/24 5266 | 203.56.1.0/24 5267 | 203.56.4.0/24 5268 | 203.56.12.0/24 5269 | 203.56.24.0/24 5270 | 203.56.38.0/24 5271 | 203.56.40.0/24 5272 | 203.56.46.0/24 5273 | 203.56.48.0/21 5274 | 203.56.68.0/23 5275 | 203.56.82.0/23 5276 | 203.56.84.0/23 5277 | 203.56.95.0/24 5278 | 203.56.110.0/24 5279 | 203.56.121.0/24 5280 | 203.56.161.0/24 5281 | 203.56.169.0/24 5282 | 203.56.172.0/23 5283 | 203.56.175.0/24 5284 | 203.56.183.0/24 5285 | 203.56.185.0/24 5286 | 203.56.187.0/24 5287 | 203.56.192.0/24 5288 | 203.56.198.0/24 5289 | 203.56.201.0/24 5290 | 203.56.208.0/23 5291 | 203.56.210.0/24 5292 | 203.56.214.0/24 5293 | 203.56.216.0/24 5294 | 203.56.227.0/24 5295 | 203.56.228.0/24 5296 | 203.56.232.0/24 5297 | 203.56.240.0/24 5298 | 203.56.252.0/24 5299 | 203.56.254.0/24 5300 | 203.57.5.0/24 5301 | 203.57.6.0/24 5302 | 203.57.12.0/23 5303 | 203.57.28.0/24 5304 | 203.57.39.0/24 5305 | 203.57.46.0/24 5306 | 203.57.58.0/24 5307 | 203.57.61.0/24 5308 | 203.57.66.0/24 5309 | 203.57.69.0/24 5310 | 203.57.70.0/23 5311 | 203.57.73.0/24 5312 | 203.57.90.0/24 5313 | 203.57.101.0/24 5314 | 203.57.109.0/24 5315 | 203.57.123.0/24 5316 | 203.57.157.0/24 5317 | 203.57.200.0/24 5318 | 203.57.202.0/24 5319 | 203.57.206.0/24 5320 | 203.57.222.0/24 5321 | 203.57.224.0/20 5322 | 203.57.246.0/23 5323 | 203.57.249.0/24 5324 | 203.57.253.0/24 5325 | 203.57.254.0/23 5326 | 203.62.2.0/24 5327 | 203.62.131.0/24 5328 | 203.62.139.0/24 5329 | 203.62.161.0/24 5330 | 203.62.197.0/24 5331 | 203.62.228.0/22 5332 | 203.62.234.0/24 5333 | 203.62.246.0/24 5334 | 203.76.160.0/22 5335 | 203.76.168.0/22 5336 | 203.77.180.0/22 5337 | 203.78.48.0/20 5338 | 203.79.0.0/20 5339 | 203.79.32.0/20 5340 | 203.80.4.0/23 5341 | 203.80.32.0/20 5342 | 203.80.57.0/24 5343 | 203.80.132.0/22 5344 | 203.80.136.0/21 5345 | 203.80.144.0/20 5346 | 203.81.0.0/21 5347 | 203.81.16.0/20 5348 | 203.82.0.0/23 5349 | 203.82.16.0/21 5350 | 203.83.0.0/22 5351 | 203.83.56.0/21 5352 | 203.83.224.0/20 5353 | 203.86.0.0/19 5354 | 203.86.32.0/19 5355 | 203.86.64.0/20 5356 | 203.86.80.0/20 5357 | 203.86.96.0/19 5358 | 203.86.254.0/23 5359 | 203.88.32.0/19 5360 | 203.88.192.0/19 5361 | 203.89.0.0/22 5362 | 203.89.8.0/21 5363 | 203.89.136.0/22 5364 | 203.90.0.0/22 5365 | 203.90.8.0/22 5366 | 203.90.128.0/19 5367 | 203.90.160.0/19 5368 | 203.90.192.0/19 5369 | 203.91.32.0/19 5370 | 203.91.96.0/20 5371 | 203.91.120.0/21 5372 | 203.92.0.0/22 5373 | 203.92.160.0/19 5374 | 203.93.0.0/22 5375 | 203.93.4.0/22 5376 | 203.93.8.0/24 5377 | 203.93.9.0/24 5378 | 203.93.10.0/23 5379 | 203.93.12.0/22 5380 | 203.93.16.0/20 5381 | 203.93.32.0/19 5382 | 203.93.64.0/18 5383 | 203.93.128.0/21 5384 | 203.93.136.0/22 5385 | 203.93.140.0/24 5386 | 203.93.141.0/24 5387 | 203.93.142.0/23 5388 | 203.93.144.0/20 5389 | 203.93.160.0/19 5390 | 203.93.192.0/18 5391 | 203.94.0.0/22 5392 | 203.94.4.0/22 5393 | 203.94.8.0/21 5394 | 203.94.16.0/20 5395 | 203.95.0.0/21 5396 | 203.95.96.0/20 5397 | 203.95.112.0/20 5398 | 203.95.128.0/18 5399 | 203.95.224.0/19 5400 | 203.99.8.0/21 5401 | 203.99.16.0/20 5402 | 203.99.80.0/20 5403 | 203.100.32.0/20 5404 | 203.100.48.0/21 5405 | 203.100.63.0/24 5406 | 203.100.80.0/20 5407 | 203.100.96.0/19 5408 | 203.100.192.0/20 5409 | 203.104.32.0/20 5410 | 203.105.96.0/19 5411 | 203.105.128.0/19 5412 | 203.107.0.0/17 5413 | 203.110.160.0/19 5414 | 203.110.208.0/20 5415 | 203.110.232.0/23 5416 | 203.110.234.0/24 5417 | 203.114.244.0/22 5418 | 203.118.192.0/19 5419 | 203.118.241.0/24 5420 | 203.118.248.0/22 5421 | 203.119.24.0/21 5422 | 203.119.32.0/22 5423 | 203.119.80.0/22 5424 | 203.119.85.0/24 5425 | 203.119.113.0/24 5426 | 203.119.114.0/23 5427 | 203.119.116.0/22 5428 | 203.119.120.0/21 5429 | 203.119.128.0/17 5430 | 203.128.32.0/19 5431 | 203.128.96.0/19 5432 | 203.128.224.0/21 5433 | 203.129.8.0/21 5434 | 203.130.32.0/19 5435 | 203.132.32.0/19 5436 | 203.134.240.0/21 5437 | 203.135.96.0/20 5438 | 203.135.112.0/20 5439 | 203.135.160.0/20 5440 | 203.142.224.0/19 5441 | 203.144.96.0/19 5442 | 203.145.0.0/19 5443 | 203.148.0.0/18 5444 | 203.148.64.0/20 5445 | 203.148.80.0/22 5446 | 203.148.86.0/23 5447 | 203.149.92.0/22 5448 | 203.152.64.0/19 5449 | 203.152.128.0/19 5450 | 203.153.0.0/22 5451 | 203.156.192.0/18 5452 | 203.158.16.0/21 5453 | 203.160.104.0/21 5454 | 203.160.129.0/24 5455 | 203.160.192.0/19 5456 | 203.161.0.0/22 5457 | 203.161.180.0/24 5458 | 203.161.192.0/19 5459 | 203.166.160.0/19 5460 | 203.168.0.0/19 5461 | 203.170.58.0/23 5462 | 203.171.0.0/22 5463 | 203.171.224.0/20 5464 | 203.174.4.0/24 5465 | 203.174.7.0/24 5466 | 203.174.96.0/19 5467 | 203.175.128.0/19 5468 | 203.175.192.0/18 5469 | 203.176.0.0/18 5470 | 203.176.64.0/19 5471 | 203.176.168.0/21 5472 | 203.184.80.0/20 5473 | 203.187.160.0/19 5474 | 203.189.0.0/23 5475 | 203.189.6.0/23 5476 | 203.189.112.0/22 5477 | 203.189.192.0/19 5478 | 203.190.96.0/20 5479 | 203.190.249.0/24 5480 | 203.191.0.0/23 5481 | 203.191.16.0/20 5482 | 203.191.64.0/18 5483 | 203.191.144.0/21 5484 | 203.191.152.0/21 5485 | 203.192.0.0/19 5486 | 203.193.224.0/19 5487 | 203.194.120.0/21 5488 | 203.195.64.0/19 5489 | 203.195.112.0/21 5490 | 203.195.128.0/17 5491 | 203.196.0.0/21 5492 | 203.196.8.0/21 5493 | 203.202.236.0/22 5494 | 203.205.64.0/19 5495 | 203.205.128.0/17 5496 | 203.207.64.0/18 5497 | 203.207.128.0/17 5498 | 203.208.0.0/20 5499 | 203.208.16.0/22 5500 | 203.208.32.0/19 5501 | 203.209.224.0/19 5502 | 203.212.0.0/20 5503 | 203.212.80.0/20 5504 | 203.215.232.0/21 5505 | 203.222.192.0/20 5506 | 203.223.0.0/20 5507 | 203.223.16.0/21 5508 | 210.2.0.0/20 5509 | 210.2.16.0/20 5510 | 210.5.0.0/19 5511 | 210.5.56.0/21 5512 | 210.5.128.0/20 5513 | 210.5.144.0/20 5514 | 210.12.0.0/18 5515 | 210.12.64.0/18 5516 | 210.12.128.0/18 5517 | 210.12.192.0/18 5518 | 210.13.0.0/18 5519 | 210.13.64.0/18 5520 | 210.13.128.0/17 5521 | 210.14.64.0/19 5522 | 210.14.112.0/20 5523 | 210.14.128.0/19 5524 | 210.14.160.0/19 5525 | 210.14.192.0/19 5526 | 210.14.224.0/19 5527 | 210.15.0.0/19 5528 | 210.15.32.0/19 5529 | 210.15.64.0/19 5530 | 210.15.96.0/19 5531 | 210.15.128.0/18 5532 | 210.16.128.0/18 5533 | 210.21.0.0/17 5534 | 210.21.128.0/17 5535 | 210.22.0.0/16 5536 | 210.23.32.0/19 5537 | 210.25.0.0/16 5538 | 210.26.0.0/15 5539 | 210.28.0.0/14 5540 | 210.32.0.0/14 5541 | 210.36.0.0/14 5542 | 210.40.0.0/13 5543 | 210.51.0.0/16 5544 | 210.52.0.0/18 5545 | 210.52.64.0/18 5546 | 210.52.128.0/17 5547 | 210.53.0.0/17 5548 | 210.53.128.0/17 5549 | 210.56.192.0/19 5550 | 210.72.0.0/17 5551 | 210.72.128.0/19 5552 | 210.72.160.0/19 5553 | 210.72.192.0/18 5554 | 210.73.0.0/19 5555 | 210.73.32.0/19 5556 | 210.73.64.0/18 5557 | 210.73.128.0/17 5558 | 210.74.0.0/19 5559 | 210.74.32.0/19 5560 | 210.74.64.0/19 5561 | 210.74.96.0/19 5562 | 210.74.128.0/19 5563 | 210.74.160.0/19 5564 | 210.74.192.0/18 5565 | 210.75.0.0/16 5566 | 210.76.0.0/19 5567 | 210.76.32.0/19 5568 | 210.76.64.0/18 5569 | 210.76.128.0/17 5570 | 210.77.0.0/16 5571 | 210.78.0.0/19 5572 | 210.78.32.0/19 5573 | 210.78.64.0/18 5574 | 210.78.128.0/19 5575 | 210.78.160.0/19 5576 | 210.78.192.0/18 5577 | 210.79.64.0/18 5578 | 210.79.224.0/19 5579 | 210.82.0.0/15 5580 | 210.87.128.0/20 5581 | 210.87.144.0/20 5582 | 210.87.160.0/19 5583 | 210.185.192.0/18 5584 | 210.192.96.0/19 5585 | 211.64.0.0/14 5586 | 211.68.0.0/15 5587 | 211.70.0.0/15 5588 | 211.80.0.0/16 5589 | 211.81.0.0/16 5590 | 211.82.0.0/16 5591 | 211.83.0.0/16 5592 | 211.84.0.0/15 5593 | 211.86.0.0/15 5594 | 211.88.0.0/16 5595 | 211.89.0.0/16 5596 | 211.90.0.0/15 5597 | 211.92.0.0/15 5598 | 211.94.0.0/15 5599 | 211.96.0.0/15 5600 | 211.98.0.0/16 5601 | 211.99.0.0/18 5602 | 211.99.64.0/19 5603 | 211.99.96.0/19 5604 | 211.99.128.0/17 5605 | 211.100.0.0/16 5606 | 211.101.0.0/18 5607 | 211.101.64.0/18 5608 | 211.101.128.0/17 5609 | 211.102.0.0/16 5610 | 211.103.0.0/17 5611 | 211.103.128.0/17 5612 | 211.136.0.0/14 5613 | 211.140.0.0/15 5614 | 211.142.0.0/17 5615 | 211.142.128.0/17 5616 | 211.143.0.0/16 5617 | 211.144.0.0/15 5618 | 211.146.0.0/16 5619 | 211.147.0.0/16 5620 | 211.148.0.0/14 5621 | 211.152.0.0/15 5622 | 211.154.0.0/16 5623 | 211.155.0.0/18 5624 | 211.155.64.0/19 5625 | 211.155.96.0/19 5626 | 211.155.128.0/17 5627 | 211.156.0.0/14 5628 | 211.160.0.0/14 5629 | 211.164.0.0/14 5630 | 218.0.0.0/16 5631 | 218.1.0.0/16 5632 | 218.2.0.0/15 5633 | 218.4.0.0/15 5634 | 218.6.0.0/16 5635 | 218.7.0.0/16 5636 | 218.8.0.0/15 5637 | 218.10.0.0/16 5638 | 218.11.0.0/16 5639 | 218.12.0.0/16 5640 | 218.13.0.0/16 5641 | 218.14.0.0/15 5642 | 218.16.0.0/14 5643 | 218.20.0.0/16 5644 | 218.21.0.0/17 5645 | 218.21.128.0/17 5646 | 218.22.0.0/15 5647 | 218.24.0.0/15 5648 | 218.26.0.0/16 5649 | 218.27.0.0/16 5650 | 218.28.0.0/15 5651 | 218.30.0.0/15 5652 | 218.56.0.0/14 5653 | 218.60.0.0/15 5654 | 218.62.0.0/17 5655 | 218.62.128.0/17 5656 | 218.63.0.0/16 5657 | 218.64.0.0/15 5658 | 218.66.0.0/16 5659 | 218.67.0.0/17 5660 | 218.67.128.0/17 5661 | 218.68.0.0/15 5662 | 218.70.0.0/15 5663 | 218.72.0.0/14 5664 | 218.76.0.0/15 5665 | 218.78.0.0/15 5666 | 218.80.0.0/14 5667 | 218.84.0.0/14 5668 | 218.88.0.0/13 5669 | 218.96.0.0/15 5670 | 218.98.0.0/17 5671 | 218.98.128.0/18 5672 | 218.98.192.0/19 5673 | 218.98.224.0/19 5674 | 218.99.0.0/16 5675 | 218.100.88.0/21 5676 | 218.100.96.0/19 5677 | 218.100.128.0/17 5678 | 218.104.0.0/17 5679 | 218.104.128.0/19 5680 | 218.104.160.0/19 5681 | 218.104.192.0/21 5682 | 218.104.200.0/21 5683 | 218.104.208.0/20 5684 | 218.104.224.0/19 5685 | 218.105.0.0/16 5686 | 218.106.0.0/15 5687 | 218.108.0.0/16 5688 | 218.109.0.0/16 5689 | 218.185.192.0/19 5690 | 218.185.240.0/21 5691 | 218.192.0.0/16 5692 | 218.193.0.0/16 5693 | 218.194.0.0/16 5694 | 218.195.0.0/16 5695 | 218.196.0.0/14 5696 | 218.200.0.0/14 5697 | 218.204.0.0/15 5698 | 218.206.0.0/15 5699 | 218.240.0.0/14 5700 | 218.244.0.0/15 5701 | 218.246.0.0/15 5702 | 218.249.0.0/16 5703 | 219.72.0.0/16 5704 | 219.82.0.0/16 5705 | 219.83.128.0/17 5706 | 219.128.0.0/12 5707 | 219.144.0.0/14 5708 | 219.148.0.0/16 5709 | 219.149.0.0/17 5710 | 219.149.128.0/18 5711 | 219.149.192.0/18 5712 | 219.150.0.0/19 5713 | 219.150.32.0/19 5714 | 219.150.64.0/19 5715 | 219.150.96.0/20 5716 | 219.150.112.0/20 5717 | 219.150.128.0/17 5718 | 219.151.0.0/19 5719 | 219.151.32.0/19 5720 | 219.151.64.0/18 5721 | 219.151.128.0/17 5722 | 219.152.0.0/15 5723 | 219.154.0.0/15 5724 | 219.156.0.0/15 5725 | 219.158.0.0/17 5726 | 219.158.128.0/17 5727 | 219.159.0.0/18 5728 | 219.159.64.0/18 5729 | 219.159.128.0/17 5730 | 219.216.0.0/15 5731 | 219.218.0.0/15 5732 | 219.220.0.0/16 5733 | 219.221.0.0/16 5734 | 219.222.0.0/15 5735 | 219.224.0.0/15 5736 | 219.226.0.0/16 5737 | 219.227.0.0/16 5738 | 219.228.0.0/15 5739 | 219.230.0.0/15 5740 | 219.232.0.0/14 5741 | 219.236.0.0/15 5742 | 219.238.0.0/15 5743 | 219.242.0.0/15 5744 | 219.244.0.0/14 5745 | 220.101.192.0/18 5746 | 220.112.0.0/14 5747 | 220.152.128.0/17 5748 | 220.154.0.0/15 5749 | 220.158.240.0/22 5750 | 220.160.0.0/11 5751 | 220.192.0.0/15 5752 | 220.194.0.0/15 5753 | 220.196.0.0/14 5754 | 220.200.0.0/13 5755 | 220.231.0.0/18 5756 | 220.231.128.0/17 5757 | 220.232.64.0/18 5758 | 220.234.0.0/16 5759 | 220.242.0.0/15 5760 | 220.247.136.0/21 5761 | 220.248.0.0/14 5762 | 220.252.0.0/16 5763 | 221.0.0.0/15 5764 | 221.2.0.0/16 5765 | 221.3.0.0/17 5766 | 221.3.128.0/17 5767 | 221.4.0.0/16 5768 | 221.5.0.0/17 5769 | 221.5.128.0/17 5770 | 221.6.0.0/16 5771 | 221.7.0.0/19 5772 | 221.7.32.0/19 5773 | 221.7.64.0/19 5774 | 221.7.96.0/19 5775 | 221.7.128.0/17 5776 | 221.8.0.0/15 5777 | 221.10.0.0/16 5778 | 221.11.0.0/17 5779 | 221.11.128.0/18 5780 | 221.11.192.0/19 5781 | 221.11.224.0/19 5782 | 221.12.0.0/17 5783 | 221.12.128.0/18 5784 | 221.13.0.0/18 5785 | 221.13.64.0/19 5786 | 221.13.96.0/19 5787 | 221.13.128.0/17 5788 | 221.14.0.0/15 5789 | 221.122.0.0/15 5790 | 221.128.128.0/17 5791 | 221.129.0.0/16 5792 | 221.130.0.0/15 5793 | 221.133.224.0/19 5794 | 221.136.0.0/16 5795 | 221.137.0.0/16 5796 | 221.172.0.0/14 5797 | 221.176.0.0/13 5798 | 221.192.0.0/15 5799 | 221.194.0.0/16 5800 | 221.195.0.0/16 5801 | 221.196.0.0/15 5802 | 221.198.0.0/16 5803 | 221.199.0.0/19 5804 | 221.199.32.0/20 5805 | 221.199.48.0/20 5806 | 221.199.64.0/18 5807 | 221.199.128.0/18 5808 | 221.199.192.0/20 5809 | 221.199.224.0/19 5810 | 221.200.0.0/14 5811 | 221.204.0.0/15 5812 | 221.206.0.0/16 5813 | 221.207.0.0/18 5814 | 221.207.64.0/18 5815 | 221.207.128.0/17 5816 | 221.208.0.0/14 5817 | 221.212.0.0/16 5818 | 221.213.0.0/16 5819 | 221.214.0.0/15 5820 | 221.216.0.0/13 5821 | 221.224.0.0/13 5822 | 221.232.0.0/14 5823 | 221.236.0.0/15 5824 | 221.238.0.0/16 5825 | 221.239.0.0/17 5826 | 221.239.128.0/17 5827 | 222.16.0.0/15 5828 | 222.18.0.0/15 5829 | 222.20.0.0/15 5830 | 222.22.0.0/16 5831 | 222.23.0.0/16 5832 | 222.24.0.0/15 5833 | 222.26.0.0/15 5834 | 222.28.0.0/14 5835 | 222.32.0.0/11 5836 | 222.64.0.0/13 5837 | 222.72.0.0/15 5838 | 222.74.0.0/16 5839 | 222.75.0.0/16 5840 | 222.76.0.0/14 5841 | 222.80.0.0/15 5842 | 222.82.0.0/16 5843 | 222.83.0.0/17 5844 | 222.83.128.0/17 5845 | 222.84.0.0/16 5846 | 222.85.0.0/17 5847 | 222.85.128.0/17 5848 | 222.86.0.0/15 5849 | 222.88.0.0/15 5850 | 222.90.0.0/15 5851 | 222.92.0.0/14 5852 | 222.125.0.0/16 5853 | 222.126.128.0/17 5854 | 222.128.0.0/14 5855 | 222.132.0.0/14 5856 | 222.136.0.0/13 5857 | 222.160.0.0/15 5858 | 222.162.0.0/16 5859 | 222.163.0.0/19 5860 | 222.163.32.0/19 5861 | 222.163.64.0/18 5862 | 222.163.128.0/17 5863 | 222.168.0.0/15 5864 | 222.170.0.0/15 5865 | 222.172.0.0/17 5866 | 222.172.128.0/17 5867 | 222.173.0.0/16 5868 | 222.174.0.0/15 5869 | 222.176.0.0/13 5870 | 222.184.0.0/13 5871 | 222.192.0.0/14 5872 | 222.196.0.0/15 5873 | 222.198.0.0/16 5874 | 222.199.0.0/16 5875 | 222.200.0.0/14 5876 | 222.204.0.0/15 5877 | 222.206.0.0/15 5878 | 222.208.0.0/13 5879 | 222.216.0.0/15 5880 | 222.218.0.0/16 5881 | 222.219.0.0/16 5882 | 222.220.0.0/15 5883 | 222.222.0.0/15 5884 | 222.240.0.0/13 5885 | 222.248.0.0/16 5886 | 222.249.0.0/17 5887 | 222.249.128.0/19 5888 | 222.249.160.0/20 5889 | 222.249.176.0/20 5890 | 222.249.192.0/18 5891 | 223.0.0.0/15 5892 | 223.2.0.0/15 5893 | 223.4.0.0/14 5894 | 223.8.0.0/13 5895 | 223.20.0.0/15 5896 | 223.27.184.0/22 5897 | 223.64.0.0/11 5898 | 223.96.0.0/12 5899 | 223.112.0.0/14 5900 | 223.116.0.0/15 5901 | 223.120.0.0/13 5902 | 223.128.0.0/15 5903 | 223.144.0.0/12 5904 | 223.160.0.0/14 5905 | 223.166.0.0/15 5906 | 223.192.0.0/15 5907 | 223.198.0.0/15 5908 | 223.201.0.0/16 5909 | 223.202.0.0/15 5910 | 223.208.0.0/14 5911 | 223.212.0.0/15 5912 | 223.214.0.0/15 5913 | 223.220.0.0/15 5914 | 223.223.176.0/20 5915 | 223.223.192.0/20 5916 | 223.240.0.0/13 5917 | 223.248.0.0/14 5918 | 223.252.128.0/17 5919 | 223.254.0.0/16 5920 | 223.255.0.0/17 5921 | 223.255.236.0/22 5922 | 223.255.252.0/23 5923 | -------------------------------------------------------------------------------- /config/well-known-site.txt: -------------------------------------------------------------------------------- 1 | address=/googleads.g.doubleclick.net/216.58.221.34 2 | address=/www.google.com/216.58.221.36 3 | address=/accounts.google.com/74.125.203.84 4 | address=/clients6.google.com/74.125.204.100 74.125.204.102 74.125.204.101 74.125.204.139 74.125.204.113 74.125.204.138 5 | address=/clients4.google.com/74.125.23.100 74.125.23.139 74.125.23.113 74.125.23.102 74.125.23.138 74.125.23.101 6 | address=/apis.google.com/173.194.72.139 173.194.72.100 173.194.72.102 173.194.72.138 173.194.72.113 173.194.72.101 7 | address=/clients2.google.com/74.125.23.102 74.125.23.138 74.125.23.101 74.125.23.113 74.125.23.139 74.125.23.100 8 | address=/r13---sn-nwj7knes.googlevideo.com/74.125.170.82 9 | address=/www.google.com/216.58.221.132 10 | address=/r8---sn-o097znll.googlevideo.com/74.125.103.205 11 | address=/www.google.com/216.58.221.36 12 | address=/plus.google.com/74.125.203.139 74.125.203.138 74.125.203.102 74.125.203.100 74.125.203.101 74.125.203.113 13 | address=/id.google.com.hk/216.58.221.131 14 | address=/apis.google.com/173.194.72.138 173.194.72.102 173.194.72.113 173.194.72.101 173.194.72.139 173.194.72.100 15 | address=/myaccount.google.com/74.125.204.101 74.125.204.139 74.125.204.113 74.125.204.138 74.125.204.102 74.125.204.100 16 | address=/drive.google.com/216.58.221.78 17 | address=/docs.google.com/216.58.221.78 18 | address=/photos.google.com/216.58.221.142 19 | address=/news.google.com.hk/216.58.221.67 20 | address=/www.google.com.hk/74.125.23.199 21 | address=/support.google.com/74.125.23.138 74.125.23.113 74.125.23.100 74.125.23.102 74.125.23.139 74.125.23.101 22 | address=/toolbar.google.com/74.125.23.100 74.125.23.138 74.125.23.113 74.125.23.102 74.125.23.139 74.125.23.101 23 | address=/code.google.com/74.125.204.113 74.125.204.138 74.125.204.102 74.125.204.100 74.125.204.101 74.125.204.139 24 | address=/groups.google.com/74.125.203.102 74.125.203.101 74.125.203.113 74.125.203.139 74.125.203.100 74.125.203.138 25 | address=/investor.google.com/74.125.23.100 74.125.23.139 74.125.23.113 74.125.23.101 74.125.23.102 74.125.23.138 26 | address=/images.google.com.hk/173.194.72.138 173.194.72.100 173.194.72.113 173.194.72.101 173.194.72.139 173.194.72.102 27 | address=/mail.google.com/173.194.72.17 173.194.72.18 173.194.72.19 173.194.72.83 28 | address=/books.google.com.hk/74.125.23.139 74.125.23.113 74.125.23.101 74.125.23.102 74.125.23.138 74.125.23.100 29 | address=/maps.google.com.hk/216.58.221.67 30 | address=/scholar.google.com/74.125.23.105 74.125.23.106 74.125.23.103 74.125.23.99 74.125.23.104 74.125.23.147 31 | address=/sites.google.com/173.194.72.139 173.194.72.100 173.194.72.113 173.194.72.101 173.194.72.102 173.194.72.138 32 | address=/store.google.com/216.58.221.46 33 | address=/translate.google.com.hk/216.58.221.35 34 | address=/keep.google.com/74.125.23.113 74.125.23.101 74.125.23.138 74.125.23.100 74.125.23.139 74.125.23.102 35 | address=/picasa.google.com.hk/173.194.72.105 173.194.72.106 173.194.72.99 173.194.72.103 173.194.72.147 173.194.72.104 36 | address=/keep.google.com/74.125.23.102 74.125.23.113 74.125.23.101 74.125.23.138 74.125.23.100 74.125.23.139 37 | address=/picasa.google.com.hk/173.194.72.104 173.194.72.105 173.194.72.106 173.194.72.99 173.194.72.103 173.194.72.147 38 | address=/oauth.googleusercontent.com/173.194.72.132 39 | address=/accounts.google.com/173.194.72.84 40 | address=/clients5.google.com/74.125.204.113 74.125.204.139 74.125.204.101 74.125.204.102 74.125.204.138 74.125.204.100 41 | address=/clients4.google.com/74.125.23.113 74.125.23.100 74.125.23.138 74.125.23.139 74.125.23.101 74.125.23.102 42 | address=/0.client-channel.google.com/74.125.23.189 43 | address=/lh4.googleusercontent.com/173.194.72.132 44 | address=/google.com/216.58.221.46 45 | address=/clients6.google.com/74.125.23.139 74.125.23.102 74.125.23.101 74.125.23.113 74.125.23.100 74.125.23.138 46 | address=/www.youtube.com/173.194.72.139 173.194.72.100 173.194.72.113 173.194.72.101 173.194.72.138 173.194.72.102 47 | address=/s.youtube.com/64.233.187.102 64.233.187.101 64.233.187.113 64.233.187.139 64.233.187.100 64.233.187.138 48 | address=/www.youtube-nocookie.com/74.125.203.139 74.125.203.100 74.125.203.102 74.125.203.138 74.125.203.101 74.125.203.113 49 | address=/www.youtube.com/173.194.72.102 173.194.72.101 173.194.72.100 173.194.72.138 173.194.72.139 173.194.72.113 50 | address=/s.youtube.com/74.125.203.100 74.125.203.113 74.125.203.138 74.125.203.139 74.125.203.102 74.125.203.101 51 | address=/www.facebook.com/31.13.70.1 52 | address=/5-edge-chat.facebook.com/31.13.70.1 53 | address=/pixel.facebook.com/31.13.70.1 54 | address=/www.facebook.com/31.13.70.1 55 | address=/www.facebook.com/31.13.77.6 56 | address=/pixel.facebook.com/31.13.77.6 57 | address=/analytics.twitter.com/199.59.149.200 199.59.149.243 199.59.150.42 199.59.148.84 58 | address=/twitter.com/199.59.150.39 199.59.149.230 199.59.149.198 199.59.148.10 59 | address=/twitter.com/199.59.150.39 199.59.148.10 199.59.150.7 199.59.149.230 60 | address=/analytics.twitter.com/199.59.150.42 199.59.149.243 199.59.148.11 199.59.150.10 61 | address=/cnn.com/157.166.226.26 157.166.226.25 62 | address=/player.vimeo.com/104.156.85.217 23.235.33.217 104.156.81.217 23.235.37.217 63 | address=/i.vimeocdn.com/103.245.222.143 64 | address=/f.vimeocdn.com/103.245.222.143 65 | address=/secure-c.vimeocdn.com/23.47.136.24 66 | address=/s.vimeocdn.com/103.245.222.143 67 | address=/fresnel.vimeocdn.com/103.245.222.143 68 | address=/pdlvimeocdn-a.akamaihd.net/96.7.54.18 96.7.54.74 69 | -------------------------------------------------------------------------------- /edkDKEDEDLELkdeRR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechen163/mydns/caf26525786e94d0d95922d2c02734660e51eba6/edkDKEDEDLELkdeRR -------------------------------------------------------------------------------- /lib/domestic_addr.rb: -------------------------------------------------------------------------------- 1 | module Domestic_address 2 | 3 | # def initialize(domestic_addr_file,force_domestic_file) 4 | # load_domestic_file(domestic_addr_file) 5 | # load_force_domestic_file(force_domestic_file) 6 | 7 | 8 | # end 9 | 10 | def load_domestic_ip_file(fname) 11 | @ta = [] 12 | File.open(fname) do |file| 13 | file.each_line do |line| 14 | code = line.scan(/[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\/[0-9]+/)[0] 15 | #p code 16 | t1 = code.index('/') 17 | mask_len = code[t1+1..code.length-1].to_i 18 | mask = ('1'*mask_len+'0'*(32-mask_len)).to_i(2) 19 | 20 | @ta.push( [ (to_hex(code[0..t1-1]) & mask),mask,mask_len,code]) 21 | end 22 | end 23 | 24 | 25 | 26 | # p @ta.length 27 | 28 | # @ta.each do |x| 29 | # puts "#{(x[0].to_s(16))},#{to_ip(x[0])},#{x[1].to_s(16)},#{x[2]},#{x[3]}" 30 | # end 31 | end #load_domectic_file 32 | 33 | def b_match_domestic?(ip_hex,list) 34 | 35 | len = list.length 36 | if (1==len) 37 | mask = list[0][1] 38 | if ((ip_hex & mask) == list[0][0]) 39 | return true 40 | else 41 | return false 42 | end 43 | else 44 | 45 | pos = len/2 46 | ele = list[pos] 47 | mask = ele[1] 48 | res = ele[0] 49 | 50 | if ((ip_hex & mask) == res) 51 | return true 52 | end 53 | 54 | if (ip_hex > res) 55 | return false if (len == 2) 56 | return b_match_domestic?(ip_hex,list[(pos+1)..(len-1)]) 57 | else 58 | return b_match_domestic?(ip_hex,list[0..(pos-1)]) 59 | end 60 | end 61 | end #of function 62 | 63 | # def b_match_domestic?(ip_hex,list) 64 | 65 | # len = list.length 66 | # puts "#{ip_hex} ,#{len}, #{list}" 67 | 68 | # if (1==len) 69 | 70 | # if (ip_hex == list[0]) 71 | # return true 72 | # else 73 | # return false 74 | # end 75 | # else 76 | 77 | # pos = len/2 78 | # ele = list[pos] 79 | 80 | # if (ip_hex == ele) 81 | # return true 82 | # end 83 | 84 | # if (ip_hex > ele) 85 | # return false if (len == 2) 86 | # return b_match_domestic?(ip_hex,list[(pos+1)..(len-1)]) 87 | # else 88 | # return b_match_domestic?(ip_hex,list[0..(pos-1)]) 89 | # end 90 | # end 91 | # end #of function 92 | 93 | def match_domestic?(ip) 94 | ip_hex = to_hex(ip) 95 | 96 | return b_match_domestic?(ip_hex,@ta) 97 | 98 | 99 | # @ta.each do |na| 100 | # res = na[0] 101 | # mask = na[1] 102 | # mat = ip_hex & mask 103 | # if (mat == res) 104 | # # p show_ele(na) 105 | # # p ip_hex.to_s(16) 106 | # # p mat.to_s(16) 107 | # # p to_ip(ip_hex) 108 | # return true 109 | # end 110 | 111 | # #return true if (ip_hex & mask) == res 112 | # end 113 | 114 | # return false 115 | end #belong_to 116 | 117 | # def load_force_domestic_file(fname) 118 | # @force_list = [] 119 | # File.open(fname) do |file| 120 | # file.each_line do |line| 121 | 122 | # @force_list.push(line.strip) if line.strip.length>0 123 | # end 124 | # end 125 | 126 | # #@force_list.each {|x| p x} 127 | # end #load_force_domectic_file 128 | 129 | 130 | 131 | # def is_force_domain?(name) 132 | # @force_list.each do |line| 133 | # found = name.index(line) 134 | # return true if found!=nil 135 | # end 136 | # return false 137 | # end 138 | 139 | 140 | 141 | def show_ele(x) 142 | "#{(x[0].to_s(16))},#{to_ip(x[0])},#{x[1].to_s(16)},#{x[2]},#{x[3]}" 143 | end 144 | 145 | def to_ip(hn) 146 | s=hn.to_s(16) 147 | if s.length == 8 148 | (s[0..1].to_i(16)).to_s+'.'+(s[2..3].to_i(16)).to_s+'.'+(s[4..5].to_i(16)).to_s+'.'+(s[6..7].to_i(16)).to_s 149 | else 150 | (s[0].to_i(16)).to_s+'.'+(s[1..2].to_i(16)).to_s+'.'+(s[3..4].to_i(16)).to_s+'.'+(s[5..6].to_i(16)).to_s 151 | end 152 | end 153 | 154 | def to_hex(s) 155 | #p s 156 | return (s.split('.').inject('') {|res,var| res << ("%02x" % var.to_i )}).to_i(16) 157 | #p s.split('.') 158 | end 159 | 160 | 161 | 162 | end 163 | 164 | # da=Domestic_address.new('chnroute.txt','domestic_name.conf') 165 | # cache = [] 166 | # da.load_cache(cache,'oversea.conf') 167 | # cache.each {|h| puts "#{h[:name]} #{h[:ip]} "} 168 | 169 | # da.load_domestic_file('chnroute.txt') 170 | # #p da.to_hex('192.168.3.21') 171 | # # 172 | 173 | # p da.belong_to?('43.227.156.2').to_s 174 | # p da.belong_to?('223.255.240.2').to_s 175 | -------------------------------------------------------------------------------- /lib/myresolver.rb: -------------------------------------------------------------------------------- 1 | require 'rubydns' 2 | require 'time' 3 | require_relative 'domestic_addr' 4 | require 'yaml' 5 | require 'celluloid/io' 6 | 7 | # class InvalidProtocolError < StandardError 8 | # end 9 | 10 | # class InvalidResponseError < StandardError 11 | # end 12 | 13 | # class DecodeError < StandardError 14 | # end 15 | 16 | # class IOError < StandardError 17 | # end 18 | 19 | 20 | class MyResolver < RubyDNS::Resolver 21 | 22 | include Domestic_address 23 | 24 | def initialize(servers, options = {}) 25 | @config=YAML.load(File.open('_config.yml')) 26 | 27 | @cache=[] 28 | #load_cache(make_file_name(@config["ovsroute"])) 29 | @oversea_resolve = File.open(make_file_name(@config["ovsroute"]),'a') 30 | 31 | load_domestic_ip_file(make_file_name(@config["chnroute"])) 32 | 33 | @domestic_server_list = @config["domestic_dns_resolver"].collect do |h| 34 | h.values.each_with_index.collect {|x,i| i==0 ? x.to_sym : x} 35 | end 36 | 37 | @oversea_server_list = @config["oversea_dns_resolver"].collect do |h| 38 | h.values.each_with_index.collect {|x,i| i==0 ? x.to_sym : x} 39 | end 40 | 41 | super 42 | end 43 | 44 | def get_cache 45 | return @cache 46 | end 47 | 48 | def make_file_name(fname) 49 | return @config["home_directory"]+'/'+fname 50 | end 51 | 52 | 53 | def close_file 54 | @oversea_resolve.close 55 | end 56 | 57 | def dispatch_request(message) 58 | 59 | name = get_request_domain_name(message) 60 | if (h = @cache.find {|h| (h[:name] == name) and h[:state_valid]}) != nil 61 | t = Time.now 62 | 63 | vf_flag = true 64 | h[:ttl].each do |ttl| 65 | vf_flag = (vf_flag and false) if (t-h[:time] > ttl) # if any ttl is invalid, update cache 66 | #vf_flag = (vf_flag and false) if (t-h[:time] > @config["default_ttl"]) # if any ttl is invalid, update cache 67 | end 68 | 69 | if vf_flag 70 | @logger.debug "Found in cache [#{name} #{h[:ip]}] keep in #{t-h[:time]} seconds" if @logger 71 | return h[:response] 72 | else 73 | #@cache.delete_if {|h| h[:name] == name} 74 | h[:state_valid] = false 75 | end 76 | end 77 | 78 | if @config["now_in_oversea"] 79 | server,response,result = request_oversea_resolver(message) 80 | ip_list = get_iplist_from_response(result) 81 | ttl_list = get_ttl_from_response(result) 82 | 83 | #if (ip_list.length!=0) and match_domestic?(ip_list[0].to_s) 84 | if is_domestic_result?(ip_list) 85 | server,response, result = query_dns(message,@domestic_server_list,false) 86 | ip_list = get_iplist_from_response(result) 87 | ttl_list = get_ttl_from_response(result) 88 | 89 | @logger.debug "[Now_in_oversea domestic][#{server[1]}:#{server[2]}][#{name} #{ip_list}]" if @logger 90 | return response 91 | else 92 | @logger.debug "[Now_in_oversea][#{server[1]}:#{server[2]}][#{name} #{ip_list}]" if @logger 93 | return response 94 | end 95 | end 96 | 97 | 98 | if @config["white_list_mode"] 99 | @config["white_list"].values.each do |item| 100 | found = name.index(item) 101 | if found!=nil 102 | server,response,result = request_oversea_resolver(message) 103 | if (result.length==0) 104 | t= Time.now 105 | if ((h = @cache.find {|h| (h[:name] == name) }) != nil) and (t-h[:time] < @config["longest_valid_ttl"]) #found 106 | @logger.debug "white_list, using cache [#{h[:name]} [#{arr_to_s(h[:ip])}]" if @logger 107 | return h[:response] 108 | else 109 | @logger.debug "Receive empty response from [#{server[1]}:#{server[2]}] for [#{name}]" if @logger 110 | 111 | return nil 112 | end 113 | end 114 | 115 | ip_list = get_iplist_from_response(result) 116 | ttl_list = get_ttl_from_response(result) 117 | @logger.debug "[white_list][#{server[1]}:#{server[2]}][#{name} #{ip_list}]" if @logger 118 | return response 119 | end 120 | end 121 | end 122 | 123 | #domestic_resp, domestic_addr = get_domestic_reponse(message) 124 | server,response, result = query_dns(message,@domestic_server_list,false) 125 | 126 | # if @config["white_list_mode"] 127 | # @logger.debug "[white_list_mode domestic][#{server[1]}:#{server[2]}][#{name} [#{arr_to_s(get_iplist_from_response(result))}]] " if @logger 128 | # return response 129 | # end 130 | 131 | if (result.length!=0) and force_using_domestic?(name) 132 | @logger.debug "[force_domestic][#{server[1]}:#{server[2]}][#{name} [#{arr_to_s(get_iplist_from_response(result))}]] " if @logger 133 | return response 134 | end 135 | 136 | #@logger.debug "domestic_addr = #{domestic_addr} " if @logger 137 | ip_list = get_iplist_from_response(result) 138 | #if (ip_list.length!=0) and match_domestic?(ip_list[0].to_s) 139 | if is_domestic_result?(ip_list) 140 | #do not buffer domestic ip 141 | @logger.debug "[domestic][#{server[1]}:#{server[2]}][#{name} #{ip_list}]" if @logger 142 | return response 143 | 144 | else 145 | server_r,response_r,result_r = request_oversea_resolver(message) 146 | 147 | 148 | if (result_r.length==0) 149 | t= Time.now 150 | if ((h = @cache.find {|h| (h[:name] == name) }) != nil) and (t-h[:time] < @config["longest_valid_ttl"]) #found 151 | @logger.debug "Oversea dns invalid, using cache [#{h[:name]} [#{arr_to_s(h[:ip])}]" if @logger 152 | return h[:response] 153 | else 154 | @logger.debug "Receive empty response from [#{server_r[1]}:#{server_r[2]}] for [#{name}]" if @logger 155 | 156 | return nil 157 | end 158 | end 159 | 160 | final_site = "" 161 | ip_list = get_iplist_from_response(result_r) 162 | #if (ip_list.length!=0) and match_domestic?(ip_list[0].to_s) 163 | if is_domestic_result?(ip_list) 164 | final_site = "domestic" 165 | else 166 | final_site = "oversea " 167 | server,response,result = server_r,response_r,result_r 168 | end 169 | 170 | ip_list = get_iplist_from_response(result) 171 | ttl_list = get_ttl_from_response(result) 172 | @logger.debug "[#{final_site}][#{server[1]}:#{server[2]}][#{name} #{ip_list}" if @logger 173 | return response 174 | end 175 | 176 | end #end of dispatch 177 | 178 | private 179 | 180 | def request_oversea_resolver(message) 181 | name = get_request_domain_name(message) 182 | server,response,result = query_dns(message,@oversea_server_list,true) 183 | 184 | if (result.length!=0) 185 | #h=Hash.new 186 | if ((h = @cache.find {|h| (h[:name] == name) }) == nil) #not found 187 | 188 | h=Hash.new 189 | h[:name] = get_request_domain_name(message) 190 | h[:ip] = get_iplist_from_response(result) 191 | h[:ttl] = get_ttl_from_response(result) 192 | h[:response] = response 193 | h[:time] = Time.now 194 | h[:state_valid] = true 195 | @cache.push(h) 196 | #append_record(h[:name],h[:ip]) 197 | else #found, h[:state_valid] must be false 198 | h[:name] = get_request_domain_name(message) 199 | h[:ip] = get_iplist_from_response(result) 200 | h[:ttl] = get_ttl_from_response(result) 201 | h[:response] = response 202 | h[:time] = Time.now 203 | h[:state_valid] = true 204 | #@logger.debug "Updating cache [#{h[:name]} [#{arr_to_s(h[:ip])}] [#{arr_to_s(h[:ttl])}] " if @logger 205 | #append_record(h[:name],h[:ip]) 206 | end 207 | append_record(h[:name],arr_to_s(h[:ip])) 208 | 209 | else #result == 0 #move to outside 210 | # t= Time.now 211 | # if ((h = @cache.find {|h| (h[:name] == name) }) != nil) and (t-h[:time] < @config["longest_valid_ttl"]) #found 212 | # @logger.debug "Oversea dns invalid, using cache [#{h[:name]} [#{arr_to_s(h[:ip])}] [#{arr_to_s(h[:ttl])}] " if @logger 213 | # return h[:response],result 214 | # end 215 | end 216 | 217 | #ip_list = get_iplist_from_response(result) 218 | #ttl_list = get_ttl_from_response(result) 219 | #@logger.debug "Using oversea resolver [#{name} #{ip_list} #{ttl_list}]" if @logger 220 | return server, response , result 221 | end 222 | 223 | def get_type_a_address(name,response,oversea_flag=false) 224 | result = [] 225 | 226 | #return result if response==nil 227 | #return result if response.answer==nil 228 | #@logger.debug "get_address #{response.inspect} " if @logger 229 | 230 | response.answer.each do |res| 231 | res.each do |x| 232 | #@logger.debug "get_address #{x.class} " if @logger 233 | if x.class == Resolv::DNS::Resource::IN::A #only process A type record 234 | result.push([x.address.to_s,x.ttl.to_i]) #if x!=nil 235 | end 236 | if x.class == Resolv::DNS::Resource::IN::CNAME 237 | name = x.name.to_s 238 | result.push([name[0..name.length-2],x.ttl.to_i]) #if x!=nil 239 | end 240 | if x.class == Resolv::DNS::Resource::IN::AAAA 241 | result.push([x.address.to_s,x.ttl.to_i]) #if x!=nil 242 | end 243 | #@logger.debug "Uknown type #{x.inspect} " if @logger 244 | 245 | 246 | end 247 | end 248 | #@logger.debug "#{result.inspect} " if @logger 249 | 250 | # result.each do |addr| 251 | # @logger.debug "oversea get_address #{addr} " if @logger and oversea_flag 252 | # @logger.debug "domestic get_address #{addr} " if @logger and not oversea_flag 253 | # end 254 | 255 | #ip_list = result.inject(""){|r,v| r<<(v+' ')} 256 | # ip_list ="" 257 | # result.each do |addr| 258 | # ip_list << ("#{addr[0]}:#{addr[1].to_i}") 259 | # end 260 | 261 | # ip_list = arr_to_s(get_iplist_from_response(result)) 262 | # ttl_list = arr_to_s(get_ttl_from_response(result)) 263 | 264 | # #if ip_list!="" 265 | # @logger.debug "oversea : address=/#{name}/#{ip_list}/#{ttl_list}" if @logger and oversea_flag 266 | # @logger.debug "domestic : address=/#{name}/#{ip_list}/#{ttl_list} " if @logger and not oversea_flag 267 | # #end 268 | 269 | return result 270 | end 271 | 272 | def query_dns(message,server_list,oversea_flag=false) 273 | request = Request.new(message,server_list) 274 | request.each do |server| 275 | 276 | #@logger.debug "[#{message.id}] Sending request [#{get_request_domain_name(message)}] to server #{server.inspect}" if @logger 277 | 278 | begin 279 | response = nil 280 | 281 | # This may be causing a problem, perhaps try: 282 | # after(timeout) { socket.close } 283 | # https://github.com/celluloid/celluloid-io/issues/121 284 | timeout(request_timeout) do 285 | response = try_server(request, server) 286 | end 287 | 288 | if valid_response(message, response) 289 | if response.answer.count == 0 290 | return server_list[0],nil,[] 291 | end 292 | addr = get_type_a_address(get_request_domain_name(message),response,oversea_flag) 293 | return server ,response , addr 294 | end 295 | # rescue Task::TimeoutError 296 | # @logger.debug "[#{message.id}] Request timed out!" if @logger 297 | # rescue InvalidResponseError 298 | # @logger.warn "[#{message.id}] Invalid response from network: #{$!}!" if @logger 299 | # rescue DecodeError 300 | # @logger.warn "[#{message.id}] Error while decoding data from network: #{$!}!" if @logger 301 | # rescue IOError 302 | # @logger.warn "[#{message.id}] Error while reading from network: #{$!}!" if @logger 303 | rescue Exception => e 304 | end 305 | end 306 | 307 | return server_list[0],nil,[] 308 | end #end of query_dns 309 | 310 | # def get_domestic_reponse(message) 311 | # server_list = @config["domestic_dns_resolver"].collect do |h| 312 | # h.values.each_with_index.collect {|x,i| i==0 ? x.to_sym : x} 313 | # end 314 | 315 | # return query_dns(message,server_list) 316 | # #return query_dns(message, [[:udp, "192.168.1.1", 53],[:udp, "223.5.5.5", 53],[:udp, "14.18.142.2", 53]]) 317 | # end 318 | # def get_oversea_reponse(message) 319 | 320 | # server_list = @config["oversea_dns_resolver"].collect do |h| 321 | # h.values.each_with_index.collect {|x,i| i==0 ? x.to_sym : x} 322 | # end 323 | 324 | # return query_dns(message,server_list,true) 325 | # #return query_dns(message, [[:udp, "127.0.0.1", 5533]],true) 326 | # end 327 | 328 | def get_request_domain_name(message) 329 | name = message.question[0][0].to_s 330 | return name[0..name.length-2] 331 | end 332 | 333 | def append_record(name,ip) 334 | #@logger.debug "Writing oversea: #{name} #{ip}" if @logger 335 | @oversea_resolve.puts("address=/#{name}/#{ip}") 336 | end 337 | 338 | # def match_domestic?(ip) 339 | # return @domestic_addr.belong_to?(ip) 340 | # end 341 | 342 | def force_using_domestic?(ip) 343 | @config["force_using_domestic_resolve"].values.each do |line| 344 | len = line.length 345 | if line[len-1] == '$' 346 | len2 = ip.length 347 | return true if ip[(len2-len+1)..len2-1] == line[0..len-2] 348 | else 349 | found = ip.index(line) 350 | return true if found!=nil 351 | end 352 | end 353 | return false 354 | end 355 | 356 | def get_iplist_from_response(result) 357 | return result.collect{|addr| addr[0]} 358 | end 359 | 360 | def get_ttl_from_response(result) 361 | return result.collect{|addr| addr[1]} 362 | end 363 | 364 | def arr_to_s(arr) 365 | arr.inject(""){|r,v| r<<"#{v.to_s} "}.strip 366 | end 367 | 368 | def load_cache(fname) 369 | File.open(fname) do |file| 370 | file.each_line do |line| 371 | temp,name,iplist = line.split('/') 372 | if (h = @cache.find {|h| h[:name] == name}) == nil 373 | h=Hash.new 374 | h[:name] = name 375 | h[:ip] = iplist.split(' ') 376 | h[:ttl] = h[:ip].collect {|x| @config["default_ttl"]} # 11 minitues default 377 | h[:time] = Time.now 378 | h[:state_valid] = true 379 | h[:response] = make_response(h) 380 | @cache.push(h) 381 | else #this domain exists 382 | update_flag = false 383 | iplist.split(' ').each do |ip| 384 | if (nr=h[:ip].find{|x| x==ip})==nil 385 | h[:ip].push(ip) 386 | h[:ttl].push @config["default_ttl"] 387 | update_flag = true 388 | end 389 | end 390 | h[:response] = make_response(h) if update_flag 391 | end 392 | 393 | end 394 | end 395 | end #end of load_cache 396 | 397 | def cname?(s) 398 | s.split('.').each {|word| return true if word.scan(/[a-z]+/).length > 0 } 399 | return false 400 | end 401 | 402 | def is_domestic_result?(result) 403 | return false if result.length==0 404 | result.each do |ip| 405 | if not cname?(ip) 406 | return match_domestic?(ip) 407 | end 408 | end 409 | end 410 | 411 | def make_response(h) 412 | response = Resolv::DNS::Message.new 413 | response.add_question(h[:name],Resolv::DNS::Resource::IN::A) 414 | 415 | h[:ip].sort.reverse.each do |ip| 416 | # ip.split('.').collect{|x| x.to_i}.pack ('C4') 417 | if cname?(ip) 418 | ip=Resolv::DNS::Resource::IN::CNAME.new(Resolv::DNS::Name.create(ip)) 419 | else 420 | ip=Resolv::DNS::Resource::IN::A.new(ip) 421 | end 422 | 423 | def ip.ttl= (ttl) 424 | @ttl = ttl 425 | end 426 | ip.ttl = h[:ttl][0] 427 | response.add_answer(h[:name],h[:ttl][0],ip) 428 | end 429 | end 430 | 431 | end 432 | 433 | 434 | if $0 == __FILE__ 435 | #puts "#{$0}" 436 | 437 | mr=MyResolver.new([[:udp,'129.168.1.1',53]]) 438 | 439 | mr.load_cache(make_file_name(@config["ovsroute"])) 440 | 441 | def a2s(arr) 442 | arr.inject(""){|r,v| r<<"#{v.to_s} "}.strip 443 | end 444 | 445 | mr.get_cache.each do |h| 446 | puts "#{h[:name]}=#{a2s(h[:ip])}" 447 | end 448 | 449 | #exit(1) 450 | 451 | end -------------------------------------------------------------------------------- /log/test: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /mydns.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ## 3 | require 'rubydns' 4 | require 'logger' 5 | #require 'yaml' 6 | require_relative 'lib/myresolver' 7 | 8 | require 'yaml' 9 | config=YAML.load(File.open('_config.yml')) 10 | 11 | INTERFACES = [ 12 | [:udp, config["bind_ip"], config["bind_port"]], 13 | [:tcp, config["bind_ip"], config["bind_port"]] 14 | ] 15 | Name = Resolv::DNS::Name 16 | IN = Resolv::DNS::Resource::IN 17 | 18 | 19 | #file = open('mydns.log', File::WRONLY | File::APPEND | File::CREAT) 20 | #logger = Logger.new(file) 21 | logger = Logger.new(config["home_directory"]+'/'+config["logfile"]) 22 | logger.level = Logger::DEBUG 23 | if config["loglevel"] == "INFO" 24 | logger.level = Logger::INFO 25 | end 26 | logger.datetime_format = "%Y-%m-%d %H:%M:%S" 27 | logger.formatter = proc { |severity, datetime, progname, msg| 28 | "#{datetime}: #{msg}\n" 29 | } 30 | 31 | 32 | # Use upstream DNS for name resolution. 33 | #mainland = RubyDNS::Resolver.new([ [:udp, "192.168.2.1", 53]]) 34 | #oversea = RubyDNS::Resolver.new([ [:tcp, "8.8.8.8", 53]]) 35 | #myresolver = MyResolver.new([[:udp, "192.168.2.1", 53],[:tcp, "106.185.41.36", 53]]) 36 | #myresolver = MyResolver.new([[:udp, "192.168.2.1", 53]]) 37 | #oversea_resolver = MyResolver.new([:q:[:tcp, "8.8.8.8", 53],[:tcp, "151.236.20.236", 53],[:tcp, "106.185.41.36", 53]]) 38 | 39 | server_list = config["oversea_dns_resolver"].collect do |h| 40 | h.values.each_with_index.collect {|x,i| i==0 ? x.to_sym : x} 41 | end 42 | 43 | oversea_resolver = MyResolver.new(server_list,:logger=>logger) 44 | 45 | begin 46 | # Start the RubyDNS server 47 | RubyDNS::run_server(:listen => INTERFACES) do 48 | match(/www\.google\.com/, IN::A) do |transaction| 49 | transaction.respond!("172.217.3.164") 50 | end 51 | 52 | # Default DNS handler 53 | otherwise do |transaction| 54 | transaction.passthrough!(oversea_resolver) 55 | end 56 | end 57 | ensure 58 | oversea_resolver.close_file 59 | end 60 | --------------------------------------------------------------------------------