├── src ├── mono-unicode.min.js ├── mono-perf.min.js ├── mono.min.js ├── mono-size.min.js ├── whiteList ├── mono-perf.js ├── mono.js ├── mono-size.js ├── blackList ├── make.py └── ipList ├── test ├── blackgear-mono_pac-size.pac ├── test.js └── blackgear-mono_pac.pac ├── tools ├── pkulist2iplist.py ├── apnic2iplist.py └── grep.py ├── LICENSE └── README.md /src/mono-unicode.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/blackgear-mono_pac-size.pac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackgear/mono_pac/HEAD/test/blackgear-mono_pac-size.pac -------------------------------------------------------------------------------- /tools/pkulist2iplist.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | # https://its.pku.edu.cn/oper/liebiao.jsp 4 | 5 | with open('pkulist') as f: 6 | data = f.read() 7 | 8 | for line in filter(lambda x: '.' in x, data.splitlines()): 9 | item = line.split(' ') 10 | print('{}/{}'.format(item[0], sum([bin(int(x)).count('1') for x in item[-1].split('.')]))) 11 | -------------------------------------------------------------------------------- /tools/apnic2iplist.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | # https://ftp.apnic.net/stats/apnic/delegated-apnic-latest 4 | 5 | with open('delegated-apnic-latest') as f: 6 | data = f.read() 7 | 8 | for line in filter(lambda x: x.startswith('apnic|CN|ipv4'), data.splitlines()): 9 | item = line.split('|') 10 | print('{}/{}'.format(item[3], 33 - int(item[4]).bit_length())) 11 | -------------------------------------------------------------------------------- /src/mono-perf.min.js: -------------------------------------------------------------------------------- 1 | function FindProxyForURL(s,a){if(isPlainHostName(a))return i;var f=a,u=0;do{if(e.hasOwnProperty(f))return r;if(t.hasOwnProperty(f))return i;u=a.indexOf(".",u)+1,f=a.substring(u)}while(u>0);var o=dnsResolve(a);if(!o)return r;if(o.indexOf(":")>=0)return i;var l=o.split("."),d=(255&l[1])<<8|255&l[2],h=l[0],v=_[h],w=n[h];if(0===v)return r;if(16===w)return i;var L=0,p=v.length,O=p>>1;do v[O]>d?p=O:L=O,O=L+p>>1;while(L+1>w[L]===0?i:r}var r=__proxyList__,i="DIRECT",t=__whiteList__,e=__blackList__,_=__codeList__,n=__maskList__; 2 | -------------------------------------------------------------------------------- /tools/grep.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import requests 3 | import re 4 | from collections import Counter 5 | 6 | def main(url): 7 | webpage = requests.get(url).text 8 | domains = re.findall(r'src="https?://[\w.]*\.(\w*\.\w*)/', webpage) 9 | results = Counter() 10 | for domain in domains: 11 | results[domain] += 1 12 | for result in results.most_common(): 13 | print(result[0]) 14 | 15 | if __name__ == '__main__': 16 | if len(sys.argv) == 1: 17 | pass 18 | elif sys.argv[1].startswith('http'): 19 | main(sys.argv[1]) 20 | else: 21 | main('http://' + sys.argv[1]) 22 | -------------------------------------------------------------------------------- /src/mono.min.js: -------------------------------------------------------------------------------- 1 | function r(r){for(var t={};i=r.pop();)t[i]=1;return t}function FindProxyForURL(r,i){if(isPlainHostName(i))return e;var f=i,o=0;do{if(_.hasOwnProperty(f))return t;if(n.hasOwnProperty(f))return e;o=i.indexOf(".",o)+1,f=i.substring(o)}while(o>0);var u=dnsResolve(i);if(!u)return t;if(u.indexOf(":")>=0)return e;var l=u.split("."),p=(255&l[1])<<8|255&l[2],v=l[0],d=s[v],h=a[v];if(0===d)return t;if(16===h)return e;var w=0,L=d.length,c=L>>1;do d[c]>p?L=c:w=c,c=w+L>>1;while(w+1>h[w]===0?e:t}var t=__proxyList__,e="DIRECT",n=r("__whiteList__".split("|")),_=r("__blackList__".split("|")),s=__codeList__,a=__maskList__; 2 | -------------------------------------------------------------------------------- /src/mono-size.min.js: -------------------------------------------------------------------------------- 1 | function r(r){for(var t={};i=r.pop();)t[i]=1;return t}function FindProxyForURL(r,i){if(isPlainHostName(i))return e;var o=i,f=0;do{if(_.hasOwnProperty(o))return t;if(n.hasOwnProperty(o))return e;f=i.indexOf(".",f)+1,o=i.substring(f)}while(f>0);var u=dnsResolve(i);if(!u)return t;if(u.indexOf(":")>=0)return e;var l=u.split("."),p=(255&l[1])<<8|255&l[2],d=l[0],h=s[d],v=a[d];if(""===h)return t;if("10"===v)return e;var c=0,w=h.length,L=w>>1;do h[L].charCodeAt(0)>p?w=L:c=L,L=c+w>>1;while(c+1>parseInt(v[c],16)===0?e:t}var t=__proxyList__,e="DIRECT",n=r("__whiteList__".split("|")),_=r("__blackList__".split("|")),s=__codeList__,a=__maskList__; 2 | -------------------------------------------------------------------------------- /src/whiteList: -------------------------------------------------------------------------------- 1 | # TLDs 2 | cn 3 | local 4 | lan 5 | localhost 6 | 7 | # Apple 8 | appldnld.apple.com 9 | adcdownload.apple.com 10 | icloud-content.com 11 | ls.apple.com 12 | lcdn-registration.apple.com 13 | phobos.apple.com 14 | swcdn.apple.com 15 | 16 | # Acfun 17 | acfun.tv 18 | 19 | # Ali 20 | alipay.com 21 | alicdn.com 22 | taobao.com 23 | tbcdn.cn 24 | taobaocdn.com 25 | tmall.com 26 | 27 | # Baidu 28 | baidu.com 29 | baidupcs.com 30 | bdstatic.com 31 | tiebaimg.com 32 | 33 | # BDWM 34 | bdwm.net 35 | 36 | # Bilibili 37 | bilibili.com 38 | acgvideo.com 39 | hdslb.com 40 | 41 | # Ele 42 | ele.me 43 | elemecdn.com 44 | 45 | # iapps 46 | iapps.im 47 | 48 | # Lkong 49 | lkong.net 50 | lkong.cn 51 | lkong2000.net 52 | 53 | # NetEase 54 | 163.com 55 | 126.net 56 | netease.com 57 | 58 | # NGA 59 | ngacn.cc 60 | 178.com 61 | 62 | # Reimu 63 | reimu.net 64 | 65 | # S1 66 | saraba1st.com 67 | 68 | # Themex 69 | themex.net 70 | 71 | # Weibo 72 | weibo.cn 73 | weibo.com 74 | sinaimg.cn 75 | 76 | # Youku 77 | youku.com 78 | ykimg.com 79 | 80 | # Zhihu 81 | zhihu.com 82 | zhimg.com 83 | zhi.hu 84 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2015 Daniel 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | function loadPAC(path) { 2 | var vm = require("vm"); 3 | var fs = require("fs"); 4 | var data = fs.readFileSync(path); 5 | var context = { 6 | dnsResolve: function(host) { return host; }, 7 | isPlainHostName: function(host) { return false; }, 8 | isInNet: function(ip, ipstart, ipmask) { return false; }, 9 | shExpMatch: function(a, b) { return false; }, 10 | console: console 11 | }; 12 | vm.runInNewContext(data, context); 13 | return context.FindProxyForURL; 14 | } 15 | 16 | function ipList(repeat) { 17 | var iplist = []; 18 | for (var i = 0; i < repeat; i++) { 19 | var atom = Array(); 20 | atom.push(Math.random()*256>>0); 21 | atom.push(Math.random()*256>>0); 22 | atom.push(Math.random()*256>>0); 23 | atom.push(Math.random()*256>>0); 24 | iplist.push(atom.join(".")); 25 | } 26 | return iplist; 27 | } 28 | 29 | function speedTest(path, iplist) { 30 | console.log("Testing pac generated by " + path); 31 | var pac = loadPAC(path); 32 | var result = []; 33 | var time = process.hrtime(); 34 | for (var i = 0; i < iplist.length; i++) { 35 | result.push(pac("", iplist[i])); 36 | } 37 | var diff = process.hrtime(time); 38 | console.log("avg: " + ((diff[0] * 1e3 + diff[1] * 1e-6) * 1e3 / iplist.length).toFixed(3) + "us"); 39 | return result; 40 | } 41 | 42 | var repeat = 3000000; 43 | iplist = ipList(repeat); 44 | 45 | oldresult = speedTest("blackgear-mono_pac.pac", iplist); 46 | newresult = speedTest("blackgear-mono_pac-unicode.pac", iplist); 47 | speedTest("Leask-Flora_Pac-mod.pac", iplist); 48 | speedTest("usufu-Flora_Pac.pac", iplist); 49 | speedTest("yaleh-Flora_Pac.pac", iplist); 50 | 51 | for (var i = 0; i < repeat; i++) { 52 | if (oldresult[i] !== newresult[i]) { 53 | throw "Err"; 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/mono-perf.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2015 BlackGear 3 | * https://github.com/BlackGear/Mono_PAC 4 | */ 5 | var tunnel = __proxyList__; 6 | var direct = "DIRECT"; 7 | var whiteList = __whiteList__; 8 | var blackList = __blackList__; 9 | var codeList = __codeList__; 10 | var maskList = __maskList__; 11 | 12 | function FindProxyForURL(url, host) { 13 | if (isPlainHostName(host)) { 14 | return direct; 15 | } 16 | 17 | var domain = host; 18 | var pos = 0; 19 | 20 | do { 21 | if (blackList.hasOwnProperty(domain)) { 22 | return tunnel; 23 | } 24 | if (whiteList.hasOwnProperty(domain)) { 25 | return direct; 26 | } 27 | pos = host.indexOf(".", pos) + 1; 28 | domain = host.substring(pos); 29 | } while (pos > 0); 30 | 31 | var IP = dnsResolve(host); 32 | 33 | if (!IP) { 34 | return tunnel; 35 | } 36 | 37 | if (IP.indexOf(":") >= 0) { 38 | return direct; 39 | } 40 | 41 | var atom = IP.split("."); 42 | var code = ((atom[1] & 0xff) << 8) | ((atom[2] & 0xff)); 43 | var hash = atom[0]; 44 | 45 | var codeLine = codeList[hash]; 46 | var maskLine = maskList[hash]; 47 | 48 | if (codeLine === 0) { 49 | return tunnel; 50 | } 51 | 52 | if (maskLine === 16) { 53 | return direct; 54 | } 55 | 56 | var min = 0; 57 | var max = codeLine.length; 58 | var mid = max >> 1; 59 | 60 | do { 61 | if (codeLine[mid] > code) { 62 | max = mid; 63 | } else { 64 | min = mid; 65 | } 66 | mid = (min + max) >> 1; 67 | } while (min + 1 < max); 68 | 69 | 70 | if (code - codeLine[min] >> maskLine[min] === 0) { 71 | return direct; 72 | } 73 | 74 | return tunnel; 75 | } 76 | -------------------------------------------------------------------------------- /src/mono.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2015 BlackGear 3 | * https://github.com/BlackGear/Mono_PAC 4 | */ 5 | function merge(list) { 6 | var obj = {}; 7 | while (i = list.pop()) { 8 | obj[i] = 1; 9 | }; 10 | return obj; 11 | }; 12 | 13 | var tunnel = __proxyList__; 14 | var direct = "DIRECT"; 15 | var whiteList = merge("__whiteList__".split("|")); 16 | var blackList = merge("__blackList__".split("|")); 17 | var codeList = __codeList__; 18 | var maskList = __maskList__; 19 | 20 | function FindProxyForURL(url, host) { 21 | if (isPlainHostName(host)) { 22 | return direct; 23 | } 24 | 25 | var domain = host; 26 | var pos = 0; 27 | 28 | do { 29 | if (blackList.hasOwnProperty(domain)) { 30 | return tunnel; 31 | } 32 | if (whiteList.hasOwnProperty(domain)) { 33 | return direct; 34 | } 35 | pos = host.indexOf(".", pos) + 1; 36 | domain = host.substring(pos); 37 | } while (pos > 0); 38 | 39 | var IP = dnsResolve(host); 40 | 41 | if (!IP) { 42 | return tunnel; 43 | } 44 | 45 | if (IP.indexOf(":") >= 0) { 46 | return direct; 47 | } 48 | 49 | var atom = IP.split("."); 50 | var code = ((atom[1] & 0xff) << 8) | ((atom[2] & 0xff)); 51 | var hash = atom[0]; 52 | 53 | var codeLine = codeList[hash]; 54 | var maskLine = maskList[hash]; 55 | 56 | if (codeLine === 0) { 57 | return tunnel; 58 | } 59 | 60 | if (maskLine === 16) { 61 | return direct; 62 | } 63 | 64 | var min = 0; 65 | var max = codeLine.length; 66 | var mid = max >> 1; 67 | 68 | do { 69 | if (codeLine[mid] > code) { 70 | max = mid; 71 | } else { 72 | min = mid; 73 | } 74 | mid = (min + max) >> 1; 75 | } while (min + 1 < max); 76 | 77 | 78 | if (code - codeLine[min] >> maskLine[min] === 0) { 79 | return direct; 80 | } 81 | 82 | return tunnel; 83 | } 84 | -------------------------------------------------------------------------------- /src/mono-size.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2015 BlackGear 3 | * https://github.com/BlackGear/Mono_PAC 4 | */ 5 | function merge(list) { 6 | var obj = {}; 7 | while (i = list.pop()) { 8 | obj[i] = 1; 9 | }; 10 | return obj; 11 | }; 12 | 13 | var tunnel = __proxyList__; 14 | var direct = "DIRECT"; 15 | var whiteList = merge("__whiteList__".split("|")); 16 | var blackList = merge("__blackList__".split("|")); 17 | var codeList = __codeList__; 18 | var maskList = __maskList__; 19 | 20 | function FindProxyForURL(url, host) { 21 | if (isPlainHostName(host)) { 22 | return direct; 23 | } 24 | 25 | var domain = host; 26 | var pos = 0; 27 | 28 | do { 29 | if (blackList.hasOwnProperty(domain)) { 30 | return tunnel; 31 | } 32 | if (whiteList.hasOwnProperty(domain)) { 33 | return direct; 34 | } 35 | pos = host.indexOf(".", pos) + 1; 36 | domain = host.substring(pos); 37 | } while (pos > 0); 38 | 39 | var IP = dnsResolve(host); 40 | 41 | if (!IP) { 42 | return tunnel; 43 | } 44 | 45 | if (IP.indexOf(":") >= 0) { 46 | return direct; 47 | } 48 | 49 | var atom = IP.split("."); 50 | var code = ((atom[1] & 0xff) << 8) | ((atom[2] & 0xff)); 51 | var hash = atom[0]; 52 | 53 | var codeLine = codeList[hash]; 54 | var maskLine = maskList[hash]; 55 | 56 | if (codeLine === "") { 57 | return tunnel; 58 | } 59 | 60 | if (maskLine === "10") { 61 | return direct; 62 | } 63 | 64 | var min = 0; 65 | var max = codeLine.length; 66 | var mid = max >> 1; 67 | 68 | do { 69 | if (codeLine[mid].charCodeAt(0) > code) { 70 | max = mid; 71 | } else { 72 | min = mid; 73 | } 74 | mid = (min + max) >> 1; 75 | } while (min + 1 < max); 76 | 77 | if (code - codeLine[min].charCodeAt(0) >> parseInt(maskLine[min], 16) === 0) { 78 | return direct; 79 | } 80 | 81 | return tunnel; 82 | } 83 | -------------------------------------------------------------------------------- /src/blackList: -------------------------------------------------------------------------------- 1 | # gTLDs 2 | asia 3 | io 4 | link 5 | name 6 | red 7 | 8 | # ccTLDs 9 | ac 10 | ad 11 | ae 12 | af 13 | ag 14 | ai 15 | al 16 | am 17 | an 18 | ao 19 | aq 20 | ar 21 | as 22 | at 23 | au 24 | aw 25 | ax 26 | az 27 | ba 28 | bb 29 | bd 30 | be 31 | bf 32 | bg 33 | bh 34 | bi 35 | bj 36 | bm 37 | bn 38 | bo 39 | bq 40 | br 41 | bs 42 | bt 43 | bv 44 | bw 45 | by 46 | bz 47 | ca 48 | cc 49 | cd 50 | cf 51 | cg 52 | ch 53 | ci 54 | ck 55 | cl 56 | cm 57 | co 58 | cr 59 | cu 60 | cv 61 | cw 62 | cx 63 | cy 64 | cz 65 | de 66 | dj 67 | dk 68 | dm 69 | do 70 | dz 71 | ec 72 | ee 73 | eg 74 | eh 75 | er 76 | es 77 | et 78 | eu 79 | fi 80 | fj 81 | fk 82 | fm 83 | fo 84 | fr 85 | ga 86 | gb 87 | gd 88 | ge 89 | gf 90 | gg 91 | gh 92 | gi 93 | gl 94 | gm 95 | gn 96 | gp 97 | gq 98 | gr 99 | gs 100 | gt 101 | gu 102 | gw 103 | gy 104 | hk 105 | hm 106 | hn 107 | hr 108 | ht 109 | hu 110 | id 111 | ie 112 | il 113 | im 114 | in 115 | io 116 | iq 117 | ir 118 | is 119 | it 120 | je 121 | jm 122 | jo 123 | jp 124 | ke 125 | kg 126 | kh 127 | ki 128 | km 129 | kn 130 | kp 131 | kr 132 | kw 133 | ky 134 | kz 135 | la 136 | lb 137 | lc 138 | li 139 | lk 140 | lr 141 | ls 142 | lt 143 | lu 144 | lv 145 | ly 146 | ma 147 | mc 148 | md 149 | me 150 | mg 151 | mh 152 | mk 153 | ml 154 | mm 155 | mn 156 | mo 157 | mp 158 | mq 159 | mr 160 | ms 161 | mt 162 | mu 163 | mv 164 | mw 165 | mx 166 | my 167 | mz 168 | na 169 | nc 170 | ne 171 | nf 172 | ng 173 | ni 174 | nl 175 | no 176 | np 177 | nr 178 | nu 179 | nz 180 | om 181 | pa 182 | pe 183 | pf 184 | pg 185 | ph 186 | pk 187 | pl 188 | pm 189 | pn 190 | pr 191 | ps 192 | pt 193 | pw 194 | py 195 | qa 196 | re 197 | ro 198 | rs 199 | ru 200 | rw 201 | sa 202 | sb 203 | sc 204 | sd 205 | se 206 | sg 207 | sh 208 | si 209 | sj 210 | sk 211 | sl 212 | sm 213 | sn 214 | so 215 | sr 216 | ss 217 | st 218 | su 219 | sv 220 | sx 221 | sy 222 | sz 223 | tc 224 | td 225 | tf 226 | tg 227 | th 228 | tj 229 | tk 230 | tl 231 | tm 232 | tn 233 | to 234 | tp 235 | tr 236 | tt 237 | tv 238 | tw 239 | tz 240 | ua 241 | ug 242 | uk 243 | us 244 | uy 245 | uz 246 | va 247 | vc 248 | ve 249 | vg 250 | vi 251 | vn 252 | vu 253 | wf 254 | ws 255 | ye 256 | yt 257 | za 258 | zm 259 | zw 260 | 261 | # Adobe 262 | typekit.net 263 | 264 | # Adzerk 265 | adzerk.net 266 | 267 | # Akamai 268 | akamai.net 269 | akamaiedge.net 270 | akamaihd.net 271 | edgesuite.net 272 | edgekey.net 273 | srip.net 274 | akamaitechnologies.com 275 | akamaitechnologies.fr 276 | akamaitech.net 277 | akadns.net 278 | akam.net 279 | akamaistream.net 280 | 281 | # Amazon 282 | amazon.com 283 | amazonaws.com 284 | cloudfront.net 285 | 286 | # Apple 287 | apple.com 288 | cdn-apple.com 289 | itunes.com 290 | icloud.com 291 | mzstatic.com 292 | 293 | # Archive 294 | archive.org 295 | 296 | # Automattic 297 | wordpress.com 298 | wordpress.org 299 | wp.com 300 | gravatar.com 301 | 302 | # BattleNET 303 | battle.net 304 | blizzard.com 305 | 306 | # Booklink 307 | booklink.me 308 | 309 | # Box 310 | box.com 311 | box.net 312 | 313 | # Cloudflare 314 | cloudflare.com 315 | 316 | # Disqus 317 | disqus.com 318 | disquscdn.com 319 | disq.us 320 | 321 | # DMM 322 | dmm.com 323 | 324 | # DuckDuckGo 325 | duckduckgo.com 326 | 327 | # Dropbox 328 | dropbox.com 329 | dropboxusercontent.com 330 | dropboxforum.com 331 | dropboxstatic.com 332 | 333 | # Facebook 334 | facebook.com 335 | fbcdn.net 336 | thefacebook.com 337 | facebook.net 338 | tfbnw.net 339 | fb.me 340 | messages-facebook.com 341 | 342 | # Fastly 343 | fastly.net 344 | 345 | # Github 346 | github.com 347 | github.io 348 | githubusercontent.com 349 | 350 | # Google 351 | google.com 352 | googleapis.com 353 | googlehosted.com 354 | googlezip.net 355 | youtube.com 356 | youtu.be 357 | youtube-nocookie.com 358 | ytimg.com 359 | googlevideo.com 360 | googledrive.com 361 | appspot.com 362 | googleusercontent.com 363 | ggpht.com 364 | gstatic.com 365 | gwtproject.org 366 | googlesource.com 367 | blogger.com 368 | blogspot.com 369 | chromium.org 370 | android.com 371 | googlecode.com 372 | keyhole.com 373 | chrome.com 374 | googlesyndication.com 375 | googlelabs.com 376 | g.co 377 | gmail.com 378 | goo.gl 379 | googlemail.com 380 | google-analytics.com 381 | googleadservices.com 382 | panoramio.com 383 | webmproject.org 384 | golang.org 385 | feedburner.com 386 | androidify.com 387 | gmodules.com 388 | withgoogle.com 389 | polymer-project.org 390 | google.org 391 | 392 | # Imgur 393 | imgur.com 394 | 395 | # MEGA 396 | mega.co.nz 397 | mega.nz 398 | 399 | # Microsoft 400 | azurewebsites.net 401 | live.com 402 | sfx.ms 403 | gfx.ms 404 | livefilestore.com 405 | 406 | # Pixiv 407 | pixiv.net 408 | 409 | # Pushbullet 410 | pushbullet.com 411 | 412 | # Reddit 413 | reddit.com 414 | redditmedia.com 415 | redditstatic.com 416 | 417 | # Slides 418 | slides.com 419 | slid.es 420 | uservoice.com 421 | 422 | # Stackexchange 423 | stackoverflow.com 424 | stackexchange.com 425 | serverfault.com 426 | superuser.com 427 | askubuntu.com 428 | stackapps.com 429 | sstatic.net 430 | 431 | # SoundCloud 432 | soundcloud.com 433 | sndcdn.com 434 | 435 | # Tinypic 436 | tinypic.com 437 | 438 | # Twitter 439 | twitter.com 440 | t.co 441 | tweetdeck.com 442 | twimg.com 443 | 444 | # Twitpic 445 | twitpic.com 446 | 447 | # Wikimedia 448 | wikipedia.org 449 | wikimedia.org 450 | mediawiki.org 451 | wikibooks.org 452 | wikidata.org 453 | wikimediafoundation.org 454 | wikinews.org 455 | wikiquote.org 456 | wikisource.org 457 | wikiversity.org 458 | wikivoyage.org 459 | wiktionary.org 460 | 461 | # Yahoo 462 | yahoo.com 463 | yimg.com 464 | flickr.com 465 | staticflickr.com 466 | -------------------------------------------------------------------------------- /src/make.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | import argparse 4 | import json 5 | import sys 6 | 7 | class DomainTree(object): 8 | def __init__(self, name=''): 9 | self.name = name 10 | self.node = {} 11 | self.head = False 12 | self.list = [] 13 | 14 | def insert(self, domain): 15 | domains = domain.rsplit('.', 1) 16 | node = self.node.setdefault(domains[-1], DomainTree(domains[-1])) 17 | if len(domains) == 1: 18 | node.head = True 19 | else: 20 | node.insert(domains[0]) 21 | 22 | def reduce(self, suffix=''): 23 | suffix = self.name + '.' + suffix if suffix else self.name 24 | if self.head is True: 25 | self.list = [suffix] 26 | else: 27 | self.list = [] 28 | for name in self.node: 29 | self.node[name].reduce(suffix) 30 | self.list.extend(self.node[name].list) 31 | 32 | class RouteChain(object): 33 | def __init__(self): 34 | self.list = [] 35 | self.flag = True 36 | self.insert('0.0.0.0/8') 37 | self.insert('10.0.0.0/8') 38 | self.insert('127.0.0.0/8') 39 | self.insert('169.254.0.0/16') 40 | self.insert('172.16.0.0/12') 41 | self.insert('192.0.0.0/24') 42 | self.insert('192.0.2.0/24') 43 | self.insert('192.88.99.0/24') 44 | self.insert('192.168.0.0/16') 45 | self.insert('198.18.0.0/15') 46 | self.insert('198.51.100.0/24') 47 | self.insert('203.0.113.0/24') 48 | self.insert('224.0.0.0/4') 49 | self.insert('240.0.0.0/4') 50 | 51 | def __str__(self): 52 | self.reduce() 53 | line = [] 54 | for (addr, mask) in self.list: 55 | line.append('{}.{}.{}.{}/{}'.format( 56 | (addr >> 24) % 256, 57 | (addr >> 16) % 256, 58 | (addr >> 8) % 256, 59 | (addr >> 0) % 256, 60 | (33 - mask.bit_length()))) 61 | return '\n'.join(line) 62 | 63 | def __iter__(self): 64 | self.reduce() 65 | return iter(self.list) 66 | 67 | def insert(self, ipnet): 68 | self.flag = False 69 | addr, mask = ipnet.split('/') 70 | bits = addr.split('.') 71 | addr = 0 72 | for byte in bits: 73 | addr = (addr << 8) + int(byte) 74 | if '.' in mask: 75 | mask = sum([bin(int(x)).count('1') for x in mask.split('.')]) 76 | mask = 1 << 32 - int(mask) 77 | self.list.append((addr, mask)) 78 | 79 | def reduce(self): 80 | if self.flag: 81 | return 82 | self.list.sort(key=lambda x: x[0]) 83 | head = -1 84 | rule = [] 85 | for (addr, mask) in self.list: 86 | flag = addr + mask 87 | if head >= flag: 88 | continue 89 | if head >= addr: 90 | addr, _ = rule.pop() 91 | mask = flag - addr 92 | head = flag 93 | rule.append((addr, mask)) 94 | self.list = [] 95 | for (addr, mask) in rule: 96 | while mask > 0: 97 | head = 1 << mask.bit_length() - 1 98 | if addr + head >> 24 != addr >> 24: 99 | head = (((addr >> 24) + 1) << 24) - addr 100 | self.list.append((addr, head)) 101 | mask = mask - head 102 | addr = addr + head 103 | self.flag = True 104 | 105 | def load_config(data): 106 | lines = [] 107 | for line in data.splitlines(): 108 | line = line.split('#')[0].strip() 109 | if line: 110 | lines.append(line) 111 | return lines 112 | 113 | def load_integer_range(data): 114 | lines = load_config(data) 115 | route = RouteChain() 116 | for line in lines: 117 | route.insert(line) 118 | 119 | codelist = [[] for _ in range(256)] 120 | masklist = [[] for _ in range(256)] 121 | 122 | for (addr, mask) in route: 123 | atom = addr >> 24 124 | codelist[atom].append(addr >> 8 & 0x00FFFF) 125 | masklist[atom].append(mask.bit_length() - 9) 126 | 127 | codelist = json.dumps(codelist, separators=(',', ':')).replace('[]', '0') 128 | masklist = json.dumps(masklist, separators=(',', ':')).replace('[]', '0') 129 | 130 | return codelist, masklist 131 | 132 | def load_unicode_range(data): 133 | lines = load_config(data) 134 | route = RouteChain() 135 | for line in lines: 136 | route.insert(line) 137 | 138 | codelist = ['' for _ in range(256)] 139 | masklist = ['' for _ in range(256)] 140 | 141 | for (addr, mask) in route: 142 | atom = addr >> 24 143 | codelist[atom] += unichr(addr >> 8 & 0x00FFFF) 144 | masklist[atom] += hex(mask.bit_length() - 9)[2:] 145 | 146 | templist = ''.join(codelist) 147 | splitcode = 0 148 | while unichr(splitcode) in templist: 149 | splitcode += 1 150 | codelist = unichr(splitcode).join(codelist) 151 | codelist = codelist.replace(u'\u000A', '\\n').replace(u'\u000D', '\\r') 152 | codelist = codelist.replace(u'\u2028', '\u2028').replace(u'\u2029', '\u2029') 153 | codelist = u'"{}".split("{}")'.format(codelist, unichr(splitcode)) 154 | masklist = '.'.join(masklist) 155 | masklist = u'"{}".split(".")'.format(masklist) 156 | 157 | return codelist, masklist 158 | 159 | def load_nested_domain(data): 160 | lines = load_config(data) 161 | domains = DomainTree() 162 | for line in lines: 163 | domains.insert(line) 164 | domains.reduce() 165 | return '|'.join(domains.list) 166 | 167 | def load_plain_domain(data): 168 | lines = load_config(data) 169 | domains = DomainTree() 170 | for line in lines: 171 | domains.insert(line) 172 | domains.reduce() 173 | result = {} 174 | for i in domains.list: 175 | result[i] = 1 176 | return json.dumps(result, separators=(',', ':')) 177 | 178 | def parse_args(): 179 | parser = argparse.ArgumentParser( 180 | prog='MonoPac', 181 | description='Mono Pac Generator', 182 | epilog='Across the Great Firewall, we can reach every corner in the world.') 183 | 184 | parser.add_argument('-b', dest='blacklist', default='blackList', type=argparse.FileType('r'), 185 | metavar='blackList', help='Path of the black list') 186 | parser.add_argument('-w', dest='whitelist', default='whiteList', type=argparse.FileType('r'), 187 | metavar='whiteList', help='Path of the white list') 188 | parser.add_argument('-i', dest='iplist', default='ipList', type=argparse.FileType('r'), 189 | metavar='ipList', help='Path of the iprange list') 190 | parser.add_argument('-p', dest='proxylist', required=True, metavar='proxyList', 191 | help='Proxy parameter in the pac file') 192 | parser.add_argument('-os', dest='size', action='store_true', 193 | help='Optimize for size') 194 | parser.add_argument('-op', dest='perf', action='store_true', 195 | help='Optimize for performance') 196 | parser.add_argument('-o', dest='output', default=sys.stdout, type=argparse.FileType('w'), 197 | metavar='pacFile', help='Path of the output pac file') 198 | 199 | return parser.parse_args() 200 | 201 | def main(): 202 | args = parse_args() 203 | 204 | proxylist = '"{}"'.format(args.proxylist) 205 | if args.size == True: 206 | payload = open('mono-size.min.js').read() 207 | whitelist = load_nested_domain(args.whitelist.read()) 208 | blacklist = load_nested_domain(args.blacklist.read()) 209 | codelist, masklist = load_unicode_range(args.iplist.read()) 210 | elif args.perf == True: 211 | payload = open('mono-perf.min.js').read() 212 | whitelist = load_plain_domain(args.whitelist.read()) 213 | blacklist = load_plain_domain(args.blacklist.read()) 214 | codelist, masklist = load_integer_range(args.iplist.read()) 215 | else: 216 | payload = open('mono.min.js').read() 217 | whitelist = load_nested_domain(args.whitelist.read()) 218 | blacklist = load_nested_domain(args.blacklist.read()) 219 | codelist, masklist = load_integer_range(args.iplist.read()) 220 | 221 | payload = payload.replace('__proxyList__', proxylist) 222 | payload = payload.replace('__whiteList__', whitelist) 223 | payload = payload.replace('__blackList__', blacklist) 224 | payload = payload.replace('__codeList__', codelist) 225 | payload = payload.replace('__maskList__', masklist) 226 | 227 | args.output.write(payload.encode('utf-8')) 228 | 229 | if __name__ == '__main__': 230 | main() 231 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # No longer maintained 2 | 3 | Why? 4 | 5 | Because with my new [patch](https://github.com/shadowsocks/shadowsocks-libev/commit/b918fd7a7772efe7d4cad3bbcb388f112140bd91) to shadowsocks-libev, the embedded bypass function in ss-local is working correctly now. 6 | 7 | This bypass function supports regex and ip range, read the [example](https://github.com/shadowsocks/shadowsocks-libev/tree/master/acl) 8 | 9 | # Mono PAC 10 | 11 | A PAC(Proxy auto-config) file generator working with fetched China IP range, which helps walk around GFW. 12 | 13 | Mono generates a much smaller and faster PAC file than any other project does. 14 | 15 | This PAC file is designed to be hosted on your Openwrt routers for your mobile device, which means the size and the efficiency have the highest priority. When it's hosted on your VPS with gzip or used on your computer, we don't care that things. 16 | 17 | The minimal unit of the APNIC's IP allocation is 256, which means it's safe to do `IP >> 8` on IP range data. If you use data from some otherthings, modify my codes first. 18 | 19 | ## Installation 20 | 21 | ``` 22 | $ git clone https://github.com/blackgear/mono_pac.git 23 | ``` 24 | 25 | ## Usage 26 | 27 | ``` 28 | $ cd ./src 29 | $ python ./make.py -h 30 | usage: MonoPac [-h] [-b blackList] [-w whiteList] [-i ipList] -p proxyList 31 | [-m] [-o pacFile] 32 | 33 | Mono Pac Generator 34 | 35 | optional arguments: 36 | -h, --help show this help message and exit 37 | -b blackList Path of the black list 38 | -w whiteList Path of the white list 39 | -i ipList Path of the iprange list 40 | -p proxyList Proxy parameter in the pac file 41 | -os Optimize for size 42 | -op Optimize for performance 43 | -o pacFile Path of the output pac file 44 | 45 | Across the Great Firewall, we can reach every corner in the world. 46 | 47 | $ python ./make.py -p "SOCKS5 192.168.1.1:1080;SOCKS 192.168.1.1:1080" -o ./proxy.pac 48 | ``` 49 | 50 | **ONLY** Python 2 is supported. 51 | 52 | `-os` option reduce 45% file size with 2.8% extra efficiency loss, but it may cause some PAC management extensions like SwitchOmega crash. 53 | 54 | `-op` option provide best performance and compatibility but larger PAC file. 55 | 56 | If neither `-os` nor `-op` option is added, the normal mode with give your a balance result. 57 | 58 | ## Details 59 | 60 | When you browse https://www.google.com/abc, The Pac works in this way: 61 | 62 | ``` 63 | +-----------------------+ 64 | | Grab Host: | 65 | | Host=www.google.com | 66 | +-----------------------+ 67 | | 68 | v 69 | +-----------------------+ 70 | | Domain=www.google.com | 71 | | Domain=google.com |<-+ 72 | | Domain=com | | 73 | +-----------------------+ | 74 | | | 75 | v | 76 | True +-----------------------+ | 77 | Proxy <----|If domain in blackList | | 78 | +-----------------------+ | 79 | | | Remove Prefix www. 80 | v False | Remove Prefix google. 81 | True +-----------------------+ | 82 | Direct <----|If domain in whiteList | | 83 | +-----------------------+ | 84 | | | 85 | v False | 86 | +-----------------------+ | 87 | | If . in domain |--+ 88 | +-----------------------+ 89 | | 90 | v False 91 | +-----------------------+ 92 | | Dns resolve | 93 | +-----------------------+ 94 | | 95 | v 96 | True +-----------------------+ 97 | Proxy <----| If IP = nil | 98 | +-----------------------+ 99 | | 100 | v False 101 | True +-----------------------+ 102 | Direct <----| If IP = IPv6 addr | 103 | +-----------------------+ 104 | | 105 | v False 106 | True +-----------------------+ 107 | Direct <----| If IP in ipList | 108 | +-----------------------+ 109 | | 110 | v False 111 | Proxy 112 | ``` 113 | 114 | When you browse http://127.0.0.1/index.html, The `Domain` will be `127.0.0.1`, `0.0.1`, `0.1`, `1`. Then `dnsResolve` will return `127.0.0.1`. 115 | 116 | `dnsResolve` return IPv4 only in IE and Chromium, `dnsResolve` can return IPv6 in Firefox. 117 | 118 | IE via http://blogs.msdn.com/b/wndp/archive/2006/07/18/ipv6-wpad-for-winhttp-and-wininet.aspx 119 | 120 | Chromium via https://code.google.com/p/chromium/issues/detail?id=24641 121 | 122 | Firefox via https://github.com/blackgear/mono_pac/pull/2 123 | 124 | ## Configs 125 | 126 | All config files can use '#' as comments, all things behind '#' is ignored, space is automatic striped. 127 | 128 | Config files like this is acceptable: 129 | 130 | ``` 131 | # Twitter 132 | twitter.com 133 | t.co 134 | tweetdeck.com 135 | twimg.com # This domain is used for images 136 | ``` 137 | 138 | It will be prased as 139 | 140 | ``` 141 | twitter.com 142 | t.co 143 | tweetdeck.com 144 | twimg.com 145 | ``` 146 | 147 | ### blackList: 148 | 149 | One domains per line. 150 | 151 | ### whiteList: 152 | 153 | One domains per line. 154 | 155 | ### ipList: 156 | 157 | One record per line with IP/CIDR or IP/Wildcard format. 158 | 159 | Both `100.100.100.0/24` and `100.100.100.0/255.255.255.0` are acceptable. 160 | 161 | ### proxyList: 162 | 163 | Proxy Configs separated by ";". 164 | 165 | Available proxy configs: 166 | ``` 167 | PROXY host:port = use HTTP proxy 168 | SOCKS5 host:port = use Socks5 proxy 169 | DIRECT = Do not use proxy 170 | ``` 171 | 172 | Example: `PROXY 127.0.0.1:8080;DIRECT` 173 | 174 | Note: The latter config is the fallback of the former one. There is no limit on the length of the fallback list. 175 | 176 | Note: Safari don't accept `SOCKS5`, use `SOCKS` instead, you can also use a more compatible form like: `SOCKS5 host:port;SOCKS host:port`, Safari will ignore the first config and use the second one. 177 | 178 | Note: The `DIRECT` in the end have a potential risk cause the dns pollution affecting blackList domains. 179 | 180 | Note: When you use socks proxy, whether dns resolve will through the proxy is determined by the Apps itself. When you use http proxy, the dns resolve will always through the proxy. 181 | 182 | ## Performance 183 | Test with Node.js: 184 | ``` 185 | $ node test.js 186 | Testing pac generated by blackgear-mono_pac.pac 187 | avg: 5.984us 188 | Testing pac generated by blackgear-mono_pac-size.pac 189 | avg: 6.152us 190 | Testing pac generated by Leask-Flora_Pac-mod.pac 191 | avg: 12.872us 192 | Testing pac generated by usufu-Flora_Pac.pac 193 | avg: 11.361us 194 | 195 | $ ls -la *.pac 196 | -rw-r--r-- 1 Daniel staff 165129 Feb 24 21:53 Leask-Flora_Pac-mod.pac 197 | -rw-r--r-- 1 Daniel staff 16371 Jul 30 02:55 blackgear-mono_pac-size.pac 198 | -rw-r--r-- 1 Daniel staff 29824 Jul 30 02:55 blackgear-mono_pac.pac 199 | -rw-r--r-- 1 Daniel staff 254539 Feb 24 21:53 usufu-Flora_Pac.pac 200 | ``` 201 | 202 | MonoPac is the fastest and smallest PAC with full feature (blacklist, whitelist and full China IP range). 203 | 204 | With the help of Unicode compress, the size become much smaller (30741 -> 17346). 205 | 206 | JS file is pre-compressed by uglifyjs2 with this arguments: 207 | 208 | ``` 209 | uglifyjs -c -m toplevel -r 'FindProxyForURL' -- mono.js > mono.min.js 210 | uglifyjs -c -m toplevel -r 'FindProxyForURL' -- mono-perf.js > mono-perf.min.js 211 | uglifyjs -c -m toplevel -r 'FindProxyForURL' -- mono-size.js > mono-size.min.js 212 | ``` 213 | 214 | ## Trivia 215 | 216 | The PAC instance will be reuse instead of start new instance for every request. The code in the root scope of the PAC file will be run only once. The code in the FindProxyForURL function's scope will be run each time you browser the internet. 217 | 218 | Just test this two PAC files: 219 | 220 | ``` 221 | var unixtime_ms = new Date().getTime(); 222 | while(new Date().getTime() < unixtime_ms + 5000) {} 223 | function FindProxyForURL(url, host) { 224 | return "DIRECT;"; 225 | } 226 | ``` 227 | 228 | ``` 229 | function FindProxyForURL(url, host) { 230 | var unixtime_ms = new Date().getTime(); 231 | while(new Date().getTime() < unixtime_ms + 5000) {} 232 | return "DIRECT;"; 233 | } 234 | ``` 235 | 236 | So put all definations in the root scope will accelerate the PAC file. 237 | 238 | ## LICENSE 239 | 240 | The MIT License 241 | 242 | Copyright (c) 2015 Daniel 243 | 244 | Permission is hereby granted, free of charge, to any person obtaining a copy 245 | of this software and associated documentation files (the "Software"), to deal 246 | in the Software without restriction, including without limitation the rights 247 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 248 | copies of the Software, and to permit persons to whom the Software is 249 | furnished to do so, subject to the following conditions: 250 | 251 | The above copyright notice and this permission notice shall be included in 252 | all copies or substantial portions of the Software. 253 | 254 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 255 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 256 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 257 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 258 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 259 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 260 | THE SOFTWARE. 261 | -------------------------------------------------------------------------------- /test/blackgear-mono_pac.pac: -------------------------------------------------------------------------------- 1 | function r(r,e){return r[e]=1,r}function FindProxyForURL(r,u){if(isPlainHostName(u))return i;var a=u,f=0;do{if(n.hasOwnProperty(a))return e;if(t.hasOwnProperty(a))return i;f=u.indexOf(".",f)+1,a=u.substring(f)}while(f>0);var o=dnsResolve(u);if(!o)return e;if(o.indexOf(":")>=0)return i;var l=o.split("."),d=(255&l[1])<<8|255&l[2],c=l[0],h=_[c],p=s[c];if(0===h)return e;if(16===p)return i;var v=0,w=h.length,L=w>>1;do h[L]>d?w=L:v=L,L=v+w>>1;while(w>v+1);return d-h[v]>>p[v]===0?i:e}var e="PROXY 127.0.0.1:8080",i="DIRECT",t="ele.me|lan|cn|local|zhi.hu|iapps.im|bdwm.net|themex.net|126.net|alipay.com|baidu.com|netease.com|zhimg.com|tmall.com|weibo.com|elemecdn.com|bilibili.com|youku.com|tiebaimg.com|alicdn.com|taobao.com|taobaocdn.com|bdstatic.com|zhihu.com|acgvideo.com|ykimg.com|163.com|localhost".split("|").reduce(r,{}),n="me|youtu.be|akamaitechnologies.fr|t.co|g.co|name|im|io|in|wikinews.org|google.org|gwtproject.org|wikimedia.org|wiktionary.org|wikipedia.org|wikivoyage.org|golang.org|mediawiki.org|wikiversity.org|wordpress.org|webmproject.org|wikisource.org|wikimediafoundation.org|wikidata.org|wikibooks.org|chromium.org|polymer-project.org|wikiquote.org|fbcdn.net|akam.net|akamaihd.net|sstatic.net|adzerk.net|akadns.net|akamaitech.net|srip.net|akamaiedge.net|cloudfront.net|akamaistream.net|tfbnw.net|azurewebsites.net|typekit.net|facebook.net|akamai.net|fastly.net|edgekey.net|googlezip.net|edgesuite.net|goo.gl|googlecode.com|googlesource.com|google.com|apple.com|thefacebook.com|googlehosted.com|youtube.com|twitter.com|googlelabs.com|gstatic.com|googlevideo.com|v2ex.com|akamaitechnologies.com|twitpic.com|twimg.com|gmail.com|googleadservices.com|qidian.com|gmodules.com|withgoogle.com|chrome.com|androidify.com|googleapis.com|youtube-nocookie.com|wordpress.com|dropboxforum.com|blogger.com|blogspot.com|android.com|flickr.com|tieba.baidu.com|githubusercontent.com|googlesyndication.com|staticflickr.com|mzstatic.com|tweetdeck.com|tinypic.com|yahoo.com|googlemail.com|facebook.com|appspot.com|wp.com|dropbox.com|amazonaws.com|googledrive.com|panoramio.com|ggpht.com|stackoverflow.com|googleusercontent.com|github.com|dropboxstatic.com|dropboxusercontent.com|dmm.com|ytimg.com|gravatar.com|yimg.com|keyhole.com|google-analytics.com|feedburner.com|pushbullet.com".split("|").reduce(r,{}),_=[[0],[1,3,8,32,256,258,290,306,314,318,512,514,516,580,612,628,636,768,1025,1089,1121,1137,1145,1149,1151,2048,2560,2568,2571,2635,2667,2683,2687,3072,6144,11520,12288,14336,17408,20480,29696,46080,47104,48128,50176,51712,52736],0,0,0,0,0,0,0,0,[0],0,0,0,[0,12,256,4096,26240,26268,26368,30464,32512,33280,34304,36864,49212,49228,50176,52224,53248],0,0,0,0,0,0,0,0,0,0,0,0,[2048,6144,8936,9216,11264,12840,12928,13896,13976,14016,25296,25328,25472,26368,27264,27340,27936,28672,28752,29056,29440,29740,31048,31096,32768,33756,36864,37888,39936,47104,55296,57344],0,0,0,0,0,0,0,0,[0,8,264,392,456,488,504,1024,4096,8192,9216,9472,9508,9511,9527,9535,10240,12288,13056,14336,24576,63488,65024],0,0,[0,2,130,194,226,242,250,254,16384,24576,26624,27648,32768],0,0,[0,8,24,32,128,256,288,304,312,384,1024,12288,14336,15872,16000,16032,16052,16060,16128,20480,21312,21328,21336,23384,24408,24536,24568,24640,24672,24684,24940,25068,25084,25344,25408,25440,25456,25464,25600,30720,31232,31488,31524,31652,31716,31732,31740,32768,39936,39972,44068,46116,47140,47652,47908,47972,47988,48000,49152,51456,51712,59904,60928,61440,61952,64000,65024],[57356,57368,57388,57396,57408,57416,57424,57444,57484,57504,57520,57528,57544,57560,57568,57584,57676,57684,57720,57740,57772,57780,57808,57816,57852,57888,57952,57968,57976,57984,58048,58064,58092,58140,58204,58248,58256,58264,58300,58332,58344,58360,58424,58444,58468,58484,58500,58516,58548,58556,58572,58608,58640,58664,58672,58680,58720,58732,58744,58760,58768,58792,58840,58856,58900,58912,58948,58964,59004,59016,59048,59100,59132,59168,59216,59272,59304,60416,60928,61184,61216,61232,61440,61488,61496,61508,61516,61524,61564,61596,61660,61676,61708,61716,61744,61772,61788,61808,61864,61880,61892,61904,61936,61944,61960,61976,61996,62012,62024,62040,62048,62096,62112,62120,62132,62140,62148,62156,62168,62204,62212,62232,62296,62336,62344,62352,62364,62376,62388,62396,62436,62452,62976,63040,63072,63236,63276,63300,63308,63316,63332,63340,63380,63408,63428,63492,63508,63516,63536,63544,63564,63628,63636,63664,63696,63716,63732,63744,63752,63768,63864,63876,63888,63904,63912,63936,63980,64004,64012,64020,64028,64036,64072,64096,64112,64128,64144,64160,64168,64176,64200,64212,64220,64236,64244,64260,64268,64272,64292,64372,64448,64488,64500,64552,64560,64568,64736,65024,65032,65048,65060,65068,65076,65088,65096,65108,65116,65124,65136,65152,65160,65176,65192,65204,65220,65232,65244,65260,65272,65288,65296,65328,65340,65356,65364,65376,65388,65424,65448,65456,65464,65472,65480,65504,65512,65524],0,[16496,28804,28860,28880,28900,28908,28940,28956,28968,28980,29000,29036,29072,29096,29104,29112,29128,29144,29156,29168,29180,29196,29216,29224,29236,29280,29288,29320,29380,29412,29420,29436,29484,29540,29560,29572,29584,29596,29604,29640,29652,29668,29676,29684,29708,29728,29748,29756,29792,29836,29848,29904,29960,29972,29992,30020,30076,30204,30516,30524,30568,30580,30624,30696,30820,30860,30876,30884,30940,30960,30996,31028,31040,31048,31068,31080,31148,31188,31216,31248,31264,31272,31292,31324,31340,31348,31392,31424,31440,31448,31516,31524,31532,31564,31608,31616,31624,31636,31644,31652,31668,31692,31700,31712,31744,31764,31772,31780,31788,31812,31820,31844,31868],0,[23552,31744],0,[1024,13056,14080,16384,28672,30720,32768,32770,35840,38912,53248,56320,59392,61184,61376,63200],0,0,0,0,[56832],0,0,0,[3584,5632,7680,15872,16872,16896,17536,20992,21248,22336,25472,25984,29696,32768,36864,39424,49152,61440],[8192,16384,20480,27392,28416,38656,39680,44032,48896,49136,65520],[0,14080,16128,40960,49664,51200,55296,59392,60160,62848,63232,64512,64896,65280],[1104,1200,2208,7168,7552,11648,11744,12160,12288,22464,32768,59392,60416,61440],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[0,256,684,1024,4096,12288,12856,13312,13668,13824,14304,16384,18432,19456,19968,20000,20480,24576,24584,24592,24704,25440,25920,25956,25958,25974,25982,26176,26212,26214,26216,26232,26624,28224,28256,28276,28284,30720,31744,32256,32768,32776,32808,32824,33024,34048,34560,36864,49152,51200,52096,52128,52140,52156,52224,57344,59392,59968,59980,60012,60028,60416,62464,63488,64256,64264,64776,65032,65160,65224,65256,65272],0,[264,276,328,344,424,620,668,676,712,852,884,900,908,916,924,1080,1192,1208,1316,1332,1532,1612,1756,1796,1820,2004,2012,2052,2080,2100,2156,2204,2248,2268,2456,2552,2560,2576,2644,2671,2700,2996,3104,3140,3208,3256,3304,3452,3472,3524,3572,3668,3696,3716,3740,3824,3844,3856,3936,4040,4148,4176,4184,4204,4220,4392,4472,4512,4556,4580,4800,4816,4832,4876,4904,4928,4936,5096,5132,5152,5232,5248,5280,5368,5488,5512,5552,5584,5616,5632,5696,5732,5748,5756,5820,5860,5884,5896,5944,6048,6064,6116,6260,6272,6288,6320,6328,6364,6372,6392,6408,6420,6436,6448,6464,6548,6556,6616,6656,6720,6812,6884,6896,6916,6924,6936,6968,7008,7120,7152,7172,7372,7440,7552,7560,7700,7776,7828,7880,7908,7916,7936,7984,8000,8084,8096,8104,8136,8192,8704,8960,8992,9008,9236,9244,9252,9272,9280,9288,9312,9348,9376,9440,9456,9472,9484,9496,9516,9524,9544,9572,9596,9608,9644,9680,9720,9728,9760,9768,9784,9804,9812,9820,9844,9860,9868,9948,9980,10000,10048,10072,10084,10092,10128,10144,10184,10216,10252,10284,10328,10340,10352,10432,10452,10460,10468,10512,10548,10612,10636,10644,10656,10716,10760,10776,10784,10816,10828,10856,10932,10984,11024,11032,11092,11104,11112,11132,11140,11172,11192,11200,11216,11228,11240,11248,11320,11344,11352,11384,11396,11408,11416,11432,11440,11488,11500,11564,11580,11592,11720,11736,11744,11768,11776,11788,11928,12020,12036,12052,12068,12080,12112,12128,12140,12148,12168,12232,12244,12252,12280,12308,12340,12380,12432,12490,12504,12556,12564,12616,12636,12652,12672,12720,12740,12792,12836,12844,12908,12924,12932,12940,12972,13020,13352,13384,13408,13416,13472,13484,13496,13508,13572,13632,13660,13668,13692,13708,13728,13748,13772,13784,13804,13816,13832,13872,13884,13984,14036,14052,14064,14104,14160,14200,14232,14252,14284,14308,14316,14344,14352,14368,14388,14396,14408,14436,14476,14488,14520,14536,14552,14604,14644,14668,14700,14728,14788,14872,15030,15180,15204,15216,15232,15252,15268,15320,15392,15404,15524,15588,15596,15676,15720,15756,15768,15776,15788,15800,15896,15924,15944,15960,15968,16000,16028,16060,16076,16092,16160,16192,16208,16216,16268,16280,16288,16304,16312,16320,16336,16368,49152,49200,49208,49236,49280,49296,49316,49340,49360,49368,49404,57384,57404,57424,57564,57684,57872,57896,57912,57936,57972,57988,58012,58036,58052,58160,58184,58192,58212,58232,58244,58308,58316,58324,58340,58380,58396,58436,58456,58496,58528,58544,58572,58596,58644,58760,58772,58796,58836,58844,58852,58860,58880,58908,58920,58976,59076,59084,59092,59116,59152,59200,59280,59316,59380,59396,59536,59604,59652,59692,59700,59752,59776,59784,59876,59904,59924,59960,60028,60076,60084,60176,60208,60216,60240,60288,60304,60344,60352,60360,60380,60508,60672,60696,60740,60760,60824,60848,60912,60928,60944,60976,60984,61016,61024,61060,61068,61088,61124,61132,61180,61224,61252,61280,61336,61360,61368,61376,61388,61408,61428,61456,61476,61512,61524,61564,61596,61612,61684,61708,61768,61788,61856,61880,61916,61960,62016,62080,62112,62120,62128,62152,62164,62172,62192,62232,62344,62460,62480,62522,62538,62546,62550,62628,62696,62716,62743,62772,62780,62800,62844,62984,63096,63108,63128,63400,63408,63432,63444,63488,63552,63588,63612,63640,63656,63680,63700,63712,63756,63796,63872,63880,63888,63908,63932,63988,63996,64032,64104,64124,64180,64192,64216,64224,64236,64248,64288,64340,64352,64380,64416,64460,64492,64540,64548,64576,64616,64684,64716,64744,64760,64772,64828,64972,64988,65000,65032,65044,65088,65136,65200,65212,65220,65244,65348,65368,65416,65464,65480,65488,65508],0,0,[0,2,18,26,30,64,512,2816,11008,13312,15360,18944,20480,27648,31744,57344],0,0,0,[1536,4096,10240,11408,12288,13056,13568,14336,16384,18432,19200,19456,19612,19640,19648,19776,20480,22528,23840,24064,32256,38912,39936,42272,42496,44224,44288,44320,44352,44480,45056,53248,58368,59424,60416,61440],[0,16896,17344,17472,18432,21760,23488,28672,29696,30408,30528,30592,30720,31744,32256,40448,42496,43520,44032,46080,47616,49152,53248,56604,56704,56960,57328,57336,57344,60256,60316,60348],[0,16384,18688,19200,20480,24576,28032,28416,29440,29952,31232,33280,33792,35120,49152,57344],[0,2048,3008,3072,4096,4608,6144,7936,11264,13472,13824,14848,15104,15328,15872,32256,33376,33392,33792,35840,49664,50532,51200,51712,52224,53344,53600,53728,54272,54372,54456,54528,54784,55808,64000],[7168,13824,15360,17408,20288,20480,24576,26624,28160,28224,28416,28576,28672,33792,34560,35328,36160,36224,50176,50936,53248,61440],[6144,7168,8192,11264,15360,17728,21504,21696,21952,25600,30720,31760,37888,39936,42560,43008,46080,48640,56832,60928],[8,24,256,2304,2816,3328,4096,12800,13312,14336,14976,15056,15360,16896,17664,17920,19456,21760,22928,23120,23224,24320,28672,29696,32768,49152,49424,49456,49584,49664,50176,50688,50944,51072,52224,52992,54016,54432,54592,54720,54816,54848,54912,55936,56192,57344,61952,64320,64512,65152,65408],[2048,5376,9472,11520,12288,13616,13744,14592,14848,15104,17152,18176,18688,19008,19072,23168,24192,24448,25600,26384,26408,26440,26496,26792,27136,28672,30784,31040,31168,31360,31744,48128],[6144,6656,7168,16384,16896,17264,18432,20480,21504,22560,22816,22944,23008,23536,26128,26144,28672,30720,31744,32256,32640,33792,36864,45568,46080,47104,47616,48128,48640,50688,51712,52736,54272,57344,58368,58880,61184,61952,62464,64512],[0,512,640,1664,2176,2560,3976,4096,4800,4816,4832,5856,6112,6976,7488,7616,7728,8128,8192,10240,10304,10368,10624,10752,10880,10976,11264,12288,14592,15232,15744,16000,16160,19408,19968,20480,21200,21504,24576,27648,28672,36864,38048,38848,41160,41344,42368,42880,45056,59392,60288,63488,64608,64752],[0,6144,7680,11776,13312,16384,18464,18560,19456,21504,22536,23040,23552,24064,32768,34944,35072,36736,49152],[8,24,1024,2048,10240,11776,11904,12416,12672,12808,13056,13472,13520,13552,14000,14080,14336,14848,14984,15104,16128,17408,19456,20352,22784,25728,25856,26064,49152,51392,51456,52224,57344,63488,65280],[64,192,1024,2048,2560,2816,3072,3584,12288,12544,13056,16384,24576,26112,26176,28672,30464,32888,34816,36992,39104,39936,48128,50688,51264,51504,52224,57344,61440,63512,63536,65344],[128,1024,3072,12672,12960,13312,15360,15872,16384,24576,25088,25472,25600,25856,26368,27776,27856,28672,32768,34896,35072,35584,36864,45116,45136,45312,47360,48384,48896,50176,51072,52736,59392,61952,62464,63744,64768],[1600,3584,5120,7360,7488,7936,10352,10416,10448,10752,12032,16384,16896,17152,19200,20224,22528,27656,27688,28000,28672,32256,34304,37760,38656,39936,40960,44032,49152,50176,51200,56320,60416,61440,61568,61952,62400,63488,63744,64256,65024],[8128,12224,14976,15744,15872,16384,24576,25088,26624,30720,43264,43776,53248,53760,54528,54880,55040,55296,65152],0,[0],0,0,0,0,0,0,0,0,0,0,0,[2304,33024,37888,39680,40704,43520,45056,46848,47616,48384,50176,54272,55552,56064,56576,57344,57856],[19200,36608,52480,52992,53760,57344,60672,61440,62208,62976,63744,65280],0,0,0,[0,1792,3072,13312,31488,65280],0,0,0,0,0,[0,29440,30976,33176,33216,33240,33276,35328,57088,61952,61960,61980,61996,62028,62044,62064,62072,62104,62120,62136,62144,62164,62176,62184,62200,65280],0,[26752],[0,768,8704,25344,25856,30208],0,0,0,[0,4608,15616,31232,37888,39936,65280],0,[57856],0,[52992],[26880],[0,12036,13568,13604,13656,13688,13704,13728,13756,13788,13808,32000,36352,45312,45824,52224],0,0,[28416],[35584,48384,56564],[40960],[65024],0,[2048,8704,10752,11776,20480,26624,30720,53248],[4096],0,0,[0,4096,6144,7680,10752,11264,11776,19968,24064,26112,27264,37376,39424,40960,45568,47232,47360,48384,48896],0,0,0,0,[19456,21504,22016,22528,24120,24160,24448,32640,33152,33408,34816,37904,38040,38104,38136,38272,38560,38912,43008,45760,47104,48128,48532,51452,51964,52220,53248,53984,54272,57056,57312,59648,59712,60224],0,[4288,4608,6072,6088,8192,12384,12544,12800,12912,13056,13824,15616,20480,22528,23552,24576,32768,36864,40192,41024,44544,51200,60544,60928,61184,61440,65024],[0,16384,20148,20916,21504,23424,23432,23448,23552,32768,40960,43008,43520,44032,46592,47104,63488],0,0,0,0,0,0,0,0,[0,2,22627,31898,43008,48298],0,0,0,0,0,[4608,13156],0,0,0,[100,122,176,896,1152,1276,1542,1602,1608,1623,1625,1628,1639,1644,1646,1650,1712,2048,2050,2060,2072,2125,2176,2240,2336,2338,2352,2355,2361,2363,2624,3073,3089,3091,3144,3156,3168,3170,3178,3183,3188,3648,3653,3657,3662,3672,3681,3688,3692,3695,3698,3702,3708,3711,3713,3719,3733,3735,3741,3743,3753,3755,3760,3768,3792,3797,3803,3806,3809,3811,3815,3819,3823,3830,3835,5186,5199,5207,5214,5234,5237,5240,5245,5247,5507,5517,5523,5526,5530,5532,5880,7048,9728,9736,9776,9840,9856,9864,9866,9868,9874,9877,9886,9892,9904,9912,9976,10244,10247,10255,10375,10380,10383,10385,10390,10395,10398,10402,10504,10507,10509,10624,10626,10648,10688,10736,11084,11152,11280,11331,11338,11393,11396,11410,11520,11522,11535,11551,11792,11794,11796,11808,11904,12000,12114,12158,12160,12162,14832,14848,15104,15316,15336,15340,15408,15456,15472,15492,15508,15516,15984,16120,16124,16127,16209,16217,16221,16223,16288,16376,16640,16648,17152,17668,17680,17920,18016,18112,18472,18512,18816,18952,19024,19198,19408,19452,19708,19792,19804,19976,20448,20472,20672,20736,21500,21516,21520,21528,21968,22265,22268,22352,22792,23016,23040,23152,23236,23264,23296,23392,23424,23472,23520,23552,23560,23600,23804,24060,24156,24320,24560,24572,28668,30716,31228,31236,31264,31296,31344,31360,31364,31584,31760,31768,32112,32176,32512,32524,32540,32552,32568,32624,32656,32672,32704,32720,32724,32756,32764,33280,33504,33552,33584,33744,34080,34362,34432,34864,35024,35303,36256,36368,36612,36624,36664,37536,37564,37572,37580,37776,37920,37952,38176,38304,38368,38416,38456,38592,38624,38656,38784,39088,39168,39216,40384,40608,41136,41539,41547,41984,42080,42336,42416,42448,42479,42481,42483,42485,42491,42495,42720,43168,43648,43736,43768,43992,44011,44032,44288,44296,44512,44608,45280,46064,46208,46288,46448,46624,46784,48384,48464,48568,48896,48964,48980,48988,49152],[4,10,18,24,42,45,47,81,83,90,96,104,113,115,122,128,130,134,137,142,144,146,148,150,152,177,224,260,274,282,321,323,326,332,346,353,357,359,364,509,576,585,624,638,652,662,664,668,672,692,708,721,726,738,741,748,836,840,843,848,864,873,880,888,891,903,907,911,1156,1158,1175,1179,1198,1204,1210,1229,1232,1251,1254,1284,1287,1289,1291,1301,1324,1326,1332,1336,1340,1394,1398,1400,1452,1460,1462,1465,1468,1470,1475,1494,1498,1667,1672,1674,1678,1686,1693,1695,1760,1784,1921,1930,1939,1942,1950,1984,1992,2048,2056,2071,2079,2118,2130,2134,2139,2158,2163,2214,2217,2221,2232,2234,2238,2240,2245,2247,2251,2257,2261,2263,2265,2268,2336,2340,2361,2367,2369,2374,2376,2379,2381,2400,2404,2412,2462,2594,2616,2634,2644,2648,2655,2685,2886,2892,2898,2900,2916,2925,2933,2938,2942,2952,2957,2959,2996,3024,3088,3091,3096,3129,3137,3142,3159,3167,3172,3175,3186,3190,3202,3209,3268,3276,3283,3291,3298,3312,3346,3352,3372,3408,3416,3420,3501,3552,3555,3561,3608,3617,3640,3645,3688,3698,3702,3746,3768,3776,3778,3798,3815,3830,3840,3860,3862,3927,3929,3945,3952,3970,3989,3991,3996,4014,4067,4072,4080,4086,4106,4108,4112,4123,4134,4145,4147,4154,4229,4257,4282,4324,4334,4336,4341,4354,4370,4380,4391,4408,4426,4440,4488,4516,4539,4542,4583,4585,4600,4607,4610,4612,4615,4639,4645,4656,4660,4680,4688,4695,4708,4713,4715,4718,4737,4739,4741,4752,4761,4807,4816,4819,4823,4882,4888,4894,4896,4905,4908,4910,4922,4924,4928,4932,4936,4965,4975,4995,4997,5008,5013,5020,5040,5042,5072,5092,5097,5106,5112,5119,5137,5160,5168,5181,5185,5204,5209,5226,5235,5237,5239,5242,5246,5255,5263,5270,5350,5352,5356,5376,5378,5384,5386,5394,5409,5417,5420,5444,5458,5472,5500,5512,5521,5582,5656,5660,5663,5700,5708,5710,5716,5719,5724,5731,5738,5754,5763,5795,5798,5802,5808,5826,5874,5877,5884,5888,5935,5949,5951,5961,5973,5980,5986,5995,6000,6018,6028,6060,6070,6074,6080,6085,6092,6112,6114,6118,6137,6139,6157,6162,6171,6187,6200,6202,6211,6218,6223,6225,6228,6230,6234,6255,6260,6266,6289,6296,6301,6305,6311,6330,6343,6346,6356,6361,6363,6388,6419,6421,6446,6448,6464,6491,6499,6506,6531,6535,6538,6547,6553,6555,6564,6566,6574,6580,6582,6591,6599,6602,6608,6629,6635,6642,6668,6690,6705,6711,6713,6716,6721,6724,6732,6736,6740,6753,6758,6771,6785,6799,6804,6810,6814,6826,6829,6832,6841,6858,6866,6870,6878,6880,6884,6888,6912,6922,6927,6932,6934,6952,6957,6965,6977,6993,7000,7014,7021,7029,7033,7035,7037,7112,7114,7145,7153,7162,7178,7180,7201,7203,7211,7222,7224,7241,7244,7254,7256,7280,7299,7304,7308,7313,7333,7337,7346,7353,7355,7364,7394,7407,7426,7432,7437,7452,7470,7481,7485,7487,7493,7497,7505,7514,7519,7524,7527,7536,7544,7606,7611,7613,7629,7634,7641,7651,7655,7657,7672,7678,7696,7705,7707,7709,7746,7761,7767,7791,7801,7803,7832,7836,7842,7853,7855,7867,7874,7897,7900,7902,7912,7915,7920,7926,7930,7981,7985,7987,7990,8005,8008,8016,8021,8033,8041,8044,8060,8098,8110,8113,8117,8123,8125,8140,8156,8158,8161,8165,8184,8189,8212,8240,8248,8252,8254,8260,8268,8273,8276,8287,8294,8297,8322,8325,8332,8344,8378,8384,8388,8395,8397,8404,8452,8455,8463,8469,8474,8480,8511,8515,8521,8527,8548,8570,8577,8579,8593,8604,8606,8622,8633,8648,8650,8652,8654,8662,8672,8674,8681,8691,8698,8708,8725,8731,8743,8752,8758,8760,8771,8773,8780,8796,8810,8817,8851,8854,8856,8865,8891,8896,8908,8936,8944,8946,8949,8955,14082,14084,14090,14093,14102,14110,14173,14181,14189,14196,14199,14208,14226,14272,14276,14298,14301,14304,14337,14340,14348,14360,14374,14376,14382,14384,14404,14418,14431,14446,14457,14497,14505,14508,14511,14519,14521,14523,14528,14534,14537,14544,14546,14550,14552,14563,14568,14576,14588,14590,14597,14604,14620,14631,14638,14650,14653,14658,14661,14663,14665,14682,14693,14701,14715,14749,14792,14794,14798,14814,14816,14838,14841,14845,14847,15874,16003,16011,16033,16069,16100,16106,16118,19616,19624,19892,20016,20224,20256,20484,20512,20537,20612,20628,20636,20736,20752,20992,21008,21248,21304,21472,22016,22270,22560,22720,22784,22792,22920,23040,23048,23168,23232,23328,23392,23416,23552,23712,23808,24064,24320,24416,24480,24544,25352,25368,25424,25632,25648,25663,25680,25712,25792,26656,26976,27392,28320,28368,28392,28394,29428,30400,30449,30456,30488,30496,30544,30549,30577,30705,30713,30717,30719,32800,32864,32992,33032,33312,33824,34544,34656,34720,36576,36960,37120,37888,37952,37968,37974,38236,38976,39040,39168,40128,40464,41064,41089,41152,41216,41396,41408,42656,43008,43578,43776,44000,44548,44551,44640,44928,44992,45120,45224,47184,48032,48384,48390,48496,48576,48736,48889,48896,48912,48960,49040,49152,49632,49784,49984,50032,50048,50176,51948,52544,52608,53056,53184,53248,53264,53280,53728,54272,54352,55272,57024,57088,57104],0,0,0,0,0,0,[512,1280,1336,1408,3072,3648,3696,3952,4016,4224,5376,5920,6400,10496,11520,12032,13056,13568,14528,18432,19456,19968,20288,20448,20992,22400,47552,49248],[16384,20480,24576,34816],0,0,0,0,0,0,[0,14336,22528,24576,25688,25816,25848,26624,27648,47552,47600,49152,61440,63744],[18432,20992,21376,32768,55296,59392,61952,62976],[26048,28672,39040,39424,40960,49152,59136,59264,59456,59904,61952,63368,63488,64512],[0,2048,3072,3200,3328,3840,31232,32896,33408,33664,34272,34816,44032,46080,49152,50176,50688,50944,51072,51136,51168,59360,61408],[4096,20480,32000,32384,32768,40960,43008,51200,55296,61440,63488],[0,5120,7096,16384,24576,28672,29696,30720,32768,36864,40960,42496,49152,50688,51456,51968,53248,56320,57264,61440,63488,64640,65024,65280,65516,65532],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0],[0]],s=[[16],[1,0,3,5,0,5,4,3,2,1,1,0,6,5,4,3,2,8,6,5,4,3,2,1,0,8,3,1,6,5,4,2,0,10,11,8,10,11,10,12,10,10,9,11,10,10,9],0,0,0,0,0,0,0,0,[16],0,0,0,[3,2,2,12,2,2,12,11,8,9,9,12,2,2,9,9,12],0,0,0,0,0,0,0,0,0,0,0,0,[12,11,3,11,10,3,7,3,3,6,5,4,7,8,6,2,5,6,4,6,7,2,3,3,9,2,8,11,10,13,11,10],0,0,0,0,0,0,0,0,[2,8,7,6,5,4,3,10,12,10,8,5,1,4,3,0,11,9,8,11,15,10,8],0,0,[0,7,6,5,4,3,2,1,13,11,10,8,14],0,0,[2,4,2,5,7,5,4,3,2,7,10,11,10,7,5,4,3,2,8,9,4,2,11,10,7,5,3,5,3,8,7,4,2,6,5,4,2,3,10,9,8,5,7,6,4,3,2,12,5,12,11,10,9,8,6,4,3,7,11,7,13,10,9,8,11,10,9],[2,2,2,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,2,2,3,2,5,2,6,4,3,2,6,4,3,5,6,4,3,2,5,5,2,2,6,4,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5,3,3,2,2,3,2,2,2,2,5,2,4,5,5,4,9,8,5,4,2,2,2,3,3,2,2,4,6,2,5,3,2,2,4,2,2,4,2,2,5,2,3,4,3,4,3,4,3,2,4,3,2,2,3,2,2,3,2,4,2,2,2,2,3,2,2,2,2,3,2,6,5,2,3,3,2,2,4,2,3,3,4,6,2,2,2,2,2,6,3,2,5,2,3,2,3,2,2,2,3,4,3,2,2,2,2,3,2,3,2,2,4,3,2,3,2,3,2,2,3,2,2,2,3,2,1,2,2,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,4,3,3,4,3,2,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,2,4,3,2,2],0,[1,2,2,4,3,2,4,2,2,3,2,2,3,2,2,2,4,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,4,3,2,3,3,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,5,4,3,2,5,4,3,2,5,4,3,2,3,2,5,4,2,3,2,3,2,4,3,2,2,5,2,2,3,2,2,2,3,2,2],0,[13,10],0,[10,10,8,13,11,10,0,1,9,10,10,10,10,6,6,5],0,0,0,0,[9],0,0,0,[11,10,13,9,3,9,7,7,8,6,9,7,10,11,8,9,13,12],[13,12,10,10,8,7,8,10,7,14,4],[13,8,8,13,9,12,11,9,8,7,8,8,7,8],[4,4,4,7,7,6,4,6,11,6,14,10,9,10],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2,2,2,10,13,9,2,8,2,8,3,11,10,9,2,5,12,3,2,4,7,5,5,0,4,3,1,5,1,0,4,3,10,5,4,3,2,10,9,8,2,5,4,3,10,9,8,12,11,9,5,3,4,2,10,11,9,3,5,4,2,11,10,9,2,9,8,7,6,5,4,3],0,[2,3,2,2,2,2,2,2,4,5,4,3,2,3,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,2,3,2,2,3,2,2,2,0,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,2,3,3,2,2,2,6,5,4,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,1,4,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,3,2,2,2,2,2,2,2,2,4,3,2,2,2,2,9,8,5,4,2,2,2,2,3,2,2,2,3,6,4,3,2,3,2,2,3,2,3,2,5,3,4,3,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3,2,2,5,5,2,5,2,2,2,2,2,2,2,5,2,2,2,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,5,2,6,4,2,7,4,3,2,2,2,7,5,3,2,2,3,2,2,2,2,3,3,2,2,2,2,2,2,2,4,1,5,2,2,3,3,2,2,3,2,2,2,5,4,2,3,2,5,5,2,4,3,2,3,3,2,2,2,3,2,2,4,3,2,2,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,3,2,2,2,2,2,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,4,2,5,3,5,3,4,3,5,4,3,2,3,2,4,3,2,4,2,4,5,3,2,5,4,2,2,2,3,2,2,3,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,3,2,2,3,2,2,3,2,3,2,2,2,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3,3,4,3,2,2,2,7,3,4,3,2,2,2,6,4,3,5,3,2,3,2,2,3,5,2,2,3,3,2,2,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,2,1,2,2,2,0,2,2,2,3,3,3,2,3,3,2,2,2,1,2,2,2,2,2,2,2,3,2,2,2,2,2,4,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,2,2,3,2,2,2,2,2,3,2,2,2,4,2,2,2,0,2,2,3,3,2,2,3,2],0,0,[0,4,3,2,1,6,11,13,11,11,10,9,12,12,10,12],0,0,0,[9,10,10,4,8,9,8,11,9,9,8,6,2,2,7,6,11,10,5,13,9,10,9,5,9,6,5,4,6,5,13,12,10,5,9,12],[14,8,4,5,11,8,5,10,9,3,6,5,10,8,13,11,9,8,11,10,9,12,11,0,8,7,2,2,11,5,5,2],[14,10,9,8,12,11,7,10,9,8,11,9,8,3,10,13],[11,9,5,10,9,8,10,8,11,5,10,8,7,2,14,10,4,3,11,10,9,2,9,8,10,8,7,5,6,2,3,7,9,13,9],[8,9,11,8,6,12,11,10,4,6,5,5,11,8,8,9,3,6,9,3,13,12],[10,9,10,12,10,4,6,5,6,11,10,4,11,10,5,11,10,13,12,9],[3,3,11,9,8,8,12,4,10,9,4,4,10,7,8,7,10,8,4,4,3,8,10,9,14,8,5,4,3,9,8,8,7,5,9,10,8,4,7,6,5,4,10,8,7,12,11,6,9,7,7],[11,12,11,8,10,4,4,8,7,11,10,9,8,5,12,10,8,7,9,4,3,3,4,3,9,11,8,7,3,7,14,10],[9,8,10,9,8,4,11,9,9,8,7,6,5,4,4,3,11,10,9,8,5,10,10,8,10,8,9,8,11,9,10,9,9,10,9,8,8,8,11,10],[9,5,10,9,7,7,3,8,4,3,10,8,5,9,7,6,4,5,11,6,4,8,7,5,4,5,9,11,9,9,8,7,5,4,9,8,4,11,11,9,13,10,5,6,3,10,9,7,12,9,6,10,3,9],[12,10,12,10,10,11,5,7,11,10,3,9,8,9,11,6,7,5,14],[4,3,9,13,10,6,9,8,7,3,8,5,5,4,3,6,9,7,5,10,8,10,9,6,8,7,6,4,11,3,8,10,12,10,8],[7,6,10,9,8,7,9,8,8,6,8,13,9,4,5,10,8,3,11,7,6,10,11,8,6,4,10,12,11,3,4,3],[6,11,10,7,5,11,9,8,13,9,7,7,5,8,7,4,4,12,11,4,9,8,13,2,4,11,10,9,8,9,7,9,10,7,10,8,8],[6,10,10,7,6,8,6,5,4,8,6,9,7,11,10,8,11,3,3,3,11,11,9,7,9,8,11,10,9,8,11,12,10,7,6,8,6,7,9,8,6],[12,6,7,7,6,13,9,8,12,11,8,8,6,9,7,5,6,11,7],0,[16],0,0,0,0,0,0,0,0,0,0,0,[8,8,8,8,8,8,8,8,8,8,12,10,8,9,8,8,9],[8,8,9,8,8,8,8,8,8,8,9,8],0,0,0,[8,8,8,8,8,8],0,0,0,0,0,[8,8,9,2,2,2,2,9,8,3,2,2,4,3,3,3,2,4,2,3,2,2,2,4,2,8],0,[7],[8,8,10,8,8,9],0,0,0,[8,8,8,8,8,8,8],0,[8],0,[8],[8],[8,2,4,5,5,4,2,4,2,2,2,8,8,8,8,8],0,0,[8],[8,8,2],[8],[8],0,[11,11,10,9,12,12,11,12],[12],0,0,[12,11,10,9,9,8,13,12,9,8,7,11,9,12,8,6,10,9,8],0,0,0,0,[10,9,8,10,3,4,13,7,8,7,11,3,3,5,3,5,5,12,11,6,10,7,2,9,8,2,9,5,9,8,5,6,5,5],0,[5,7,3,3,12,5,8,4,4,8,7,8,11,10,8,13,12,11,8,5,9,11,7,8,5,11,8],[14,11,2,2,9,2,4,3,10,13,11,9,8,10,5,14,11],0,0,0,0,0,0,0,0,[0,0,0,0,8,0],0,0,0,0,0,[9,0],0,0,0,[1,1,2,1,5,2,1,1,1,1,0,1,0,0,1,0,4,0,2,0,0,0,5,4,0,1,1,2,1,0,4,1,1,0,0,1,0,1,0,0,0,1,0,2,1,0,0,1,1,0,1,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,1,0,0,2,0,0,0,0,0,2,1,0,0,0,0,0,1,1,1,2,0,0,3,1,2,3,6,4,3,1,0,2,1,3,2,3,1,6,3,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,1,3,0,4,2,4,4,0,0,0,1,1,1,0,4,0,1,0,1,5,0,4,1,0,0,1,4,0,0,2,1,0,3,3,4,4,3,2,2,2,0,0,3,2,1,0,5,2,3,1,2,2,4,5,4,4,3,4,2,3,4,1,4,2,2,3,2,3,3,2,4,2,4,2,1,3,4,0,2,4,3,3,2,4,0,4,2,4,2,4,5,2,3,4,3,2,2,5,3,12,11,9,3,2,3,5,4,0,0,4,3,2,4,4,3,4,2,4,3,5,4,3,4,1,5,3,2,5,5,3,4,4,4,0,4,4,5,0,5,4,2,5,3,4,2,3,2,4,4,6,5,5,5,5,2,4,5,2,5,4,2,4,5,5,4,0,0,4,5,4,4,4,1,0,0,0,2,0,5,5,5,5,3,3,0,2,2,3,5,4,5,4,5,3,4,4,5,6,4,3,0,4,3,2,12],[2,1,0,0,1,1,0,1,0,1,1,3,1,0,0,0,2,1,0,0,0,0,0,1,0,0,0,2,0,1,1,0,1,1,0,2,1,0,0,1,3,0,3,1,0,0,2,1,3,1,1,0,1,1,0,1,0,1,0,3,2,0,3,0,0,0,0,0,1,0,2,0,1,0,0,0,2,0,1,1,1,0,0,1,0,1,2,1,1,1,0,0,0,1,0,1,1,0,0,1,1,0,0,1,0,1,0,0,4,1,0,1,0,1,0,1,0,0,0,3,0,0,0,1,0,1,0,1,0,0,0,1,1,0,1,0,0,2,1,0,0,0,0,1,0,0,0,1,0,1,0,2,1,0,0,0,0,1,2,0,0,0,0,2,0,2,2,0,0,0,0,2,1,0,2,2,0,0,0,0,1,1,3,0,1,0,0,0,0,0,3,2,0,0,0,2,0,0,1,3,1,2,0,1,0,0,2,0,0,1,0,1,0,0,3,0,1,0,0,0,4,1,0,1,0,0,3,1,0,0,2,0,0,3,1,0,0,1,3,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,2,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1,0,0,1,3,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,2,0,0,1,0,0,0,0,3,0,1,1,1,0,0,1,0,0,0,2,0,0,0,0,1,0,0,1,0,1,2,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,3,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,4,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,1,0,1,0,0,0,0,0,0,2,0,0,2,2,2,4,4,4,1,4,0,4,3,2,3,4,1,3,2,3,4,7,1,5,5,2,3,2,2,2,6,5,5,4,3,2,5,8,5,3,6,5,5,4,3,4,4,3,0,5,4,4,4,6,7,5,4,1,0,2,5,0,2,3,2,2,0,7,3,2,1,0,5,5,3,3,5,5,3,5,4,5,5,5,6,4,2,1,2,5,5,2,6,3,3,0,5,2,0,5,5,5,1,2,4,0,0,5,5,7,5,3,4,5,1,1,2,5,4,0,1,4,6,4,5,5,3,5,3,7,4,2,5,7,7,6,4,2,5,5,4,4,3,4,4,3],0,0,0,0,0,0,[5,5,3,5,9,5,8,6,4,6,9,5,12,10,9,8,9,8,5,10,9,8,6,5,9,6,6,5],[11,12,11,13],0,0,0,0,0,0,[13,13,11,10,7,5,3,10,9,5,3,12,11,8],[8,8,7,13,12,11,10,9],[6,10,7,9,13,12,6,7,6,8,9,3,10,8],[11,10,7,6,9,8,9,9,8,7,5,9,11,10,10,9,8,7,6,4,13,11,5],[14,12,8,7,12,10,13,12,11,11,9],[12,9,2,13,12,10,9,11,9,12,10,9,9,9,9,8,11,9,5,11,10,7,8,7,2,1],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16]]; -------------------------------------------------------------------------------- /src/ipList: -------------------------------------------------------------------------------- 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.5.0/24 14 | 1.2.6.0/23 15 | 1.2.8.0/21 16 | 1.2.16.0/20 17 | 1.2.32.0/19 18 | 1.2.64.0/18 19 | 1.3.0.0/16 20 | 1.4.1.0/24 21 | 1.4.2.0/23 22 | 1.4.4.0/22 23 | 1.4.8.0/21 24 | 1.4.16.0/20 25 | 1.4.32.0/19 26 | 1.4.64.0/18 27 | 1.8.0.0/24 28 | 1.8.2.0/23 29 | 1.8.4.0/22 30 | 1.8.9.0/24 31 | 1.8.10.0/23 32 | 1.8.12.0/22 33 | 1.8.16.0/20 34 | 1.8.32.0/19 35 | 1.8.64.0/19 36 | 1.8.96.0/22 37 | 1.8.100.0/23 38 | 1.8.107.0/24 39 | 1.8.112.0/20 40 | 1.8.128.0/20 41 | 1.8.144.0/22 42 | 1.8.148.0/23 43 | 1.8.154.0/23 44 | 1.8.156.0/22 45 | 1.8.160.0/19 46 | 1.8.192.0/19 47 | 1.8.224.0/20 48 | 1.8.244.0/22 49 | 1.8.248.0/21 50 | 1.10.0.0/21 51 | 1.10.8.0/23 52 | 1.10.11.0/24 53 | 1.10.12.0/22 54 | 1.10.16.0/20 55 | 1.10.32.0/19 56 | 1.10.64.0/18 57 | 1.12.0.0/14 58 | 1.24.0.0/13 59 | 1.32.230.0/24 60 | 1.45.0.0/16 61 | 1.48.0.0/14 62 | 1.56.0.0/13 63 | 1.68.0.0/14 64 | 1.80.0.0/12 65 | 1.116.0.0/14 66 | 1.180.0.0/14 67 | 1.184.0.0/15 68 | 1.188.0.0/14 69 | 1.192.0.0/13 70 | 1.202.0.0/15 71 | 1.204.0.0/14 72 | 14.0.0.0/21 73 | 14.0.12.0/22 74 | 14.1.0.0/22 75 | 14.1.24.0/22 76 | 14.1.108.0/22 77 | 14.16.0.0/12 78 | 14.102.128.0/22 79 | 14.102.180.0/22 80 | 14.103.0.0/16 81 | 14.104.0.0/13 82 | 14.112.0.0/12 83 | 14.130.0.0/15 84 | 14.134.0.0/15 85 | 14.144.0.0/12 86 | 14.192.56.0/21 87 | 14.192.76.0/22 88 | 14.196.0.0/15 89 | 14.204.0.0/15 90 | 14.208.0.0/12 91 | 20.134.160.0/20 92 | 20.139.160.0/20 93 | 27.0.128.0/21 94 | 27.0.160.0/21 95 | 27.0.188.0/22 96 | 27.0.204.0/22 97 | 27.0.208.0/21 98 | 27.8.0.0/13 99 | 27.16.0.0/12 100 | 27.34.232.0/21 101 | 27.36.0.0/14 102 | 27.40.0.0/13 103 | 27.50.40.0/21 104 | 27.50.128.0/17 105 | 27.54.72.0/21 106 | 27.54.152.0/21 107 | 27.54.192.0/18 108 | 27.98.208.0/20 109 | 27.98.224.0/19 110 | 27.99.128.0/17 111 | 27.103.0.0/16 112 | 27.106.128.0/18 113 | 27.106.204.0/22 114 | 27.109.32.0/19 115 | 27.109.124.0/22 116 | 27.112.0.0/18 117 | 27.112.80.0/20 118 | 27.112.112.0/21 119 | 27.113.128.0/18 120 | 27.115.0.0/17 121 | 27.116.44.0/22 122 | 27.121.72.0/21 123 | 27.121.120.0/21 124 | 27.128.0.0/15 125 | 27.131.220.0/22 126 | 27.144.0.0/16 127 | 27.148.0.0/14 128 | 27.152.0.0/13 129 | 27.184.0.0/13 130 | 27.192.0.0/11 131 | 27.224.0.0/14 132 | 36.0.0.0/22 133 | 36.0.16.0/20 134 | 36.0.32.0/19 135 | 36.0.64.0/18 136 | 36.0.128.0/17 137 | 36.1.0.0/16 138 | 36.4.0.0/14 139 | 36.16.0.0/12 140 | 36.32.0.0/14 141 | 36.36.0.0/16 142 | 36.37.0.0/19 143 | 36.37.36.0/23 144 | 36.37.39.0/24 145 | 36.37.40.0/21 146 | 36.37.48.0/20 147 | 36.40.0.0/13 148 | 36.48.0.0/15 149 | 36.51.0.0/17 150 | 36.51.128.0/18 151 | 36.51.192.0/19 152 | 36.51.224.0/20 153 | 36.51.240.0/21 154 | 36.51.248.0/22 155 | 36.51.252.0/23 156 | 36.56.0.0/13 157 | 36.96.0.0/11 158 | 36.128.0.0/10 159 | 36.192.0.0/11 160 | 36.248.0.0/14 161 | 36.254.0.0/16 162 | 36.255.116.0/22 163 | 36.255.128.0/22 164 | 36.255.164.0/22 165 | 36.255.172.0/22 166 | 36.255.176.0/22 167 | 39.0.0.0/24 168 | 39.0.2.0/23 169 | 39.0.4.0/22 170 | 39.0.8.0/21 171 | 39.0.16.0/20 172 | 39.0.32.0/19 173 | 39.0.64.0/18 174 | 39.0.128.0/17 175 | 39.64.0.0/11 176 | 39.96.0.0/13 177 | 39.104.0.0/14 178 | 39.108.0.0/16 179 | 39.128.0.0/10 180 | 40.0.176.0/20 181 | 40.0.247.0/24 182 | 40.0.248.0/22 183 | 40.0.252.0/23 184 | 40.0.255.0/24 185 | 40.72.0.0/16 186 | 40.125.128.0/17 187 | 40.126.64.0/18 188 | 40.198.10.0/24 189 | 40.198.16.0/21 190 | 40.198.24.0/23 191 | 40.251.225.0/24 192 | 40.251.227.0/24 193 | 42.0.0.0/22 194 | 42.0.8.0/21 195 | 42.0.16.0/21 196 | 42.0.24.0/22 197 | 42.0.32.0/19 198 | 42.0.128.0/19 199 | 42.0.160.0/20 200 | 42.0.176.0/21 201 | 42.0.184.0/24 202 | 42.0.186.0/23 203 | 42.0.188.0/22 204 | 42.0.192.0/20 205 | 42.0.208.0/21 206 | 42.0.216.0/22 207 | 42.0.220.0/23 208 | 42.0.223.0/24 209 | 42.0.224.0/19 210 | 42.1.0.0/19 211 | 42.1.32.0/20 212 | 42.1.48.0/21 213 | 42.1.56.0/22 214 | 42.4.0.0/14 215 | 42.48.0.0/13 216 | 42.56.0.0/14 217 | 42.62.0.0/17 218 | 42.62.128.0/19 219 | 42.62.160.0/20 220 | 42.62.180.0/22 221 | 42.62.184.0/21 222 | 42.63.0.0/16 223 | 42.80.0.0/15 224 | 42.83.64.0/20 225 | 42.83.80.0/22 226 | 42.83.88.0/21 227 | 42.83.96.0/19 228 | 42.83.128.0/23 229 | 42.83.130.0/24 230 | 42.83.132.0/24 231 | 42.83.134.0/23 232 | 42.83.140.0/24 233 | 42.83.142.0/23 234 | 42.83.144.0/20 235 | 42.83.160.0/19 236 | 42.83.192.0/18 237 | 42.84.0.0/14 238 | 42.88.0.0/13 239 | 42.96.64.0/19 240 | 42.96.96.0/21 241 | 42.96.108.0/22 242 | 42.96.112.0/20 243 | 42.96.128.0/17 244 | 42.97.0.0/16 245 | 42.99.0.0/18 246 | 42.99.64.0/19 247 | 42.99.96.0/20 248 | 42.99.112.0/22 249 | 42.99.120.0/21 250 | 42.100.0.0/14 251 | 42.120.0.0/15 252 | 42.122.0.0/16 253 | 42.123.0.0/19 254 | 42.123.36.0/22 255 | 42.123.40.0/21 256 | 42.123.48.0/20 257 | 42.123.64.0/18 258 | 42.123.128.0/19 259 | 42.123.160.0/22 260 | 42.123.164.0/24 261 | 42.123.166.0/23 262 | 42.123.168.0/21 263 | 42.123.176.0/20 264 | 42.123.192.0/18 265 | 42.128.0.0/12 266 | 42.156.0.0/19 267 | 42.156.36.0/22 268 | 42.156.40.0/21 269 | 42.156.48.0/20 270 | 42.156.64.0/18 271 | 42.156.128.0/17 272 | 42.157.0.0/16 273 | 42.158.0.0/15 274 | 42.160.0.0/12 275 | 42.176.0.0/13 276 | 42.184.0.0/15 277 | 42.186.0.0/16 278 | 42.187.0.0/18 279 | 42.187.64.0/19 280 | 42.187.96.0/20 281 | 42.187.112.0/21 282 | 42.187.120.0/22 283 | 42.187.128.0/17 284 | 42.192.0.0/13 285 | 42.201.0.0/17 286 | 42.202.0.0/15 287 | 42.204.0.0/14 288 | 42.208.0.0/12 289 | 42.224.0.0/12 290 | 42.240.0.0/16 291 | 42.242.0.0/15 292 | 42.244.0.0/15 293 | 42.246.0.0/16 294 | 42.247.0.0/22 295 | 42.247.4.0/24 296 | 42.247.5.0/25 297 | 42.247.5.128/26 298 | 42.247.5.204/30 299 | 42.247.5.208/28 300 | 42.247.5.224/27 301 | 42.247.6.0/23 302 | 42.247.8.0/21 303 | 42.247.16.0/20 304 | 42.247.32.0/19 305 | 42.247.64.0/18 306 | 42.247.128.0/17 307 | 42.248.0.0/13 308 | 43.224.12.0/22 309 | 43.224.24.0/22 310 | 43.224.44.0/22 311 | 43.224.52.0/22 312 | 43.224.56.0/22 313 | 43.224.64.0/21 314 | 43.224.72.0/22 315 | 43.224.80.0/22 316 | 43.224.100.0/22 317 | 43.224.144.0/22 318 | 43.224.160.0/22 319 | 43.224.176.0/22 320 | 43.224.184.0/22 321 | 43.224.200.0/21 322 | 43.224.208.0/21 323 | 43.224.216.0/22 324 | 43.224.240.0/22 325 | 43.225.76.0/22 326 | 43.225.84.0/22 327 | 43.225.120.0/22 328 | 43.225.180.0/22 329 | 43.225.184.0/22 330 | 43.225.208.0/22 331 | 43.225.216.0/21 332 | 43.225.224.0/20 333 | 43.225.240.0/21 334 | 43.225.252.0/22 335 | 43.226.32.0/19 336 | 43.226.64.0/19 337 | 43.226.96.0/20 338 | 43.226.112.0/21 339 | 43.226.120.0/22 340 | 43.226.128.0/19 341 | 43.226.160.0/22 342 | 43.226.236.0/22 343 | 43.226.240.0/20 344 | 43.227.0.0/21 345 | 43.227.8.0/22 346 | 43.227.32.0/19 347 | 43.227.64.0/19 348 | 43.227.136.0/21 349 | 43.227.144.0/22 350 | 43.227.152.0/21 351 | 43.227.160.0/20 352 | 43.227.176.0/21 353 | 43.227.188.0/22 354 | 43.227.192.0/19 355 | 43.227.232.0/22 356 | 43.227.248.0/21 357 | 43.228.0.0/18 358 | 43.228.64.0/21 359 | 43.228.76.0/22 360 | 43.228.100.0/22 361 | 43.228.116.0/22 362 | 43.228.132.0/22 363 | 43.228.136.0/22 364 | 43.228.148.0/22 365 | 43.228.152.0/22 366 | 43.228.188.0/22 367 | 43.229.40.0/22 368 | 43.229.56.0/22 369 | 43.229.96.0/22 370 | 43.229.136.0/21 371 | 43.229.168.0/21 372 | 43.229.176.0/20 373 | 43.229.192.0/21 374 | 43.229.216.0/21 375 | 43.229.232.0/21 376 | 43.230.20.0/22 377 | 43.230.32.0/22 378 | 43.230.68.0/22 379 | 43.230.72.0/22 380 | 43.230.84.0/22 381 | 43.230.124.0/22 382 | 43.230.220.0/22 383 | 43.230.224.0/19 384 | 43.231.12.0/22 385 | 43.231.32.0/20 386 | 43.231.80.0/20 387 | 43.231.96.0/20 388 | 43.231.136.0/21 389 | 43.231.144.0/20 390 | 43.231.160.0/20 391 | 43.231.176.0/21 392 | 43.236.0.0/15 393 | 43.238.0.0/16 394 | 43.239.0.0/19 395 | 43.239.32.0/20 396 | 43.239.48.0/22 397 | 43.239.116.0/22 398 | 43.239.120.0/22 399 | 43.239.172.0/22 400 | 43.240.0.0/22 401 | 43.240.56.0/21 402 | 43.240.68.0/22 403 | 43.240.72.0/21 404 | 43.240.84.0/22 405 | 43.240.124.0/22 406 | 43.240.128.0/21 407 | 43.240.136.0/22 408 | 43.240.156.0/22 409 | 43.240.160.0/19 410 | 43.240.192.0/19 411 | 43.240.240.0/20 412 | 43.241.0.0/20 413 | 43.241.16.0/21 414 | 43.241.48.0/22 415 | 43.241.76.0/22 416 | 43.241.80.0/20 417 | 43.241.112.0/22 418 | 43.241.168.0/21 419 | 43.241.176.0/21 420 | 43.241.184.0/22 421 | 43.241.208.0/20 422 | 43.241.224.0/20 423 | 43.241.240.0/22 424 | 43.241.248.0/22 425 | 43.242.8.0/21 426 | 43.242.16.0/20 427 | 43.242.48.0/20 428 | 43.242.64.0/22 429 | 43.242.72.0/21 430 | 43.242.80.0/20 431 | 43.242.96.0/22 432 | 43.242.144.0/20 433 | 43.242.160.0/21 434 | 43.242.180.0/22 435 | 43.242.188.0/22 436 | 43.242.192.0/21 437 | 43.242.204.0/22 438 | 43.242.216.0/21 439 | 43.242.252.0/22 440 | 43.243.4.0/22 441 | 43.243.8.0/21 442 | 43.243.16.0/22 443 | 43.243.88.0/22 444 | 43.243.128.0/22 445 | 43.243.136.0/22 446 | 43.243.144.0/21 447 | 43.243.156.0/22 448 | 43.243.180.0/22 449 | 43.243.228.0/22 450 | 43.243.232.0/22 451 | 43.243.244.0/22 452 | 43.246.0.0/18 453 | 43.246.64.0/19 454 | 43.246.96.0/22 455 | 43.246.228.0/22 456 | 43.247.4.0/22 457 | 43.247.8.0/22 458 | 43.247.44.0/22 459 | 43.247.48.0/22 460 | 43.247.68.0/22 461 | 43.247.76.0/22 462 | 43.247.84.0/22 463 | 43.247.88.0/21 464 | 43.247.96.0/21 465 | 43.247.108.0/22 466 | 43.247.112.0/22 467 | 43.247.148.0/22 468 | 43.247.152.0/22 469 | 43.247.176.0/20 470 | 43.247.196.0/22 471 | 43.247.200.0/21 472 | 43.247.208.0/20 473 | 43.247.224.0/19 474 | 43.248.0.0/21 475 | 43.248.20.0/22 476 | 43.248.28.0/22 477 | 43.248.48.0/22 478 | 43.248.76.0/22 479 | 43.248.80.0/20 480 | 43.248.96.0/19 481 | 43.248.128.0/20 482 | 43.248.144.0/21 483 | 43.248.176.0/20 484 | 43.248.192.0/20 485 | 43.248.208.0/22 486 | 43.248.228.0/22 487 | 43.248.232.0/22 488 | 43.248.244.0/22 489 | 43.249.4.0/22 490 | 43.249.120.0/22 491 | 43.249.132.0/22 492 | 43.249.136.0/22 493 | 43.249.144.0/20 494 | 43.249.160.0/21 495 | 43.249.168.0/22 496 | 43.249.192.0/22 497 | 43.249.236.0/22 498 | 43.250.4.0/22 499 | 43.250.12.0/22 500 | 43.250.16.0/21 501 | 43.250.28.0/22 502 | 43.250.32.0/22 503 | 43.250.96.0/20 504 | 43.250.112.0/22 505 | 43.250.128.0/22 506 | 43.250.144.0/21 507 | 43.250.160.0/22 508 | 43.250.168.0/22 509 | 43.250.176.0/22 510 | 43.250.200.0/22 511 | 43.250.212.0/22 512 | 43.250.216.0/21 513 | 43.250.236.0/22 514 | 43.250.244.0/22 515 | 43.251.4.0/22 516 | 43.251.12.0/22 517 | 43.251.36.0/22 518 | 43.251.192.0/22 519 | 43.251.232.0/22 520 | 43.251.244.0/22 521 | 43.252.48.0/22 522 | 43.252.56.0/22 523 | 43.254.0.0/21 524 | 43.254.8.0/22 525 | 43.254.24.0/22 526 | 43.254.36.0/22 527 | 43.254.44.0/22 528 | 43.254.52.0/22 529 | 43.254.64.0/22 530 | 43.254.72.0/22 531 | 43.254.84.0/22 532 | 43.254.88.0/21 533 | 43.254.100.0/22 534 | 43.254.104.0/22 535 | 43.254.112.0/21 536 | 43.254.128.0/22 537 | 43.254.136.0/21 538 | 43.254.144.0/20 539 | 43.254.168.0/21 540 | 43.254.180.0/22 541 | 43.254.184.0/21 542 | 43.254.192.0/22 543 | 43.254.200.0/22 544 | 43.254.208.0/22 545 | 43.254.220.0/22 546 | 43.254.224.0/20 547 | 43.254.240.0/22 548 | 43.254.248.0/21 549 | 43.255.0.0/21 550 | 43.255.8.0/22 551 | 43.255.16.0/22 552 | 43.255.48.0/22 553 | 43.255.64.0/20 554 | 43.255.84.0/22 555 | 43.255.96.0/22 556 | 43.255.144.0/22 557 | 43.255.176.0/22 558 | 43.255.184.0/22 559 | 43.255.192.0/22 560 | 43.255.200.0/21 561 | 43.255.208.0/21 562 | 43.255.224.0/21 563 | 43.255.232.0/22 564 | 43.255.244.0/22 565 | 45.65.16.0/20 566 | 45.112.132.0/22 567 | 45.112.188.0/22 568 | 45.112.208.0/22 569 | 45.112.216.0/21 570 | 45.112.228.0/22 571 | 45.112.232.0/21 572 | 45.113.12.0/22 573 | 45.113.16.0/20 574 | 45.113.40.0/22 575 | 45.113.52.0/22 576 | 45.113.72.0/22 577 | 45.113.144.0/21 578 | 45.113.168.0/22 579 | 45.113.176.0/24 580 | 45.113.184.0/22 581 | 45.113.200.0/21 582 | 45.113.208.0/20 583 | 45.113.228.0/22 584 | 45.113.240.0/22 585 | 45.113.252.0/22 586 | 45.114.0.0/22 587 | 45.114.32.0/22 588 | 45.114.40.0/22 589 | 45.114.52.0/22 590 | 45.114.96.0/22 591 | 45.114.136.0/22 592 | 45.114.196.0/22 593 | 45.114.200.0/22 594 | 45.114.228.0/22 595 | 45.114.236.0/22 596 | 45.114.252.0/22 597 | 45.115.44.0/22 598 | 45.115.100.0/22 599 | 45.115.120.0/22 600 | 45.115.132.0/22 601 | 45.115.144.0/22 602 | 45.115.156.0/22 603 | 45.115.164.0/22 604 | 45.115.200.0/22 605 | 45.115.212.0/22 606 | 45.115.216.0/22 607 | 45.115.244.0/22 608 | 45.115.248.0/22 609 | 45.116.16.0/21 610 | 45.116.24.0/22 611 | 45.116.32.0/21 612 | 45.116.52.0/22 613 | 45.116.96.0/21 614 | 45.116.140.0/22 615 | 45.116.152.0/22 616 | 45.116.208.0/22 617 | 45.117.8.0/22 618 | 45.117.20.0/22 619 | 45.117.68.0/22 620 | 45.117.124.0/22 621 | 45.117.252.0/22 622 | 45.119.60.0/22 623 | 45.119.64.0/21 624 | 45.119.72.0/22 625 | 45.119.104.0/22 626 | 45.119.232.0/22 627 | 45.120.100.0/22 628 | 45.120.140.0/22 629 | 45.120.164.0/22 630 | 45.120.240.0/22 631 | 45.121.52.0/22 632 | 45.121.64.0/21 633 | 45.121.72.0/22 634 | 45.121.92.0/22 635 | 45.121.96.0/22 636 | 45.121.172.0/22 637 | 45.121.176.0/22 638 | 45.121.240.0/20 639 | 45.122.0.0/19 640 | 45.122.32.0/21 641 | 45.122.40.0/22 642 | 45.122.60.0/22 643 | 45.122.64.0/19 644 | 45.122.96.0/20 645 | 45.122.112.0/21 646 | 45.122.160.0/19 647 | 45.122.192.0/20 648 | 45.122.208.0/21 649 | 45.122.216.0/22 650 | 45.123.28.0/22 651 | 45.123.32.0/21 652 | 45.123.44.0/22 653 | 45.123.48.0/20 654 | 45.123.64.0/20 655 | 45.123.80.0/21 656 | 45.123.90.0/23 657 | 45.123.120.0/22 658 | 45.123.128.0/21 659 | 45.123.136.0/22 660 | 45.123.148.0/22 661 | 45.123.152.0/21 662 | 45.123.164.0/22 663 | 45.123.168.0/21 664 | 45.123.176.0/21 665 | 45.123.184.0/22 666 | 45.123.204.0/22 667 | 45.123.212.0/22 668 | 45.123.224.0/19 669 | 45.124.0.0/22 670 | 45.124.20.0/22 671 | 45.124.28.0/22 672 | 45.124.32.0/21 673 | 45.124.44.0/22 674 | 45.124.68.0/22 675 | 45.124.76.0/22 676 | 45.124.80.0/22 677 | 45.124.100.0/22 678 | 45.124.124.0/22 679 | 45.124.172.0/22 680 | 45.124.176.0/22 681 | 45.124.208.0/22 682 | 45.124.248.0/22 683 | 45.125.24.0/22 684 | 45.125.44.0/22 685 | 45.125.52.0/22 686 | 45.125.56.0/22 687 | 45.125.76.0/22 688 | 45.125.80.0/20 689 | 45.125.96.0/21 690 | 45.125.136.0/22 691 | 45.126.48.0/21 692 | 45.126.108.0/22 693 | 45.126.112.0/21 694 | 45.126.120.0/22 695 | 45.126.220.0/22 696 | 45.127.8.0/21 697 | 45.127.128.0/22 698 | 45.127.144.0/21 699 | 45.127.156.0/22 700 | 45.248.8.0/22 701 | 45.248.80.0/22 702 | 45.248.88.0/22 703 | 45.248.96.0/20 704 | 45.248.128.0/21 705 | 45.248.204.0/22 706 | 45.248.208.0/20 707 | 45.248.224.0/19 708 | 45.249.0.0/21 709 | 45.249.12.0/22 710 | 45.249.16.0/20 711 | 45.249.32.0/21 712 | 45.249.112.0/22 713 | 45.249.188.0/22 714 | 45.249.192.0/20 715 | 45.249.208.0/21 716 | 45.250.12.0/22 717 | 45.250.16.0/22 718 | 45.250.28.0/22 719 | 45.250.32.0/21 720 | 45.250.40.0/22 721 | 45.250.76.0/22 722 | 45.250.80.0/20 723 | 45.250.96.0/22 724 | 45.250.104.0/21 725 | 45.250.112.0/20 726 | 45.250.128.0/20 727 | 45.250.144.0/21 728 | 45.250.152.0/22 729 | 45.250.164.0/22 730 | 45.250.180.0/22 731 | 45.250.184.0/21 732 | 45.250.192.0/22 733 | 45.251.0.0/22 734 | 45.251.8.0/22 735 | 45.251.16.0/21 736 | 45.251.52.0/22 737 | 45.251.84.0/22 738 | 45.251.88.0/21 739 | 45.251.96.0/21 740 | 45.251.120.0/21 741 | 45.251.136.0/21 742 | 45.251.144.0/20 743 | 45.251.160.0/19 744 | 45.251.192.0/19 745 | 45.251.224.0/22 746 | 45.252.0.0/19 747 | 45.252.32.0/20 748 | 45.252.48.0/22 749 | 45.252.84.0/22 750 | 45.252.88.0/21 751 | 45.252.96.0/19 752 | 45.252.128.0/19 753 | 45.252.160.0/20 754 | 45.252.176.0/22 755 | 45.252.192.0/19 756 | 45.252.224.0/21 757 | 45.252.232.0/22 758 | 45.253.0.0/18 759 | 45.253.64.0/20 760 | 45.253.80.0/21 761 | 45.253.92.0/22 762 | 45.253.96.0/20 763 | 45.253.112.0/21 764 | 45.253.120.0/22 765 | 45.253.130.0/23 766 | 45.253.132.0/22 767 | 45.253.136.0/21 768 | 45.253.144.0/20 769 | 45.253.160.0/19 770 | 45.253.192.0/18 771 | 45.254.0.0/19 772 | 45.254.40.0/22 773 | 45.254.48.0/20 774 | 45.254.64.0/18 775 | 45.254.128.0/18 776 | 45.254.192.0/19 777 | 45.254.224.0/21 778 | 45.254.236.0/22 779 | 45.254.240.0/22 780 | 45.254.248.0/22 781 | 45.255.0.0/18 782 | 45.255.64.0/19 783 | 45.255.96.0/20 784 | 45.255.112.0/21 785 | 45.255.120.0/22 786 | 45.255.125.0/24 787 | 45.255.126.0/23 788 | 45.255.136.0/21 789 | 45.255.144.0/20 790 | 45.255.160.0/19 791 | 45.255.192.0/19 792 | 45.255.224.0/20 793 | 45.255.240.0/21 794 | 45.255.248.0/22 795 | 47.92.0.0/14 796 | 47.96.0.0/11 797 | 49.4.0.0/14 798 | 49.52.0.0/14 799 | 49.64.0.0/11 800 | 49.112.0.0/13 801 | 49.120.0.0/14 802 | 49.128.0.0/24 803 | 49.128.2.0/23 804 | 49.140.0.0/15 805 | 49.152.0.0/14 806 | 49.208.0.0/14 807 | 49.220.0.0/14 808 | 49.232.0.0/14 809 | 49.239.0.0/18 810 | 49.239.192.0/18 811 | 52.80.0.0/16 812 | 52.94.249.0/28 813 | 54.222.0.0/15 814 | 54.231.208.0/20 815 | 58.14.0.0/15 816 | 58.16.0.0/13 817 | 58.24.0.0/15 818 | 58.30.0.0/15 819 | 58.32.0.0/11 820 | 58.65.232.0/21 821 | 58.66.0.0/15 822 | 58.68.128.0/19 823 | 58.68.160.0/23 824 | 58.68.163.0/24 825 | 58.68.164.0/22 826 | 58.68.179.0/24 827 | 58.68.180.0/24 828 | 58.68.200.0/21 829 | 58.68.208.0/20 830 | 58.68.224.0/19 831 | 58.82.0.0/17 832 | 58.83.0.0/16 833 | 58.87.64.0/18 834 | 58.99.128.0/17 835 | 58.100.0.0/15 836 | 58.116.0.0/14 837 | 58.128.0.0/13 838 | 58.144.0.0/16 839 | 58.154.0.0/15 840 | 58.192.0.0/11 841 | 58.240.0.0/12 842 | 59.32.0.0/11 843 | 59.64.0.0/12 844 | 59.80.0.0/15 845 | 59.82.0.0/17 846 | 59.82.128.0/18 847 | 59.82.192.0/19 848 | 59.82.224.0/20 849 | 59.82.240.0/22 850 | 59.82.248.0/21 851 | 59.83.0.0/18 852 | 59.83.128.0/17 853 | 59.107.0.0/16 854 | 59.108.0.0/15 855 | 59.110.0.0/16 856 | 59.111.0.0/17 857 | 59.111.128.0/18 858 | 59.111.192.0/19 859 | 59.111.224.0/20 860 | 59.111.240.0/21 861 | 59.111.248.0/22 862 | 59.111.252.0/23 863 | 59.111.255.0/24 864 | 59.151.0.0/17 865 | 59.152.16.0/20 866 | 59.152.32.0/21 867 | 59.152.64.0/20 868 | 59.152.112.0/21 869 | 59.153.4.0/22 870 | 59.153.32.0/22 871 | 59.153.64.0/21 872 | 59.153.72.0/22 873 | 59.153.92.0/22 874 | 59.153.116.0/22 875 | 59.153.136.0/22 876 | 59.153.152.0/21 877 | 59.153.164.0/22 878 | 59.153.168.0/21 879 | 59.153.176.0/20 880 | 59.153.192.0/22 881 | 59.155.0.0/16 882 | 59.172.0.0/14 883 | 59.191.0.0/17 884 | 59.192.0.0/10 885 | 60.0.0.0/11 886 | 60.55.0.0/16 887 | 60.63.0.0/16 888 | 60.160.0.0/11 889 | 60.194.0.0/15 890 | 60.200.0.0/13 891 | 60.208.0.0/12 892 | 60.232.0.0/15 893 | 60.235.0.0/16 894 | 60.245.128.0/17 895 | 60.247.0.0/16 896 | 60.252.0.0/16 897 | 60.253.128.0/17 898 | 60.255.0.0/16 899 | 61.4.81.0/24 900 | 61.4.82.0/23 901 | 61.4.84.0/22 902 | 61.4.88.0/21 903 | 61.4.176.0/20 904 | 61.8.160.0/20 905 | 61.14.212.0/22 906 | 61.14.216.0/21 907 | 61.14.240.0/21 908 | 61.28.0.0/17 909 | 61.29.128.0/18 910 | 61.29.192.0/19 911 | 61.29.224.0/20 912 | 61.45.128.0/18 913 | 61.45.224.0/20 914 | 61.47.128.0/18 915 | 61.48.0.0/13 916 | 61.87.192.0/18 917 | 61.128.0.0/10 918 | 61.232.0.0/14 919 | 61.236.0.0/15 920 | 61.240.0.0/14 921 | 65.55.209.0/24 922 | 72.163.248.0/22 923 | 87.254.207.0/24 924 | 93.183.14.0/24 925 | 93.183.18.0/24 926 | 101.0.0.0/22 927 | 101.1.0.0/22 928 | 101.2.172.0/22 929 | 101.4.0.0/14 930 | 101.16.0.0/12 931 | 101.32.0.0/15 932 | 101.34.0.0/16 933 | 101.35.0.0/20 934 | 101.35.16.0/22 935 | 101.35.21.0/24 936 | 101.35.22.0/23 937 | 101.35.24.0/21 938 | 101.35.32.0/19 939 | 101.35.64.0/20 940 | 101.35.80.0/23 941 | 101.35.84.0/22 942 | 101.35.88.0/21 943 | 101.35.96.0/19 944 | 101.35.128.0/17 945 | 101.36.0.0/18 946 | 101.36.64.0/20 947 | 101.36.88.0/21 948 | 101.36.96.0/19 949 | 101.36.128.0/17 950 | 101.37.0.0/16 951 | 101.38.0.0/15 952 | 101.40.0.0/13 953 | 101.48.0.0/15 954 | 101.50.56.0/22 955 | 101.52.0.0/16 956 | 101.53.100.0/22 957 | 101.54.0.0/16 958 | 101.55.224.0/21 959 | 101.64.0.0/13 960 | 101.72.0.0/14 961 | 101.76.0.0/15 962 | 101.78.0.0/22 963 | 101.78.32.0/19 964 | 101.80.0.0/12 965 | 101.96.0.0/21 966 | 101.96.8.0/22 967 | 101.96.16.0/20 968 | 101.96.128.0/17 969 | 101.99.96.0/19 970 | 101.101.64.0/19 971 | 101.101.100.0/24 972 | 101.101.102.0/23 973 | 101.101.104.0/21 974 | 101.101.112.0/20 975 | 101.102.64.0/19 976 | 101.102.100.0/23 977 | 101.102.102.0/24 978 | 101.102.104.0/21 979 | 101.102.112.0/20 980 | 101.104.0.0/14 981 | 101.110.64.0/19 982 | 101.110.96.0/20 983 | 101.110.116.0/22 984 | 101.110.120.0/21 985 | 101.120.0.0/14 986 | 101.124.0.0/15 987 | 101.126.0.0/16 988 | 101.128.0.0/22 989 | 101.128.8.0/21 990 | 101.128.16.0/20 991 | 101.128.32.0/19 992 | 101.129.0.0/16 993 | 101.130.0.0/15 994 | 101.132.0.0/14 995 | 101.144.0.0/12 996 | 101.192.0.0/14 997 | 101.196.0.0/17 998 | 101.196.128.0/19 999 | 101.196.160.0/22 1000 | 101.196.164.0/23 1001 | 101.196.166.0/24 1002 | 101.196.168.0/21 1003 | 101.196.176.0/20 1004 | 101.196.192.0/18 1005 | 101.197.0.0/16 1006 | 101.198.0.0/15 1007 | 101.200.0.0/15 1008 | 101.203.128.0/19 1009 | 101.203.160.0/21 1010 | 101.203.172.0/22 1011 | 101.203.176.0/20 1012 | 101.204.0.0/14 1013 | 101.224.0.0/13 1014 | 101.232.0.0/15 1015 | 101.234.64.0/21 1016 | 101.234.76.0/22 1017 | 101.234.80.0/20 1018 | 101.234.96.0/19 1019 | 101.236.0.0/17 1020 | 101.236.128.0/18 1021 | 101.236.192.0/19 1022 | 101.236.224.0/20 1023 | 101.236.240.0/21 1024 | 101.237.0.0/16 1025 | 101.238.0.0/15 1026 | 101.240.0.0/13 1027 | 101.248.0.0/15 1028 | 101.251.0.0/22 1029 | 101.251.8.0/21 1030 | 101.251.16.0/20 1031 | 101.251.32.0/19 1032 | 101.251.64.0/19 1033 | 101.251.96.0/20 1034 | 101.251.116.0/22 1035 | 101.251.120.0/21 1036 | 101.251.128.0/17 1037 | 101.252.0.0/15 1038 | 101.254.0.0/16 1039 | 103.1.8.0/22 1040 | 103.1.20.0/22 1041 | 103.1.24.0/22 1042 | 103.1.72.0/22 1043 | 103.1.88.0/22 1044 | 103.1.168.0/22 1045 | 103.2.108.0/22 1046 | 103.2.156.0/22 1047 | 103.2.164.0/22 1048 | 103.2.200.0/21 1049 | 103.2.208.0/21 1050 | 103.3.84.0/22 1051 | 103.3.88.0/21 1052 | 103.3.96.0/19 1053 | 103.3.128.0/20 1054 | 103.3.148.0/22 1055 | 103.3.152.0/21 1056 | 103.4.56.0/22 1057 | 103.4.168.0/22 1058 | 103.4.184.0/22 1059 | 103.5.36.0/22 1060 | 103.5.52.0/22 1061 | 103.5.56.0/22 1062 | 103.5.168.0/22 1063 | 103.5.252.0/22 1064 | 103.6.76.0/22 1065 | 103.6.220.0/22 1066 | 103.7.212.0/22 1067 | 103.7.216.0/21 1068 | 103.8.4.0/22 1069 | 103.8.8.0/22 1070 | 103.8.32.0/22 1071 | 103.8.52.0/22 1072 | 103.8.108.0/22 1073 | 103.8.156.0/22 1074 | 103.8.200.0/21 1075 | 103.8.220.0/22 1076 | 103.9.8.0/22 1077 | 103.9.152.0/22 1078 | 103.9.248.0/22 1079 | 103.10.0.0/22 1080 | 103.10.16.0/22 1081 | 103.10.84.0/22 1082 | 103.10.111.0/24 1083 | 103.10.140.0/22 1084 | 103.11.180.0/22 1085 | 103.12.32.0/22 1086 | 103.12.136.0/22 1087 | 103.12.184.0/22 1088 | 103.12.232.0/22 1089 | 103.13.12.0/22 1090 | 103.13.124.0/22 1091 | 103.13.144.0/22 1092 | 103.13.196.0/22 1093 | 103.13.244.0/22 1094 | 103.14.84.0/22 1095 | 103.14.132.0/22 1096 | 103.14.136.0/22 1097 | 103.14.156.0/22 1098 | 103.14.240.0/22 1099 | 103.15.4.0/22 1100 | 103.15.8.0/22 1101 | 103.15.16.0/22 1102 | 103.15.96.0/22 1103 | 103.15.200.0/22 1104 | 103.16.52.0/22 1105 | 103.16.80.0/21 1106 | 103.16.88.0/22 1107 | 103.16.108.0/22 1108 | 103.16.124.0/22 1109 | 103.17.40.0/22 1110 | 103.17.120.0/22 1111 | 103.17.160.0/22 1112 | 103.17.204.0/22 1113 | 103.17.228.0/22 1114 | 103.18.192.0/22 1115 | 103.18.208.0/21 1116 | 103.18.224.0/22 1117 | 103.19.12.0/22 1118 | 103.19.40.0/22 1119 | 103.19.45.0/24 1120 | 103.19.46.0/23 1121 | 103.19.64.0/21 1122 | 103.19.72.0/22 1123 | 103.19.232.0/22 1124 | 103.20.12.0/22 1125 | 103.20.46.0/24 1126 | 103.20.112.0/22 1127 | 103.20.128.0/22 1128 | 103.20.160.0/22 1129 | 103.20.248.0/22 1130 | 103.21.112.0/21 1131 | 103.21.140.0/22 1132 | 103.21.176.0/22 1133 | 103.21.240.0/22 1134 | 103.22.0.0/18 1135 | 103.22.64.0/19 1136 | 103.22.100.0/22 1137 | 103.22.104.0/21 1138 | 103.22.112.0/20 1139 | 103.22.188.0/22 1140 | 103.22.228.0/22 1141 | 103.22.252.0/22 1142 | 103.23.8.0/22 1143 | 103.23.56.0/22 1144 | 103.23.160.0/21 1145 | 103.23.176.0/22 1146 | 103.23.228.0/22 1147 | 103.24.116.0/22 1148 | 103.24.128.0/22 1149 | 103.24.144.0/22 1150 | 103.24.176.0/22 1151 | 103.24.184.0/22 1152 | 103.24.220.0/23 1153 | 103.24.222.0/24 1154 | 103.24.228.0/22 1155 | 103.24.252.0/22 1156 | 103.25.20.0/22 1157 | 103.25.24.0/21 1158 | 103.25.32.0/21 1159 | 103.25.40.0/22 1160 | 103.25.48.0/22 1161 | 103.25.64.0/21 1162 | 103.25.148.0/22 1163 | 103.25.156.0/22 1164 | 103.25.216.0/22 1165 | 103.26.0.0/22 1166 | 103.26.64.0/22 1167 | 103.26.76.0/22 1168 | 103.26.156.0/22 1169 | 103.26.160.0/22 1170 | 103.26.228.0/22 1171 | 103.26.240.0/22 1172 | 103.27.4.0/22 1173 | 103.27.12.0/22 1174 | 103.27.24.0/22 1175 | 103.27.56.0/22 1176 | 103.27.96.0/22 1177 | 103.27.185.0/24 1178 | 103.27.186.0/23 1179 | 103.27.240.0/22 1180 | 103.28.4.0/22 1181 | 103.28.8.0/22 1182 | 103.28.204.0/22 1183 | 103.28.212.0/22 1184 | 103.29.16.0/22 1185 | 103.29.128.0/21 1186 | 103.29.136.0/22 1187 | 103.30.20.0/22 1188 | 103.30.96.0/22 1189 | 103.30.148.0/22 1190 | 103.30.202.0/23 1191 | 103.30.228.0/22 1192 | 103.30.234.0/24 1193 | 103.30.236.0/22 1194 | 103.31.48.0/21 1195 | 103.31.60.0/22 1196 | 103.31.64.0/21 1197 | 103.31.72.0/24 1198 | 103.31.148.0/22 1199 | 103.31.160.0/22 1200 | 103.31.168.0/22 1201 | 103.31.200.0/22 1202 | 103.31.236.0/22 1203 | 103.32.0.0/15 1204 | 103.34.0.0/16 1205 | 103.35.0.0/19 1206 | 103.35.32.0/20 1207 | 103.35.48.0/22 1208 | 103.35.104.0/22 1209 | 103.35.220.0/22 1210 | 103.36.28.0/22 1211 | 103.36.36.0/22 1212 | 103.36.56.0/21 1213 | 103.36.64.0/22 1214 | 103.36.72.0/22 1215 | 103.36.96.0/22 1216 | 103.36.132.0/22 1217 | 103.36.136.0/22 1218 | 103.36.160.0/19 1219 | 103.36.192.0/19 1220 | 103.36.224.0/20 1221 | 103.36.240.0/21 1222 | 103.37.12.0/22 1223 | 103.37.16.0/22 1224 | 103.37.24.0/22 1225 | 103.37.44.0/22 1226 | 103.37.52.0/22 1227 | 103.37.56.0/22 1228 | 103.37.72.0/22 1229 | 103.37.100.0/22 1230 | 103.37.104.0/22 1231 | 103.37.136.0/21 1232 | 103.37.144.0/20 1233 | 103.37.160.0/21 1234 | 103.37.172.0/22 1235 | 103.37.176.0/22 1236 | 103.37.208.0/20 1237 | 103.37.252.0/22 1238 | 103.38.0.0/22 1239 | 103.38.32.0/22 1240 | 103.38.40.0/21 1241 | 103.38.76.0/22 1242 | 103.38.84.0/22 1243 | 103.38.92.0/22 1244 | 103.38.96.0/22 1245 | 103.38.116.0/22 1246 | 103.38.132.0/22 1247 | 103.38.140.0/22 1248 | 103.38.220.0/22 1249 | 103.38.224.0/21 1250 | 103.38.232.0/22 1251 | 103.38.252.0/23 1252 | 103.39.64.0/22 1253 | 103.39.88.0/22 1254 | 103.39.100.0/22 1255 | 103.39.104.0/22 1256 | 103.39.160.0/19 1257 | 103.39.200.0/21 1258 | 103.39.208.0/20 1259 | 103.39.224.0/21 1260 | 103.39.232.0/22 1261 | 103.40.12.0/22 1262 | 103.40.16.0/20 1263 | 103.40.32.0/20 1264 | 103.40.88.0/22 1265 | 103.40.192.0/22 1266 | 103.40.212.0/22 1267 | 103.40.220.0/22 1268 | 103.40.228.0/22 1269 | 103.40.232.0/21 1270 | 103.40.240.0/20 1271 | 103.41.0.0/22 1272 | 103.41.52.0/22 1273 | 103.41.140.0/22 1274 | 103.41.148.0/22 1275 | 103.41.152.0/22 1276 | 103.41.160.0/21 1277 | 103.41.220.0/22 1278 | 103.41.224.0/21 1279 | 103.41.232.0/22 1280 | 103.42.8.0/22 1281 | 103.42.24.0/22 1282 | 103.42.32.0/22 1283 | 103.42.64.0/21 1284 | 103.42.76.0/22 1285 | 103.42.232.0/22 1286 | 103.43.26.0/23 1287 | 103.43.84.0/22 1288 | 103.43.96.0/21 1289 | 103.43.104.0/22 1290 | 103.43.124.0/22 1291 | 103.43.184.0/22 1292 | 103.43.192.0/21 1293 | 103.43.208.0/22 1294 | 103.43.220.0/22 1295 | 103.43.224.0/22 1296 | 103.43.240.0/22 1297 | 103.44.56.0/22 1298 | 103.44.80.0/22 1299 | 103.44.120.0/21 1300 | 103.44.144.0/22 1301 | 103.44.152.0/22 1302 | 103.44.168.0/22 1303 | 103.44.176.0/20 1304 | 103.44.192.0/20 1305 | 103.44.224.0/22 1306 | 103.44.236.0/22 1307 | 103.44.240.0/20 1308 | 103.45.72.0/21 1309 | 103.45.80.0/20 1310 | 103.45.96.0/19 1311 | 103.45.128.0/18 1312 | 103.45.192.0/19 1313 | 103.45.224.0/22 1314 | 103.45.248.0/22 1315 | 103.46.0.0/22 1316 | 103.46.12.0/22 1317 | 103.46.16.0/20 1318 | 103.46.32.0/19 1319 | 103.46.64.0/18 1320 | 103.46.128.0/21 1321 | 103.46.136.0/22 1322 | 103.46.152.0/21 1323 | 103.46.160.0/20 1324 | 103.46.176.0/21 1325 | 103.46.244.0/22 1326 | 103.46.248.0/22 1327 | 103.47.4.0/22 1328 | 103.47.20.0/22 1329 | 103.47.36.0/22 1330 | 103.47.40.0/22 1331 | 103.47.80.0/22 1332 | 103.47.96.0/22 1333 | 103.47.116.0/22 1334 | 103.47.120.0/22 1335 | 103.47.136.0/21 1336 | 103.47.212.0/22 1337 | 103.48.52.0/22 1338 | 103.48.92.0/22 1339 | 103.48.148.0/22 1340 | 103.48.202.0/23 1341 | 103.48.216.0/21 1342 | 103.48.224.0/20 1343 | 103.48.240.0/21 1344 | 103.49.12.0/22 1345 | 103.49.20.0/22 1346 | 103.49.72.0/21 1347 | 103.49.96.0/22 1348 | 103.49.108.0/22 1349 | 103.49.128.0/22 1350 | 103.49.176.0/21 1351 | 103.50.36.0/22 1352 | 103.50.44.0/22 1353 | 103.50.48.0/20 1354 | 103.50.64.0/21 1355 | 103.50.72.0/22 1356 | 103.50.92.0/22 1357 | 103.50.108.0/22 1358 | 103.50.112.0/20 1359 | 103.50.132.0/22 1360 | 103.50.136.0/21 1361 | 103.50.172.0/22 1362 | 103.50.176.0/20 1363 | 103.50.192.0/21 1364 | 103.50.200.0/22 1365 | 103.50.220.0/22 1366 | 103.50.224.0/20 1367 | 103.50.240.0/21 1368 | 103.50.248.0/22 1369 | 103.52.40.0/22 1370 | 103.52.72.0/21 1371 | 103.52.80.0/21 1372 | 103.52.96.0/21 1373 | 103.52.104.0/22 1374 | 103.52.160.0/21 1375 | 103.52.172.0/22 1376 | 103.52.176.0/22 1377 | 103.52.184.0/22 1378 | 103.52.196.0/22 1379 | 103.53.64.0/21 1380 | 103.53.92.0/22 1381 | 103.53.124.0/22 1382 | 103.53.128.0/20 1383 | 103.53.144.0/22 1384 | 103.53.160.0/22 1385 | 103.53.180.0/22 1386 | 103.53.204.0/22 1387 | 103.53.208.0/21 1388 | 103.53.236.0/22 1389 | 103.53.248.0/22 1390 | 103.54.8.0/22 1391 | 103.54.48.0/22 1392 | 103.54.160.0/21 1393 | 103.54.212.0/22 1394 | 103.54.228.0/22 1395 | 103.54.240.0/22 1396 | 103.55.80.0/22 1397 | 103.55.120.0/22 1398 | 103.55.152.0/22 1399 | 103.55.172.0/22 1400 | 103.55.204.0/22 1401 | 103.55.208.0/22 1402 | 103.55.228.0/22 1403 | 103.55.236.0/22 1404 | 103.55.240.0/22 1405 | 103.56.20.0/22 1406 | 103.56.32.0/22 1407 | 103.56.56.0/21 1408 | 103.56.72.0/21 1409 | 103.56.140.0/22 1410 | 103.56.152.0/22 1411 | 103.56.200.0/22 1412 | 103.57.12.0/22 1413 | 103.57.52.0/22 1414 | 103.57.56.0/22 1415 | 103.57.76.0/22 1416 | 103.57.136.0/22 1417 | 103.57.196.0/22 1418 | 103.58.24.0/22 1419 | 103.59.76.0/22 1420 | 103.59.112.0/20 1421 | 103.59.128.0/22 1422 | 103.59.148.0/22 1423 | 103.60.32.0/22 1424 | 103.60.44.0/22 1425 | 103.60.164.0/22 1426 | 103.60.228.0/22 1427 | 103.60.236.0/22 1428 | 103.61.60.0/22 1429 | 103.61.104.0/22 1430 | 103.61.140.0/22 1431 | 103.61.152.0/21 1432 | 103.61.160.0/22 1433 | 103.61.172.0/22 1434 | 103.61.176.0/22 1435 | 103.62.24.0/22 1436 | 103.62.72.0/21 1437 | 103.62.80.0/21 1438 | 103.62.88.0/22 1439 | 103.62.96.0/19 1440 | 103.62.128.0/21 1441 | 103.62.156.0/22 1442 | 103.62.160.0/19 1443 | 103.62.192.0/22 1444 | 103.62.204.0/22 1445 | 103.62.208.0/20 1446 | 103.62.224.0/22 1447 | 103.63.32.0/19 1448 | 103.63.64.0/20 1449 | 103.63.80.0/21 1450 | 103.63.88.0/22 1451 | 103.63.140.0/22 1452 | 103.63.144.0/22 1453 | 103.63.152.0/22 1454 | 103.63.160.0/20 1455 | 103.63.176.0/21 1456 | 103.63.184.0/22 1457 | 103.63.192.0/20 1458 | 103.63.208.0/22 1459 | 103.63.240.0/20 1460 | 103.64.0.0/21 1461 | 103.64.24.0/21 1462 | 103.64.32.0/19 1463 | 103.64.64.0/18 1464 | 103.64.140.0/22 1465 | 103.64.144.0/22 1466 | 103.64.152.0/21 1467 | 103.64.160.0/19 1468 | 103.64.192.0/18 1469 | 103.65.0.0/20 1470 | 103.65.16.0/22 1471 | 103.65.38.0/23 1472 | 103.65.42.0/23 1473 | 103.65.48.0/20 1474 | 103.65.64.0/19 1475 | 103.65.100.0/22 1476 | 103.65.104.0/21 1477 | 103.65.112.0/20 1478 | 103.65.128.0/21 1479 | 103.65.136.0/22 1480 | 103.65.144.0/20 1481 | 103.65.160.0/20 1482 | 103.66.32.0/22 1483 | 103.66.40.0/22 1484 | 103.66.108.0/22 1485 | 103.66.200.0/22 1486 | 103.66.240.0/20 1487 | 103.67.0.0/21 1488 | 103.67.8.0/22 1489 | 103.67.40.0/21 1490 | 103.67.48.0/20 1491 | 103.67.64.0/18 1492 | 103.67.128.0/20 1493 | 103.67.144.0/21 1494 | 103.67.172.0/22 1495 | 103.67.192.0/22 1496 | 103.67.212.0/22 1497 | 103.68.88.0/22 1498 | 103.68.100.0/22 1499 | 103.68.128.0/22 1500 | 103.68.192.0/22 1501 | 103.69.16.0/22 1502 | 103.69.119.0/24 1503 | 103.69.132.0/22 1504 | 103.70.8.0/22 1505 | 103.70.148.0/22 1506 | 103.70.184.0/22 1507 | 103.70.236.0/22 1508 | 103.70.252.0/22 1509 | 103.71.0.0/22 1510 | 103.71.48.0/22 1511 | 103.71.68.0/22 1512 | 103.71.72.0/22 1513 | 103.71.80.0/21 1514 | 103.71.88.0/22 1515 | 103.71.120.0/21 1516 | 103.71.128.0/22 1517 | 103.71.144.0/22 1518 | 103.71.196.0/22 1519 | 103.71.200.0/22 1520 | 103.71.232.0/22 1521 | 103.72.12.0/22 1522 | 103.72.16.0/20 1523 | 103.72.32.0/20 1524 | 103.72.48.0/21 1525 | 103.72.112.0/20 1526 | 103.72.128.0/21 1527 | 103.72.149.0/24 1528 | 103.72.150.0/23 1529 | 103.72.172.0/22 1530 | 103.72.180.0/22 1531 | 103.72.224.0/19 1532 | 103.73.0.0/19 1533 | 103.73.48.0/22 1534 | 103.73.116.0/22 1535 | 103.73.120.0/22 1536 | 103.73.128.0/20 1537 | 103.73.144.0/22 1538 | 103.73.168.0/22 1539 | 103.73.176.0/22 1540 | 103.73.204.0/22 1541 | 103.73.208.0/22 1542 | 103.73.240.0/23 1543 | 103.73.242.0/24 1544 | 103.73.244.0/22 1545 | 103.73.248.0/22 1546 | 103.74.24.0/21 1547 | 103.74.32.0/20 1548 | 103.74.48.0/22 1549 | 103.74.56.0/21 1550 | 103.74.80.0/22 1551 | 103.74.124.0/22 1552 | 103.74.148.0/22 1553 | 103.74.152.0/21 1554 | 103.74.204.0/22 1555 | 103.74.232.0/22 1556 | 103.75.16.0/22 1557 | 103.75.85.0/24 1558 | 103.75.87.0/24 1559 | 103.75.88.0/21 1560 | 103.75.104.0/21 1561 | 103.75.112.0/22 1562 | 103.75.120.0/22 1563 | 103.75.128.0/22 1564 | 103.75.144.0/22 1565 | 103.75.152.0/22 1566 | 103.75.236.0/24 1567 | 103.76.60.0/22 1568 | 103.76.64.0/21 1569 | 103.76.72.0/22 1570 | 103.76.92.0/22 1571 | 103.76.216.0/21 1572 | 103.76.224.0/22 1573 | 103.77.28.0/22 1574 | 103.77.52.0/22 1575 | 103.77.56.0/22 1576 | 103.77.72.0/22 1577 | 103.77.88.0/21 1578 | 103.77.132.0/22 1579 | 103.77.148.0/22 1580 | 103.77.220.0/22 1581 | 103.78.56.0/21 1582 | 103.78.64.0/21 1583 | 103.78.124.0/22 1584 | 103.78.172.0/22 1585 | 103.78.176.0/22 1586 | 103.78.196.0/22 1587 | 103.78.228.0/22 1588 | 103.79.24.0/21 1589 | 103.79.36.0/22 1590 | 103.79.40.0/21 1591 | 103.79.56.0/21 1592 | 103.79.64.0/21 1593 | 103.79.80.0/21 1594 | 103.79.136.0/22 1595 | 103.79.188.0/22 1596 | 103.79.192.0/20 1597 | 103.79.208.0/21 1598 | 103.79.240.0/22 1599 | 103.80.28.0/22 1600 | 103.80.44.0/22 1601 | 103.80.72.0/22 1602 | 103.80.176.0/21 1603 | 103.80.184.0/22 1604 | 103.80.192.0/22 1605 | 103.80.200.0/22 1606 | 103.80.232.0/22 1607 | 103.81.4.0/22 1608 | 103.81.8.0/22 1609 | 103.81.16.0/21 1610 | 103.81.44.0/22 1611 | 103.81.48.0/22 1612 | 103.81.96.0/22 1613 | 103.81.120.0/22 1614 | 103.81.148.0/22 1615 | 103.81.164.0/22 1616 | 103.81.168.0/22 1617 | 103.81.187.0/24 1618 | 103.81.200.0/22 1619 | 103.81.232.0/22 1620 | 103.82.52.0/22 1621 | 103.82.60.0/22 1622 | 103.82.68.0/22 1623 | 103.82.84.0/22 1624 | 103.82.104.0/22 1625 | 103.192.0.0/19 1626 | 103.192.48.0/21 1627 | 103.192.56.0/22 1628 | 103.192.84.0/22 1629 | 103.192.88.0/21 1630 | 103.192.96.0/20 1631 | 103.192.112.0/22 1632 | 103.192.128.0/20 1633 | 103.192.144.0/22 1634 | 103.192.164.0/22 1635 | 103.192.188.0/22 1636 | 103.192.208.0/21 1637 | 103.192.216.0/22 1638 | 103.192.252.0/22 1639 | 103.193.40.0/21 1640 | 103.193.120.0/21 1641 | 103.193.140.0/22 1642 | 103.193.160.0/22 1643 | 103.193.188.0/22 1644 | 103.193.192.0/22 1645 | 103.193.212.0/22 1646 | 103.193.216.0/21 1647 | 103.193.224.0/20 1648 | 103.194.16.0/22 1649 | 103.194.230.0/23 1650 | 103.195.112.0/22 1651 | 103.195.152.0/22 1652 | 103.195.160.0/22 1653 | 103.196.64.0/22 1654 | 103.196.72.0/22 1655 | 103.196.88.0/21 1656 | 103.196.96.0/22 1657 | 103.196.168.0/22 1658 | 103.196.185.0/24 1659 | 103.196.186.0/23 1660 | 103.197.180.0/22 1661 | 103.197.228.0/22 1662 | 103.197.253.0/24 1663 | 103.197.254.0/23 1664 | 103.198.20.0/22 1665 | 103.198.60.0/22 1666 | 103.198.64.0/22 1667 | 103.198.72.0/22 1668 | 103.198.124.0/22 1669 | 103.198.156.0/22 1670 | 103.198.180.0/22 1671 | 103.198.196.0/22 1672 | 103.198.200.0/22 1673 | 103.198.216.0/21 1674 | 103.198.224.0/20 1675 | 103.198.240.0/21 1676 | 103.199.164.0/22 1677 | 103.199.196.0/22 1678 | 103.199.228.0/22 1679 | 103.199.252.0/22 1680 | 103.200.52.0/22 1681 | 103.200.64.0/21 1682 | 103.200.136.0/21 1683 | 103.200.144.0/20 1684 | 103.200.160.0/19 1685 | 103.200.192.0/22 1686 | 103.200.220.0/22 1687 | 103.200.224.0/19 1688 | 103.201.0.0/20 1689 | 103.201.16.0/21 1690 | 103.201.28.0/22 1691 | 103.201.32.0/19 1692 | 103.201.64.0/22 1693 | 103.201.76.0/22 1694 | 103.201.80.0/20 1695 | 103.201.96.0/20 1696 | 103.201.112.0/21 1697 | 103.201.120.0/22 1698 | 103.201.152.0/21 1699 | 103.201.160.0/19 1700 | 103.201.192.0/18 1701 | 103.202.0.0/19 1702 | 103.202.32.0/20 1703 | 103.202.56.0/21 1704 | 103.202.64.0/18 1705 | 103.202.128.0/20 1706 | 103.202.144.0/22 1707 | 103.202.152.0/21 1708 | 103.202.160.0/19 1709 | 103.202.192.0/20 1710 | 103.202.212.0/22 1711 | 103.202.228.0/22 1712 | 103.202.236.0/22 1713 | 103.202.240.0/20 1714 | 103.203.0.0/19 1715 | 103.203.32.0/22 1716 | 103.203.96.0/19 1717 | 103.203.128.0/22 1718 | 103.203.140.0/22 1719 | 103.203.164.0/22 1720 | 103.203.168.0/22 1721 | 103.203.192.0/22 1722 | 103.203.200.0/22 1723 | 103.203.212.0/22 1724 | 103.203.216.0/22 1725 | 103.204.24.0/22 1726 | 103.204.72.0/22 1727 | 103.204.88.0/22 1728 | 103.204.112.0/22 1729 | 103.204.136.0/21 1730 | 103.204.144.0/21 1731 | 103.204.152.0/22 1732 | 103.204.196.0/22 1733 | 103.204.232.0/21 1734 | 103.205.40.0/21 1735 | 103.205.52.0/22 1736 | 103.205.108.0/22 1737 | 103.205.116.0/22 1738 | 103.205.136.0/22 1739 | 103.205.162.0/24 1740 | 103.205.188.0/22 1741 | 103.205.192.0/21 1742 | 103.205.200.0/22 1743 | 103.205.236.0/22 1744 | 103.205.248.0/21 1745 | 103.206.0.0/22 1746 | 103.206.44.0/22 1747 | 103.206.148.0/22 1748 | 103.207.104.0/22 1749 | 103.207.184.0/21 1750 | 103.207.192.0/20 1751 | 103.207.208.0/21 1752 | 103.207.220.0/22 1753 | 103.207.228.0/22 1754 | 103.207.232.0/22 1755 | 103.208.12.0/22 1756 | 103.208.16.0/22 1757 | 103.208.28.0/22 1758 | 103.208.40.0/21 1759 | 103.208.48.0/22 1760 | 103.208.148.0/22 1761 | 103.209.112.0/22 1762 | 103.209.136.0/22 1763 | 103.209.200.0/22 1764 | 103.209.208.0/22 1765 | 103.209.216.0/22 1766 | 103.210.0.0/22 1767 | 103.210.96.0/22 1768 | 103.210.156.0/22 1769 | 103.210.160.0/19 1770 | 103.210.216.0/22 1771 | 103.211.44.0/22 1772 | 103.211.96.0/23 1773 | 103.211.98.0/24 1774 | 103.211.100.0/22 1775 | 103.211.156.0/22 1776 | 103.211.165.0/24 1777 | 103.211.166.0/24 1778 | 103.211.168.0/22 1779 | 103.211.220.0/22 1780 | 103.211.248.0/22 1781 | 103.212.0.0/20 1782 | 103.212.44.0/22 1783 | 103.212.48.0/22 1784 | 103.212.84.0/22 1785 | 103.212.100.0/22 1786 | 103.212.148.0/22 1787 | 103.212.164.0/22 1788 | 103.212.196.0/22 1789 | 103.212.200.0/22 1790 | 103.212.230.0/23 1791 | 103.212.252.0/22 1792 | 103.213.40.0/21 1793 | 103.213.48.0/20 1794 | 103.213.64.0/19 1795 | 103.213.96.0/22 1796 | 103.213.132.0/22 1797 | 103.213.136.0/21 1798 | 103.213.144.0/20 1799 | 103.213.160.0/19 1800 | 103.213.252.0/22 1801 | 103.214.48.0/22 1802 | 103.214.84.0/22 1803 | 103.214.212.0/22 1804 | 103.214.240.0/21 1805 | 103.215.28.0/22 1806 | 103.215.32.0/21 1807 | 103.215.44.0/22 1808 | 103.215.100.0/22 1809 | 103.215.108.0/22 1810 | 103.215.116.0/22 1811 | 103.215.120.0/22 1812 | 103.215.140.0/22 1813 | 103.216.4.0/22 1814 | 103.216.8.0/21 1815 | 103.216.16.0/20 1816 | 103.216.32.0/20 1817 | 103.216.64.0/22 1818 | 103.216.108.0/22 1819 | 103.216.136.0/22 1820 | 103.216.152.0/22 1821 | 103.216.224.0/21 1822 | 103.216.240.0/20 1823 | 103.217.0.0/18 1824 | 103.217.168.0/22 1825 | 103.217.180.0/22 1826 | 103.217.184.0/21 1827 | 103.217.192.0/20 1828 | 103.218.8.0/21 1829 | 103.218.16.0/21 1830 | 103.218.28.0/22 1831 | 103.218.32.0/19 1832 | 103.218.64.0/19 1833 | 103.218.192.0/20 1834 | 103.218.208.0/21 1835 | 103.218.216.0/22 1836 | 103.219.24.0/21 1837 | 103.219.32.0/21 1838 | 103.219.64.0/22 1839 | 103.219.84.0/22 1840 | 103.219.88.0/21 1841 | 103.219.96.0/21 1842 | 103.219.176.0/22 1843 | 103.219.184.0/22 1844 | 103.220.48.0/20 1845 | 103.220.64.0/22 1846 | 103.220.92.0/22 1847 | 103.220.96.0/22 1848 | 103.220.104.0/21 1849 | 103.220.116.0/22 1850 | 103.220.120.0/21 1851 | 103.220.128.0/20 1852 | 103.220.144.0/21 1853 | 103.220.152.0/22 1854 | 103.220.160.0/19 1855 | 103.220.192.0/21 1856 | 103.220.200.0/22 1857 | 103.220.240.0/20 1858 | 103.221.0.0/19 1859 | 103.221.32.0/20 1860 | 103.221.48.0/22 1861 | 103.221.88.0/21 1862 | 103.221.96.0/19 1863 | 103.221.128.0/18 1864 | 103.221.192.0/20 1865 | 103.222.0.0/20 1866 | 103.222.16.0/22 1867 | 103.222.24.0/21 1868 | 103.222.32.0/19 1869 | 103.222.64.0/18 1870 | 103.222.128.0/18 1871 | 103.222.192.0/19 1872 | 103.222.224.0/21 1873 | 103.222.232.0/22 1874 | 103.222.240.0/21 1875 | 103.223.16.0/20 1876 | 103.223.32.0/19 1877 | 103.223.64.0/19 1878 | 103.223.96.0/20 1879 | 103.223.112.0/21 1880 | 103.223.121.0/24 1881 | 103.223.123.0/24 1882 | 103.223.124.0/22 1883 | 103.223.128.0/21 1884 | 103.223.140.0/22 1885 | 103.223.144.0/20 1886 | 103.223.160.0/20 1887 | 103.223.176.0/21 1888 | 103.223.188.0/22 1889 | 103.223.192.0/18 1890 | 103.224.40.0/21 1891 | 103.224.60.0/22 1892 | 103.224.220.0/22 1893 | 103.224.224.0/21 1894 | 103.224.232.0/22 1895 | 103.226.40.0/22 1896 | 103.226.56.0/21 1897 | 103.226.80.0/22 1898 | 103.226.116.0/22 1899 | 103.226.132.0/22 1900 | 103.226.156.0/22 1901 | 103.226.180.0/22 1902 | 103.226.196.0/22 1903 | 103.227.48.0/22 1904 | 103.227.72.0/21 1905 | 103.227.80.0/22 1906 | 103.227.100.0/22 1907 | 103.227.120.0/22 1908 | 103.227.132.0/22 1909 | 103.227.136.0/22 1910 | 103.227.196.0/22 1911 | 103.227.204.0/23 1912 | 103.227.206.0/24 1913 | 103.227.212.0/22 1914 | 103.227.228.0/22 1915 | 103.228.12.0/22 1916 | 103.228.88.0/22 1917 | 103.228.136.0/22 1918 | 103.228.160.0/22 1919 | 103.228.176.0/22 1920 | 103.228.204.0/22 1921 | 103.228.208.0/22 1922 | 103.228.232.0/22 1923 | 103.229.20.0/22 1924 | 103.229.60.0/23 1925 | 103.229.62.0/24 1926 | 103.229.136.0/22 1927 | 103.229.148.0/22 1928 | 103.229.172.0/22 1929 | 103.229.212.0/22 1930 | 103.229.216.0/21 1931 | 103.229.228.0/22 1932 | 103.229.236.0/22 1933 | 103.229.240.0/22 1934 | 103.230.0.0/22 1935 | 103.230.28.0/22 1936 | 103.230.40.0/21 1937 | 103.230.96.0/22 1938 | 103.230.196.0/22 1939 | 103.230.200.0/21 1940 | 103.230.212.0/22 1941 | 103.230.236.0/22 1942 | 103.231.16.0/21 1943 | 103.231.64.0/21 1944 | 103.231.144.0/22 1945 | 103.231.180.0/22 1946 | 103.231.244.0/22 1947 | 103.232.4.0/22 1948 | 103.232.144.0/22 1949 | 103.232.212.0/23 1950 | 103.232.214.0/24 1951 | 103.233.4.0/22 1952 | 103.233.44.0/22 1953 | 103.233.52.0/22 1954 | 103.233.104.0/22 1955 | 103.233.128.0/22 1956 | 103.233.136.0/22 1957 | 103.233.228.0/22 1958 | 103.234.0.0/22 1959 | 103.234.20.0/22 1960 | 103.234.56.0/22 1961 | 103.234.124.0/22 1962 | 103.234.128.0/22 1963 | 103.234.172.0/22 1964 | 103.234.180.0/22 1965 | 103.235.56.0/21 1966 | 103.235.80.0/21 1967 | 103.235.128.0/20 1968 | 103.235.144.0/21 1969 | 103.235.192.0/22 1970 | 103.235.200.0/22 1971 | 103.235.220.0/22 1972 | 103.235.224.0/19 1973 | 103.236.0.0/18 1974 | 103.236.64.0/19 1975 | 103.236.96.0/22 1976 | 103.236.120.0/22 1977 | 103.236.184.0/22 1978 | 103.236.240.0/20 1979 | 103.237.0.0/20 1980 | 103.237.24.0/21 1981 | 103.237.88.0/22 1982 | 103.237.152.0/22 1983 | 103.237.176.0/20 1984 | 103.237.192.0/18 1985 | 103.238.0.0/21 1986 | 103.238.16.0/20 1987 | 103.238.32.0/20 1988 | 103.238.48.0/21 1989 | 103.238.56.0/22 1990 | 103.238.88.0/21 1991 | 103.238.96.0/22 1992 | 103.238.132.0/22 1993 | 103.238.140.0/22 1994 | 103.238.144.0/22 1995 | 103.238.160.0/19 1996 | 103.238.196.0/22 1997 | 103.238.204.0/22 1998 | 103.238.252.0/22 1999 | 103.239.0.0/22 2000 | 103.239.44.0/22 2001 | 103.239.68.0/22 2002 | 103.239.152.0/21 2003 | 103.239.180.0/22 2004 | 103.239.184.0/22 2005 | 103.239.192.0/21 2006 | 103.239.204.0/22 2007 | 103.239.208.0/22 2008 | 103.239.224.0/22 2009 | 103.239.244.0/22 2010 | 103.240.16.0/22 2011 | 103.240.36.0/22 2012 | 103.240.72.0/22 2013 | 103.240.84.0/22 2014 | 103.240.124.0/22 2015 | 103.240.172.0/22 2016 | 103.240.244.0/22 2017 | 103.241.12.0/22 2018 | 103.241.92.0/22 2019 | 103.241.96.0/22 2020 | 103.241.160.0/22 2021 | 103.241.184.0/21 2022 | 103.241.220.0/22 2023 | 103.242.128.0/23 2024 | 103.242.160.0/22 2025 | 103.242.168.0/21 2026 | 103.242.176.0/22 2027 | 103.242.200.0/22 2028 | 103.242.212.0/22 2029 | 103.242.220.0/22 2030 | 103.242.240.0/22 2031 | 103.243.136.0/22 2032 | 103.243.252.0/22 2033 | 103.244.16.0/22 2034 | 103.244.58.0/23 2035 | 103.244.60.0/22 2036 | 103.244.64.0/20 2037 | 103.244.80.0/21 2038 | 103.244.164.0/22 2039 | 103.244.232.0/22 2040 | 103.244.252.0/22 2041 | 103.245.23.0/24 2042 | 103.245.52.0/22 2043 | 103.245.60.0/22 2044 | 103.245.80.0/22 2045 | 103.245.124.0/22 2046 | 103.245.128.0/22 2047 | 103.246.8.0/21 2048 | 103.246.120.0/21 2049 | 103.246.132.0/22 2050 | 103.246.152.0/22 2051 | 103.247.168.0/21 2052 | 103.247.176.0/22 2053 | 103.247.200.0/22 2054 | 103.247.212.0/22 2055 | 103.248.64.0/23 2056 | 103.248.100.0/22 2057 | 103.248.124.0/22 2058 | 103.248.152.0/22 2059 | 103.248.168.0/22 2060 | 103.248.192.0/22 2061 | 103.248.212.0/22 2062 | 103.248.224.0/21 2063 | 103.249.12.0/22 2064 | 103.249.52.0/22 2065 | 103.249.128.0/22 2066 | 103.249.136.0/22 2067 | 103.249.144.0/22 2068 | 103.249.164.0/22 2069 | 103.249.168.0/21 2070 | 103.249.176.0/22 2071 | 103.249.188.0/22 2072 | 103.249.193.0/24 2073 | 103.249.244.0/22 2074 | 103.249.252.0/22 2075 | 103.250.32.0/22 2076 | 103.250.104.0/22 2077 | 103.250.124.0/22 2078 | 103.250.180.0/22 2079 | 103.250.192.0/22 2080 | 103.250.216.0/22 2081 | 103.250.224.0/22 2082 | 103.250.236.0/22 2083 | 103.250.248.0/21 2084 | 103.251.32.0/22 2085 | 103.251.84.0/22 2086 | 103.251.96.0/22 2087 | 103.251.124.0/22 2088 | 103.251.160.0/22 2089 | 103.251.204.0/22 2090 | 103.251.240.0/22 2091 | 103.252.28.0/22 2092 | 103.252.36.0/22 2093 | 103.252.64.0/22 2094 | 103.252.104.0/22 2095 | 103.252.172.0/22 2096 | 103.252.204.0/22 2097 | 103.252.208.0/22 2098 | 103.252.232.0/22 2099 | 103.252.248.0/22 2100 | 103.253.4.0/22 2101 | 103.253.60.0/22 2102 | 103.253.204.0/22 2103 | 103.253.220.0/22 2104 | 103.253.224.0/22 2105 | 103.253.232.0/22 2106 | 103.254.8.0/22 2107 | 103.254.20.0/22 2108 | 103.254.64.0/21 2109 | 103.254.76.0/22 2110 | 103.254.112.0/22 2111 | 103.254.176.0/22 2112 | 103.254.188.0/22 2113 | 103.255.68.0/22 2114 | 103.255.88.0/21 2115 | 103.255.136.0/21 2116 | 103.255.200.0/22 2117 | 103.255.208.0/22 2118 | 106.0.0.0/24 2119 | 106.0.2.0/23 2120 | 106.0.4.0/22 2121 | 106.0.8.0/21 2122 | 106.0.16.0/20 2123 | 106.0.44.0/22 2124 | 106.0.64.0/18 2125 | 106.2.0.0/23 2126 | 106.2.3.0/24 2127 | 106.2.4.0/22 2128 | 106.2.8.0/21 2129 | 106.2.16.0/20 2130 | 106.2.32.0/19 2131 | 106.2.64.0/18 2132 | 106.2.128.0/17 2133 | 106.3.16.0/20 2134 | 106.3.32.0/19 2135 | 106.3.64.0/20 2136 | 106.3.80.0/22 2137 | 106.3.88.0/21 2138 | 106.3.96.0/19 2139 | 106.3.128.0/17 2140 | 106.4.0.0/14 2141 | 106.8.0.0/15 2142 | 106.11.0.0/16 2143 | 106.12.0.0/14 2144 | 106.16.0.0/12 2145 | 106.32.0.0/12 2146 | 106.48.0.0/21 2147 | 106.48.8.0/22 2148 | 106.48.16.0/20 2149 | 106.48.32.0/20 2150 | 106.48.52.0/22 2151 | 106.48.56.0/21 2152 | 106.48.64.0/18 2153 | 106.48.128.0/17 2154 | 106.49.1.0/24 2155 | 106.49.2.0/23 2156 | 106.49.4.0/22 2157 | 106.49.8.0/21 2158 | 106.49.16.0/20 2159 | 106.49.32.0/19 2160 | 106.49.64.0/19 2161 | 106.49.96.0/24 2162 | 106.49.98.0/23 2163 | 106.49.100.0/22 2164 | 106.49.104.0/21 2165 | 106.49.112.0/20 2166 | 106.49.128.0/17 2167 | 106.50.0.0/16 2168 | 106.52.0.0/14 2169 | 106.56.0.0/13 2170 | 106.74.0.0/16 2171 | 106.75.0.0/17 2172 | 106.75.128.0/18 2173 | 106.75.201.0/24 2174 | 106.75.204.0/22 2175 | 106.75.208.0/20 2176 | 106.75.224.0/19 2177 | 106.80.0.0/12 2178 | 106.108.0.0/14 2179 | 106.112.0.0/12 2180 | 106.224.0.0/12 2181 | 110.6.0.0/15 2182 | 110.16.0.0/14 2183 | 110.40.0.0/14 2184 | 110.44.12.0/22 2185 | 110.44.144.0/20 2186 | 110.48.0.0/17 2187 | 110.48.128.0/19 2188 | 110.48.161.0/24 2189 | 110.48.162.0/23 2190 | 110.48.164.0/22 2191 | 110.48.168.0/21 2192 | 110.48.176.0/20 2193 | 110.48.192.0/18 2194 | 110.51.0.0/16 2195 | 110.52.0.0/15 2196 | 110.56.0.0/13 2197 | 110.64.0.0/15 2198 | 110.72.0.0/15 2199 | 110.75.0.0/16 2200 | 110.76.0.0/20 2201 | 110.76.16.0/22 2202 | 110.76.20.0/24 2203 | 110.76.22.0/24 2204 | 110.76.24.0/21 2205 | 110.76.32.0/19 2206 | 110.76.132.0/22 2207 | 110.76.156.0/22 2208 | 110.76.184.0/22 2209 | 110.76.192.0/18 2210 | 110.77.0.0/17 2211 | 110.80.0.0/13 2212 | 110.88.0.0/14 2213 | 110.92.68.0/22 2214 | 110.93.32.0/19 2215 | 110.94.0.0/15 2216 | 110.96.0.0/11 2217 | 110.152.0.0/14 2218 | 110.156.0.0/15 2219 | 110.166.0.0/15 2220 | 110.172.192.0/18 2221 | 110.173.0.0/19 2222 | 110.173.32.0/20 2223 | 110.173.64.0/19 2224 | 110.173.192.0/19 2225 | 110.176.0.0/12 2226 | 110.192.0.0/11 2227 | 110.228.0.0/14 2228 | 110.232.32.0/19 2229 | 110.236.0.0/15 2230 | 110.240.0.0/12 2231 | 111.0.0.0/10 2232 | 111.66.0.0/16 2233 | 111.67.192.0/20 2234 | 111.68.64.0/19 2235 | 111.72.0.0/13 2236 | 111.85.0.0/16 2237 | 111.91.192.0/22 2238 | 111.91.197.0/24 2239 | 111.91.198.0/23 2240 | 111.91.200.0/21 2241 | 111.91.208.0/20 2242 | 111.112.0.0/14 2243 | 111.116.0.0/15 2244 | 111.118.200.0/21 2245 | 111.119.64.0/20 2246 | 111.119.80.0/23 2247 | 111.119.82.0/24 2248 | 111.119.84.0/22 2249 | 111.119.88.0/21 2250 | 111.119.96.0/19 2251 | 111.119.128.0/19 2252 | 111.120.0.0/14 2253 | 111.124.0.0/16 2254 | 111.126.0.0/15 2255 | 111.128.0.0/11 2256 | 111.160.0.0/13 2257 | 111.170.0.0/16 2258 | 111.172.0.0/14 2259 | 111.176.0.0/13 2260 | 111.186.0.0/15 2261 | 111.192.0.0/12 2262 | 111.208.0.0/13 2263 | 111.221.28.0/24 2264 | 111.221.128.0/17 2265 | 111.222.0.0/16 2266 | 111.223.4.0/22 2267 | 111.223.8.0/21 2268 | 111.223.16.0/22 2269 | 111.223.240.0/22 2270 | 111.223.248.0/22 2271 | 111.224.0.0/13 2272 | 111.235.96.0/19 2273 | 111.235.156.0/22 2274 | 111.235.160.0/21 2275 | 111.235.170.0/23 2276 | 111.235.172.0/22 2277 | 111.235.176.0/20 2278 | 112.0.0.0/10 2279 | 112.64.0.0/14 2280 | 112.73.64.0/18 2281 | 112.74.0.0/15 2282 | 112.80.0.0/12 2283 | 112.96.0.0/13 2284 | 112.109.128.0/17 2285 | 112.111.0.0/16 2286 | 112.112.0.0/14 2287 | 112.116.0.0/15 2288 | 112.122.0.0/15 2289 | 112.124.0.0/14 2290 | 112.128.0.0/14 2291 | 112.132.0.0/16 2292 | 112.137.48.0/21 2293 | 112.192.0.0/14 2294 | 112.224.0.0/11 2295 | 113.0.0.0/13 2296 | 113.8.0.0/15 2297 | 113.11.192.0/19 2298 | 113.12.0.0/14 2299 | 113.16.0.0/15 2300 | 113.18.0.0/16 2301 | 113.24.0.0/14 2302 | 113.31.0.0/16 2303 | 113.44.0.0/14 2304 | 113.48.0.0/14 2305 | 113.52.160.0/22 2306 | 113.52.164.0/23 2307 | 113.52.166.0/24 2308 | 113.52.168.0/21 2309 | 113.52.176.0/20 2310 | 113.54.0.0/15 2311 | 113.56.0.0/15 2312 | 113.58.0.0/16 2313 | 113.59.0.0/17 2314 | 113.59.224.0/22 2315 | 113.62.0.0/15 2316 | 113.64.0.0/10 2317 | 113.128.0.0/15 2318 | 113.130.96.0/20 2319 | 113.130.112.0/21 2320 | 113.132.0.0/14 2321 | 113.136.0.0/13 2322 | 113.194.0.0/15 2323 | 113.197.100.0/23 2324 | 113.197.102.0/24 2325 | 113.200.0.0/15 2326 | 113.202.0.0/16 2327 | 113.204.0.0/14 2328 | 113.208.96.0/19 2329 | 113.208.128.0/17 2330 | 113.209.0.0/16 2331 | 113.212.0.0/18 2332 | 113.212.100.0/22 2333 | 113.212.184.0/21 2334 | 113.213.0.0/17 2335 | 113.214.0.0/15 2336 | 113.218.0.0/15 2337 | 113.220.0.0/14 2338 | 113.224.0.0/12 2339 | 113.240.0.0/13 2340 | 113.248.0.0/14 2341 | 114.28.0.0/16 2342 | 114.54.0.0/15 2343 | 114.60.0.0/14 2344 | 114.64.0.0/14 2345 | 114.68.1.0/24 2346 | 114.68.2.0/23 2347 | 114.68.4.0/22 2348 | 114.68.8.0/21 2349 | 114.68.16.0/20 2350 | 114.68.32.0/19 2351 | 114.68.64.0/18 2352 | 114.68.128.0/17 2353 | 114.79.64.0/18 2354 | 114.80.0.0/12 2355 | 114.96.0.0/13 2356 | 114.104.0.0/14 2357 | 114.110.0.0/20 2358 | 114.110.64.0/18 2359 | 114.111.0.0/19 2360 | 114.111.160.0/19 2361 | 114.112.4.0/22 2362 | 114.112.8.0/22 2363 | 114.112.12.0/23 2364 | 114.112.24.0/21 2365 | 114.112.32.0/19 2366 | 114.112.64.0/19 2367 | 114.112.96.0/20 2368 | 114.112.116.0/22 2369 | 114.112.120.0/21 2370 | 114.112.136.0/21 2371 | 114.112.144.0/20 2372 | 114.112.160.0/19 2373 | 114.112.192.0/19 2374 | 114.113.0.0/17 2375 | 114.113.128.0/21 2376 | 114.113.140.0/22 2377 | 114.113.144.0/20 2378 | 114.113.160.0/19 2379 | 114.113.196.0/22 2380 | 114.113.200.0/21 2381 | 114.113.208.0/20 2382 | 114.113.224.0/20 2383 | 114.114.0.0/16 2384 | 114.115.0.0/18 2385 | 114.115.68.0/22 2386 | 114.115.72.0/21 2387 | 114.115.80.0/20 2388 | 114.115.96.0/19 2389 | 114.115.128.0/17 2390 | 114.116.0.0/14 2391 | 114.132.0.0/18 2392 | 114.132.64.0/19 2393 | 114.132.96.0/21 2394 | 114.132.104.0/22 2395 | 114.132.108.0/23 2396 | 114.132.110.0/24 2397 | 114.132.112.0/20 2398 | 114.132.128.0/17 2399 | 114.135.0.0/16 2400 | 114.138.0.0/15 2401 | 114.141.64.0/21 2402 | 114.141.128.0/18 2403 | 114.196.0.0/15 2404 | 114.198.248.0/21 2405 | 114.208.0.0/12 2406 | 114.224.0.0/11 2407 | 115.24.0.0/14 2408 | 115.28.0.0/15 2409 | 115.31.64.0/20 2410 | 115.32.0.0/14 2411 | 115.42.56.0/22 2412 | 115.44.0.0/14 2413 | 115.48.0.0/12 2414 | 115.69.64.0/20 2415 | 115.84.0.0/18 2416 | 115.84.192.0/21 2417 | 115.84.201.0/24 2418 | 115.84.202.0/23 2419 | 115.84.204.0/22 2420 | 115.84.208.0/20 2421 | 115.85.192.0/18 2422 | 115.100.0.0/14 2423 | 115.104.0.0/14 2424 | 115.120.0.0/14 2425 | 115.124.16.0/20 2426 | 115.148.0.0/14 2427 | 115.152.0.0/13 2428 | 115.166.64.0/19 2429 | 115.168.0.0/13 2430 | 115.180.0.0/14 2431 | 115.190.0.0/15 2432 | 115.192.0.0/11 2433 | 115.224.0.0/12 2434 | 116.0.8.0/21 2435 | 116.0.24.0/21 2436 | 116.1.0.0/16 2437 | 116.2.0.0/15 2438 | 116.4.0.0/14 2439 | 116.8.0.0/14 2440 | 116.13.0.0/16 2441 | 116.16.0.0/12 2442 | 116.50.0.0/20 2443 | 116.52.0.0/14 2444 | 116.56.0.0/15 2445 | 116.58.128.0/20 2446 | 116.58.208.0/20 2447 | 116.60.0.0/14 2448 | 116.66.0.0/18 2449 | 116.66.64.0/19 2450 | 116.66.96.0/20 2451 | 116.66.120.0/22 2452 | 116.66.176.0/22 2453 | 116.69.0.0/16 2454 | 116.70.0.0/17 2455 | 116.76.0.0/14 2456 | 116.85.0.0/16 2457 | 116.89.144.0/20 2458 | 116.90.80.0/20 2459 | 116.90.184.0/21 2460 | 116.95.0.0/16 2461 | 116.112.0.0/14 2462 | 116.116.0.0/15 2463 | 116.128.0.0/10 2464 | 116.192.0.0/16 2465 | 116.193.16.0/20 2466 | 116.193.32.0/19 2467 | 116.193.176.0/21 2468 | 116.194.0.0/15 2469 | 116.196.0.0/21 2470 | 116.196.8.0/22 2471 | 116.196.12.0/23 2472 | 116.196.16.0/20 2473 | 116.196.33.0/24 2474 | 116.196.34.0/23 2475 | 116.196.36.0/22 2476 | 116.196.40.0/21 2477 | 116.196.48.0/20 2478 | 116.196.64.0/18 2479 | 116.196.128.0/17 2480 | 116.197.180.0/23 2481 | 116.198.0.0/16 2482 | 116.199.0.0/17 2483 | 116.199.128.0/20 2484 | 116.199.144.0/22 2485 | 116.199.149.0/24 2486 | 116.199.150.0/23 2487 | 116.199.152.0/21 2488 | 116.204.0.0/15 2489 | 116.207.0.0/16 2490 | 116.208.0.0/14 2491 | 116.212.160.0/20 2492 | 116.213.64.0/18 2493 | 116.213.128.0/17 2494 | 116.214.32.0/19 2495 | 116.214.64.0/20 2496 | 116.214.128.0/17 2497 | 116.215.0.0/16 2498 | 116.216.0.0/14 2499 | 116.224.0.0/12 2500 | 116.242.0.0/15 2501 | 116.244.0.0/14 2502 | 116.248.0.0/15 2503 | 116.252.0.0/15 2504 | 116.254.128.0/17 2505 | 116.255.128.0/17 2506 | 117.8.0.0/13 2507 | 117.21.0.0/16 2508 | 117.22.0.0/15 2509 | 117.24.0.0/13 2510 | 117.32.0.0/13 2511 | 117.40.0.0/14 2512 | 117.44.0.0/15 2513 | 117.48.0.0/15 2514 | 117.50.0.0/16 2515 | 117.51.64.0/18 2516 | 117.51.128.0/17 2517 | 117.53.48.0/20 2518 | 117.53.176.0/20 2519 | 117.57.0.0/16 2520 | 117.58.0.0/18 2521 | 117.59.0.0/16 2522 | 117.60.0.0/14 2523 | 117.64.0.0/13 2524 | 117.72.0.0/15 2525 | 117.74.64.0/19 2526 | 117.74.128.0/17 2527 | 117.75.0.0/16 2528 | 117.76.0.0/14 2529 | 117.80.0.0/12 2530 | 117.100.0.0/15 2531 | 117.103.16.0/20 2532 | 117.103.40.0/21 2533 | 117.103.72.0/21 2534 | 117.103.128.0/20 2535 | 117.104.168.0/21 2536 | 117.104.188.0/24 2537 | 117.106.0.0/15 2538 | 117.112.0.0/13 2539 | 117.120.64.0/20 2540 | 117.120.80.0/22 2541 | 117.120.84.0/23 2542 | 117.120.86.0/24 2543 | 117.120.88.0/21 2544 | 117.120.96.0/19 2545 | 117.120.128.0/17 2546 | 117.121.0.0/19 2547 | 117.121.32.0/21 2548 | 117.121.40.0/22 2549 | 117.121.44.0/23 2550 | 117.121.46.0/24 2551 | 117.121.48.0/20 2552 | 117.121.64.0/18 2553 | 117.121.128.0/20 2554 | 117.121.148.0/22 2555 | 117.121.152.0/21 2556 | 117.121.160.0/19 2557 | 117.121.192.0/21 2558 | 117.122.128.0/17 2559 | 117.124.0.0/14 2560 | 117.128.0.0/10 2561 | 118.24.0.0/16 2562 | 118.25.96.0/19 2563 | 118.25.128.0/17 2564 | 118.26.0.0/19 2565 | 118.26.36.0/22 2566 | 118.26.40.0/21 2567 | 118.26.48.0/20 2568 | 118.26.64.0/19 2569 | 118.26.96.0/20 2570 | 118.26.112.0/21 2571 | 118.26.128.0/17 2572 | 118.28.0.0/14 2573 | 118.64.0.0/15 2574 | 118.66.0.0/16 2575 | 118.67.112.0/20 2576 | 118.72.0.0/13 2577 | 118.80.0.0/15 2578 | 118.84.0.0/15 2579 | 118.88.32.0/19 2580 | 118.88.64.0/18 2581 | 118.88.128.0/17 2582 | 118.89.0.0/16 2583 | 118.102.16.0/20 2584 | 118.102.32.0/21 2585 | 118.103.164.0/22 2586 | 118.103.168.0/21 2587 | 118.103.176.0/22 2588 | 118.103.244.0/22 2589 | 118.112.0.0/13 2590 | 118.120.0.0/14 2591 | 118.124.0.0/15 2592 | 118.126.1.0/24 2593 | 118.126.2.0/23 2594 | 118.126.4.0/22 2595 | 118.126.8.0/21 2596 | 118.126.16.0/23 2597 | 118.126.18.0/24 2598 | 118.126.32.0/19 2599 | 118.126.64.0/18 2600 | 118.126.128.0/17 2601 | 118.127.128.0/19 2602 | 118.132.0.0/14 2603 | 118.144.0.0/14 2604 | 118.178.0.0/16 2605 | 118.180.0.0/14 2606 | 118.184.5.0/24 2607 | 118.184.8.0/23 2608 | 118.184.10.0/24 2609 | 118.184.12.0/24 2610 | 118.184.54.0/24 2611 | 118.184.56.0/22 2612 | 118.184.60.0/23 2613 | 118.184.62.0/24 2614 | 118.184.80.0/20 2615 | 118.184.96.0/19 2616 | 118.184.128.0/17 2617 | 118.186.0.0/15 2618 | 118.188.0.0/16 2619 | 118.190.0.0/16 2620 | 118.191.0.0/17 2621 | 118.191.128.0/18 2622 | 118.191.192.0/20 2623 | 118.191.208.0/21 2624 | 118.191.248.0/21 2625 | 118.192.0.0/16 2626 | 118.193.0.0/22 2627 | 118.193.40.0/21 2628 | 118.193.56.0/21 2629 | 118.193.68.0/22 2630 | 118.193.72.0/24 2631 | 118.193.77.0/24 2632 | 118.193.96.0/19 2633 | 118.194.0.0/20 2634 | 118.194.16.0/21 2635 | 118.194.24.0/22 2636 | 118.194.29.0/24 2637 | 118.194.30.0/23 2638 | 118.194.32.0/19 2639 | 118.194.64.0/18 2640 | 118.194.128.0/18 2641 | 118.194.192.0/19 2642 | 118.194.232.0/21 2643 | 118.194.240.0/20 2644 | 118.195.0.0/16 2645 | 118.196.0.0/14 2646 | 118.202.0.0/15 2647 | 118.204.0.0/14 2648 | 118.212.0.0/15 2649 | 118.215.192.0/19 2650 | 118.224.0.0/14 2651 | 118.228.0.0/17 2652 | 118.228.128.0/20 2653 | 118.228.144.0/21 2654 | 118.228.156.0/22 2655 | 118.228.160.0/19 2656 | 118.228.192.0/18 2657 | 118.229.0.0/16 2658 | 118.230.0.0/16 2659 | 118.239.0.0/16 2660 | 118.242.0.0/16 2661 | 118.244.0.0/14 2662 | 118.248.0.0/13 2663 | 119.0.0.0/15 2664 | 119.2.0.0/19 2665 | 119.2.128.0/17 2666 | 119.3.0.0/16 2667 | 119.4.0.0/14 2668 | 119.8.0.0/16 2669 | 119.10.0.0/17 2670 | 119.15.136.0/21 2671 | 119.16.0.0/16 2672 | 119.18.192.0/20 2673 | 119.18.208.0/21 2674 | 119.18.224.0/22 2675 | 119.18.228.0/24 2676 | 119.18.230.0/23 2677 | 119.18.233.0/24 2678 | 119.18.234.0/24 2679 | 119.18.236.0/23 2680 | 119.18.239.0/24 2681 | 119.18.240.0/20 2682 | 119.19.0.0/16 2683 | 119.20.0.0/14 2684 | 119.27.64.0/18 2685 | 119.27.128.0/17 2686 | 119.28.122.0/23 2687 | 119.29.0.0/16 2688 | 119.30.48.0/20 2689 | 119.31.192.0/19 2690 | 119.32.0.0/14 2691 | 119.36.0.0/15 2692 | 119.38.0.0/17 2693 | 119.38.128.0/18 2694 | 119.38.192.0/19 2695 | 119.39.0.0/16 2696 | 119.40.0.0/18 2697 | 119.40.64.0/20 2698 | 119.40.128.0/17 2699 | 119.41.0.0/16 2700 | 119.42.0.0/19 2701 | 119.42.128.0/20 2702 | 119.42.224.0/19 2703 | 119.44.0.0/15 2704 | 119.48.0.0/13 2705 | 119.57.0.0/18 2706 | 119.57.64.0/19 2707 | 119.57.97.0/24 2708 | 119.57.98.0/23 2709 | 119.57.100.0/22 2710 | 119.57.104.0/21 2711 | 119.57.112.0/20 2712 | 119.57.128.0/17 2713 | 119.58.0.0/16 2714 | 119.59.128.0/17 2715 | 119.60.0.0/15 2716 | 119.62.0.0/16 2717 | 119.63.32.0/19 2718 | 119.75.208.0/20 2719 | 119.78.0.0/15 2720 | 119.80.0.0/16 2721 | 119.82.208.0/20 2722 | 119.84.0.0/14 2723 | 119.88.0.0/14 2724 | 119.96.0.0/13 2725 | 119.108.0.0/15 2726 | 119.112.0.0/12 2727 | 119.128.0.0/12 2728 | 119.144.0.0/14 2729 | 119.148.160.0/19 2730 | 119.151.192.0/18 2731 | 119.160.200.0/21 2732 | 119.161.128.0/17 2733 | 119.162.0.0/15 2734 | 119.164.0.0/14 2735 | 119.176.0.0/12 2736 | 119.232.0.0/15 2737 | 119.235.128.0/21 2738 | 119.235.136.0/24 2739 | 119.235.138.0/23 2740 | 119.235.140.0/22 2741 | 119.235.144.0/20 2742 | 119.235.160.0/20 2743 | 119.235.176.0/22 2744 | 119.235.184.0/22 2745 | 119.248.0.0/14 2746 | 119.252.96.0/21 2747 | 119.252.240.0/21 2748 | 119.252.248.0/22 2749 | 119.252.252.0/23 2750 | 119.252.254.0/24 2751 | 119.253.0.0/16 2752 | 119.254.0.0/15 2753 | 120.0.0.0/12 2754 | 120.24.0.0/14 2755 | 120.30.0.0/18 2756 | 120.30.64.0/20 2757 | 120.30.80.0/21 2758 | 120.30.88.0/22 2759 | 120.30.92.0/23 2760 | 120.30.94.0/24 2761 | 120.30.96.0/19 2762 | 120.30.128.0/17 2763 | 120.31.0.0/17 2764 | 120.31.128.0/20 2765 | 120.31.145.0/24 2766 | 120.31.146.0/23 2767 | 120.31.148.0/22 2768 | 120.31.152.0/21 2769 | 120.31.160.0/19 2770 | 120.31.192.0/18 2771 | 120.32.0.0/12 2772 | 120.48.0.0/15 2773 | 120.52.0.0/14 2774 | 120.64.0.0/13 2775 | 120.72.32.0/19 2776 | 120.72.128.0/17 2777 | 120.76.0.0/14 2778 | 120.80.0.0/13 2779 | 120.88.8.0/21 2780 | 120.90.0.0/15 2781 | 120.92.0.0/16 2782 | 120.94.0.0/15 2783 | 120.128.0.0/14 2784 | 120.132.0.0/17 2785 | 120.132.128.0/18 2786 | 120.132.192.0/19 2787 | 120.132.224.0/21 2788 | 120.132.232.0/22 2789 | 120.132.240.0/20 2790 | 120.133.0.0/16 2791 | 120.134.0.0/15 2792 | 120.136.128.0/18 2793 | 120.137.0.0/18 2794 | 120.137.64.0/21 2795 | 120.137.72.0/22 2796 | 120.137.76.0/24 2797 | 120.137.78.0/23 2798 | 120.137.80.0/20 2799 | 120.137.96.0/19 2800 | 120.143.128.0/19 2801 | 120.192.0.0/10 2802 | 121.0.8.0/21 2803 | 121.0.16.0/20 2804 | 121.4.0.0/15 2805 | 121.8.0.0/13 2806 | 121.16.0.0/12 2807 | 121.32.0.0/13 2808 | 121.40.0.0/14 2809 | 121.46.0.0/18 2810 | 121.46.76.0/22 2811 | 121.46.128.0/17 2812 | 121.47.0.0/16 2813 | 121.48.0.0/15 2814 | 121.50.8.0/21 2815 | 121.51.0.0/16 2816 | 121.52.160.0/19 2817 | 121.52.208.0/20 2818 | 121.52.224.0/19 2819 | 121.54.176.0/21 2820 | 121.54.188.0/22 2821 | 121.55.0.0/18 2822 | 121.56.0.0/15 2823 | 121.58.0.0/17 2824 | 121.58.136.0/21 2825 | 121.58.144.0/20 2826 | 121.58.160.0/21 2827 | 121.59.0.0/16 2828 | 121.60.0.0/14 2829 | 121.68.0.0/14 2830 | 121.76.0.0/15 2831 | 121.79.128.0/18 2832 | 121.89.0.0/16 2833 | 121.101.0.0/18 2834 | 121.101.208.0/20 2835 | 121.192.0.0/13 2836 | 121.200.192.0/21 2837 | 121.201.0.0/18 2838 | 121.201.64.0/20 2839 | 121.201.80.0/21 2840 | 121.201.88.0/22 2841 | 121.201.92.0/23 2842 | 121.201.94.0/24 2843 | 121.201.96.0/19 2844 | 121.201.128.0/17 2845 | 121.204.0.0/14 2846 | 121.224.0.0/12 2847 | 121.248.0.0/14 2848 | 121.255.0.0/16 2849 | 122.0.64.0/18 2850 | 122.0.128.0/17 2851 | 122.4.0.0/14 2852 | 122.8.15.0/24 2853 | 122.8.16.0/20 2854 | 122.8.32.0/19 2855 | 122.8.64.0/20 2856 | 122.8.80.0/22 2857 | 122.8.86.0/23 2858 | 122.8.88.0/24 2859 | 122.8.91.0/24 2860 | 122.8.92.0/22 2861 | 122.8.96.0/19 2862 | 122.8.196.0/22 2863 | 122.8.200.0/21 2864 | 122.8.208.0/20 2865 | 122.8.224.0/19 2866 | 122.10.132.0/22 2867 | 122.10.136.0/21 2868 | 122.10.144.0/20 2869 | 122.10.160.0/22 2870 | 122.10.196.0/23 2871 | 122.10.216.0/22 2872 | 122.10.228.0/22 2873 | 122.10.232.0/21 2874 | 122.10.240.0/21 2875 | 122.10.248.0/22 2876 | 122.11.0.0/17 2877 | 122.12.0.0/15 2878 | 122.14.0.0/17 2879 | 122.14.192.0/18 2880 | 122.48.0.0/16 2881 | 122.49.0.0/18 2882 | 122.51.0.0/16 2883 | 122.64.0.0/11 2884 | 122.96.0.0/15 2885 | 122.98.144.0/20 2886 | 122.98.160.0/21 2887 | 122.98.172.0/22 2888 | 122.98.176.0/20 2889 | 122.98.192.0/21 2890 | 122.98.232.0/21 2891 | 122.98.240.0/20 2892 | 122.102.0.0/20 2893 | 122.102.64.0/19 2894 | 122.112.0.0/18 2895 | 122.112.64.0/19 2896 | 122.112.96.0/22 2897 | 122.112.101.0/24 2898 | 122.112.109.0/24 2899 | 122.112.118.0/24 2900 | 122.112.122.0/23 2901 | 122.112.124.0/23 2902 | 122.112.128.0/17 2903 | 122.113.0.0/16 2904 | 122.114.0.0/16 2905 | 122.115.0.0/18 2906 | 122.115.80.0/20 2907 | 122.115.96.0/19 2908 | 122.115.128.0/17 2909 | 122.119.0.0/16 2910 | 122.128.100.0/22 2911 | 122.128.120.0/21 2912 | 122.136.0.0/13 2913 | 122.144.128.0/17 2914 | 122.152.192.0/18 2915 | 122.156.0.0/14 2916 | 122.188.0.0/14 2917 | 122.192.0.0/14 2918 | 122.198.0.0/16 2919 | 122.200.64.0/18 2920 | 122.201.48.0/20 2921 | 122.204.0.0/14 2922 | 122.224.0.0/12 2923 | 122.240.0.0/13 2924 | 122.248.24.0/21 2925 | 122.248.48.0/20 2926 | 122.255.64.0/21 2927 | 123.0.128.0/21 2928 | 123.0.136.0/23 2929 | 123.0.139.0/24 2930 | 123.0.140.0/22 2931 | 123.0.145.0/24 2932 | 123.0.147.0/24 2933 | 123.0.148.0/22 2934 | 123.0.152.0/21 2935 | 123.0.160.0/20 2936 | 123.0.176.0/22 2937 | 123.0.181.0/24 2938 | 123.0.182.0/24 2939 | 123.0.184.0/24 2940 | 123.0.191.0/24 2941 | 123.4.0.0/14 2942 | 123.8.0.0/13 2943 | 123.49.130.0/24 2944 | 123.49.136.0/22 2945 | 123.49.141.0/24 2946 | 123.49.143.0/24 2947 | 123.49.152.0/21 2948 | 123.49.160.0/19 2949 | 123.49.192.0/18 2950 | 123.50.160.0/19 2951 | 123.52.0.0/14 2952 | 123.56.0.0/15 2953 | 123.58.0.0/18 2954 | 123.58.64.0/20 2955 | 123.58.80.0/21 2956 | 123.58.88.0/22 2957 | 123.58.96.0/19 2958 | 123.58.128.0/17 2959 | 123.59.0.0/16 2960 | 123.61.0.0/16 2961 | 123.62.0.0/16 2962 | 123.64.0.0/11 2963 | 123.96.0.0/15 2964 | 123.98.0.0/17 2965 | 123.99.128.0/17 2966 | 123.100.0.0/19 2967 | 123.100.232.0/24 2968 | 123.101.0.0/16 2969 | 123.103.0.0/20 2970 | 123.103.16.0/21 2971 | 123.103.24.0/22 2972 | 123.103.28.0/23 2973 | 123.103.30.0/24 2974 | 123.103.32.0/19 2975 | 123.103.64.0/18 2976 | 123.108.134.0/24 2977 | 123.108.138.0/23 2978 | 123.108.140.0/24 2979 | 123.108.142.0/24 2980 | 123.108.208.0/20 2981 | 123.112.0.0/12 2982 | 123.128.0.0/13 2983 | 123.137.0.0/16 2984 | 123.138.0.0/15 2985 | 123.144.0.0/12 2986 | 123.160.0.0/12 2987 | 123.176.60.0/22 2988 | 123.176.80.0/20 2989 | 123.177.0.0/16 2990 | 123.178.0.0/15 2991 | 123.180.0.0/14 2992 | 123.184.0.0/13 2993 | 123.196.0.0/15 2994 | 123.199.128.0/17 2995 | 123.206.0.0/15 2996 | 123.232.0.0/14 2997 | 123.242.0.0/17 2998 | 123.244.0.0/14 2999 | 123.249.0.0/16 3000 | 123.253.0.0/16 3001 | 124.6.64.0/18 3002 | 124.14.0.0/15 3003 | 124.16.0.0/15 3004 | 124.20.0.0/14 3005 | 124.28.192.0/18 3006 | 124.29.0.0/17 3007 | 124.31.0.0/16 3008 | 124.40.112.0/20 3009 | 124.40.128.0/18 3010 | 124.40.192.0/19 3011 | 124.42.0.0/16 3012 | 124.47.0.0/18 3013 | 124.64.0.0/15 3014 | 124.66.0.0/17 3015 | 124.67.0.0/16 3016 | 124.68.0.0/15 3017 | 124.70.0.0/22 3018 | 124.72.0.0/13 3019 | 124.88.0.0/13 3020 | 124.108.8.0/21 3021 | 124.108.40.0/21 3022 | 124.109.96.0/21 3023 | 124.112.0.0/13 3024 | 124.126.0.0/15 3025 | 124.128.0.0/13 3026 | 124.147.128.0/17 3027 | 124.151.0.0/16 3028 | 124.152.0.0/16 3029 | 124.156.0.0/16 3030 | 124.160.0.0/13 3031 | 124.172.0.0/14 3032 | 124.192.0.0/15 3033 | 124.196.0.0/16 3034 | 124.200.0.0/13 3035 | 124.220.0.0/14 3036 | 124.224.0.0/12 3037 | 124.240.0.0/17 3038 | 124.240.128.0/18 3039 | 124.242.0.0/16 3040 | 124.243.192.0/18 3041 | 124.248.0.0/17 3042 | 124.249.0.0/16 3043 | 124.250.0.0/17 3044 | 124.250.136.0/21 3045 | 124.250.144.0/20 3046 | 124.250.160.0/19 3047 | 124.250.192.0/18 3048 | 124.251.0.0/16 3049 | 124.254.0.0/18 3050 | 125.31.192.0/18 3051 | 125.32.0.0/12 3052 | 125.58.128.0/17 3053 | 125.61.128.0/17 3054 | 125.62.0.0/18 3055 | 125.64.0.0/11 3056 | 125.96.0.0/15 3057 | 125.98.0.0/16 3058 | 125.104.0.0/13 3059 | 125.112.0.0/12 3060 | 125.169.0.0/16 3061 | 125.171.0.0/16 3062 | 125.208.0.0/19 3063 | 125.208.37.0/24 3064 | 125.208.39.0/24 3065 | 125.208.40.0/24 3066 | 125.208.48.0/20 3067 | 125.210.0.0/15 3068 | 125.213.0.0/17 3069 | 125.214.96.0/19 3070 | 125.215.0.0/18 3071 | 125.216.0.0/13 3072 | 125.254.128.0/17 3073 | 129.223.254.0/24 3074 | 132.237.134.0/24 3075 | 132.237.150.0/24 3076 | 135.159.208.0/20 3077 | 135.244.80.0/20 3078 | 137.59.88.0/22 3079 | 138.32.244.0/22 3080 | 139.5.56.0/21 3081 | 139.5.80.0/22 3082 | 139.5.92.0/22 3083 | 139.5.128.0/22 3084 | 139.5.160.0/22 3085 | 139.5.192.0/22 3086 | 139.5.204.0/22 3087 | 139.5.244.0/22 3088 | 139.9.0.0/16 3089 | 139.129.0.0/16 3090 | 139.148.0.0/16 3091 | 139.155.0.0/16 3092 | 139.159.0.0/19 3093 | 139.159.32.0/21 3094 | 139.159.40.0/22 3095 | 139.159.50.0/23 3096 | 139.159.52.0/22 3097 | 139.159.56.0/21 3098 | 139.159.64.0/19 3099 | 139.159.96.0/20 3100 | 139.159.112.0/22 3101 | 139.159.116.0/23 3102 | 139.159.120.0/21 3103 | 139.159.128.0/17 3104 | 139.170.0.0/16 3105 | 139.176.0.0/16 3106 | 139.183.0.0/16 3107 | 139.186.0.0/16 3108 | 139.189.0.0/16 3109 | 139.196.0.0/14 3110 | 139.200.0.0/13 3111 | 139.208.0.0/13 3112 | 139.217.0.0/16 3113 | 139.219.0.0/16 3114 | 139.220.0.0/15 3115 | 139.224.0.0/16 3116 | 139.226.0.0/15 3117 | 140.75.0.0/16 3118 | 140.101.208.0/24 3119 | 140.143.0.0/16 3120 | 140.205.0.0/18 3121 | 140.205.64.0/19 3122 | 140.205.96.0/20 3123 | 140.205.112.0/21 3124 | 140.205.120.0/23 3125 | 140.205.123.0/24 3126 | 140.205.124.0/22 3127 | 140.205.128.0/17 3128 | 140.206.0.0/15 3129 | 140.210.0.0/16 3130 | 140.224.0.0/16 3131 | 140.237.0.0/16 3132 | 140.240.0.0/16 3133 | 140.242.216.0/24 3134 | 140.242.223.0/24 3135 | 140.242.224.0/24 3136 | 140.243.0.0/16 3137 | 140.246.0.0/16 3138 | 140.249.0.0/16 3139 | 140.250.0.0/16 3140 | 140.255.0.0/16 3141 | 144.0.0.0/16 3142 | 144.7.0.0/16 3143 | 144.12.0.0/16 3144 | 144.36.146.0/23 3145 | 144.48.12.0/22 3146 | 144.48.64.0/22 3147 | 144.48.88.0/22 3148 | 144.48.156.0/22 3149 | 144.48.180.0/22 3150 | 144.48.184.0/22 3151 | 144.48.204.0/22 3152 | 144.48.208.0/21 3153 | 144.48.252.0/22 3154 | 144.52.0.0/16 3155 | 144.123.0.0/16 3156 | 144.211.80.0/24 3157 | 144.211.138.0/24 3158 | 144.255.0.0/16 3159 | 146.196.56.0/22 3160 | 146.196.68.0/22 3161 | 146.196.72.0/22 3162 | 146.196.92.0/22 3163 | 146.196.112.0/21 3164 | 146.196.124.0/22 3165 | 146.217.137.0/24 3166 | 146.222.79.0/24 3167 | 146.222.81.0/24 3168 | 146.222.94.0/24 3169 | 150.0.0.0/16 3170 | 150.115.0.0/16 3171 | 150.121.0.0/16 3172 | 150.122.0.0/16 3173 | 150.129.192.0/22 3174 | 150.129.252.0/22 3175 | 150.138.0.0/15 3176 | 150.223.0.0/16 3177 | 150.242.0.0/21 3178 | 150.242.8.0/22 3179 | 150.242.28.0/22 3180 | 150.242.44.0/22 3181 | 150.242.48.0/21 3182 | 150.242.56.0/22 3183 | 150.242.76.0/22 3184 | 150.242.80.0/22 3185 | 150.242.92.0/22 3186 | 150.242.96.0/22 3187 | 150.242.112.0/21 3188 | 150.242.120.0/22 3189 | 150.242.152.0/21 3190 | 150.242.160.0/21 3191 | 150.242.168.0/22 3192 | 150.242.184.0/21 3193 | 150.242.192.0/22 3194 | 150.242.232.0/21 3195 | 150.242.240.0/21 3196 | 150.242.248.0/22 3197 | 150.255.0.0/16 3198 | 152.104.128.0/17 3199 | 153.0.0.0/16 3200 | 153.3.0.0/16 3201 | 153.34.0.0/15 3202 | 153.36.0.0/15 3203 | 153.99.0.0/16 3204 | 153.101.0.0/16 3205 | 153.118.0.0/15 3206 | 156.107.160.0/24 3207 | 156.107.170.0/24 3208 | 157.0.0.0/16 3209 | 157.18.0.0/16 3210 | 157.61.0.0/16 3211 | 157.119.8.0/21 3212 | 157.119.16.0/22 3213 | 157.119.28.0/22 3214 | 157.119.132.0/22 3215 | 157.119.136.0/21 3216 | 157.119.144.0/20 3217 | 157.119.160.0/21 3218 | 157.119.172.0/22 3219 | 157.119.192.0/21 3220 | 157.119.240.0/22 3221 | 157.119.252.0/22 3222 | 157.122.0.0/16 3223 | 157.133.192.0/21 3224 | 157.148.0.0/16 3225 | 157.156.0.0/16 3226 | 157.255.0.0/16 3227 | 159.153.120.0/22 3228 | 159.226.0.0/16 3229 | 160.19.208.0/21 3230 | 160.19.216.0/22 3231 | 160.20.48.0/22 3232 | 160.62.10.0/24 3233 | 160.83.109.0/24 3234 | 160.83.110.0/23 3235 | 160.202.60.0/23 3236 | 160.202.62.0/24 3237 | 160.202.148.0/22 3238 | 160.202.152.0/22 3239 | 160.202.212.0/22 3240 | 160.202.216.0/21 3241 | 160.202.224.0/19 3242 | 160.238.64.0/22 3243 | 161.163.0.0/21 3244 | 161.163.28.0/23 3245 | 161.163.176.0/24 3246 | 161.163.178.0/23 3247 | 161.163.180.0/22 3248 | 161.207.0.0/16 3249 | 162.105.0.0/16 3250 | 163.0.0.0/16 3251 | 163.47.4.0/22 3252 | 163.53.0.0/20 3253 | 163.53.36.0/22 3254 | 163.53.40.0/21 3255 | 163.53.48.0/20 3256 | 163.53.64.0/22 3257 | 163.53.88.0/21 3258 | 163.53.96.0/19 3259 | 163.53.128.0/21 3260 | 163.53.136.0/22 3261 | 163.53.160.0/20 3262 | 163.53.188.0/22 3263 | 163.53.220.0/22 3264 | 163.53.240.0/22 3265 | 163.125.0.0/16 3266 | 163.142.0.0/16 3267 | 163.177.0.0/16 3268 | 163.179.0.0/16 3269 | 163.204.0.0/16 3270 | 163.244.246.0/24 3271 | 166.111.0.0/16 3272 | 167.139.0.0/16 3273 | 167.220.244.0/22 3274 | 168.159.144.0/21 3275 | 168.159.152.0/22 3276 | 168.159.156.0/23 3277 | 168.159.158.0/24 3278 | 168.160.0.0/16 3279 | 168.230.0.0/24 3280 | 170.225.224.0/23 3281 | 170.252.152.0/21 3282 | 171.8.0.0/13 3283 | 171.34.0.0/15 3284 | 171.36.0.0/14 3285 | 171.40.0.0/13 3286 | 171.80.0.0/12 3287 | 171.104.0.0/13 3288 | 171.112.0.0/12 3289 | 171.208.0.0/12 3290 | 175.0.0.0/12 3291 | 175.16.0.0/13 3292 | 175.24.0.0/14 3293 | 175.30.0.0/15 3294 | 175.42.0.0/15 3295 | 175.44.0.0/16 3296 | 175.46.0.0/15 3297 | 175.48.0.0/12 3298 | 175.64.0.0/11 3299 | 175.102.0.0/16 3300 | 175.106.128.0/17 3301 | 175.111.144.0/20 3302 | 175.111.160.0/20 3303 | 175.111.184.0/22 3304 | 175.146.0.0/15 3305 | 175.148.0.0/14 3306 | 175.152.0.0/14 3307 | 175.160.0.0/12 3308 | 175.178.0.0/16 3309 | 175.184.128.0/18 3310 | 175.185.0.0/16 3311 | 175.186.0.0/15 3312 | 175.188.0.0/14 3313 | 180.76.0.0/24 3314 | 180.76.2.0/23 3315 | 180.76.5.0/24 3316 | 180.76.16.0/20 3317 | 180.76.32.0/19 3318 | 180.76.64.0/21 3319 | 180.76.72.0/22 3320 | 180.76.77.0/24 3321 | 180.76.78.0/23 3322 | 180.76.80.0/20 3323 | 180.76.96.0/19 3324 | 180.76.128.0/18 3325 | 180.76.192.0/19 3326 | 180.76.224.0/20 3327 | 180.76.240.0/21 3328 | 180.76.248.0/22 3329 | 180.76.252.0/23 3330 | 180.76.255.0/24 3331 | 180.77.0.0/16 3332 | 180.78.0.0/15 3333 | 180.84.0.0/15 3334 | 180.86.0.0/16 3335 | 180.88.0.0/14 3336 | 180.94.56.0/21 3337 | 180.94.96.0/20 3338 | 180.95.128.0/17 3339 | 180.96.0.0/11 3340 | 180.129.128.0/17 3341 | 180.130.0.0/16 3342 | 180.136.0.0/13 3343 | 180.148.16.0/21 3344 | 180.148.152.0/21 3345 | 180.148.216.0/21 3346 | 180.148.224.0/19 3347 | 180.149.128.0/19 3348 | 180.150.176.0/20 3349 | 180.152.0.0/13 3350 | 180.160.0.0/12 3351 | 180.178.192.0/18 3352 | 180.184.0.0/14 3353 | 180.188.0.0/17 3354 | 180.189.148.0/22 3355 | 180.200.252.0/22 3356 | 180.201.0.0/16 3357 | 180.202.0.0/15 3358 | 180.208.0.0/15 3359 | 180.210.233.0/24 3360 | 180.210.236.0/22 3361 | 180.212.0.0/15 3362 | 180.222.224.0/19 3363 | 180.223.0.0/16 3364 | 180.233.0.0/18 3365 | 180.233.64.0/19 3366 | 180.233.144.0/22 3367 | 180.235.64.0/19 3368 | 180.235.112.0/22 3369 | 182.16.192.0/19 3370 | 182.18.0.0/17 3371 | 182.23.184.0/21 3372 | 182.23.200.0/21 3373 | 182.32.0.0/12 3374 | 182.48.96.0/19 3375 | 182.49.0.0/16 3376 | 182.50.0.0/22 3377 | 182.50.8.0/21 3378 | 182.50.112.0/20 3379 | 182.51.0.0/17 3380 | 182.51.128.0/18 3381 | 182.51.192.0/21 3382 | 182.51.204.0/22 3383 | 182.51.208.0/20 3384 | 182.51.224.0/19 3385 | 182.54.0.0/17 3386 | 182.61.0.0/18 3387 | 182.61.128.0/17 3388 | 182.80.0.0/13 3389 | 182.88.0.0/14 3390 | 182.92.0.0/16 3391 | 182.96.0.0/11 3392 | 182.128.0.0/12 3393 | 182.144.0.0/13 3394 | 182.157.0.0/16 3395 | 182.160.64.0/21 3396 | 182.160.72.0/22 3397 | 182.160.76.0/23 3398 | 182.160.78.0/24 3399 | 182.160.80.0/20 3400 | 182.174.0.0/15 3401 | 182.200.0.0/13 3402 | 182.236.128.0/17 3403 | 182.238.0.0/16 3404 | 182.239.0.0/19 3405 | 182.240.0.0/13 3406 | 182.254.0.0/16 3407 | 182.255.36.0/22 3408 | 183.0.0.0/10 3409 | 183.64.0.0/13 3410 | 183.78.180.0/22 3411 | 183.81.180.0/22 3412 | 183.84.0.0/15 3413 | 183.91.128.0/22 3414 | 183.91.136.0/21 3415 | 183.91.144.0/20 3416 | 183.92.0.0/14 3417 | 183.128.0.0/11 3418 | 183.160.0.0/13 3419 | 183.168.0.0/15 3420 | 183.170.0.0/16 3421 | 183.172.0.0/14 3422 | 183.184.0.0/13 3423 | 183.192.0.0/10 3424 | 192.11.23.0/24 3425 | 192.11.26.0/24 3426 | 192.11.39.0/24 3427 | 192.11.236.0/24 3428 | 192.23.191.0/24 3429 | 192.55.10.0/23 3430 | 192.55.40.0/24 3431 | 192.55.46.0/23 3432 | 192.55.68.0/22 3433 | 192.102.204.0/22 3434 | 192.124.154.0/24 3435 | 192.139.135.0/24 3436 | 192.139.136.0/24 3437 | 192.140.128.0/21 3438 | 192.140.136.0/22 3439 | 192.140.156.0/22 3440 | 192.140.160.0/19 3441 | 192.140.192.0/20 3442 | 192.140.208.0/21 3443 | 192.163.11.0/24 3444 | 192.232.97.0/24 3445 | 193.20.64.0/22 3446 | 194.138.202.0/23 3447 | 198.17.7.0/24 3448 | 198.175.100.0/22 3449 | 198.208.17.0/24 3450 | 199.7.72.0/24 3451 | 199.65.192.0/21 3452 | 199.244.144.0/24 3453 | 202.0.100.0/23 3454 | 202.0.122.0/23 3455 | 202.1.105.0/24 3456 | 202.1.106.0/24 3457 | 202.3.128.0/23 3458 | 202.4.128.0/19 3459 | 202.4.252.0/22 3460 | 202.5.208.0/21 3461 | 202.5.216.0/22 3462 | 202.6.6.0/23 3463 | 202.6.66.0/23 3464 | 202.6.72.0/23 3465 | 202.6.87.0/24 3466 | 202.6.88.0/23 3467 | 202.6.92.0/23 3468 | 202.6.103.0/24 3469 | 202.6.108.0/24 3470 | 202.6.110.0/23 3471 | 202.6.114.0/24 3472 | 202.6.176.0/20 3473 | 202.8.0.0/24 3474 | 202.8.2.0/23 3475 | 202.8.4.0/23 3476 | 202.8.12.0/24 3477 | 202.8.24.0/24 3478 | 202.8.77.0/24 3479 | 202.8.128.0/19 3480 | 202.8.192.0/20 3481 | 202.9.32.0/24 3482 | 202.9.34.0/23 3483 | 202.9.48.0/23 3484 | 202.9.51.0/24 3485 | 202.9.52.0/23 3486 | 202.9.54.0/24 3487 | 202.9.57.0/24 3488 | 202.9.58.0/23 3489 | 202.10.64.0/21 3490 | 202.10.74.0/23 3491 | 202.10.76.0/22 3492 | 202.12.1.0/24 3493 | 202.12.2.0/24 3494 | 202.12.17.0/24 3495 | 202.12.18.0/23 3496 | 202.12.72.0/24 3497 | 202.12.84.0/23 3498 | 202.12.96.0/24 3499 | 202.12.98.0/23 3500 | 202.12.106.0/24 3501 | 202.12.111.0/24 3502 | 202.12.116.0/24 3503 | 202.14.64.0/23 3504 | 202.14.69.0/24 3505 | 202.14.73.0/24 3506 | 202.14.74.0/23 3507 | 202.14.76.0/24 3508 | 202.14.78.0/23 3509 | 202.14.88.0/24 3510 | 202.14.97.0/24 3511 | 202.14.104.0/23 3512 | 202.14.108.0/23 3513 | 202.14.111.0/24 3514 | 202.14.114.0/23 3515 | 202.14.118.0/23 3516 | 202.14.124.0/23 3517 | 202.14.127.0/24 3518 | 202.14.129.0/24 3519 | 202.14.135.0/24 3520 | 202.14.136.0/24 3521 | 202.14.149.0/24 3522 | 202.14.151.0/24 3523 | 202.14.157.0/24 3524 | 202.14.158.0/23 3525 | 202.14.169.0/24 3526 | 202.14.170.0/23 3527 | 202.14.176.0/24 3528 | 202.14.184.0/23 3529 | 202.14.208.0/23 3530 | 202.14.213.0/24 3531 | 202.14.219.0/24 3532 | 202.14.220.0/24 3533 | 202.14.222.0/23 3534 | 202.14.225.0/24 3535 | 202.14.226.0/23 3536 | 202.14.231.0/24 3537 | 202.14.235.0/24 3538 | 202.14.236.0/22 3539 | 202.14.246.0/24 3540 | 202.14.251.0/24 3541 | 202.20.66.0/24 3542 | 202.20.79.0/24 3543 | 202.20.87.0/24 3544 | 202.20.88.0/23 3545 | 202.20.90.0/24 3546 | 202.20.94.0/23 3547 | 202.20.114.0/24 3548 | 202.20.117.0/24 3549 | 202.20.120.0/24 3550 | 202.20.125.0/24 3551 | 202.20.127.0/24 3552 | 202.21.48.0/20 3553 | 202.21.131.0/24 3554 | 202.21.132.0/24 3555 | 202.21.141.0/24 3556 | 202.21.142.0/24 3557 | 202.21.147.0/24 3558 | 202.21.148.0/24 3559 | 202.21.150.0/23 3560 | 202.21.152.0/23 3561 | 202.21.154.0/24 3562 | 202.21.156.0/24 3563 | 202.21.208.0/24 3564 | 202.22.248.0/21 3565 | 202.27.136.0/23 3566 | 202.38.0.0/22 3567 | 202.38.8.0/21 3568 | 202.38.48.0/20 3569 | 202.38.64.0/18 3570 | 202.38.128.0/21 3571 | 202.38.136.0/23 3572 | 202.38.138.0/24 3573 | 202.38.140.0/22 3574 | 202.38.146.0/23 3575 | 202.38.149.0/24 3576 | 202.38.150.0/23 3577 | 202.38.152.0/22 3578 | 202.38.156.0/24 3579 | 202.38.158.0/23 3580 | 202.38.160.0/23 3581 | 202.38.164.0/22 3582 | 202.38.168.0/22 3583 | 202.38.176.0/23 3584 | 202.38.184.0/21 3585 | 202.38.192.0/18 3586 | 202.40.4.0/23 3587 | 202.40.7.0/24 3588 | 202.40.15.0/24 3589 | 202.40.135.0/24 3590 | 202.40.136.0/24 3591 | 202.40.140.0/24 3592 | 202.40.143.0/24 3593 | 202.40.144.0/23 3594 | 202.40.150.0/24 3595 | 202.40.155.0/24 3596 | 202.40.156.0/24 3597 | 202.40.158.0/23 3598 | 202.40.162.0/24 3599 | 202.41.8.0/23 3600 | 202.41.11.0/24 3601 | 202.41.12.0/23 3602 | 202.41.128.0/24 3603 | 202.41.130.0/23 3604 | 202.41.152.0/21 3605 | 202.41.192.0/24 3606 | 202.41.240.0/20 3607 | 202.43.76.0/22 3608 | 202.43.144.0/20 3609 | 202.44.16.0/20 3610 | 202.44.67.0/24 3611 | 202.44.74.0/24 3612 | 202.44.129.0/24 3613 | 202.44.132.0/23 3614 | 202.44.146.0/23 3615 | 202.45.0.0/23 3616 | 202.45.2.0/24 3617 | 202.45.15.0/24 3618 | 202.45.16.0/20 3619 | 202.46.16.0/23 3620 | 202.46.18.0/24 3621 | 202.46.20.0/23 3622 | 202.46.128.0/24 3623 | 202.46.224.0/20 3624 | 202.47.82.0/23 3625 | 202.47.126.0/24 3626 | 202.47.128.0/24 3627 | 202.47.130.0/23 3628 | 202.53.140.0/24 3629 | 202.53.143.0/24 3630 | 202.57.240.0/20 3631 | 202.58.0.0/24 3632 | 202.58.112.0/22 3633 | 202.59.0.0/24 3634 | 202.59.212.0/22 3635 | 202.59.236.0/24 3636 | 202.60.48.0/21 3637 | 202.60.96.0/21 3638 | 202.60.112.0/20 3639 | 202.60.132.0/22 3640 | 202.60.136.0/21 3641 | 202.60.144.0/20 3642 | 202.61.68.0/22 3643 | 202.61.76.0/22 3644 | 202.61.88.0/22 3645 | 202.62.112.0/22 3646 | 202.62.248.0/22 3647 | 202.62.252.0/24 3648 | 202.62.255.0/24 3649 | 202.63.81.0/24 3650 | 202.63.82.0/23 3651 | 202.63.84.0/22 3652 | 202.63.88.0/21 3653 | 202.63.160.0/19 3654 | 202.63.248.0/22 3655 | 202.65.0.0/21 3656 | 202.65.8.0/23 3657 | 202.67.0.0/22 3658 | 202.69.4.0/23 3659 | 202.69.16.0/20 3660 | 202.70.0.0/19 3661 | 202.70.96.0/20 3662 | 202.70.192.0/20 3663 | 202.72.40.0/21 3664 | 202.72.80.0/20 3665 | 202.73.128.0/22 3666 | 202.74.8.0/21 3667 | 202.74.80.0/20 3668 | 202.74.254.0/23 3669 | 202.75.208.0/20 3670 | 202.75.252.0/22 3671 | 202.76.247.0/24 3672 | 202.76.252.0/22 3673 | 202.77.39.0/24 3674 | 202.77.80.0/21 3675 | 202.77.92.0/22 3676 | 202.78.8.0/21 3677 | 202.79.224.0/21 3678 | 202.79.248.0/22 3679 | 202.80.192.0/20 3680 | 202.81.0.0/22 3681 | 202.83.252.0/22 3682 | 202.84.4.0/22 3683 | 202.84.8.0/21 3684 | 202.84.16.0/23 3685 | 202.84.24.0/21 3686 | 202.85.208.0/20 3687 | 202.86.249.0/24 3688 | 202.87.80.0/20 3689 | 202.88.32.0/22 3690 | 202.89.8.0/21 3691 | 202.89.232.0/21 3692 | 202.90.0.0/22 3693 | 202.90.112.0/20 3694 | 202.90.196.0/24 3695 | 202.90.224.0/20 3696 | 202.91.0.0/22 3697 | 202.91.96.0/20 3698 | 202.91.128.0/22 3699 | 202.91.176.0/21 3700 | 202.91.184.0/23 3701 | 202.91.186.0/24 3702 | 202.91.188.0/22 3703 | 202.91.224.0/19 3704 | 202.92.0.0/22 3705 | 202.92.8.0/21 3706 | 202.92.48.0/20 3707 | 202.92.252.0/22 3708 | 202.93.0.0/22 3709 | 202.93.252.0/22 3710 | 202.94.0.0/19 3711 | 202.94.92.0/22 3712 | 202.95.0.0/19 3713 | 202.95.240.0/21 3714 | 202.95.252.0/22 3715 | 202.96.0.0/12 3716 | 202.112.0.0/13 3717 | 202.120.0.0/15 3718 | 202.122.0.0/21 3719 | 202.122.32.0/21 3720 | 202.122.64.0/19 3721 | 202.122.112.0/20 3722 | 202.122.128.0/24 3723 | 202.122.132.0/24 3724 | 202.123.96.0/20 3725 | 202.123.116.0/22 3726 | 202.123.120.0/22 3727 | 202.124.16.0/21 3728 | 202.124.24.0/22 3729 | 202.125.107.0/24 3730 | 202.125.112.0/20 3731 | 202.125.176.0/20 3732 | 202.127.0.0/21 3733 | 202.127.12.0/22 3734 | 202.127.16.0/20 3735 | 202.127.40.0/21 3736 | 202.127.48.0/20 3737 | 202.127.112.0/20 3738 | 202.127.128.0/19 3739 | 202.127.160.0/21 3740 | 202.127.192.0/20 3741 | 202.127.208.0/23 3742 | 202.127.212.0/22 3743 | 202.127.216.0/21 3744 | 202.127.224.0/19 3745 | 202.130.0.0/19 3746 | 202.130.224.0/19 3747 | 202.131.16.0/21 3748 | 202.131.59.0/24 3749 | 202.131.208.0/20 3750 | 202.133.32.0/20 3751 | 202.134.58.0/24 3752 | 202.134.128.0/20 3753 | 202.136.48.0/20 3754 | 202.136.208.0/20 3755 | 202.136.224.0/20 3756 | 202.136.254.0/23 3757 | 202.137.231.0/24 3758 | 202.141.160.0/19 3759 | 202.142.16.0/20 3760 | 202.143.4.0/22 3761 | 202.143.16.0/20 3762 | 202.143.32.0/20 3763 | 202.143.56.0/21 3764 | 202.143.100.0/22 3765 | 202.143.104.0/22 3766 | 202.146.160.0/20 3767 | 202.146.188.0/22 3768 | 202.146.196.0/22 3769 | 202.146.200.0/21 3770 | 202.147.144.0/20 3771 | 202.148.32.0/20 3772 | 202.148.64.0/18 3773 | 202.149.32.0/19 3774 | 202.149.160.0/19 3775 | 202.149.224.0/19 3776 | 202.150.16.0/20 3777 | 202.150.32.0/20 3778 | 202.150.56.0/22 3779 | 202.150.192.0/20 3780 | 202.150.224.0/19 3781 | 202.151.0.0/22 3782 | 202.151.128.0/19 3783 | 202.152.176.0/20 3784 | 202.153.0.0/22 3785 | 202.153.48.0/20 3786 | 202.157.192.0/19 3787 | 202.158.160.0/19 3788 | 202.160.156.0/22 3789 | 202.160.176.0/20 3790 | 202.162.67.0/24 3791 | 202.162.75.0/24 3792 | 202.164.0.0/20 3793 | 202.164.96.0/19 3794 | 202.165.96.0/21 3795 | 202.165.104.0/22 3796 | 202.165.110.0/23 3797 | 202.165.176.0/20 3798 | 202.165.208.0/20 3799 | 202.165.239.0/24 3800 | 202.165.240.0/23 3801 | 202.165.243.0/24 3802 | 202.165.245.0/24 3803 | 202.165.251.0/24 3804 | 202.165.252.0/22 3805 | 202.166.224.0/19 3806 | 202.168.80.0/22 3807 | 202.168.128.0/20 3808 | 202.168.160.0/19 3809 | 202.170.128.0/19 3810 | 202.170.216.0/21 3811 | 202.170.224.0/19 3812 | 202.171.216.0/21 3813 | 202.171.235.0/24 3814 | 202.172.0.0/22 3815 | 202.173.0.0/22 3816 | 202.173.8.0/21 3817 | 202.173.112.0/22 3818 | 202.173.120.0/22 3819 | 202.173.224.0/19 3820 | 202.174.64.0/20 3821 | 202.176.224.0/19 3822 | 202.179.240.0/20 3823 | 202.180.128.0/19 3824 | 202.180.208.0/21 3825 | 202.181.8.0/22 3826 | 202.181.28.0/22 3827 | 202.181.112.0/20 3828 | 202.182.32.0/20 3829 | 202.182.192.0/19 3830 | 202.189.0.0/18 3831 | 202.189.80.0/20 3832 | 202.189.184.0/21 3833 | 202.191.0.0/24 3834 | 202.191.68.0/22 3835 | 202.191.72.0/21 3836 | 202.191.80.0/20 3837 | 202.192.0.0/12 3838 | 203.0.4.0/22 3839 | 203.0.10.0/23 3840 | 203.0.18.0/24 3841 | 203.0.24.0/24 3842 | 203.0.42.0/23 3843 | 203.0.45.0/24 3844 | 203.0.46.0/23 3845 | 203.0.81.0/24 3846 | 203.0.82.0/23 3847 | 203.0.90.0/23 3848 | 203.0.96.0/23 3849 | 203.0.104.0/21 3850 | 203.0.114.0/23 3851 | 203.0.122.0/24 3852 | 203.0.128.0/24 3853 | 203.0.130.0/23 3854 | 203.0.132.0/22 3855 | 203.0.137.0/24 3856 | 203.0.142.0/24 3857 | 203.0.144.0/24 3858 | 203.0.146.0/24 3859 | 203.0.148.0/24 3860 | 203.0.150.0/23 3861 | 203.0.152.0/24 3862 | 203.0.177.0/24 3863 | 203.0.224.0/24 3864 | 203.1.4.0/22 3865 | 203.1.18.0/24 3866 | 203.1.26.0/23 3867 | 203.1.65.0/24 3868 | 203.1.66.0/23 3869 | 203.1.70.0/23 3870 | 203.1.76.0/23 3871 | 203.1.90.0/24 3872 | 203.1.97.0/24 3873 | 203.1.98.0/23 3874 | 203.1.100.0/22 3875 | 203.1.108.0/24 3876 | 203.1.253.0/24 3877 | 203.1.254.0/24 3878 | 203.2.64.0/21 3879 | 203.2.73.0/24 3880 | 203.2.112.0/21 3881 | 203.2.126.0/23 3882 | 203.2.140.0/24 3883 | 203.2.150.0/24 3884 | 203.2.152.0/22 3885 | 203.2.156.0/23 3886 | 203.2.160.0/21 3887 | 203.2.180.0/23 3888 | 203.2.196.0/23 3889 | 203.2.209.0/24 3890 | 203.2.214.0/23 3891 | 203.2.226.0/23 3892 | 203.2.229.0/24 3893 | 203.2.236.0/23 3894 | 203.3.68.0/24 3895 | 203.3.72.0/23 3896 | 203.3.75.0/24 3897 | 203.3.80.0/21 3898 | 203.3.96.0/22 3899 | 203.3.105.0/24 3900 | 203.3.112.0/21 3901 | 203.3.120.0/24 3902 | 203.3.123.0/24 3903 | 203.3.135.0/24 3904 | 203.3.139.0/24 3905 | 203.3.143.0/24 3906 | 203.4.132.0/23 3907 | 203.4.134.0/24 3908 | 203.4.151.0/24 3909 | 203.4.152.0/22 3910 | 203.4.174.0/23 3911 | 203.4.180.0/24 3912 | 203.4.186.0/24 3913 | 203.4.205.0/24 3914 | 203.4.208.0/22 3915 | 203.4.227.0/24 3916 | 203.4.230.0/23 3917 | 203.5.4.0/23 3918 | 203.5.7.0/24 3919 | 203.5.8.0/23 3920 | 203.5.11.0/24 3921 | 203.5.21.0/24 3922 | 203.5.22.0/24 3923 | 203.5.44.0/24 3924 | 203.5.46.0/23 3925 | 203.5.52.0/22 3926 | 203.5.56.0/23 3927 | 203.5.60.0/23 3928 | 203.5.114.0/23 3929 | 203.5.118.0/24 3930 | 203.5.120.0/24 3931 | 203.5.172.0/24 3932 | 203.5.180.0/23 3933 | 203.5.182.0/24 3934 | 203.5.185.0/24 3935 | 203.5.186.0/24 3936 | 203.5.188.0/23 3937 | 203.5.190.0/24 3938 | 203.5.195.0/24 3939 | 203.5.214.0/23 3940 | 203.5.218.0/23 3941 | 203.6.131.0/24 3942 | 203.6.136.0/24 3943 | 203.6.138.0/23 3944 | 203.6.142.0/24 3945 | 203.6.150.0/23 3946 | 203.6.157.0/24 3947 | 203.6.159.0/24 3948 | 203.6.224.0/20 3949 | 203.6.248.0/23 3950 | 203.7.129.0/24 3951 | 203.7.138.0/23 3952 | 203.7.147.0/24 3953 | 203.7.150.0/23 3954 | 203.7.158.0/24 3955 | 203.7.192.0/23 3956 | 203.7.200.0/24 3957 | 203.8.0.0/24 3958 | 203.8.8.0/24 3959 | 203.8.23.0/24 3960 | 203.8.24.0/21 3961 | 203.8.70.0/24 3962 | 203.8.82.0/24 3963 | 203.8.86.0/23 3964 | 203.8.91.0/24 3965 | 203.8.110.0/23 3966 | 203.8.115.0/24 3967 | 203.8.166.0/23 3968 | 203.8.169.0/24 3969 | 203.8.173.0/24 3970 | 203.8.184.0/24 3971 | 203.8.186.0/23 3972 | 203.8.190.0/23 3973 | 203.8.192.0/24 3974 | 203.8.197.0/24 3975 | 203.8.198.0/23 3976 | 203.8.203.0/24 3977 | 203.8.209.0/24 3978 | 203.8.210.0/23 3979 | 203.8.212.0/22 3980 | 203.8.217.0/24 3981 | 203.8.220.0/24 3982 | 203.9.32.0/24 3983 | 203.9.36.0/23 3984 | 203.9.57.0/24 3985 | 203.9.63.0/24 3986 | 203.9.65.0/24 3987 | 203.9.70.0/23 3988 | 203.9.72.0/24 3989 | 203.9.75.0/24 3990 | 203.9.76.0/23 3991 | 203.9.96.0/22 3992 | 203.9.100.0/23 3993 | 203.9.108.0/24 3994 | 203.9.158.0/24 3995 | 203.10.34.0/24 3996 | 203.10.56.0/24 3997 | 203.10.74.0/23 3998 | 203.10.84.0/22 3999 | 203.10.88.0/24 4000 | 203.10.95.0/24 4001 | 203.10.125.0/24 4002 | 203.11.70.0/24 4003 | 203.11.76.0/22 4004 | 203.11.82.0/24 4005 | 203.11.84.0/22 4006 | 203.11.100.0/22 4007 | 203.11.109.0/24 4008 | 203.11.117.0/24 4009 | 203.11.122.0/24 4010 | 203.11.126.0/24 4011 | 203.11.136.0/22 4012 | 203.11.141.0/24 4013 | 203.11.142.0/23 4014 | 203.11.180.0/22 4015 | 203.11.208.0/22 4016 | 203.12.16.0/24 4017 | 203.12.19.0/24 4018 | 203.12.24.0/24 4019 | 203.12.57.0/24 4020 | 203.12.65.0/24 4021 | 203.12.66.0/24 4022 | 203.12.70.0/23 4023 | 203.12.87.0/24 4024 | 203.12.88.0/21 4025 | 203.12.100.0/23 4026 | 203.12.103.0/24 4027 | 203.12.114.0/24 4028 | 203.12.118.0/24 4029 | 203.12.130.0/24 4030 | 203.12.137.0/24 4031 | 203.12.196.0/22 4032 | 203.12.211.0/24 4033 | 203.12.219.0/24 4034 | 203.12.226.0/24 4035 | 203.12.240.0/22 4036 | 203.13.18.0/24 4037 | 203.13.24.0/24 4038 | 203.13.44.0/23 4039 | 203.13.80.192/26 4040 | 203.13.82.0/23 4041 | 203.13.84.0/22 4042 | 203.13.88.0/23 4043 | 203.13.92.0/22 4044 | 203.13.173.0/24 4045 | 203.13.224.0/23 4046 | 203.13.227.0/24 4047 | 203.13.233.0/24 4048 | 203.14.24.0/22 4049 | 203.14.33.0/24 4050 | 203.14.56.0/24 4051 | 203.14.61.0/24 4052 | 203.14.62.0/24 4053 | 203.14.104.0/24 4054 | 203.14.114.0/23 4055 | 203.14.118.0/24 4056 | 203.14.162.0/24 4057 | 203.14.186.0/23 4058 | 203.14.192.0/24 4059 | 203.14.194.0/23 4060 | 203.14.214.0/24 4061 | 203.14.231.0/24 4062 | 203.14.246.0/24 4063 | 203.15.0.0/20 4064 | 203.15.20.0/23 4065 | 203.15.22.0/24 4066 | 203.15.87.0/24 4067 | 203.15.88.0/23 4068 | 203.15.105.0/24 4069 | 203.15.112.0/21 4070 | 203.15.130.0/23 4071 | 203.15.149.0/24 4072 | 203.15.151.0/24 4073 | 203.15.156.0/22 4074 | 203.15.174.0/24 4075 | 203.15.227.0/24 4076 | 203.15.232.0/21 4077 | 203.15.240.0/23 4078 | 203.15.246.0/24 4079 | 203.16.10.0/24 4080 | 203.16.12.0/23 4081 | 203.16.16.0/21 4082 | 203.16.27.0/24 4083 | 203.16.38.0/24 4084 | 203.16.49.0/24 4085 | 203.16.50.0/23 4086 | 203.16.58.0/24 4087 | 203.16.133.0/24 4088 | 203.16.161.0/24 4089 | 203.16.162.0/24 4090 | 203.16.186.0/23 4091 | 203.16.228.0/24 4092 | 203.16.238.0/24 4093 | 203.16.240.0/24 4094 | 203.16.245.0/24 4095 | 203.17.2.0/24 4096 | 203.17.18.0/24 4097 | 203.17.28.0/24 4098 | 203.17.39.0/24 4099 | 203.17.56.0/24 4100 | 203.17.74.0/23 4101 | 203.17.88.0/23 4102 | 203.17.136.0/24 4103 | 203.17.164.0/24 4104 | 203.17.187.0/24 4105 | 203.17.190.0/23 4106 | 203.17.231.0/24 4107 | 203.17.233.0/24 4108 | 203.17.248.0/24 4109 | 203.17.255.0/24 4110 | 203.18.2.0/23 4111 | 203.18.4.0/24 4112 | 203.18.7.0/24 4113 | 203.18.31.0/24 4114 | 203.18.37.0/24 4115 | 203.18.48.0/23 4116 | 203.18.52.0/24 4117 | 203.18.72.0/22 4118 | 203.18.80.0/23 4119 | 203.18.87.0/24 4120 | 203.18.100.0/23 4121 | 203.18.105.0/24 4122 | 203.18.107.0/24 4123 | 203.18.110.0/24 4124 | 203.18.129.0/24 4125 | 203.18.131.0/24 4126 | 203.18.132.0/23 4127 | 203.18.144.0/24 4128 | 203.18.153.0/24 4129 | 203.18.199.0/24 4130 | 203.18.208.0/24 4131 | 203.18.211.0/24 4132 | 203.18.215.0/24 4133 | 203.19.18.0/24 4134 | 203.19.24.0/24 4135 | 203.19.30.0/24 4136 | 203.19.41.0/24 4137 | 203.19.44.0/23 4138 | 203.19.46.0/24 4139 | 203.19.58.0/24 4140 | 203.19.60.0/23 4141 | 203.19.64.0/24 4142 | 203.19.68.0/24 4143 | 203.19.72.0/24 4144 | 203.19.101.0/24 4145 | 203.19.111.0/24 4146 | 203.19.131.0/24 4147 | 203.19.133.0/24 4148 | 203.19.144.0/24 4149 | 203.19.149.0/24 4150 | 203.19.156.0/24 4151 | 203.19.176.0/24 4152 | 203.19.178.0/23 4153 | 203.19.208.0/24 4154 | 203.19.228.0/22 4155 | 203.19.233.0/24 4156 | 203.19.242.0/24 4157 | 203.19.248.0/23 4158 | 203.19.255.0/24 4159 | 203.20.17.0/24 4160 | 203.20.40.0/23 4161 | 203.20.48.0/24 4162 | 203.20.61.0/24 4163 | 203.20.65.0/24 4164 | 203.20.84.0/23 4165 | 203.20.89.0/24 4166 | 203.20.106.0/23 4167 | 203.20.115.0/24 4168 | 203.20.117.0/24 4169 | 203.20.118.0/23 4170 | 203.20.122.0/24 4171 | 203.20.126.0/23 4172 | 203.20.135.0/24 4173 | 203.20.136.0/21 4174 | 203.20.150.0/24 4175 | 203.20.230.0/24 4176 | 203.20.232.0/24 4177 | 203.20.236.0/24 4178 | 203.21.0.0/23 4179 | 203.21.2.0/24 4180 | 203.21.8.0/24 4181 | 203.21.10.0/24 4182 | 203.21.18.0/24 4183 | 203.21.33.0/24 4184 | 203.21.34.0/24 4185 | 203.21.41.0/24 4186 | 203.21.44.0/24 4187 | 203.21.68.0/24 4188 | 203.21.82.0/24 4189 | 203.21.96.0/22 4190 | 203.21.124.0/24 4191 | 203.21.136.0/23 4192 | 203.21.145.0/24 4193 | 203.21.206.0/24 4194 | 203.22.24.0/24 4195 | 203.22.28.0/23 4196 | 203.22.31.0/24 4197 | 203.22.68.0/24 4198 | 203.22.76.0/24 4199 | 203.22.84.0/24 4200 | 203.22.87.0/24 4201 | 203.22.92.0/22 4202 | 203.22.99.0/24 4203 | 203.22.106.0/24 4204 | 203.22.122.0/23 4205 | 203.22.131.0/24 4206 | 203.22.163.0/24 4207 | 203.22.166.0/24 4208 | 203.22.170.0/24 4209 | 203.22.176.0/21 4210 | 203.22.194.0/24 4211 | 203.22.242.0/23 4212 | 203.22.245.0/24 4213 | 203.22.246.0/24 4214 | 203.22.252.0/23 4215 | 203.23.0.0/24 4216 | 203.23.47.0/24 4217 | 203.23.61.0/24 4218 | 203.23.62.0/23 4219 | 203.23.73.0/24 4220 | 203.23.85.0/24 4221 | 203.23.92.0/22 4222 | 203.23.98.0/24 4223 | 203.23.107.0/24 4224 | 203.23.112.0/24 4225 | 203.23.130.0/24 4226 | 203.23.140.0/23 4227 | 203.23.172.0/24 4228 | 203.23.182.0/24 4229 | 203.23.186.0/23 4230 | 203.23.192.0/24 4231 | 203.23.197.0/24 4232 | 203.23.198.0/24 4233 | 203.23.204.0/22 4234 | 203.23.224.0/24 4235 | 203.23.226.0/23 4236 | 203.23.228.0/22 4237 | 203.23.249.0/24 4238 | 203.23.251.0/24 4239 | 203.24.13.0/24 4240 | 203.24.18.0/24 4241 | 203.24.27.0/24 4242 | 203.24.43.0/24 4243 | 203.24.56.0/24 4244 | 203.24.58.0/24 4245 | 203.24.67.0/24 4246 | 203.24.74.0/24 4247 | 203.24.79.0/24 4248 | 203.24.80.0/23 4249 | 203.24.84.0/23 4250 | 203.24.86.0/24 4251 | 203.24.90.0/24 4252 | 203.24.111.0/24 4253 | 203.24.112.0/24 4254 | 203.24.116.0/24 4255 | 203.24.122.0/23 4256 | 203.24.145.0/24 4257 | 203.24.152.0/23 4258 | 203.24.157.0/24 4259 | 203.24.161.0/24 4260 | 203.24.167.0/24 4261 | 203.24.186.0/23 4262 | 203.24.199.0/24 4263 | 203.24.202.0/24 4264 | 203.24.212.0/23 4265 | 203.24.217.0/24 4266 | 203.24.219.0/24 4267 | 203.24.244.0/24 4268 | 203.25.19.0/24 4269 | 203.25.20.0/23 4270 | 203.25.46.0/24 4271 | 203.25.48.0/21 4272 | 203.25.64.0/23 4273 | 203.25.91.0/24 4274 | 203.25.99.0/24 4275 | 203.25.100.0/24 4276 | 203.25.106.0/24 4277 | 203.25.131.0/24 4278 | 203.25.135.0/24 4279 | 203.25.138.0/24 4280 | 203.25.147.0/24 4281 | 203.25.153.0/24 4282 | 203.25.154.0/23 4283 | 203.25.164.0/24 4284 | 203.25.166.0/24 4285 | 203.25.174.0/23 4286 | 203.25.180.0/24 4287 | 203.25.182.0/24 4288 | 203.25.191.0/24 4289 | 203.25.199.0/24 4290 | 203.25.200.0/24 4291 | 203.25.202.0/23 4292 | 203.25.208.0/20 4293 | 203.25.229.0/24 4294 | 203.25.235.0/24 4295 | 203.25.236.0/24 4296 | 203.25.242.0/24 4297 | 203.26.12.0/24 4298 | 203.26.34.0/24 4299 | 203.26.49.0/24 4300 | 203.26.50.0/24 4301 | 203.26.55.0/24 4302 | 203.26.56.0/23 4303 | 203.26.60.0/24 4304 | 203.26.65.0/24 4305 | 203.26.68.0/24 4306 | 203.26.76.0/24 4307 | 203.26.80.0/24 4308 | 203.26.84.0/24 4309 | 203.26.97.0/24 4310 | 203.26.102.0/23 4311 | 203.26.115.0/24 4312 | 203.26.116.0/24 4313 | 203.26.129.0/24 4314 | 203.26.143.0/24 4315 | 203.26.144.0/24 4316 | 203.26.148.0/23 4317 | 203.26.154.0/24 4318 | 203.26.158.0/23 4319 | 203.26.161.0/24 4320 | 203.26.170.0/24 4321 | 203.26.173.0/24 4322 | 203.26.176.0/24 4323 | 203.26.185.0/24 4324 | 203.26.202.0/23 4325 | 203.26.210.0/24 4326 | 203.26.214.0/24 4327 | 203.26.222.0/24 4328 | 203.26.224.0/24 4329 | 203.26.228.0/24 4330 | 203.26.232.0/24 4331 | 203.27.0.0/24 4332 | 203.27.10.0/24 4333 | 203.27.15.0/24 4334 | 203.27.16.0/24 4335 | 203.27.20.0/24 4336 | 203.27.22.0/23 4337 | 203.27.40.0/24 4338 | 203.27.45.0/24 4339 | 203.27.53.0/24 4340 | 203.27.65.0/24 4341 | 203.27.66.0/24 4342 | 203.27.81.0/24 4343 | 203.27.88.0/24 4344 | 203.27.102.0/24 4345 | 203.27.109.0/24 4346 | 203.27.117.0/24 4347 | 203.27.121.0/24 4348 | 203.27.122.0/23 4349 | 203.27.125.0/24 4350 | 203.27.200.0/24 4351 | 203.27.202.0/24 4352 | 203.27.233.0/24 4353 | 203.27.241.0/24 4354 | 203.27.250.0/24 4355 | 203.28.10.0/24 4356 | 203.28.12.0/24 4357 | 203.28.33.0/24 4358 | 203.28.34.0/23 4359 | 203.28.43.0/24 4360 | 203.28.44.0/24 4361 | 203.28.54.0/24 4362 | 203.28.56.0/24 4363 | 203.28.73.0/24 4364 | 203.28.74.0/24 4365 | 203.28.76.0/24 4366 | 203.28.86.0/24 4367 | 203.28.88.0/24 4368 | 203.28.112.0/24 4369 | 203.28.131.0/24 4370 | 203.28.136.0/24 4371 | 203.28.140.0/24 4372 | 203.28.145.0/24 4373 | 203.28.165.0/24 4374 | 203.28.169.0/24 4375 | 203.28.170.0/24 4376 | 203.28.178.0/23 4377 | 203.28.185.0/24 4378 | 203.28.187.0/24 4379 | 203.28.196.0/24 4380 | 203.28.226.0/23 4381 | 203.28.239.0/24 4382 | 203.29.2.0/24 4383 | 203.29.8.0/23 4384 | 203.29.13.0/24 4385 | 203.29.14.0/24 4386 | 203.29.28.0/24 4387 | 203.29.46.0/24 4388 | 203.29.57.0/24 4389 | 203.29.61.0/24 4390 | 203.29.63.0/24 4391 | 203.29.69.0/24 4392 | 203.29.73.0/24 4393 | 203.29.81.0/24 4394 | 203.29.90.0/24 4395 | 203.29.95.0/24 4396 | 203.29.100.0/24 4397 | 203.29.103.0/24 4398 | 203.29.112.0/24 4399 | 203.29.120.0/22 4400 | 203.29.182.0/23 4401 | 203.29.187.0/24 4402 | 203.29.189.0/24 4403 | 203.29.190.0/24 4404 | 203.29.205.0/24 4405 | 203.29.210.0/24 4406 | 203.29.217.0/24 4407 | 203.29.227.0/24 4408 | 203.29.231.0/24 4409 | 203.29.233.0/24 4410 | 203.29.234.0/24 4411 | 203.29.248.0/24 4412 | 203.29.254.0/23 4413 | 203.30.16.0/23 4414 | 203.30.25.0/24 4415 | 203.30.29.0/24 4416 | 203.30.66.0/24 4417 | 203.30.81.0/24 4418 | 203.30.87.0/24 4419 | 203.30.111.0/24 4420 | 203.30.121.0/24 4421 | 203.30.123.0/24 4422 | 203.30.152.0/24 4423 | 203.30.156.0/24 4424 | 203.30.162.0/24 4425 | 203.30.173.0/24 4426 | 203.30.175.0/24 4427 | 203.30.187.0/24 4428 | 203.30.194.0/24 4429 | 203.30.217.0/24 4430 | 203.30.220.0/24 4431 | 203.30.222.0/24 4432 | 203.30.232.0/23 4433 | 203.30.235.0/24 4434 | 203.30.240.0/23 4435 | 203.30.246.0/24 4436 | 203.30.250.0/23 4437 | 203.31.45.0/24 4438 | 203.31.46.0/24 4439 | 203.31.49.0/24 4440 | 203.31.51.0/24 4441 | 203.31.54.0/23 4442 | 203.31.69.0/24 4443 | 203.31.72.0/24 4444 | 203.31.80.0/24 4445 | 203.31.85.0/24 4446 | 203.31.97.0/24 4447 | 203.31.105.0/24 4448 | 203.31.106.0/24 4449 | 203.31.108.0/23 4450 | 203.31.124.0/24 4451 | 203.31.162.0/24 4452 | 203.31.174.0/24 4453 | 203.31.177.0/24 4454 | 203.31.181.0/24 4455 | 203.31.187.0/24 4456 | 203.31.189.0/24 4457 | 203.31.204.0/24 4458 | 203.31.220.0/24 4459 | 203.31.222.0/23 4460 | 203.31.225.0/24 4461 | 203.31.229.0/24 4462 | 203.31.248.0/23 4463 | 203.31.253.0/24 4464 | 203.32.20.0/24 4465 | 203.32.48.0/23 4466 | 203.32.56.0/24 4467 | 203.32.60.0/24 4468 | 203.32.62.0/24 4469 | 203.32.68.0/23 4470 | 203.32.76.0/24 4471 | 203.32.81.0/24 4472 | 203.32.84.0/23 4473 | 203.32.95.0/24 4474 | 203.32.102.0/24 4475 | 203.32.105.0/24 4476 | 203.32.130.0/24 4477 | 203.32.133.0/24 4478 | 203.32.140.0/24 4479 | 203.32.152.0/24 4480 | 203.32.186.0/23 4481 | 203.32.192.0/24 4482 | 203.32.196.0/24 4483 | 203.32.203.0/24 4484 | 203.32.204.0/23 4485 | 203.32.212.0/24 4486 | 203.33.4.0/24 4487 | 203.33.7.0/24 4488 | 203.33.12.0/22 4489 | 203.33.21.0/24 4490 | 203.33.26.0/24 4491 | 203.33.32.0/24 4492 | 203.33.63.0/24 4493 | 203.33.64.0/24 4494 | 203.33.67.0/24 4495 | 203.33.68.0/24 4496 | 203.33.73.0/24 4497 | 203.33.79.0/24 4498 | 203.33.100.0/24 4499 | 203.33.122.0/24 4500 | 203.33.129.0/24 4501 | 203.33.131.0/24 4502 | 203.33.145.0/24 4503 | 203.33.156.0/24 4504 | 203.33.158.0/23 4505 | 203.33.174.0/24 4506 | 203.33.185.0/24 4507 | 203.33.200.0/24 4508 | 203.33.202.0/23 4509 | 203.33.204.0/24 4510 | 203.33.206.0/23 4511 | 203.33.214.0/23 4512 | 203.33.224.0/23 4513 | 203.33.226.0/24 4514 | 203.33.233.0/24 4515 | 203.33.243.0/24 4516 | 203.33.250.0/24 4517 | 203.34.4.0/24 4518 | 203.34.21.0/24 4519 | 203.34.27.0/24 4520 | 203.34.39.0/24 4521 | 203.34.48.0/23 4522 | 203.34.54.0/24 4523 | 203.34.56.0/23 4524 | 203.34.67.0/24 4525 | 203.34.69.0/24 4526 | 203.34.76.0/24 4527 | 203.34.92.0/24 4528 | 203.34.106.0/24 4529 | 203.34.113.0/24 4530 | 203.34.147.0/24 4531 | 203.34.150.0/24 4532 | 203.34.152.0/23 4533 | 203.34.161.0/24 4534 | 203.34.162.0/24 4535 | 203.34.187.0/24 4536 | 203.34.192.0/21 4537 | 203.34.204.0/22 4538 | 203.34.232.0/24 4539 | 203.34.240.0/24 4540 | 203.34.242.0/24 4541 | 203.34.245.0/24 4542 | 203.34.251.0/24 4543 | 203.55.2.0/23 4544 | 203.55.4.0/24 4545 | 203.55.10.0/24 4546 | 203.55.13.0/24 4547 | 203.55.22.0/24 4548 | 203.55.30.0/24 4549 | 203.55.93.0/24 4550 | 203.55.101.0/24 4551 | 203.55.109.0/24 4552 | 203.55.110.0/24 4553 | 203.55.116.0/23 4554 | 203.55.119.0/24 4555 | 203.55.128.0/23 4556 | 203.55.146.0/23 4557 | 203.55.192.0/24 4558 | 203.55.196.0/24 4559 | 203.55.218.0/23 4560 | 203.55.221.0/24 4561 | 203.55.224.0/24 4562 | 203.56.1.0/24 4563 | 203.56.4.0/24 4564 | 203.56.12.0/24 4565 | 203.56.24.0/24 4566 | 203.56.38.0/24 4567 | 203.56.40.0/24 4568 | 203.56.46.0/24 4569 | 203.56.50.0/23 4570 | 203.56.52.0/22 4571 | 203.56.68.0/23 4572 | 203.56.82.0/23 4573 | 203.56.84.0/23 4574 | 203.56.95.0/24 4575 | 203.56.110.0/24 4576 | 203.56.121.0/24 4577 | 203.56.161.0/24 4578 | 203.56.169.0/24 4579 | 203.56.172.0/23 4580 | 203.56.175.0/24 4581 | 203.56.183.0/24 4582 | 203.56.185.0/24 4583 | 203.56.187.0/24 4584 | 203.56.192.0/24 4585 | 203.56.198.0/24 4586 | 203.56.201.0/24 4587 | 203.56.208.0/23 4588 | 203.56.210.0/24 4589 | 203.56.214.0/24 4590 | 203.56.216.0/24 4591 | 203.56.227.0/24 4592 | 203.56.228.0/24 4593 | 203.56.232.0/24 4594 | 203.56.240.0/24 4595 | 203.56.252.0/24 4596 | 203.56.254.0/24 4597 | 203.57.5.0/24 4598 | 203.57.6.0/24 4599 | 203.57.12.0/23 4600 | 203.57.28.0/24 4601 | 203.57.39.0/24 4602 | 203.57.46.0/24 4603 | 203.57.58.0/24 4604 | 203.57.61.0/24 4605 | 203.57.66.0/24 4606 | 203.57.69.0/24 4607 | 203.57.70.0/23 4608 | 203.57.73.0/24 4609 | 203.57.90.0/24 4610 | 203.57.101.0/24 4611 | 203.57.109.0/24 4612 | 203.57.123.0/24 4613 | 203.57.157.0/24 4614 | 203.57.200.0/24 4615 | 203.57.202.0/24 4616 | 203.57.206.0/24 4617 | 203.57.222.0/24 4618 | 203.57.224.0/20 4619 | 203.57.246.0/23 4620 | 203.57.249.0/24 4621 | 203.57.253.0/24 4622 | 203.57.254.0/23 4623 | 203.62.2.0/24 4624 | 203.62.131.0/24 4625 | 203.62.139.0/24 4626 | 203.62.161.0/24 4627 | 203.62.197.0/24 4628 | 203.62.228.0/22 4629 | 203.62.234.0/24 4630 | 203.62.246.0/24 4631 | 203.65.240.0/22 4632 | 203.76.160.0/22 4633 | 203.76.168.0/22 4634 | 203.76.208.0/21 4635 | 203.76.216.0/22 4636 | 203.76.247.0/24 4637 | 203.77.180.0/22 4638 | 203.78.48.0/20 4639 | 203.78.156.0/22 4640 | 203.79.0.0/20 4641 | 203.80.4.0/23 4642 | 203.80.32.0/20 4643 | 203.80.57.0/24 4644 | 203.80.132.0/22 4645 | 203.80.138.0/23 4646 | 203.80.140.0/22 4647 | 203.80.144.0/20 4648 | 203.81.0.0/21 4649 | 203.81.16.0/20 4650 | 203.82.0.0/23 4651 | 203.82.16.0/21 4652 | 203.83.0.0/22 4653 | 203.83.12.0/22 4654 | 203.83.56.0/21 4655 | 203.83.224.0/20 4656 | 203.86.0.0/18 4657 | 203.86.64.0/19 4658 | 203.86.254.0/23 4659 | 203.88.32.0/19 4660 | 203.88.192.0/19 4661 | 203.89.0.0/22 4662 | 203.89.8.0/21 4663 | 203.89.136.0/22 4664 | 203.90.0.0/22 4665 | 203.90.8.0/22 4666 | 203.90.128.0/18 4667 | 203.90.192.0/19 4668 | 203.91.1.0/24 4669 | 203.91.32.0/19 4670 | 203.91.97.0/24 4671 | 203.91.98.0/23 4672 | 203.91.100.0/22 4673 | 203.91.104.0/24 4674 | 203.91.106.0/23 4675 | 203.91.108.0/22 4676 | 203.91.120.0/21 4677 | 203.92.0.0/22 4678 | 203.92.160.0/19 4679 | 203.93.0.0/16 4680 | 203.94.0.0/19 4681 | 203.95.0.0/21 4682 | 203.95.96.0/19 4683 | 203.95.128.0/18 4684 | 203.95.200.0/21 4685 | 203.95.208.0/22 4686 | 203.95.224.0/19 4687 | 203.99.8.0/21 4688 | 203.99.16.0/20 4689 | 203.99.80.0/20 4690 | 203.100.32.0/20 4691 | 203.100.49.0/24 4692 | 203.100.50.0/23 4693 | 203.100.52.0/22 4694 | 203.100.63.0/24 4695 | 203.100.80.0/20 4696 | 203.100.96.0/19 4697 | 203.100.192.0/20 4698 | 203.104.32.0/20 4699 | 203.105.96.0/19 4700 | 203.105.128.0/19 4701 | 203.107.0.0/17 4702 | 203.110.160.0/19 4703 | 203.110.208.0/20 4704 | 203.110.232.0/23 4705 | 203.110.234.0/24 4706 | 203.114.80.0/20 4707 | 203.114.244.0/22 4708 | 203.118.192.0/19 4709 | 203.118.241.0/24 4710 | 203.118.248.0/22 4711 | 203.119.24.0/24 4712 | 203.119.34.0/23 4713 | 203.119.80.0/22 4714 | 203.119.85.0/24 4715 | 203.119.113.0/24 4716 | 203.119.114.0/23 4717 | 203.119.116.0/22 4718 | 203.119.120.0/21 4719 | 203.119.128.0/17 4720 | 203.128.32.0/19 4721 | 203.128.96.0/19 4722 | 203.128.128.0/24 4723 | 203.128.224.0/21 4724 | 203.130.32.0/20 4725 | 203.132.32.0/19 4726 | 203.134.240.0/22 4727 | 203.134.244.0/23 4728 | 203.134.246.0/24 4729 | 203.135.96.0/19 4730 | 203.135.160.0/20 4731 | 203.142.12.0/23 4732 | 203.142.219.0/24 4733 | 203.142.224.0/19 4734 | 203.145.0.0/19 4735 | 203.148.0.0/18 4736 | 203.148.64.0/20 4737 | 203.148.80.0/22 4738 | 203.148.86.0/23 4739 | 203.149.92.0/22 4740 | 203.152.64.0/19 4741 | 203.152.128.0/19 4742 | 203.153.0.0/22 4743 | 203.156.192.0/18 4744 | 203.158.16.0/21 4745 | 203.160.104.0/21 4746 | 203.160.129.0/24 4747 | 203.160.192.0/19 4748 | 203.161.0.0/22 4749 | 203.161.180.0/24 4750 | 203.161.192.0/19 4751 | 203.166.160.0/19 4752 | 203.167.28.0/22 4753 | 203.168.0.0/19 4754 | 203.170.58.0/23 4755 | 203.171.0.0/22 4756 | 203.171.224.0/20 4757 | 203.174.4.0/24 4758 | 203.174.96.0/19 4759 | 203.175.128.0/19 4760 | 203.175.192.0/18 4761 | 203.176.0.0/18 4762 | 203.176.64.0/19 4763 | 203.176.168.0/21 4764 | 203.184.80.0/20 4765 | 203.187.160.0/19 4766 | 203.189.0.0/23 4767 | 203.189.6.0/23 4768 | 203.189.112.0/22 4769 | 203.189.192.0/19 4770 | 203.189.240.0/22 4771 | 203.190.96.0/20 4772 | 203.190.249.0/24 4773 | 203.191.0.0/23 4774 | 203.191.64.0/18 4775 | 203.191.144.0/20 4776 | 203.192.0.0/19 4777 | 203.193.224.0/19 4778 | 203.194.120.0/21 4779 | 203.195.64.0/19 4780 | 203.195.112.0/21 4781 | 203.195.128.0/17 4782 | 203.196.0.0/20 4783 | 203.202.236.0/22 4784 | 203.205.64.0/19 4785 | 203.207.64.0/18 4786 | 203.207.128.0/17 4787 | 203.208.0.0/20 4788 | 203.208.16.0/22 4789 | 203.208.32.0/19 4790 | 203.209.224.0/19 4791 | 203.212.0.0/20 4792 | 203.212.80.0/20 4793 | 203.215.234.0/24 4794 | 203.215.236.0/22 4795 | 203.223.0.0/20 4796 | 203.223.16.0/22 4797 | 203.223.20.0/23 4798 | 203.223.22.0/24 4799 | 204.55.160.0/24 4800 | 204.74.96.0/24 4801 | 204.114.176.0/23 4802 | 206.219.44.0/23 4803 | 206.219.50.0/23 4804 | 206.219.52.0/23 4805 | 210.2.0.0/23 4806 | 210.2.2.0/24 4807 | 210.2.6.0/23 4808 | 210.2.8.0/21 4809 | 210.2.24.0/21 4810 | 210.5.0.0/19 4811 | 210.5.56.0/24 4812 | 210.5.59.0/24 4813 | 210.5.60.0/24 4814 | 210.5.128.0/19 4815 | 210.12.0.0/15 4816 | 210.14.64.0/19 4817 | 210.14.112.0/20 4818 | 210.14.128.0/17 4819 | 210.15.0.0/17 4820 | 210.15.128.0/18 4821 | 210.16.128.0/21 4822 | 210.16.136.0/22 4823 | 210.16.156.0/22 4824 | 210.16.160.0/19 4825 | 210.21.0.0/16 4826 | 210.22.0.0/16 4827 | 210.23.32.0/19 4828 | 210.25.0.0/16 4829 | 210.26.0.0/15 4830 | 210.28.0.0/14 4831 | 210.32.0.0/12 4832 | 210.51.0.0/16 4833 | 210.52.0.0/15 4834 | 210.56.192.0/19 4835 | 210.72.0.0/14 4836 | 210.76.0.0/15 4837 | 210.78.0.0/16 4838 | 210.79.64.0/18 4839 | 210.79.224.0/19 4840 | 210.82.0.0/15 4841 | 210.87.128.0/18 4842 | 210.185.192.0/18 4843 | 210.192.96.0/19 4844 | 211.64.0.0/13 4845 | 211.80.0.0/12 4846 | 211.96.0.0/15 4847 | 211.98.0.0/16 4848 | 211.99.0.0/18 4849 | 211.99.64.0/19 4850 | 211.99.128.0/17 4851 | 211.100.0.0/14 4852 | 211.136.0.0/13 4853 | 211.144.0.0/13 4854 | 211.152.0.0/15 4855 | 211.154.0.0/19 4856 | 211.154.32.0/20 4857 | 211.154.49.0/24 4858 | 211.154.52.0/22 4859 | 211.154.56.0/21 4860 | 211.154.64.0/18 4861 | 211.154.128.0/17 4862 | 211.155.0.0/18 4863 | 211.155.67.0/24 4864 | 211.155.68.0/24 4865 | 211.155.72.0/21 4866 | 211.155.80.0/20 4867 | 211.155.96.0/19 4868 | 211.155.128.0/17 4869 | 211.156.0.0/18 4870 | 211.156.64.0/19 4871 | 211.156.96.0/21 4872 | 211.156.104.0/22 4873 | 211.156.108.0/23 4874 | 211.156.112.0/20 4875 | 211.156.128.0/17 4876 | 211.157.0.0/16 4877 | 211.158.0.0/15 4878 | 211.160.0.0/13 4879 | 218.0.0.0/12 4880 | 218.16.0.0/13 4881 | 218.24.0.0/14 4882 | 218.28.0.0/15 4883 | 218.30.0.0/19 4884 | 218.30.64.0/18 4885 | 218.30.128.0/17 4886 | 218.31.0.0/16 4887 | 218.56.0.0/13 4888 | 218.64.0.0/11 4889 | 218.96.0.0/15 4890 | 218.98.32.0/19 4891 | 218.98.96.0/19 4892 | 218.98.128.0/19 4893 | 218.98.192.0/18 4894 | 218.99.0.0/16 4895 | 218.100.90.0/23 4896 | 218.100.92.0/23 4897 | 218.100.94.0/24 4898 | 218.100.96.0/19 4899 | 218.100.128.0/17 4900 | 218.104.0.0/14 4901 | 218.108.0.0/15 4902 | 218.185.192.0/22 4903 | 218.185.196.0/23 4904 | 218.185.198.0/24 4905 | 218.185.200.0/21 4906 | 218.185.208.0/20 4907 | 218.185.245.0/24 4908 | 218.185.246.0/23 4909 | 218.192.0.0/12 4910 | 218.240.0.0/14 4911 | 218.244.0.0/15 4912 | 218.246.0.0/17 4913 | 218.246.129.0/24 4914 | 218.246.131.0/24 4915 | 218.246.132.0/23 4916 | 218.246.134.0/24 4917 | 218.246.139.0/24 4918 | 218.246.160.0/19 4919 | 218.246.192.0/18 4920 | 218.247.0.0/18 4921 | 218.247.96.0/19 4922 | 218.247.128.0/17 4923 | 218.249.0.0/16 4924 | 219.72.0.0/16 4925 | 219.82.0.0/16 4926 | 219.83.128.0/17 4927 | 219.90.68.0/22 4928 | 219.90.72.0/21 4929 | 219.128.0.0/11 4930 | 219.216.0.0/13 4931 | 219.224.0.0/13 4932 | 219.232.0.0/15 4933 | 219.234.0.0/21 4934 | 219.234.26.0/23 4935 | 219.234.28.0/22 4936 | 219.234.32.0/19 4937 | 219.234.64.0/18 4938 | 219.234.128.0/17 4939 | 219.235.0.0/16 4940 | 219.236.0.0/14 4941 | 219.242.0.0/15 4942 | 219.244.0.0/14 4943 | 220.101.192.0/18 4944 | 220.112.0.0/14 4945 | 220.152.128.0/17 4946 | 220.154.0.0/17 4947 | 220.154.128.0/21 4948 | 220.154.136.0/22 4949 | 220.154.140.0/24 4950 | 220.154.142.0/23 4951 | 220.154.144.0/21 4952 | 220.154.152.0/24 4953 | 220.154.154.0/23 4954 | 220.154.156.0/22 4955 | 220.154.160.0/19 4956 | 220.154.192.0/18 4957 | 220.155.0.0/21 4958 | 220.155.9.0/24 4959 | 220.155.10.0/23 4960 | 220.155.12.0/22 4961 | 220.155.16.0/21 4962 | 220.155.24.0/22 4963 | 220.155.28.0/23 4964 | 220.155.31.0/24 4965 | 220.155.32.0/19 4966 | 220.155.64.0/18 4967 | 220.155.128.0/17 4968 | 220.158.240.0/22 4969 | 220.160.0.0/11 4970 | 220.192.0.0/12 4971 | 220.231.0.0/18 4972 | 220.231.128.0/17 4973 | 220.232.64.0/18 4974 | 220.234.0.0/16 4975 | 220.242.0.0/16 4976 | 220.243.0.0/17 4977 | 220.243.128.0/18 4978 | 220.243.200.0/24 4979 | 220.243.202.0/24 4980 | 220.243.204.0/24 4981 | 220.243.208.0/22 4982 | 220.243.214.0/23 4983 | 220.243.216.0/22 4984 | 220.243.221.0/24 4985 | 220.243.222.0/24 4986 | 220.243.238.0/24 4987 | 220.247.136.0/21 4988 | 220.248.0.0/14 4989 | 220.252.0.0/16 4990 | 221.0.0.0/13 4991 | 221.8.0.0/14 4992 | 221.12.0.0/17 4993 | 221.12.128.0/18 4994 | 221.13.0.0/16 4995 | 221.14.0.0/15 4996 | 221.122.0.0/15 4997 | 221.128.128.0/17 4998 | 221.129.0.0/16 4999 | 221.130.0.0/15 5000 | 221.133.224.0/19 5001 | 221.136.0.0/15 5002 | 221.172.0.0/14 5003 | 221.176.0.0/19 5004 | 221.176.32.0/20 5005 | 221.176.48.0/21 5006 | 221.176.56.0/24 5007 | 221.176.58.0/23 5008 | 221.176.60.0/22 5009 | 221.176.64.0/18 5010 | 221.176.128.0/17 5011 | 221.177.0.0/16 5012 | 221.178.0.0/15 5013 | 221.180.0.0/14 5014 | 221.192.0.0/14 5015 | 221.196.0.0/15 5016 | 221.198.0.0/16 5017 | 221.199.0.0/17 5018 | 221.199.128.0/18 5019 | 221.199.192.0/20 5020 | 221.199.224.0/19 5021 | 221.200.0.0/13 5022 | 221.208.0.0/12 5023 | 221.224.0.0/12 5024 | 222.16.0.0/12 5025 | 222.32.0.0/11 5026 | 222.64.0.0/11 5027 | 222.125.0.0/16 5028 | 222.126.128.0/19 5029 | 222.126.160.0/21 5030 | 222.126.168.0/22 5031 | 222.126.172.0/23 5032 | 222.126.178.0/23 5033 | 222.126.180.0/22 5034 | 222.126.184.0/21 5035 | 222.126.192.0/21 5036 | 222.126.206.0/23 5037 | 222.126.208.0/22 5038 | 222.126.212.0/23 5039 | 222.126.216.0/21 5040 | 222.126.224.0/20 5041 | 222.126.240.0/24 5042 | 222.126.242.0/23 5043 | 222.126.244.0/22 5044 | 222.126.248.0/21 5045 | 222.128.0.0/12 5046 | 222.160.0.0/14 5047 | 222.168.0.0/13 5048 | 222.176.0.0/12 5049 | 222.192.0.0/11 5050 | 222.240.0.0/13 5051 | 222.248.0.0/15 5052 | 223.0.0.0/12 5053 | 223.20.0.0/15 5054 | 223.27.184.0/22 5055 | 223.29.208.0/22 5056 | 223.29.252.0/22 5057 | 223.64.0.0/11 5058 | 223.96.0.0/12 5059 | 223.112.0.0/14 5060 | 223.116.0.0/15 5061 | 223.120.0.0/13 5062 | 223.128.0.0/15 5063 | 223.144.0.0/12 5064 | 223.160.0.0/14 5065 | 223.166.0.0/15 5066 | 223.192.0.0/15 5067 | 223.198.0.0/15 5068 | 223.201.0.0/18 5069 | 223.201.64.0/21 5070 | 223.201.72.0/24 5071 | 223.201.74.0/23 5072 | 223.201.76.0/22 5073 | 223.201.80.0/20 5074 | 223.201.96.0/23 5075 | 223.201.99.0/24 5076 | 223.201.100.0/22 5077 | 223.201.104.0/21 5078 | 223.201.112.0/20 5079 | 223.201.128.0/21 5080 | 223.201.136.0/23 5081 | 223.201.139.0/24 5082 | 223.201.140.0/22 5083 | 223.201.144.0/20 5084 | 223.201.160.0/19 5085 | 223.201.192.0/19 5086 | 223.201.224.0/20 5087 | 223.201.240.0/22 5088 | 223.201.245.0/24 5089 | 223.201.246.0/23 5090 | 223.201.248.0/21 5091 | 223.202.0.0/17 5092 | 223.202.128.0/18 5093 | 223.202.192.0/19 5094 | 223.202.224.0/20 5095 | 223.202.240.0/21 5096 | 223.202.248.0/23 5097 | 223.202.250.0/24 5098 | 223.203.0.0/16 5099 | 223.208.0.0/13 5100 | 223.220.0.0/15 5101 | 223.223.176.0/20 5102 | 223.223.192.0/20 5103 | 223.240.0.0/13 5104 | 223.248.0.0/14 5105 | 223.252.128.0/19 5106 | 223.252.192.0/18 5107 | 223.254.0.0/17 5108 | 223.254.128.0/18 5109 | 223.254.192.0/20 5110 | 223.254.208.0/21 5111 | 223.254.216.0/22 5112 | 223.254.220.0/23 5113 | 223.254.222.0/24 5114 | 223.254.224.0/20 5115 | 223.254.240.0/21 5116 | 223.254.248.0/23 5117 | 223.254.251.0/24 5118 | 223.254.252.0/22 5119 | 223.255.0.0/17 5120 | 223.255.236.0/22 5121 | 223.255.252.0/23 --------------------------------------------------------------------------------