From c6a63f5c141c5f144434e556fcf296be4240e7f9 Mon Sep 17 00:00:00 2001 From: neptune Date: Fri, 26 Mar 2021 17:39:29 -0300 Subject: Update --- cgi/framework.py | 9 +- cgi/post.py | 40 +- cgi/proxy.txt | 3 +- cgi/templates/home.html | 13 +- cgi/templates/mobile/latest.html | 11 +- cgi/templates/navbar.html | 1 - cgi/templates/txt_base_top.html | 3 +- cgi/templates/txt_board.html | 4 +- cgi/tor.txt | 2837 +++++++++++++++++++++++--------------- cgi/weabot.py | 25 +- static/css/dickgirl.css | 1 - static/css/ib.css | 5 +- static/css/txt/sjis.css | 3 +- static/css/txt/vipper.css | 2 + static/ico/madotsuki1.gif | Bin 0 -> 2926 bytes 15 files changed, 1798 insertions(+), 1159 deletions(-) create mode 100644 static/css/txt/vipper.css create mode 100644 static/ico/madotsuki1.gif diff --git a/cgi/framework.py b/cgi/framework.py index 83624a8..898d6a1 100644 --- a/cgi/framework.py +++ b/cgi/framework.py @@ -96,7 +96,7 @@ def addressIsProxy(ip): def addressIsES(ip): ES = ['AR', 'BO', 'CL', 'CO', 'CR', 'CU', 'EC', 'ES', 'GF', - 'GY', 'GT', 'HN', 'MX', 'NI', 'PA', 'PE', 'PY', 'PR', 'SR', 'UY', 'VE'] # 'BR', + 'GY', 'GT', 'HN', 'MX', 'NI', 'PA', 'PE', 'PY', 'PR', 'SR', 'UY', 'VE', 'v6'] # 'BR', return getCountry(ip) in ES @@ -105,8 +105,11 @@ def addressIsBannedCountry(ip): def getCountry(ip): - import geoip - return geoip.country(ip) + if ":" in ip: + return "v6" + else: + import geoip + return geoip.country(ip) def getHost(ip): diff --git a/cgi/post.py b/cgi/post.py index 6fc4bac..f40537d 100644 --- a/cgi/post.py +++ b/cgi/post.py @@ -985,9 +985,9 @@ def cut_home_msg(message, boardlength=0): short_message = re.compile(r"&(.(?!;))*$", re.DOTALL | re.IGNORECASE).sub("", short_message) # Removes incomplete HTML return short_message -def getLastAge(limit): +def getLastAge(board_type, limit): threads = [] - sql = "SELECT posts.id, boards.name AS board_fulln, boards.subname AS board_name, board_type, boards.dir, timestamp, bumped, last, length, thumb, CASE WHEN posts.subject = boards.subject THEN posts.message ELSE posts.subject END AS content FROM posts INNER JOIN boards ON boardid = boards.id WHERE parentid = 0 AND IS_DELETED = 0 AND boards.secret = 0 AND posts.locked < 3 ORDER BY bumped DESC LIMIT %d" % limit + sql = "SELECT posts.id, boards.name AS board_fulln, boards.subname AS board_name, board_type, boards.dir, timestamp, bumped, last, length, thumb, CASE WHEN posts.subject = boards.subject THEN posts.message ELSE posts.subject END AS content FROM posts INNER JOIN boards ON boardid = boards.id WHERE parentid = 0 AND IS_DELETED = 0 AND boards.secret = 0 AND posts.locked < 3 AND boards.board_type = %d ORDER BY bumped DESC LIMIT %d" % (board_type, limit) threads = FetchAll(sql) for post in threads: @@ -1037,7 +1037,8 @@ def regenerateHome(): 'header': Settings.SITE_TITLE, 'slogan': Settings.SITE_SLOGAN, 'latest_news': FetchAll("SELECT `timestamp`, `message`, `timestamp_formatted` FROM `news` WHERE `type` = '2' ORDER BY `timestamp` DESC LIMIT " + str(Settings.HOME_NEWS)), - 'latest_age': getLastAge(limit), + 'latest_age_ib': getLastAge(0, limit), + 'latest_age_bbs': getLastAge(1, limit), 'latest_age_num': limit, 'new_threads': getNewThreads(Settings.HOME_NEWTHREADS), } @@ -1259,26 +1260,23 @@ def discord_hook(post, url): board = Settings._.BOARD - WEBHOOK_URL = "https://discordapp.com/api/webhooks/428025764974166018/msYu1-R3JRnG-cxrhAu3J7LbIPvzpBlJwbW5PFe5VEQaxVzjros9CXOpjZDahUE42Jgn" - - data = {"content": "", - "ts": post['timestamp'], - "embeds": [{ - "title": post['subject'], - "description": cut_home_msg(post['message'], 30), - "url": "https://bienvenidoainternet.org" + url, # TODO: Parametrizar. - "color": 11910504, - "timestamp": datetime.datetime.utcfromtimestamp(post['timestamp']).isoformat(), - "footer": { "text": board['name'] }, - "thumbnail": { "url": "%s%s/thumb/%s" % (Settings.HOME_URL, board['dir'], post['thumb']) }, - "author": { - "name": "Nuevo hilo", - "icon_url": "%s0/junk/w/shobon.gif" % Settings.HOME_URL - }}] - } + #data = {"embeds": [{ + # "title": post['subject'], + # "description": cut_home_msg(post['message'], 30), + # "url": "https://bienvenidoainternet.org" + url, # TODO: Parametrizar. + # "color": 11910504, + # "timestamp": datetime.datetime.utcfromtimestamp(post['timestamp']).isoformat(), + # "footer": { "text": board['name'] }, + # "thumbnail": { "url": "%s%s/thumb/%s" % (Settings.HOME_URL, board['dir'], post['thumb']) }, + # "author": { + # "name": "Nuevo hilo", + # "icon_url": "%s0/junk/w/shobon.gif" % Settings.HOME_URL + # }}] + #} + data = {"content": "test"} jsondata = json.dumps(data, separators=(',',':')) opener = urllib2.build_opener() - opener.addheaders = [('User-Agent', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0')] + #opener.addheaders = [('User-Agent', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0')] response = opener.open(Settings.DISCORD_HOOK_URL, jsondata, 6) the_page = response.read() diff --git a/cgi/proxy.txt b/cgi/proxy.txt index 5fc9460..4131207 100644 --- a/cgi/proxy.txt +++ b/cgi/proxy.txt @@ -1,3 +1,4 @@ +31.220.1.170 190.151.94.45 186.67.46.229 109.107.112.139 @@ -3248,4 +3249,4 @@ 82.145.149.5 217.11.47.9 179.43.144.19 -177.154.139.196 \ No newline at end of file +177.154.139.196 diff --git a/cgi/templates/home.html b/cgi/templates/home.html index ffd9c4e..fb06465 100644 --- a/cgi/templates/home.html +++ b/cgi/templates/home.html @@ -7,7 +7,7 @@ Bienvenido a Internet BBS/IB - + @@ -31,7 +31,6 @@ Tecnología Juegos Música - TV y Cine Humanidades
@@ -69,8 +68,16 @@

Hilos activos

+

BBS

- + + [${thread['board_name']}] #{thread['content']} (${thread['length']}) + +
+
+

IB

+
+ [${thread['board_name']}] #{thread['content']} (${thread['length']})
diff --git a/cgi/templates/mobile/latest.html b/cgi/templates/mobile/latest.html index 615b21c..91c3514 100644 --- a/cgi/templates/mobile/latest.html +++ b/cgi/templates/mobile/latest.html @@ -6,9 +6,16 @@
SeccionesHilos activosNuevos hilos
- +

BBS

+ + #{thread['content']}
${thread['board_fulln']} R:#{int(thread['length'])-1}
+ +
+
+

IB

+ #{thread['content']}
${thread['board_fulln']} R:#{int(thread['length'])-1}
- \ No newline at end of file + diff --git a/cgi/templates/navbar.html b/cgi/templates/navbar.html index e5b1f85..e545776 100644 --- a/cgi/templates/navbar.html +++ b/cgi/templates/navbar.html @@ -2,7 +2,6 @@ Tecnología Juegos Música -TV y Cine Humanidades Club VIP World Lobby diff --git a/cgi/templates/txt_base_top.html b/cgi/templates/txt_base_top.html index 7499fb4..35b871f 100644 --- a/cgi/templates/txt_base_top.html +++ b/cgi/templates/txt_base_top.html @@ -28,8 +28,9 @@ - + + diff --git a/cgi/templates/txt_board.html b/cgi/templates/txt_board.html index d3bc72e..63913ea 100644 --- a/cgi/templates/txt_board.html +++ b/cgi/templates/txt_board.html @@ -50,7 +50,7 @@

#{post['num']} Mensaje eliminado por miembro del staff.

-
+

#{post['num']} : @@ -135,4 +135,4 @@

- \ No newline at end of file + diff --git a/cgi/tor.txt b/cgi/tor.txt index f748b96..7ef90b5 100644 --- a/cgi/tor.txt +++ b/cgi/tor.txt @@ -1,1140 +1,1755 @@ -102.165.54.56 -103.194.170.223 -103.208.220.122 -103.208.220.226 -103.234.220.195 -103.234.220.197 -103.236.201.110 -103.236.201.27 -103.28.52.93 -103.28.53.138 -103.3.61.114 -103.75.190.11 -103.76.180.54 -104.131.206.23 -104.192.3.226 -104.194.228.240 +176.10.99.200 +54.37.16.241 +46.182.106.190 +109.70.100.40 +51.15.43.205 +51.75.64.23 +94.32.66.48 +82.221.128.191 +109.70.100.43 +185.220.100.254 +51.89.23.74 +192.42.116.19 +97.74.237.196 +185.220.103.9 +172.105.35.249 +144.217.60.239 +195.176.3.23 +199.249.230.117 +185.220.100.243 +185.220.100.245 +198.58.107.53 104.196.43.128 -104.200.20.46 -104.218.63.72 -104.218.63.73 -104.218.63.74 -104.218.63.75 -104.218.63.76 -104.244.73.126 -104.244.74.165 -104.244.74.78 +199.249.230.83 +185.129.62.62 +199.249.230.75 +185.220.101.11 104.244.76.13 -104.244.77.49 -104.244.77.66 -104.40.73.53 -107.155.49.126 -107.173.58.166 -107.181.161.182 -107.181.174.66 -108.85.99.10 -109.169.33.163 -109.201.133.100 -109.236.90.209 -109.69.66.98 -109.69.67.17 -109.70.100.10 -109.70.100.2 -109.70.100.3 -109.70.100.4 -109.70.100.5 -109.70.100.6 -109.70.100.7 -109.70.100.8 -109.70.100.9 -111.69.49.124 -114.32.35.232 -115.64.95.48 -118.163.74.160 -122.147.141.130 +185.220.101.13 +66.70.228.168 +185.220.101.130 +23.129.64.191 +23.129.64.207 +71.19.144.106 +95.143.193.125 +51.38.64.136 +185.220.100.241 124.109.1.207 -125.212.241.182 -128.14.136.158 -128.31.0.13 -130.149.80.199 +109.70.100.34 +185.220.101.199 +178.20.55.18 +178.17.170.112 130.204.161.3 -136.243.102.134 -137.74.167.96 -137.74.169.241 -138.197.177.62 -139.162.10.72 -139.162.100.194 -139.162.138.14 -139.28.36.234 -139.99.96.114 -139.99.98.191 -142.93.168.48 -143.106.60.70 -143.202.161.75 -144.217.161.119 -144.217.164.104 -144.217.165.223 -144.217.166.19 -144.217.166.26 -144.217.166.59 -144.217.166.65 -144.217.60.211 -144.217.60.239 -144.217.64.46 -144.217.7.154 -144.217.7.33 -144.217.80.80 -144.217.90.68 -145.239.82.204 -145.239.91.37 -145.239.93.33 -145.249.106.102 -145.249.107.135 -149.202.170.60 -149.202.238.204 -151.73.206.187 -153.207.207.191 -154.127.60.92 -156.54.213.67 -157.157.87.22 -158.174.122.199 -158.255.7.61 -158.69.192.200 -158.69.192.239 -158.69.193.32 -158.69.201.47 -158.69.217.87 -158.69.218.78 -158.69.37.14 -160.119.249.239 -160.119.249.24 -160.119.249.240 -160.119.253.114 -160.202.162.186 -162.213.0.243 -162.213.3.221 -162.244.80.228 -162.247.74.199 -162.247.74.200 -162.247.74.201 -162.247.74.202 -162.247.74.204 -162.247.74.206 -162.247.74.213 -162.247.74.217 -162.247.74.27 -162.247.74.7 -162.247.74.74 -163.172.12.160 -163.172.151.47 -163.172.160.182 -163.172.221.204 -163.172.41.228 -163.172.66.247 -164.132.51.91 -164.132.9.199 -164.77.133.220 -166.70.15.14 -166.70.207.2 -167.114.108.152 -167.114.34.150 -167.99.42.89 -169.197.112.26 -171.233.208.235 -171.25.193.20 -171.25.193.235 -171.25.193.25 +45.125.65.45 +142.44.246.156 +185.220.101.205 +195.176.3.20 +49.50.107.221 +199.249.230.121 +109.70.100.35 +89.34.27.149 +91.250.242.12 +185.82.219.109 +46.182.21.248 +82.118.21.59 +41.215.242.42 +185.220.103.4 +51.79.86.181 +205.185.117.149 +192.160.102.164 +199.249.230.89 +45.15.16.72 +45.15.16.85 +45.15.16.100 +51.79.86.177 +80.79.23.7 +149.56.44.47 +212.21.66.6 +207.244.70.35 +217.79.178.53 +51.79.53.146 +185.220.100.242 +185.220.101.9 +109.201.133.100 +103.253.41.111 +144.172.71.182 +217.170.204.126 +204.11.50.131 171.25.193.77 -171.25.193.78 -172.96.118.14 -172.98.193.43 -173.14.173.227 -173.212.244.116 -173.244.209.5 -173.255.226.142 -174.18.153.201 -176.10.104.240 -176.10.107.180 -176.10.99.200 -176.10.99.201 -176.10.99.202 -176.10.99.203 -176.10.99.204 -176.10.99.205 -176.10.99.206 -176.10.99.207 -176.10.99.208 -176.10.99.209 -176.10.99.210 -176.107.179.147 -176.121.81.51 -176.126.83.211 -176.31.208.193 -176.31.45.3 -176.53.90.26 +51.15.80.14 +185.220.102.8 +91.92.109.43 +199.249.230.84 +109.70.100.33 +185.220.101.137 +185.220.100.246 +185.220.101.136 +23.129.64.212 +213.95.149.22 +185.220.101.131 +77.247.181.163 +179.43.146.230 +185.220.101.10 +162.247.74.7 +109.169.33.163 +185.100.87.207 +81.16.33.31 +51.79.53.139 +82.221.131.5 +23.129.64.181 +185.220.101.143 +185.220.101.12 +46.59.65.88 +95.211.230.211 +185.220.101.19 +199.249.230.103 +95.216.107.148 +192.42.116.27 +23.129.64.192 +46.232.251.191 176.58.100.98 -176.58.89.182 -176.67.168.210 -178.165.72.177 -178.17.166.146 -178.17.166.147 -178.17.166.148 -178.17.166.149 -178.17.166.150 -178.17.170.105 -178.17.170.112 -178.17.170.13 -178.17.170.135 -178.17.170.149 -178.17.170.164 -178.17.170.194 -178.17.170.196 -178.17.170.23 -178.17.170.81 +104.244.76.69 +51.79.86.175 +199.249.230.65 +94.16.121.91 +216.218.134.12 +104.244.78.231 +199.249.230.118 +195.254.135.76 +185.220.102.7 +51.254.48.93 +185.220.101.5 +109.70.100.37 +185.165.168.229 +51.79.86.174 +162.247.72.199 +193.169.145.202 +80.67.172.162 +185.220.101.215 +158.69.63.54 +109.70.100.38 +87.118.116.229 +185.220.100.255 +198.251.83.248 +185.220.101.21 +27.122.59.100 +185.165.168.77 +158.69.201.47 +23.129.64.208 +185.220.101.14 178.17.171.102 -178.17.171.114 +85.93.218.204 +43.251.159.144 +46.232.249.138 +185.220.101.7 178.17.171.197 -178.17.171.39 -178.17.171.78 +23.129.64.186 178.17.174.10 -178.17.174.14 -178.17.174.196 -178.17.174.198 -178.17.174.229 -178.17.174.232 -178.17.174.68 +66.230.230.230 +199.249.230.85 +199.249.230.101 +81.16.33.33 +172.98.193.43 +5.2.77.146 +77.247.181.162 +23.129.64.206 +109.70.100.42 +46.38.235.14 +185.220.100.247 +5.79.109.48 +193.169.145.194 +199.249.230.107 +185.220.101.2 +62.102.148.68 +162.247.74.27 +204.27.60.147 +162.247.74.204 +202.165.228.225 +162.213.3.221 +23.129.64.183 +200.38.232.248 +199.195.251.84 +83.96.213.63 +23.129.64.209 178.175.131.194 -178.175.132.209 -178.175.132.210 -178.175.132.211 -178.175.132.212 -178.175.132.213 -178.175.132.214 -178.175.132.225 -178.175.132.226 -178.175.132.227 -178.175.132.228 -178.175.132.229 -178.175.132.230 -178.175.135.100 -178.175.135.101 -178.175.135.102 -178.175.135.99 -178.175.143.155 -178.175.143.156 -178.175.143.157 -178.175.143.158 -178.175.143.163 -178.175.143.164 -178.175.143.165 -178.175.143.166 -178.175.143.234 -178.175.143.242 -178.175.148.11 -178.175.148.165 -178.175.148.224 -178.175.148.227 -178.175.148.34 -178.175.148.45 -178.20.55.16 -178.20.55.18 -178.211.45.18 -178.239.176.73 -178.32.147.150 -178.32.181.96 -178.32.181.97 -178.32.181.98 -178.32.181.99 -178.43.184.11 -178.63.97.34 -179.176.55.216 -179.43.134.154 -179.43.134.155 -179.43.134.156 -179.43.134.157 -179.43.146.230 -179.43.148.214 -179.43.151.146 -179.48.248.17 +160.202.162.186 +176.10.104.240 179.48.251.188 -18.18.248.17 -18.85.192.253 -180.150.226.99 -185.10.68.123 -185.10.68.148 -185.10.68.180 -185.10.68.217 -185.10.68.225 -185.10.68.52 -185.10.68.76 -185.100.85.101 -185.100.85.132 -185.100.85.147 -185.100.85.190 -185.100.85.61 -185.100.86.100 -185.100.86.128 -185.100.86.154 -185.100.86.182 -185.100.87.206 -185.100.87.207 -185.104.120.2 -185.104.120.3 -185.104.120.4 -185.104.120.5 -185.104.120.60 -185.104.120.7 -185.106.122.188 -185.107.47.171 -185.107.47.215 -185.107.70.202 -185.107.83.71 -185.112.146.138 -185.112.254.195 -185.121.168.254 -185.125.33.114 -185.125.33.242 -185.127.25.192 -185.127.25.68 -185.129.62.62 -185.129.62.63 -185.130.104.241 -185.14.29.189 -185.147.237.8 -185.147.80.155 -185.163.45.38 -185.165.168.168 -185.165.168.229 -185.165.168.77 -185.165.169.165 -185.165.169.62 -185.165.169.71 -185.169.42.141 -185.175.208.179 -185.175.208.180 -185.177.151.34 -185.180.221.225 -185.191.204.254 -185.193.125.42 -185.198.58.198 -185.205.210.245 -185.220.100.252 -185.220.100.253 -185.220.100.254 -185.220.100.255 -185.220.101.0 -185.220.101.1 -185.220.101.12 -185.220.101.13 -185.220.101.15 +185.10.16.41 +41.215.241.146 +87.120.37.79 +80.241.60.207 +178.17.174.232 +94.230.208.147 +217.12.223.225 185.220.101.20 -185.220.101.21 -185.220.101.22 -185.220.101.24 -185.220.101.25 -185.220.101.26 -185.220.101.27 -185.220.101.28 -185.220.101.29 -185.220.101.3 -185.220.101.30 -185.220.101.31 -185.220.101.32 -185.220.101.33 -185.220.101.34 -185.220.101.35 -185.220.101.44 -185.220.101.45 -185.220.101.46 -185.220.101.48 -185.220.101.49 -185.220.101.5 -185.220.101.50 -185.220.101.52 -185.220.101.53 -185.220.101.54 -185.220.101.56 -185.220.101.57 -185.220.101.58 185.220.101.6 -185.220.101.60 -185.220.101.62 -185.220.101.65 -185.220.101.66 -185.220.101.67 -185.220.101.68 -185.220.101.69 -185.220.101.7 -185.220.101.70 -185.220.102.4 -185.220.102.6 -185.220.102.7 -185.220.102.8 -185.222.202.104 -185.222.202.12 -185.222.202.125 -185.222.202.133 -185.222.202.153 -185.222.202.221 -185.222.209.87 -185.227.68.78 -185.227.82.9 -185.233.100.23 -185.234.219.111 -185.234.219.112 -185.234.219.113 -185.234.219.114 -185.234.219.115 -185.234.219.116 -185.234.219.117 -185.234.219.118 -185.234.219.119 -185.234.219.120 -185.242.113.224 -185.244.151.149 -185.248.160.21 -185.248.160.231 -185.248.160.65 -185.255.112.137 -185.31.136.244 -185.34.33.2 -185.35.138.92 -185.4.132.135 -185.4.132.183 -185.56.171.94 -185.61.149.193 -185.65.205.10 -185.65.206.154 -185.66.200.10 -185.72.244.24 -185.86.148.109 -185.86.148.90 -185.86.149.254 -185.86.151.21 -187.178.75.109 -188.127.251.63 -188.165.59.43 -188.166.56.121 -188.166.9.235 -188.214.104.146 -188.68.45.180 -189.84.21.44 -190.10.8.50 -190.105.226.81 -190.164.230.184 -190.210.98.90 -190.216.2.136 -191.114.118.98 -192.155.95.222 -192.160.102.164 -192.160.102.165 -192.160.102.166 -192.160.102.168 -192.160.102.169 -192.160.102.170 -192.195.80.10 -192.34.80.176 -192.42.116.13 -192.42.116.14 -192.42.116.15 -192.42.116.16 -192.42.116.17 +103.234.220.195 +5.2.72.101 +139.99.98.191 +109.69.67.17 +46.29.248.238 +185.220.100.253 +185.220.100.248 +185.220.101.18 +167.88.7.134 +199.249.230.115 +199.249.230.71 +199.249.230.77 +66.146.193.33 +46.165.230.5 +185.220.101.129 +185.220.101.3 +185.220.103.6 +149.202.238.204 +103.253.41.98 192.42.116.18 -192.42.116.19 -192.42.116.20 -192.42.116.22 +109.70.100.46 +65.181.123.254 +185.220.100.251 +45.129.56.200 +45.128.133.242 192.42.116.23 -192.42.116.24 -192.42.116.25 -192.42.116.26 -192.42.116.27 -192.42.116.28 -193.110.157.151 -193.150.121.66 -193.169.145.194 -193.169.145.202 +51.158.111.157 +185.220.101.4 +185.220.101.138 +178.17.170.164 +139.162.10.72 +185.220.101.144 +107.189.10.42 +192.42.116.17 +185.220.100.244 +185.100.85.101 193.169.145.66 -193.19.118.171 -193.201.225.45 -193.29.15.223 -193.36.119.17 -193.56.29.101 -193.9.114.139 -193.9.115.24 -193.90.12.115 -193.90.12.116 -193.90.12.117 -193.90.12.118 -193.90.12.119 -194.88.143.66 -195.123.209.67 -195.123.212.75 -195.123.213.211 -195.123.216.32 -195.123.217.153 -195.123.222.135 -195.123.224.108 -195.123.227.87 -195.123.228.161 -195.123.237.251 -195.123.245.96 -195.170.63.164 +192.160.102.170 +167.86.94.107 +202.165.228.161 +45.66.35.35 +23.129.64.217 +185.220.103.8 +103.28.53.138 +162.247.74.202 +46.166.139.111 +51.79.53.145 +185.222.202.12 +176.53.90.26 +185.220.101.216 +199.249.230.114 +62.210.37.82 +103.236.201.110 +162.247.74.201 +109.70.100.41 +209.95.51.11 +185.222.202.133 +192.160.102.165 +138.59.18.110 +199.249.230.74 +199.249.230.76 +5.2.72.110 +82.223.14.245 +109.70.100.39 +185.220.101.134 +178.17.170.91 +185.220.102.4 +178.17.171.39 +103.236.201.88 +50.116.37.141 +176.10.107.180 195.176.3.19 -195.176.3.20 -195.176.3.23 -195.176.3.24 -195.189.96.147 -195.206.105.217 -195.228.45.176 -195.254.134.194 -195.254.134.242 -195.254.135.76 -196.41.123.180 -197.231.221.211 -198.167.223.111 -198.167.223.133 -198.167.223.38 -198.167.223.44 -198.233.204.165 -198.46.135.18 -198.50.191.95 -198.50.200.129 -198.50.200.131 -198.71.81.66 -198.73.51.73 -198.96.155.3 -198.98.50.112 -198.98.50.201 -198.98.52.93 -198.98.54.28 -198.98.54.34 -198.98.56.149 -198.98.57.155 -198.98.57.178 -198.98.58.135 -198.98.59.240 -198.98.62.49 -199.127.226.150 -199.195.248.177 -199.195.250.77 -199.195.252.246 -199.249.230.64 -199.249.230.65 -199.249.230.66 -199.249.230.67 199.249.230.68 -199.249.230.69 -199.249.230.70 -199.249.230.71 -199.249.230.72 -199.249.230.73 -199.249.230.74 -199.249.230.75 -199.249.230.76 -199.249.230.77 -199.249.230.78 -199.249.230.79 -199.249.230.80 +185.220.102.6 +89.34.27.43 +176.123.7.145 +104.244.74.47 199.249.230.81 -199.249.230.82 -199.249.230.83 -199.249.230.84 -199.249.230.85 -199.249.230.86 -199.249.230.87 -199.249.230.88 -199.249.230.89 -199.87.154.255 -200.98.137.240 -200.98.146.219 -200.98.161.148 -2001:0470:000d:06dd:0011:0000:0000:beef -2001:0470:1f04:0d9a:0000:0000:0000:0002 -2001:0470:b304:0002:0000:0000:0051:0001 -2001:0620:20d0:0000:0000:0000:0000:0019 -2001:0620:20d0:0000:0000:0000:0000:0020 -2001:0620:20d0:0000:0000:0000:0000:0023 -2001:0620:20d0:0000:0000:0000:0000:0024 -2001:067c:2608:0000:0000:0000:0000:0001 -2001:067c:289c:0000:0000:0000:0000:0020 -2001:067c:289c:0000:0000:0000:0000:0025 -2001:067c:289c:0003:0000:0000:0000:0077 -2001:067c:289c:0003:0000:0000:0000:0078 -2001:0780:0107:000b:0000:0000:0000:0085 -2001:0981:5b21:000c:0000:0000:0000:0034 -2001:0985:7aa4:0000:0000:0000:0000:0002 -2001:0bc8:272a:0000:0000:0000:0000:0001 -2001:0bc8:3c96:0100:0000:0000:0000:0082 -2001:0bc8:4700:2000:0000:0000:0000:2317 -2001:0bc8:4700:2300:0000:0000:0004:021b -2001:0bc8:4728:1203:0000:0000:0000:0001 -2001:0bc8:472c:7507:0000:0000:0000:0001 -2001:0bc8:472c:d10c:0000:0000:0000:0001 -2001:0bf0:0666:0000:0000:0000:0000:0666 -2001:0bf7:b201:0000:0000:0000:0000:0006 -2001:0bf7:b301:0000:0000:0000:0000:0006 -2001:1af8:4700:a012:0001:0000:0000:0001 -2001:1b60:0003:0221:3132:0102:0000:0001 -2001:1b60:0003:0221:4134:0101:0000:0001 -2001:1b60:0003:0239:1003:0103:0000:0001 -2001:1b60:0003:0239:1003:0106:0000:0001 -2001:41d0:0052:0100:0000:0000:0000:112a -2001:41d0:0052:0500:0000:0000:0000:051a -2001:41d0:0052:0cff:0000:0000:0000:01fb -2001:41d0:0401:3100:0000:0000:0000:7d36 -2001:41d0:0404:0200:0000:0000:0000:1124 -2001:41d0:0601:1100:0000:0000:0000:06b0 -2001:41d0:0601:1100:0000:0000:0000:09eb -2001:41d0:0601:1100:0000:0000:0000:0eb0 -2001:41d0:0701:1100:0000:0000:0000:0761 -2001:41d0:0701:1100:0000:0000:0000:1a12 -2001:41d0:0801:2000:0000:0000:0000:0270 -2001:41d0:1008:26d8:0000:0000:0000:0150 -2001:4b78:2006:ffc3:0000:0000:0000:0001 -2001:4ba0:fff9:0160:dead:beef:ca1f:1337 -2001:b011:4010:3264:0000:0000:0000:0006 -2002:ce3f:e590:0001:0001:0000:0000:0015 -201.80.164.203 -201.80.181.11 -204.11.50.131 -204.17.56.42 -204.194.29.4 -204.209.81.3 -204.27.60.147 -204.8.156.142 -204.85.191.30 -204.85.191.9 -205.168.84.133 -205.185.126.56 -205.185.127.219 -206.248.184.127 -206.55.74.0 -207.180.224.17 -207.192.70.250 -207.244.70.35 -209.126.101.29 -209.141.33.25 -209.141.37.237 -209.141.40.86 -209.141.41.41 -209.141.45.212 -209.141.51.150 -209.141.58.114 -209.141.61.45 -209.95.51.11 -210.140.10.24 -210.3.102.152 -212.16.104.33 -212.21.66.6 -212.47.226.52 -212.47.229.60 -212.47.248.66 -212.81.199.159 -213.108.105.71 -213.136.92.52 -213.252.140.118 -213.252.244.99 -213.61.215.53 -213.95.149.22 -216.158.98.38 -216.19.178.143 -216.218.134.12 +87.118.116.90 +89.163.143.8 +91.244.181.85 +193.32.126.161 +87.118.122.30 216.239.90.19 -216.244.85.211 -217.115.10.131 -217.115.10.132 -217.12.221.196 -217.12.223.56 -217.170.197.83 -217.170.197.89 -217.182.78.177 -220.135.203.167 -223.26.48.248 -23.129.64.101 -23.129.64.104 -23.129.64.105 -23.129.64.106 -23.239.23.104 -23.94.113.11 -24.20.43.120 -24.3.111.78 -2400:8902:0000:0000:f03c:91ff:fe6b:3903 -2600:3c00:0000:0000:f03c:91ff:fee2:4963 -2600:3c01:0000:0000:f03c:91ff:fe30:ec17 -2600:3c03:0000:0000:f03c:91ff:fefa:755c -2601:01c2:1900:f202:0c2b:7370:df29:2ffe -2604:9a00:2010:a08d:0010:0000:0000:0023 -2605:2700:0000:0002:a800:00ff:fe20:0db3 -2605:2700:0000:0002:a800:00ff:fe39:0574 -2605:2700:0000:0002:a800:00ff:fe64:64ea -2605:4d00:0000:0002:0000:0000:0000:006e -2605:6400:0010:020b:226d:70ab:4c95:029b -2605:6400:0010:0549:0000:0000:0000:0001 -2605:6400:0010:0655:a871:c796:0015:f519 -2605:6400:0020:0693:279d:170f:8868:bc3e -2605:6400:0020:09ce:0000:0000:0000:0001 -2605:6400:0020:0e9d:2309:1a4d:8bd7:ea1c -2605:6400:0030:fa4e:aa41:e6cb:ec4d:230a -2605:6400:0030:fa6b:0000:0000:0000:0001 -2605:e200:d111:0001:0225:90ff:fe24:3f9e -2605:f700:00c0:0001:0000:0000:0de9:142a -2607:5300:0120:0e93:0000:0000:0000:0110 -2607:5300:0201:3100:0000:0000:0000:0c20 -2607:ff68:0100:0089:0000:0000:0000:0005 -2620:0007:6001:0000:0000:ffff:c759:e640 -2620:0007:6001:0000:0000:ffff:c759:e641 -2620:0007:6001:0000:0000:ffff:c759:e642 -2620:0007:6001:0000:0000:ffff:c759:e643 -2620:0007:6001:0000:0000:ffff:c759:e644 -2620:0007:6001:0000:0000:ffff:c759:e645 -2620:0007:6001:0000:0000:ffff:c759:e646 -2620:0007:6001:0000:0000:ffff:c759:e647 -2620:0007:6001:0000:0000:ffff:c759:e648 -2620:0007:6001:0000:0000:ffff:c759:e649 -2620:0007:6001:0000:0000:ffff:c759:e64a -2620:0007:6001:0000:0000:ffff:c759:e64b -2620:0007:6001:0000:0000:ffff:c759:e64c -2620:0007:6001:0000:0000:ffff:c759:e64d -2620:0007:6001:0000:0000:ffff:c759:e64e -2620:0007:6001:0000:0000:ffff:c759:e64f -2620:0007:6001:0000:0000:ffff:c759:e650 -2620:0007:6001:0000:0000:ffff:c759:e651 -2620:0007:6001:0000:0000:ffff:c759:e652 -2620:0007:6001:0000:0000:ffff:c759:e653 -2620:0007:6001:0000:0000:ffff:c759:e654 -2620:0007:6001:0000:0000:ffff:c759:e655 -2620:0007:6001:0000:0000:ffff:c759:e656 -2620:0007:6001:0000:0000:ffff:c759:e657 -2620:0007:6001:0000:0000:ffff:c759:e658 -2620:0007:6001:0000:0000:ffff:c759:e659 -2620:0132:300c:c01d:0000:0000:0000:0004 -2620:0132:300c:c01d:0000:0000:0000:0005 -2620:0132:300c:c01d:0000:0000:0000:0006 -2620:0132:300c:c01d:0000:0000:0000:0008 -2620:0132:300c:c01d:0000:0000:0000:0009 -2620:0132:300c:c01d:0000:0000:0000:000a -2620:018c:0000:1001:0000:0000:0000:0101 -2620:018c:0000:1001:0000:0000:0000:0104 -2620:018c:0000:1001:0000:0000:0000:0105 -2620:018c:0000:1001:0000:0000:0000:0106 -27.102.128.26 -2a00:0c98:2030:a03e:0002:0000:0000:0a10 -2a00:1298:8011:0212:0000:0000:0000:0163 -2a00:1298:8011:0212:0000:0000:0000:0164 -2a00:1298:8011:0212:0000:0000:0000:0165 -2a00:1328:e102:8000:0000:0000:0000:0131 -2a00:1768:1001:0021:0000:0000:32a3:201a -2a00:1768:2001:0023:1000:0000:0000:0200 -2a00:1768:6001:0016:0000:0000:0000:0071 -2a00:1dc0:2048:0000:0000:0000:0000:0002 -2a00:1dc0:cafe:0000:0000:0000:d6a2:ae67 -2a00:1dc0:cafe:0000:0000:0000:f290:7489 -2a00:1dc0:caff:0029:0000:0000:0000:6d8e -2a00:1dc0:caff:003a:0000:0000:0000:dcbe -2a00:1dc0:caff:0054:0000:0000:0000:a46d -2a00:1dc0:caff:0071:0000:0000:0000:e4da -2a00:1dc0:caff:0072:0000:0000:0000:2cb4 -2a00:1dc0:caff:007d:0000:0000:0000:8254 -2a00:1dc0:caff:008b:0000:0000:0000:5b9a -2a00:1dc0:caff:009e:0000:0000:0000:8e67 -2a00:1dc0:caff:00b0:0000:0000:0000:93c4 -2a00:1dc0:caff:00f6:0000:0000:0000:28ad -2a00:1dc0:caff:00f8:0000:0000:0001:c46a -2a00:1dc0:caff:010d:0000:0000:0000:234b -2a00:1dc0:caff:0111:0000:0000:0000:785b -2a00:1dc0:caff:0127:0000:0000:0000:e359 -2a00:1dc0:caff:0129:0000:0000:0000:4938 -2a00:1dc0:caff:0138:0000:0000:0000:94d2 -2a00:1dc0:caff:014e:0000:0000:0000:9ecd -2a00:1dc0:caff:0153:0000:0000:0000:d2c7 -2a00:1dc0:caff:0159:0000:0000:0000:4d79 -2a00:1dc0:caff:015c:0000:0000:0000:5627 -2a00:1dc0:caff:0168:0000:0000:0000:6b79 -2a00:5880:1801:0000:2891:33ff:fe93:d6a0 -2a01:04f9:c010:08fb:0000:0000:0000:0bee -2a01:0e35:8be7:65f0:0043:07ff:fe82:ac61 -2a01:7e00:0000:0000:f03c:91ff:fe56:2656 -2a01:7e01:0000:0000:f03c:91ff:fe6b:575b -2a02:0418:6017:0000:0000:0000:0000:0147 -2a02:0418:6017:0000:0000:0000:0000:0148 -2a02:0a00:2000:0034:0000:0000:0000:0195 -2a02:0ec0:0209:0010:0000:0000:0000:0004 -2a02:2970:1002:0000:5054:11ff:fe21:fb21 -2a02:2970:1002:0000:5054:45ff:fe4b:5a29 -2a02:2970:1002:0000:5054:a2ff:fed6:4d6c -2a02:2970:1002:0000:5054:a8ff:fe63:b164 -2a02:29e0:0002:0006:0001:0001:1156:b142 -2a02:29e0:0002:0006:0001:0001:1628:58bb -2a02:7aa0:0043:0000:0000:0000:1d04:1c97 -2a03:4000:0002:0a11:3a58:da1f:cffa:01bc -2a03:4000:0021:047a:0de1:0ea7:dead:beef -2a03:4000:0032:0488:08a9:72ff:fef6:07aa -2a03:b0c0:0000:1010:0000:0000:024c:1001 -2a03:b0c0:0002:00d0:0000:0000:0db1:4001 -2a03:b0c0:0003:00d0:0000:0000:0d9a:3001 -2a03:e600:0100:0000:0000:0000:0000:0002 -2a03:e600:0100:0000:0000:0000:0000:0003 -2a03:e600:0100:0000:0000:0000:0000:0004 -2a03:e600:0100:0000:0000:0000:0000:0005 -2a03:e600:0100:0000:0000:0000:0000:0006 -2a03:e600:0100:0000:0000:0000:0000:0007 -2a03:e600:0100:0000:0000:0000:0000:0008 -2a03:e600:0100:0000:0000:0000:0000:0009 -2a03:e600:0100:0000:0000:0000:0000:000a -2a04:9dc0:00c1:0007:0216:3eff:fe5c:3d83 -2a06:1700:0000:000b:0000:0000:44cb:00d9 -2a06:1700:0000:001f:0000:0000:0000:0031 -2a06:1700:0001:0000:0000:0000:0000:0007 -2a06:1700:0001:0000:0000:0000:0000:0011 -2a06:3000:0000:0000:0000:0000:0120:0002 -2a06:3000:0000:0000:0000:0000:0120:0003 -2a06:3000:0000:0000:0000:0000:0120:0004 -2a06:3000:0000:0000:0000:0000:0120:0005 -2a06:3000:0000:0000:0000:0000:0120:0007 -2a06:3000:0000:0000:0000:0000:0120:0060 -2a06:d380:0000:3700:0000:0000:0000:0062 -2a06:d380:0000:3700:0000:0000:0000:0063 -2a0b:f4c0:016c:0001:0000:0000:0000:0001 -2a0b:f4c0:016c:0002:0000:0000:0000:0001 -2a0b:f4c0:016c:0003:0000:0000:0000:0001 -2a0b:f4c0:016c:0004:0000:0000:0000:0001 -2a0b:f4c1:0000:0000:0000:0000:0000:0004 -2a0b:f4c1:0000:0000:0000:0000:0000:0006 -2a0b:f4c1:0000:0000:0000:0000:0000:0007 -2a0b:f4c1:0000:0000:0000:0000:0000:0008 -2a0c:b807:8000:c93a:ff51:90ac:0000:13fc -2a0c:b807:8000:c93a:ff51:90ac:0000:1b88 -2a0c:b807:8000:c93a:ff51:90ac:0000:1bae -2c0f:f930:0000:0003:0000:0000:0000:0221 -2c0f:f930:0000:0005:0000:0000:0000:0038 -31.131.2.19 -31.131.4.171 -31.148.220.211 -31.185.104.19 -31.185.104.20 -31.185.104.21 -31.185.27.203 -31.220.0.225 -31.220.40.54 -31.220.42.86 -31.31.72.24 -31.31.74.131 -31.31.74.47 -35.0.127.52 -37.128.222.30 -37.134.164.64 -37.139.8.104 -37.187.105.104 -37.187.180.18 -37.187.239.8 -37.200.98.117 -37.220.36.240 -37.228.129.2 -37.235.48.36 -37.28.154.68 -37.48.120.196 -37.9.231.195 -38.117.96.154 -40.124.44.53 -41.215.241.146 -45.125.65.45 -45.33.43.215 -45.35.72.85 -45.56.103.80 -45.62.250.175 -45.62.250.179 +209.141.41.103 +199.249.230.109 +96.66.15.147 +67.163.129.15 +199.249.230.79 +18.18.248.17 +142.44.139.12 +188.213.49.176 +89.234.157.254 +195.154.179.3 +195.206.105.217 +192.195.80.10 +54.36.108.162 +87.118.116.103 +162.247.74.213 +212.83.166.62 +144.217.80.80 +23.129.64.184 +91.240.84.192 +45.114.130.4 +62.171.144.155 +109.70.100.32 +62.102.148.69 +51.178.52.245 +204.85.191.8 45.64.186.102 -45.66.32.220 +87.118.96.154 +162.247.74.74 +192.160.102.166 +199.249.230.82 +23.239.22.248 +139.99.172.11 +185.65.134.175 +162.247.74.217 +185.220.101.200 +23.129.64.189 +23.129.64.197 +37.48.120.196 +185.65.205.10 +95.154.24.73 +87.118.122.51 +51.79.86.173 +23.129.64.205 +145.239.91.37 +95.142.161.63 +46.246.35.94 +46.246.35.203 +46.246.39.134 +46.246.39.173 +46.246.39.210 +46.246.38.195 +46.246.39.158 +46.246.36.26 +46.246.39.231 +46.246.40.212 +94.142.244.16 +23.129.64.182 +23.129.64.215 +31.31.72.24 +185.165.168.168 +185.220.101.17 +198.251.83.193 +198.96.155.3 +185.130.44.108 +199.249.230.119 +18.27.197.252 +82.221.131.71 +89.34.27.59 +212.47.229.4 +178.17.170.135 +159.89.174.9 +185.220.100.250 +94.102.51.78 45.76.115.159 -45.79.144.222 -45.79.73.22 -46.101.61.36 -46.105.52.65 -46.165.230.5 -46.165.245.154 -46.165.254.166 -46.166.139.35 -46.167.245.51 -46.17.46.199 -46.173.214.3 -46.182.106.190 -46.182.18.29 -46.182.18.40 -46.182.19.15 -46.182.19.219 -46.246.49.139 -46.250.220.166 -46.29.248.238 -46.36.36.184 -46.38.235.14 -46.4.144.81 -46.98.199.52 -46.98.200.43 -47.89.178.105 -49.50.107.221 -49.50.66.209 -5.135.158.101 -5.135.65.145 -5.150.254.67 -5.189.143.169 -5.189.146.133 -5.196.1.129 -5.196.66.162 -5.199.130.188 -5.2.64.194 -5.2.77.146 -5.200.52.112 -5.252.176.20 -5.254.146.7 -5.3.163.124 -5.34.181.34 -5.34.181.35 -5.34.183.105 -5.39.217.14 -5.45.76.56 -5.61.37.133 -5.79.68.161 -5.79.86.15 -5.79.86.16 -50.247.195.124 -50.7.151.127 -50.7.176.2 -51.15.0.226 -51.15.106.67 -51.15.117.50 -51.15.123.230 -51.15.125.181 -51.15.128.3 -51.15.187.209 -51.15.209.128 -51.15.224.0 -51.15.233.253 -51.15.235.211 -51.15.252.1 -51.15.3.40 -51.15.34.214 -51.15.36.100 -51.15.37.97 -51.15.43.205 -51.15.48.204 -51.15.49.134 -51.15.53.83 -51.15.56.18 -51.15.59.175 -51.15.59.9 -51.15.68.66 -51.15.75.133 -51.15.80.14 -51.15.92.212 -51.159.1.114 -51.254.208.245 -51.254.48.93 -51.255.106.85 -51.38.113.64 -51.38.134.189 -51.38.162.232 -51.38.64.136 -51.68.174.112 -51.68.214.45 -51.75.253.147 -51.75.71.123 -51.77.177.194 -51.77.193.218 -51.77.201.37 -51.77.62.52 -52.15.194.28 -52.167.231.173 -54.36.189.105 -54.36.222.37 -54.37.16.241 -54.37.234.66 -54.39.148.232 -54.39.148.233 -54.39.148.234 -54.39.151.167 -58.153.198.85 -59.115.159.251 -59.127.163.155 -62.102.148.67 -62.102.148.68 -62.102.148.69 -62.210.105.86 -62.210.116.201 -62.210.37.82 -64.113.32.29 -64.137.162.34 -64.27.17.140 -65.181.122.48 -65.181.123.254 -65.181.124.115 -65.19.167.130 -65.19.167.131 -65.19.167.132 -66.110.216.10 -66.146.193.33 -66.155.4.213 -66.175.208.248 -66.222.153.25 -66.42.224.235 -67.163.131.76 -67.215.255.140 -68.46.79.221 -69.162.107.5 -69.164.207.234 -70.168.93.214 -71.19.144.106 -71.19.144.148 -71.19.148.20 -72.14.179.10 -72.210.252.137 -74.82.47.194 -77.247.181.162 -77.247.181.163 -77.247.181.164 -77.247.181.165 -77.247.181.166 -77.250.227.202 -77.55.212.215 -77.68.42.132 -77.73.69.90 -77.81.104.124 +94.230.208.148 77.81.247.72 -78.109.23.2 -78.130.128.106 -78.142.175.70 -78.142.19.43 -78.21.17.242 -78.92.23.245 -79.134.234.247 -79.134.235.243 -79.134.235.253 -79.143.186.17 -79.172.193.32 -79.232.118.2 -80.127.116.96 -80.169.241.76 -80.241.60.207 -80.67.172.162 -80.68.92.225 -80.79.23.7 -81.169.136.206 -81.17.27.134 -81.17.27.135 -81.17.27.136 -81.17.27.137 -81.171.29.146 -81.49.51.12 -82.118.242.113 -82.118.242.128 -82.161.210.87 -82.221.128.191 -82.221.131.102 -82.221.131.5 -82.221.131.71 -82.221.139.190 -82.221.141.96 -82.223.14.245 -82.223.27.82 -82.228.252.20 -82.66.140.131 -82.94.132.34 -82.94.251.227 -83.136.106.136 -83.136.106.153 -84.19.182.33 -84.200.12.61 -84.200.50.18 -84.209.51.186 -84.53.192.243 -84.53.225.118 -85.119.82.142 -85.159.237.210 -85.214.243.115 -85.235.65.198 -85.248.227.163 +89.31.57.5 +199.249.230.122 +157.245.184.13 +185.213.155.169 85.248.227.164 +199.249.230.70 +210.140.10.35 +185.242.113.224 +195.123.225.112 +109.70.100.36 +62.210.105.116 +162.247.74.216 +185.67.82.114 +185.216.32.130 +104.244.74.57 +185.220.101.142 +185.100.87.41 +95.211.118.194 +103.208.220.122 +192.42.116.13 +188.214.104.146 +162.247.74.200 +162.247.73.192 +195.254.134.194 +51.15.235.211 +185.220.100.240 +5.2.79.179 +109.70.100.44 +59.115.127.208 +59.115.112.9 +59.115.117.226 +59.115.121.197 +61.230.163.73 +46.167.244.56 +176.107.187.151 +51.79.53.134 +185.220.100.249 +177.205.154.237 +177.205.24.208 +177.205.20.200 +191.250.136.157 +177.97.253.175 +186.214.79.205 +177.18.198.168 +191.250.140.114 +128.199.213.157 +208.68.4.129 +23.129.64.196 +185.56.171.94 +103.234.220.197 +192.160.102.169 +173.212.231.228 +164.132.9.199 +192.42.116.26 +23.129.64.210 +23.129.64.193 +37.228.129.2 +185.42.170.203 +185.100.86.154 +192.42.116.22 +163.172.41.228 +46.165.245.154 +130.149.80.199 +176.123.6.10 +185.100.87.206 +104.244.78.233 +217.12.223.227 +185.100.86.128 +199.249.230.123 +199.249.230.120 +178.17.170.88 +89.34.27.48 +199.249.230.106 +199.249.230.108 +192.42.116.24 +198.50.128.237 +162.247.74.206 +51.255.45.144 +84.209.139.0 +209.141.50.178 +199.249.230.104 +192.42.116.20 +123.30.128.138 +185.220.103.7 +173.244.209.5 +23.129.64.216 +51.75.144.43 +185.220.100.252 +37.139.8.104 +104.244.72.99 +143.202.161.75 +104.244.74.97 +199.249.230.102 +185.100.85.61 +195.206.107.147 +178.17.174.198 +5.2.72.113 +23.129.64.204 +38.68.37.77 +192.42.116.14 +199.249.230.64 +51.161.43.235 +103.208.220.226 +23.129.64.202 +180.150.226.99 +95.128.43.164 85.248.227.165 -85.25.44.141 -86.104.15.15 -87.118.110.27 -87.118.112.63 -87.118.116.103 +189.84.21.44 +144.217.60.211 +109.70.100.31 +199.249.230.100 +51.79.86.180 +45.140.170.187 +109.70.100.45 +185.222.202.104 +198.50.158.140 +103.75.190.11 +23.129.64.187 +144.217.7.33 +93.115.241.194 +89.34.27.49 +192.42.116.16 +23.129.64.201 +104.244.77.199 +181.119.30.26 +195.176.3.24 +178.17.174.14 +190.216.2.136 +94.32.66.15 +178.17.174.68 87.118.116.12 -87.118.116.90 -87.118.122.30 -87.118.122.51 -87.118.92.43 -87.120.254.204 -87.120.254.223 -87.120.36.157 -87.122.229.240 -87.222.199.132 -87.64.102.248 -88.190.118.95 -88.77.181.199 -88.99.35.242 -89.14.189.217 -89.144.12.17 -89.187.143.31 -89.187.143.81 -89.203.249.251 -89.234.157.254 -89.234.190.157 +178.17.174.196 +192.42.116.15 +199.249.230.80 +51.38.233.93 +23.129.64.211 +171.25.193.20 +209.141.54.195 +192.160.102.168 +91.203.145.116 +23.129.64.188 +185.100.86.182 +195.123.246.77 +199.249.230.113 89.236.112.100 -89.31.57.58 -91.121.192.154 -91.121.251.65 +51.77.39.255 +185.220.103.5 +79.137.79.167 +23.129.64.203 +213.61.215.54 +192.42.116.28 +41.77.137.114 +178.175.148.224 +199.249.230.105 +23.129.64.194 91.146.121.3 -91.153.76.138 -91.203.145.116 -91.203.146.126 -91.203.5.146 -91.203.5.165 -91.207.174.75 -91.219.236.171 -91.219.237.244 -91.219.238.95 -91.219.28.60 -91.221.57.179 -91.234.99.83 -91.250.241.241 -91.92.109.43 -91.92.109.53 -92.222.115.28 -92.222.180.10 -92.222.22.113 -92.222.38.67 -92.63.173.28 -93.115.241.194 -93.174.93.133 -93.174.93.6 -94.100.6.27 -94.100.6.72 -94.102.49.152 -94.102.51.78 -94.156.77.134 -94.230.208.147 -94.230.208.148 -94.242.57.161 -94.242.59.89 -94.32.66.15 -95.103.57.132 -95.128.43.164 -95.130.10.69 -95.130.11.170 -95.130.12.33 -95.130.9.90 -95.141.35.15 -95.142.161.63 -95.143.193.125 -95.165.133.22 -95.179.150.158 -95.211.118.194 -95.216.107.148 +178.20.55.16 +151.237.185.110 +166.70.207.2 +185.220.101.213 +45.79.73.22 +192.42.116.25 +23.129.64.180 +185.220.101.141 +180.149.125.139 +185.220.101.148 +82.221.141.96 +217.12.221.131 +137.74.169.241 +178.17.174.211 +193.218.118.140 +185.65.206.154 +190.164.230.9 +125.212.241.131 +178.17.170.23 +103.28.52.93 95.216.145.1 -95.216.2.172 -95.42.126.41 -96.66.15.147 -96.70.31.155 -97.74.237.196 -98.174.90.43 \ No newline at end of file +41.77.136.114 +204.85.191.9 +164.77.133.220 +23.129.64.185 +46.194.191.175 +178.30.49.3 +178.30.24.83 +178.30.48.13 +46.194.177.141 +46.194.34.244 +46.194.176.140 +50.254.218.37 +185.35.202.222 +185.113.128.30 +71.174.105.126 +104.244.72.115 +62.109.10.150 +89.245.87.252 +87.123.33.214 +87.123.42.107 +87.123.44.197 +87.123.44.245 +89.245.80.30 +89.245.95.44 +87.123.66.191 +89.245.85.247 +87.123.37.30 +83.135.207.99 +87.123.42.130 +87.123.32.69 +87.123.73.49 +89.245.92.110 +89.245.95.76 +89.245.94.210 +83.135.205.3 +83.135.206.146 +87.123.74.172 +89.245.90.43 +87.123.44.128 +87.123.36.136 +87.123.72.5 +109.250.159.53 +83.135.203.226 +87.123.66.154 +89.245.80.165 +89.245.83.181 +87.123.70.124 +87.123.43.195 +87.123.76.204 +87.123.77.227 +87.123.68.172 +89.245.95.30 +87.123.42.47 +87.123.42.244 +87.123.79.106 +83.135.199.255 +89.246.116.115 +109.250.152.227 +83.135.206.41 +87.123.47.180 +83.135.194.233 +89.245.89.91 +87.123.65.236 +83.135.198.165 +89.245.89.114 +87.123.65.10 +87.123.71.68 +87.123.34.16 +83.135.203.184 +193.218.118.160 +107.189.10.93 +109.70.100.47 +109.70.100.48 +176.123.5.250 +217.170.206.138 +217.170.206.146 +217.170.205.14 +199.195.250.77 +85.248.227.163 +77.247.181.165 +104.244.73.126 +5.2.188.23 +185.220.101.132 +185.220.101.196 +87.120.254.105 +185.220.101.214 +66.175.208.248 +185.220.101.195 +185.220.101.203 +104.200.20.46 +185.220.101.207 +185.220.101.147 +185.220.101.139 +185.220.101.212 +185.220.101.204 +185.220.101.206 +185.220.101.198 +195.80.151.30 +185.220.101.140 +185.220.101.145 +185.220.101.197 +45.79.157.103 +185.100.87.242 +185.100.87.243 +185.100.87.244 +185.100.87.240 +185.100.87.241 +104.244.73.193 +178.17.170.13 +185.100.87.251 +185.12.45.116 +185.12.45.114 +185.12.45.115 +185.12.45.118 +185.12.45.117 +46.19.141.82 +46.19.141.85 +46.19.141.84 +46.19.141.86 +46.19.141.83 +81.17.16.147 +81.17.16.150 +81.17.16.149 +81.17.16.148 +81.17.16.146 +82.221.139.190 +69.4.234.81 +185.170.114.25 +208.68.7.129 +158.69.35.227 +185.117.215.9 +179.43.167.227 +179.43.167.230 +185.146.157.196 +103.35.74.74 +179.43.167.229 +179.43.167.228 +92.63.104.84 +179.43.167.226 +46.167.244.59 +176.123.3.222 +84.236.1.181 +212.40.95.232 +94.21.155.191 +62.165.210.76 +62.109.20.253 +139.99.120.130 +87.120.254.98 +51.195.136.190 +103.228.53.155 +188.120.235.117 +178.165.72.177 +198.251.89.80 +139.99.133.150 +212.109.197.1 +131.255.4.96 +185.220.101.209 +185.220.101.149 +185.220.101.202 +185.220.101.135 +185.220.101.8 +185.220.101.16 +185.220.101.193 +185.220.101.194 +185.220.101.208 +195.37.209.9 +82.146.38.181 +172.98.193.62 +185.220.101.210 +185.220.101.201 +91.132.147.168 +205.185.125.216 +62.109.0.2 +23.129.64.100 +23.129.64.190 +23.129.64.195 +23.129.64.213 +23.129.64.200 +185.10.68.254 +5.199.130.188 +185.10.68.22 +134.249.106.21 +178.17.171.78 +185.38.175.71 +145.239.91.163 +187.121.121.154 +187.10.72.201 +187.10.72.50 +187.121.1.28 +187.121.103.13 +189.78.246.83 +187.121.91.99 +189.78.246.106 +187.74.132.139 +187.121.122.183 +189.78.247.136 +187.121.109.251 +187.121.92.197 +201.95.72.61 +179.93.59.141 +177.76.161.59 +187.121.94.109 +201.95.72.228 +179.93.146.186 +179.93.60.52 +187.74.132.25 +187.121.1.176 +187.121.122.8 +189.18.180.111 +187.74.132.130 +187.74.133.19 +187.121.0.139 +187.121.114.250 +187.121.73.56 +201.42.113.73 +187.10.133.100 +177.170.251.79 +187.121.88.117 +187.121.104.78 +187.121.104.40 +201.95.72.49 +187.74.132.75 +187.121.93.127 +177.170.254.17 +177.76.224.194 +201.95.72.251 +201.95.72.139 +177.76.223.233 +187.121.1.42 +177.76.190.227 +187.121.78.146 +187.121.73.64 +187.121.80.98 +187.121.121.224 +187.10.135.26 +187.74.133.158 +201.93.243.200 +177.170.88.146 +187.121.96.203 +187.74.132.229 +187.74.132.91 +187.121.75.116 +189.18.179.196 +187.121.106.50 +201.42.114.190 +187.74.130.211 +187.121.105.5 +187.121.115.165 +187.121.109.143 +176.58.89.182 +217.119.151.164 +217.119.157.21 +209.141.53.10 +195.144.21.219 +176.123.5.227 +94.140.114.190 +199.249.230.140 +199.249.230.142 +199.249.230.141 +199.249.230.144 +199.249.230.143 +199.249.230.148 +178.17.170.178 +199.249.230.146 +199.249.230.149 +199.249.230.145 +199.249.230.147 +199.249.230.152 +199.249.230.151 +199.249.230.169 +199.249.230.166 +199.249.230.180 +199.249.230.168 +199.249.230.165 +199.249.230.160 +199.249.230.186 +199.249.230.171 +199.249.230.182 +199.249.230.183 +199.249.230.187 +199.249.230.162 +199.249.230.164 +199.249.230.181 +199.249.230.174 +199.249.230.185 +199.249.230.170 +199.249.230.159 +199.249.230.156 +199.249.230.153 +199.249.230.184 +199.249.230.173 +199.249.230.158 +199.249.230.157 +199.249.230.154 +199.249.230.172 +199.249.230.167 +199.249.230.163 +199.249.230.188 +199.249.230.189 +176.123.5.193 +151.80.237.96 +204.194.29.4 +209.141.34.95 +209.222.101.251 +54.38.81.231 +209.141.45.189 +141.98.252.163 +145.239.95.15 +35.199.85.150 +185.185.170.27 +209.141.46.47 +104.244.73.43 +163.172.151.47 +193.218.118.155 +193.218.118.156 +192.166.245.138 +185.161.209.205 +107.189.11.80 +50.116.51.78 +104.218.63.119 +209.141.53.20 +185.220.101.1 +185.220.101.146 +185.220.101.133 +185.4.135.135 +185.4.132.183 +185.4.132.135 +184.105.220.24 +94.142.241.194 +171.25.193.78 +171.25.193.25 +82.68.49.227 +199.195.249.82 +104.244.76.245 +35.0.127.52 +71.19.144.89 +54.39.16.73 +193.218.118.125 +193.218.118.145 +185.233.100.23 +145.239.92.26 +51.75.64.187 +51.195.148.18 +139.99.171.51 +51.79.160.138 +217.182.192.217 +93.93.46.180 +145.239.82.87 +91.219.236.83 +205.185.127.217 +205.185.116.126 +209.141.54.153 +185.220.102.250 +185.220.102.252 +185.220.102.251 +185.220.102.253 +185.220.102.254 +185.220.102.249 +185.220.102.248 +45.137.184.31 +51.83.139.55 +51.83.139.56 +104.248.88.112 +23.141.240.206 +185.38.175.72 +192.166.245.176 +95.198.34.204 +90.235.162.34 +90.235.157.219 +95.195.94.75 +95.204.85.149 +90.235.220.51 +95.204.205.216 +95.198.35.154 +95.195.73.78 +90.235.173.164 +95.194.87.41 +90.235.175.242 +95.204.158.175 +95.195.29.84 +95.204.219.192 +23.160.208.245 +74.82.47.194 +144.168.164.26 +45.141.159.63 +185.195.237.25 +46.249.59.113 +185.107.47.171 +185.107.47.215 +185.107.70.202 +179.43.160.237 +179.43.160.234 +179.43.160.235 +179.43.160.238 +179.43.160.236 +139.28.36.20 +45.119.203.170 +104.244.77.95 +51.91.8.125 +199.19.226.123 +178.17.170.60 +212.60.5.220 +54.38.22.61 +84.53.225.118 +185.248.160.65 +107.189.10.119 +51.38.162.232 +87.122.215.210 +87.122.214.178 +87.123.85.138 +87.123.88.3 +87.123.84.174 +87.123.63.195 +87.122.219.2 +87.122.223.210 +87.123.90.33 +87.123.50.107 +87.123.57.146 +104.149.141.66 +199.195.250.148 +45.154.255.74 +78.40.217.86 +45.154.255.66 +45.154.255.71 +45.154.255.75 +45.154.255.73 +45.154.255.67 +45.154.255.72 +45.154.255.70 +45.154.255.68 +45.154.255.69 +193.239.232.102 +109.70.100.52 +109.70.100.49 +109.70.100.51 +109.70.100.50 +23.160.208.246 +23.160.208.247 +23.160.208.248 +23.160.208.249 +23.160.208.250 +51.195.166.160 +176.123.5.15 +176.123.5.140 +104.244.79.241 +192.138.210.23 +128.31.0.13 +142.44.133.80 +217.170.206.192 +219.91.110.131 +89.34.27.37 +104.244.76.170 +45.154.168.201 +88.80.20.86 +45.133.192.39 +210.114.1.172 +199.249.230.67 +199.249.230.178 +199.249.230.66 +199.249.230.179 +199.249.230.73 +199.249.230.177 +199.249.230.116 +199.249.230.88 +199.249.230.150 +199.249.230.72 +199.249.230.161 +199.249.230.176 +199.249.230.86 +199.249.230.69 +199.249.230.155 +199.249.230.111 +199.249.230.175 +199.249.230.112 +199.249.230.110 +199.249.230.78 +199.249.230.87 +184.105.146.50 +147.135.105.62 +178.175.148.148 +82.221.131.102 +205.185.114.133 +118.163.74.160 +185.220.101.15 +217.100.113.174 +185.142.239.49 +178.17.170.116 +178.17.171.124 +27.122.59.86 +217.94.242.128 +111.69.49.122 +51.77.210.201 +111.69.49.124 +82.118.23.32 +185.220.102.241 +185.220.102.245 +185.220.102.246 +185.220.102.244 +185.220.102.247 +185.220.102.243 +185.220.102.242 +185.220.102.240 +51.210.34.150 +198.98.54.170 +193.239.232.101 +46.166.129.156 +185.29.8.145 +103.249.28.195 +5.206.224.64 +205.185.126.177 +178.17.171.135 +178.17.174.224 +144.172.118.2 +38.81.163.2 +144.172.118.3 +38.81.163.3 +212.69.166.122 +51.83.129.84 +71.19.154.84 +51.83.131.234 +89.144.12.17 +64.113.32.29 +185.205.210.245 +163.172.29.30 +104.244.77.158 +198.98.50.112 +37.228.129.5 +45.79.144.222 +91.219.236.31 +204.17.56.42 +189.132.25.94 +189.131.202.44 +189.131.192.235 +189.132.27.158 +189.131.235.125 +189.131.254.186 +46.167.244.251 +209.141.45.183 +104.244.78.67 +199.195.251.110 +5.2.78.69 +185.121.69.40 +109.70.100.53 +109.70.100.56 +109.70.100.58 +109.70.100.59 +109.70.100.60 +185.121.69.41 +185.121.69.42 +109.70.100.55 +109.70.100.54 +109.70.100.57 +185.121.69.16 +198.98.58.66 +185.100.87.135 +209.141.46.38 +198.251.83.73 +198.251.89.99 +185.220.101.211 +194.39.127.40 +87.120.254.114 +216.186.250.53 +83.97.20.99 +185.10.68.231 +83.97.20.248 +185.10.68.66 +83.97.20.101 +83.97.20.98 +83.97.20.100 +83.97.20.245 +45.151.167.10 +185.248.160.21 +51.15.59.15 +67.163.135.106 +93.95.226.147 +198.251.89.29 +198.251.89.198 +209.141.40.46 +92.246.84.133 +107.189.10.40 +93.188.161.145 +205.185.124.200 +193.218.118.240 +193.19.167.21 +185.25.51.120 +130.225.244.90 +193.148.70.4 +104.244.74.28 +104.244.76.39 +198.98.52.75 +45.95.235.86 +176.107.179.147 +185.113.140.155 +185.34.33.2 +198.98.52.119 +35.198.1.137 +77.109.191.140 +31.220.40.237 +31.220.40.236 +91.219.238.207 +82.129.8.4 +31.220.40.239 +31.220.40.238 +79.124.60.174 +94.100.28.179 +91.192.103.7 +91.192.103.6 +192.34.80.176 +198.54.128.76 +198.54.128.78 +198.54.128.108 +83.220.173.21 +185.239.238.27 +176.58.121.177 +172.106.0.67 +213.198.67.46 +192.138.210.125 +83.97.20.39 +188.214.128.78 +159.148.186.196 +163.172.43.109 +37.187.105.104 +193.176.86.123 +93.103.89.179 +31.220.2.132 +45.154.35.210 +45.154.35.216 +45.154.35.212 +45.154.35.222 +45.154.35.219 +45.154.35.218 +45.154.35.213 +45.154.35.236 +45.154.35.214 +45.154.35.211 +45.154.35.221 +45.154.35.235 +45.154.35.217 +45.154.35.220 +45.154.35.215 +31.220.2.108 +31.220.2.107 +91.192.103.9 +91.192.103.8 +209.141.38.163 +178.174.176.12 +146.59.155.27 +198.251.80.252 +128.199.133.186 +94.140.115.207 +31.220.2.223 +31.220.2.222 +185.112.144.119 +107.172.157.191 +51.210.80.127 +31.31.74.47 +91.219.238.226 +54.38.52.137 +178.17.171.82 +217.182.78.180 +51.77.58.144 +178.17.171.115 +51.68.143.212 +200.122.181.2 +185.140.53.4 +185.140.53.3 +185.140.53.10 +185.140.53.6 +185.140.53.5 +185.140.53.9 +185.140.53.8 +185.140.53.7 +51.83.187.201 +198.98.55.233 +199.195.250.42 +31.220.40.240 +31.220.40.241 +51.210.243.173 +146.59.158.228 +51.75.52.118 +172.106.18.163 +141.105.66.241 +193.218.118.90 +205.185.121.235 +31.220.40.163 +31.220.1.169 +193.218.118.100 +92.222.221.49 +51.178.83.144 +31.7.61.190 +31.7.61.186 +31.7.61.187 +31.7.61.189 +31.7.61.188 +92.223.93.145 +185.222.202.218 +185.25.50.216 +51.15.1.221 +45.67.229.97 +45.142.215.104 +194.5.96.60 +51.255.106.85 +213.202.218.70 +31.220.1.233 +31.220.1.170 +198.98.60.90 +93.171.208.194 +136.144.41.148 +84.53.192.243 +141.98.9.87 +209.236.75.4 +5.2.79.145 +209.141.38.34 +209.141.38.108 +23.120.182.115 +209.141.58.50 +185.220.101.219 +185.220.101.218 +185.220.101.220 +185.220.101.217 +185.220.101.150 +18.134.246.87 +193.31.24.154 +101.99.90.171 +91.192.103.15 +91.192.103.16 +31.220.0.202 +31.220.0.203 +54.38.208.13 +178.17.174.164 +201.27.107.115 +189.18.122.139 +179.174.32.166 +31.220.0.249 +91.192.103.24 +91.192.103.17 +176.123.7.102 +83.97.20.159 +51.68.197.174 +51.79.74.205 +34.96.248.115 +46.105.171.109 +45.91.101.18 +185.186.77.133 +78.36.197.146 +91.192.103.26 +91.192.103.25 +45.154.255.147 +45.144.30.4 +185.82.217.39 +176.74.218.175 +195.123.212.131 +195.123.209.144 +195.123.247.40 +91.208.184.84 +172.105.102.219 +178.17.171.154 +199.192.20.35 +205.185.123.96 +152.89.244.58 +82.165.126.97 +178.250.157.177 +201.80.45.116 +45.154.168.147 +45.154.168.146 +31.220.2.100 +193.218.118.135 +95.81.17.95 +31.29.44.80 +149.224.55.31 +31.172.104.229 +84.46.1.149 +149.224.246.16 +149.224.241.236 +84.46.4.114 +149.224.25.207 +95.81.2.110 +81.25.170.9 +149.224.63.162 +23.120.182.124 +23.120.182.125 +91.192.103.33 +91.192.103.34 +23.120.182.123 +209.141.46.175 +91.3.126.183 +209.141.38.148 +51.178.51.228 +51.178.49.100 +51.178.49.24 +51.178.49.30 +51.178.48.23 +51.178.48.212 +51.178.51.133 +51.178.51.32 +51.178.51.223 +51.178.51.79 +51.178.49.192 +51.178.50.70 +51.178.50.200 +51.178.49.229 +51.178.51.142 +51.178.49.157 +51.178.51.61 +51.178.49.171 +51.178.48.248 +51.178.48.2 +51.178.50.164 +51.178.51.125 +51.178.49.65 +51.178.51.10 +51.178.49.135 +51.178.50.205 +51.178.49.12 +51.178.50.24 +51.178.50.169 +51.178.51.187 +78.94.74.70 +145.239.82.102 +145.239.82.168 +145.239.82.229 +145.239.82.147 +145.239.82.142 +185.220.101.151 +193.3.44.156 +193.3.44.223 +193.3.44.197 +193.3.44.73 +193.3.44.196 +193.3.44.151 +193.3.44.113 +193.3.44.55 +193.3.44.173 +193.3.44.121 +193.3.44.115 +193.3.44.16 +193.3.44.64 +193.3.44.152 +193.3.44.102 +193.3.44.91 +193.3.44.159 +193.3.44.71 +193.3.44.221 +193.3.44.33 +193.3.44.21 +193.3.44.181 +193.3.44.251 +193.3.44.112 +193.3.44.106 +193.3.44.220 +193.3.44.203 +193.3.44.129 +193.3.44.224 +193.3.44.12 +193.3.44.239 +193.3.44.200 +193.3.44.82 +193.3.44.56 +193.3.44.130 +193.3.44.63 +193.3.44.38 +193.3.44.227 +193.3.44.189 +193.3.44.67 +193.3.44.183 +193.3.44.195 +193.3.44.111 +193.3.44.209 +193.3.44.54 +193.3.44.192 +193.3.44.97 +193.3.44.79 +193.3.44.103 +193.3.44.20 +193.3.44.13 +193.3.44.17 +193.3.44.72 +193.3.44.208 +193.3.44.117 +193.3.44.35 +193.3.44.98 +193.3.44.2 +193.3.44.18 +193.3.44.99 +193.3.44.185 +193.3.44.39 +193.3.44.95 +193.3.44.204 +193.3.44.34 +193.3.44.254 +193.3.44.96 +193.3.44.228 +193.3.44.167 +193.3.44.144 +193.3.44.178 +193.3.44.25 +193.3.44.83 +193.3.44.36 +193.3.44.164 +193.3.44.120 +193.3.44.171 +193.3.44.202 +193.3.44.210 +193.3.44.44 +193.3.44.155 +193.3.44.180 +193.3.44.161 +193.3.44.157 +193.3.44.5 +193.3.44.30 +193.3.44.138 +193.3.44.184 +193.3.44.89 +193.3.44.149 +193.3.44.245 +193.3.44.193 +193.3.44.42 +193.3.44.206 +193.3.44.179 +193.3.44.132 +193.3.44.168 +193.3.44.58 +193.3.44.153 +193.3.44.24 +193.3.44.186 +193.3.44.32 +193.3.44.230 +193.3.44.231 +193.3.44.119 +193.3.44.108 +193.3.44.150 +193.3.44.51 +193.3.44.80 +193.3.44.66 +193.3.44.252 +193.3.44.165 +193.3.44.213 +193.3.44.229 +193.3.44.40 +193.3.44.212 +193.3.44.176 +193.3.44.92 +193.3.44.133 +193.218.118.235 +193.3.44.74 +193.3.44.215 +193.3.44.85 +193.3.44.57 +193.3.44.199 +193.3.44.109 +193.3.44.62 +193.3.44.160 +193.3.44.218 +193.3.44.116 +193.3.44.131 +193.3.44.101 +193.3.44.238 +193.3.44.15 +193.3.44.76 +193.3.44.241 +193.3.44.162 +193.3.44.128 +193.3.44.216 +193.3.44.170 +193.3.44.14 +193.3.44.78 +193.3.44.182 +193.3.44.61 +193.3.44.100 +193.3.44.187 +193.3.44.205 +193.3.44.105 +193.3.44.244 +193.3.44.65 +193.3.44.169 +193.3.44.146 +193.3.44.250 +193.3.44.137 +193.3.44.6 +193.3.44.235 +193.3.44.214 +193.3.44.163 +193.3.44.140 +193.3.44.148 +193.3.44.175 +193.3.44.93 +193.3.44.31 +193.3.44.174 +193.3.44.226 +193.3.44.236 +193.3.44.87 +193.3.44.247 +193.3.44.233 +193.3.44.27 +193.3.44.84 +193.3.44.77 +193.3.44.217 +193.3.44.123 +193.3.44.198 +193.3.44.246 +193.3.44.70 +193.3.44.52 +193.3.44.127 +193.3.44.190 +193.3.44.11 +193.3.44.94 +193.3.44.28 +193.3.44.166 +193.3.44.248 +193.3.44.7 +193.3.44.154 +193.3.44.135 +193.3.44.90 +193.3.44.47 +193.3.44.222 +193.3.44.81 +193.3.44.139 +193.3.44.22 +193.3.44.194 +193.3.44.3 +193.3.44.68 +193.3.44.75 +193.3.44.26 +193.3.44.201 +193.3.44.86 +193.3.44.88 +193.3.44.46 +193.3.44.23 +193.3.44.43 +193.3.44.134 +193.3.44.172 +193.3.44.110 +193.3.44.142 +193.3.44.10 +193.3.44.237 +193.3.44.147 +193.3.44.219 +193.3.44.53 +193.3.44.8 +193.3.44.145 +193.3.44.19 +193.3.44.158 +193.3.44.191 +193.3.44.107 +193.3.44.232 +193.3.44.50 +193.3.44.126 +193.3.44.143 +193.3.44.253 +193.3.44.48 +193.3.44.4 +193.3.44.9 +193.3.44.243 +193.3.44.29 +193.3.44.122 +193.3.44.207 +193.3.44.188 +193.3.44.114 +193.3.44.225 +193.3.44.242 +193.3.44.104 +193.3.44.37 +193.3.44.49 +193.3.44.118 +193.3.44.124 +193.3.44.234 +193.3.44.41 +193.3.44.141 +193.3.44.177 +193.3.44.136 +193.3.44.69 +193.3.44.59 +193.3.44.125 +193.3.44.240 +193.3.44.249 +193.3.44.60 +193.3.44.45 +193.3.44.211 +51.83.165.190 +136.144.41.157 +168.119.98.106 +136.144.41.156 +136.144.41.155 +193.218.118.30 +185.167.160.219 +178.17.174.13 +194.5.249.130 +192.248.168.159 +149.28.63.195 +141.164.58.29 +51.210.242.136 +51.210.242.135 +51.210.242.128 +51.210.243.206 +51.210.242.144 +51.210.242.212 +51.210.242.71 +51.210.242.244 +51.210.242.242 +51.210.242.130 +51.210.242.192 +51.210.242.143 +51.210.242.175 +51.210.242.177 +51.210.242.176 +51.210.242.83 +51.210.242.129 +51.210.242.131 +51.210.243.200 +51.210.242.160 +51.210.242.208 +51.210.242.100 +51.210.242.199 +51.210.243.185 +51.210.242.213 +51.210.242.133 +51.210.242.102 +51.210.242.27 +51.210.242.54 +51.222.13.24 +51.210.242.45 +51.210.242.44 +51.210.242.200 +51.210.242.114 +51.210.242.182 +51.210.242.106 +51.210.242.169 +51.210.242.57 +51.210.242.216 +51.210.242.101 +217.115.10.131 +51.210.242.117 +51.83.45.246 +67.249.107.195 +95.130.9.90 +31.220.111.214 +188.214.128.181 +51.210.242.12 +51.195.103.56 +192.248.146.74 +91.192.103.10 +91.192.103.11 +185.134.30.164 +104.244.72.152 +146.59.225.195 +51.159.169.74 +86.104.194.52 +172.105.95.212 +104.244.73.13 +172.105.106.57 +104.244.72.246 +51.210.242.30 +104.244.72.239 +193.248.220.243 +185.32.222.171 +185.32.222.172 +5.230.69.18 +140.82.25.215 +173.212.219.49 +198.144.121.93 +41.190.141.110 +185.100.87.80 +194.71.126.76 +209.141.43.66 +198.144.120.234 +198.144.120.177 +193.218.118.95 +109.248.144.77 +37.157.254.19 +194.110.113.40 +107.189.11.153 +107.189.10.243 +104.244.74.121 +185.32.222.173 +51.210.243.196 +51.75.64.21 +104.244.73.93 +45.153.160.129 +37.187.2.76 +45.153.160.130 +51.195.166.161 +51.68.215.249 +51.38.80.237 +51.89.148.169 +51.89.164.92 +51.68.215.174 +54.37.19.60 +51.38.80.133 +54.37.19.88 +51.68.215.13 +54.37.19.108 +51.38.81.211 +51.38.80.4 +51.38.82.8 +51.89.165.90 +51.38.83.96 +51.38.80.114 +54.37.19.84 +51.89.165.197 +51.89.164.89 +51.38.80.41 +51.68.212.73 +51.89.164.205 +51.68.213.247 +54.37.19.70 +51.89.148.30 +51.38.81.87 +51.68.212.168 +54.37.19.65 +51.68.212.44 +54.37.19.149 +51.89.166.108 +54.37.19.81 +51.68.213.32 +54.37.19.83 +51.38.81.109 +80.82.70.227 +185.161.209.159 +194.5.249.247 +185.100.87.61 +185.100.84.85 +194.34.132.90 +104.244.72.94 +107.189.10.245 +31.220.0.186 +81.6.43.167 +178.112.73.73 +153.127.39.196 +5.2.77.22 +142.44.156.131 +54.37.232.115 +146.59.225.194 diff --git a/cgi/weabot.py b/cgi/weabot.py index 6d8b512..7e27ca7 100755 --- a/cgi/weabot.py +++ b/cgi/weabot.py @@ -225,8 +225,15 @@ class weabot(object): self.output = renderTemplate('txt_newthread.html', {}, True) elif path_split[1] == "mobilehome": OpenDb() - latest_age = getLastAge(Settings.HOME_LASTPOSTS) - for threads in latest_age: + latest_age_ib = getLastAge(0, Settings.HOME_LASTPOSTS) + latest_age_bbs = getLastAge(1, Settings.HOME_LASTPOSTS) + for threads in latest_age_ib: + content = threads['url'] + content = content.replace('/read/', '/') + content = content.replace('/res/', '/') + content = content.replace('.html', '') + threads['url'] = content + for threads in latest_age_bbs: content = threads['url'] content = content.replace('/read/', '/') content = content.replace('/res/', '/') @@ -234,7 +241,7 @@ class weabot(object): threads['url'] = content caught = True self.output = renderTemplate( - 'latest.html', {'latest_age': latest_age}, True) + 'latest.html', {'latest_age_ib': latest_age_ib, 'latest_age_bbs': latest_age_bbs}, True) elif path_split[1] == "mobilenewest": OpenDb() newthreads = getNewThreads(Settings.HOME_LASTPOSTS) @@ -399,8 +406,10 @@ class weabot(object): def make_post(self, ip, boarddir, parent, trap1, trap2, name, email, subject, message, file, file_original, spoil, oek_file, password, noimage, mobile): _STARTTIME = time.clock() # Comment if not debug - if hostIsBanned(ip): - raise UserError, "Host en lista negra." + #if hostIsBanned(ip): + # raise UserError, "Sufijo de host en lista negra." + #if addressIsTor(ip): + # raise UserError, "Proxy prohibido." # open database OpenDb() @@ -408,9 +417,9 @@ class weabot(object): # set the board board = setBoard(boarddir) - if board["dir"] not in ["world", "bai"]: - if addressIsProxy(ip) or addressIsBannedCountry(ip): - raise UserError, "Proxy prohibido en esta sección." + #if board["dir"] not in ["world"]: + # if addressIsProxy(ip) or addressIsBannedCountry(ip) or not addressIsES(ip): + # raise UserError, "Proxy prohibido en esta sección." # check length of fields if len(name) > 50: diff --git a/static/css/dickgirl.css b/static/css/dickgirl.css index 0b991db..b33d7ef 100644 --- a/static/css/dickgirl.css +++ b/static/css/dickgirl.css @@ -2,7 +2,6 @@ html, body { background: #1b3345; color: #fff; - font-family: initial; } a, a .name, diff --git a/static/css/ib.css b/static/css/ib.css index 5e2b158..a6711bb 100644 --- a/static/css/ib.css +++ b/static/css/ib.css @@ -15,10 +15,7 @@ html { body { margin: 0; padding: 8px; - font-size: 16px; -} -blockquote { - line-height: 20px; + font-size: 11pt; } .spoil { background: #000; diff --git a/static/css/txt/sjis.css b/static/css/txt/sjis.css index 5dbcb4c..7035062 100644 --- a/static/css/txt/sjis.css +++ b/static/css/txt/sjis.css @@ -1,7 +1,8 @@ body, textarea { font-family: Mona, Monapo, IPAMonaPGothic, "MS PGothic", YOzFontAA97; + font-size: 12pt; } textarea { - font-size: 16px; + font-size: 12pt; } diff --git a/static/css/txt/vipper.css b/static/css/txt/vipper.css new file mode 100644 index 0000000..c1eb15c --- /dev/null +++ b/static/css/txt/vipper.css @@ -0,0 +1,2 @@ +.mainpage .name { color: red } +.mainpage a .name { color: blue } diff --git a/static/ico/madotsuki1.gif b/static/ico/madotsuki1.gif new file mode 100644 index 0000000..ccd0052 Binary files /dev/null and b/static/ico/madotsuki1.gif differ -- cgit v1.2.1-18-gbd029