diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index fb217e7399..deabed4c7b 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,24 @@ +2007-02-22 Sancho Lerena + + * bin/pandora_dbstress.pl: Deleted, valid one is on /util + + * util/crea_modulos_ping.php: This tool create two modules for + each existing agents. Used to create ICMP PROC and ICMP DATA + network module types to test new Network infraestructure. + + * util/lista_ip.txt: Our testing IP field :-) + + * util/agent_creator.php: This PHP console script create a bunch + of agents with it's modules (500 agents with 20 modules each by + default) to test huge environments. + + * util/pandora_dbstress.pl: Updated. + +2007-02-16 Sancho Lerena + + * pandora_db.pm: Now updates and uses utimestamp fields in + tagent_data, tagent_data_string and tagent_status. + 2007-02-01 Manuel Arostegui * pandora_server/specs/fedoracore5/pandora_server.spec: diff --git a/pandora_server/bin/pandora_dbstress.pl b/pandora_server/bin/pandora_dbstress.pl deleted file mode 100755 index b8818ccc20..0000000000 --- a/pandora_server/bin/pandora_dbstress.pl +++ /dev/null @@ -1,191 +0,0 @@ -#!/usr/bin/perl -################################################################################ -# Pandora DB Stress tool -################################################################################ -# Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com -# Copyright (c) 2005-2006 Artica Soluciones Tecnológicas S.L -# -#This program is free software; you can redistribute it and/or -#modify it under the terms of the GNU General Public License -#as published by the Free Software Foundation; either version 2 -#of the License, or (at your option) any later version. -#This program is distributed in the hope that it will be useful, -#but WITHOUT ANY WARRANTY; without even the implied warranty of -#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -#GNU General Public License for more details. -#You should have received a copy of the GNU General Public License -#along with this program; if not, write to the Free Software -#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -################################################################################ - -# Configure here target (AGENT_ID for Stress) -my $target_agent_id = 8; -my $target_interval = 60; -my $target_days = 30; - -################################################################################ -################################################################################ - -# Includes list -use strict; -use Time::Local; # DateTime basic manipulation -use DBI; # DB interface with MySQL -use Date::Manip; # Date/Time manipulation -use Math::Trig; # Math functions - -# Pandora Modules -use pandora_config; -use pandora_tools; -use pandora_db; - -################################################################################ -################################################################################ - -my $version = "1.3-dev 070216"; - -# FLUSH in each IO (only for debug, very slooow) -# ENABLED in DEBUGMODE -# DISABLE FOR PRODUCTION -$| = 0; - -my %pa_config; - -# Inicio del bucle principal de programa -pandora_init(\%pa_config,"Pandora DB Stress tool"); - -# Read config file for Global variables -pandora_loadconfig (\%pa_config,2); - -# open database, only ONCE. We pass reference to DBI handler ($dbh) to all subprocess -my $dbh = DBI->connect("DBI:mysql:pandora:$pa_config{'dbhost'}:3306",$pa_config{'dbuser'}, $pa_config{'dbpass'}, { RaiseError => 1, AutoCommit => 1 }); - -print " [*] Working for agent ID $target_agent_id \n"; -print " [*] Generating data of $target_days days ago \n"; -print " [*] Interval for this workload is $target_interval \n"; - -# For each module of $target_agent_id -my $query_idag = "select * from tagente_modulo where id_agente = $target_agent_id"; -my $s_idag = $dbh->prepare($query_idag); -$s_idag ->execute; -my @data; -# Read all alerts and apply to this incoming trap -if ($s_idag->rows != 0) { - while (@data = $s_idag->fetchrow_array()) { - # Fill this module with data ! - process_module (\%pa_config, $data[0], $target_interval, $data[4], $target_days, $data[2], $target_agent_id, $dbh); - } -} -$s_idag->finish(); -$dbh->disconnect(); -print " [*] All work done\n\n"; -# END of main proc - - -############################################################################## -# SUB process_module () -# Create a full range set of Pseudo random data for id_agente_modulo passed -# as second parameter. Depends on module_name to generate a random value -# (random) or periodic curve (cuve) values. -############################################################################## - -sub process_module(){ - my $pa_config = $_[0]; - my $id_agentemodulo = $_[1]; - my $target_interval = $_[2]; - my $target_name = $_[3]; - my $target_days = $_[4]; - my $target_type = $_[5]; - my $target_agent = $_[6]; - my $dbh = $_[7]; - - my $factor; - $target_type = dame_nombretipomodulo_idagentemodulo ($pa_config, $target_type, $dbh); - my $valor = 0; # value storage for data generation - my $a; # loopcounter - my $b; # counter - print " [*] Processing module $target_name \n"; - my $agent_name = dame_agente_nombre ($pa_config, $target_agent, $dbh); - my $err; # not used - # Init start time to now - target_days - my $fecha_actual = &UnixDate("today","%Y-%m-%d %H:%M:%S"); - my $m_timestamp = DateCalc($fecha_actual,"- $target_days days",\$err); - my $mysql_date; - - # Calculate how many iterations need to fill data range - # $target_days*min*sec / $target_interval - - my $iterations = ($target_days * 24 * 60 * 60) / $target_interval; - - print " [D] ID_AgenteMoludo $id_agentemodulo Interval $target_interval ModuleName $target_name Days $target_days Type $target_type Agent $target_agent \n"; - - open (LOG,">> pandora_dbstress.log"); - # Generate MATH/Curve data for beautiful Drawings - if ( $target_name =~ /curve/i ){ - # COS function to draw curves in a regular way - $b = 0; - $factor=rand(20); - for ($a=1;$a<$iterations;$a++){ - $valor = 1 + cos(deg2rad($b)); - $b = $b + $factor/10; - if ($b > 180){ - $b =0; - } - $m_timestamp = DateCalc($m_timestamp,"+ $target_interval seconds",\$err); - $mysql_date = &UnixDate($m_timestamp,"%Y-%m-%d %H:%M:%S"); - $valor = $valor * $b * 10; - $valor = sprintf("%.2f", $valor); - $valor =~ s/\,/\./g; - if (($a % 20) == 0) { - print "\r -> ".int($a / ($iterations / 100))."% generated for ($target_name) "; - } - pandora_lastagentcontact($pa_config, $mysql_date, $agent_name, "none","1.2", $target_interval, $dbh); - # print LOG $mysql_date, $target_name, $valor, "\n"; - pandora_writedata($pa_config,$mysql_date,$agent_name,$target_type,$target_name,$valor,0,0,"",$dbh); - pandora_writestate ($pa_config,$agent_name,$target_type,$target_name,$valor,100,$dbh); - } - } - - # Generate pseudo-random data for changing drawings - if ( $target_name =~ /random/i ){ - # Random values over line a static line - for ($a=1;$a<$iterations;$a++){ - $valor = rand(15) + rand(15) + rand(15) + rand(15) + rand(15) + rand(15); - $valor = sprintf("%.2f", $valor); - $valor =~ s/\,/\./g; - $m_timestamp = DateCalc($m_timestamp,"+ $target_interval seconds",\$err); - $mysql_date = &UnixDate($m_timestamp,"%Y-%m-%d %H:%M:%S"); - if ($a % 20 == 0) { - print "\r -> ".int($a / ($iterations / 100))."% generated for ($target_name) "; - } - pandora_lastagentcontact($pa_config, $mysql_date, $agent_name, "none","1.2", $target_interval, $dbh); - #print LOG $mysql_date, $target_name, $valor, "\n"; - pandora_writedata($pa_config,$mysql_date,$agent_name,$target_type,$target_name,$valor,0,0,"",$dbh); - pandora_writestate ($pa_config,$agent_name,$target_type,$target_name,$valor,100,$dbh); - } - - } - - # Generate pseudo-random data for boolean data - if ( $target_name =~ /boolean/i ){ - for ($a=1;$a<$iterations;$a++){ - $valor = rand(50); - if ($valor > 2){ - $valor = 1; - } else { - $valor = 0; - } - $m_timestamp = DateCalc($m_timestamp,"+ $target_interval seconds",\$err); - $mysql_date = &UnixDate($m_timestamp,"%Y-%m-%d %H:%M:%S"); - if ($a % 20 eq 0) { - print "\r -> ".int($a / ($iterations / 100))."% generated for ($target_name) "; - } - pandora_lastagentcontact($pa_config, $mysql_date, $agent_name, "none","1.2", $target_interval, $dbh); - #print LOG $mysql_date, $target_name, $valor, "\n"; - pandora_writedata($pa_config,$mysql_date,$agent_name,$target_type,$target_name,$valor,0,0,"",$dbh); - pandora_writestate ($pa_config,$agent_name,$target_type,$target_name,$valor,$valor,$dbh); - } - - } - close (LOG); - print "\n"; -} diff --git a/pandora_server/util/agent_creator.php b/pandora_server/util/agent_creator.php new file mode 100644 index 0000000000..e23ebe4edc --- /dev/null +++ b/pandora_server/util/agent_creator.php @@ -0,0 +1,43 @@ + 5) + $sql2="INSERT INTO tagente_modulo (id_agente, nombre, descripcion, id_tipo_modulo) values ( $id, 'random_$b','random_$bdesc', 1 )"; + else + $sql2="INSERT INTO tagente_modulo (id_agente, nombre, descripcion, id_tipo_modulo) values ( $id, 'curve_$b','curve_$bdesc', 1 )"; + echo $sql2; + mysql_query($sql2); + } +} + + +?> diff --git a/pandora_server/util/crea_modulos_ping.php b/pandora_server/util/crea_modulos_ping.php new file mode 100644 index 0000000000..6d77d16f1f --- /dev/null +++ b/pandora_server/util/crea_modulos_ping.php @@ -0,0 +1,42 @@ + +// +// Generador de modulos de tipo ICMP: Proc y Data para Pandora FMS 1.3 +// Toma como parametros (definidos en el codigo), el id_agente y el fichero de +// entrada con una IP por linea + +$id_agente = 1; // id del agente sobre los que colgar los modulos de PING +$id_tipo_proc = 6; // Icmp proc +$id_tipo_data = 7; // Icmp latency +$filename = "lista_ip.txt"; + +$dbname="pandora"; // MySQL DataBase +$dbuser="pandora"; // DB User +$dbpassword="pandora"; // Password +$dbhost="localhost"; // MySQL Host +if (! mysql_connect($dbhost,$dbuser,$dbpassword)){ + exit ('No conecto al MySQL'); +} +mysql_select_db("pandora"); + +if (! file_exists($filename)) + exit ( "No encuentro $filename"); + +$fichero = fopen($filename,"r"); + +$ip = ""; +echo "Let's go: "; + +while (!feof($fichero)){ + $ip = fgets($fichero); // Strip \n + $ip = substr($ip,0,strlen($ip)-1); + $sql2="INSERT INTO tagente_modulo (id_agente, nombre, descripcion, id_tipo_modulo, ip_target) values ( $id_agente, '$ip (D)','ICMP Alive', $id_tipo_proc , '$ip')"; + mysql_query($sql2); + + $sql2="INSERT INTO tagente_modulo (id_agente, nombre, descripcion, id_tipo_modulo. ip_target) values ( $id_agente, '$ip (P)','ICMP Latency', $id_tipo_data , '$ip')"; + mysql_query($sql2); + echo "."; +} + +?> diff --git a/pandora_server/util/lista_ip.txt b/pandora_server/util/lista_ip.txt new file mode 100644 index 0000000000..a1382c7e65 --- /dev/null +++ b/pandora_server/util/lista_ip.txt @@ -0,0 +1,6674 @@ +12.104.134.3 +12.104.2.130 +12.105.95.2 +12.107.158.210 +12.108.240.5 +12.110.140.110 +12.111.160.77 +121.1.149.226 +12.117.185.62 +12.118.188.114 +121.208.59.239 +12.126.226.38 +12.13.126.253 +12.148.70.158 +12.152.229.185 +12.163.8.210 +12.169.120.244 +12.169.67.49 +121.73.22.126 +12.178.36.25 +12.181.128.3 +12.182.80.235 +12.207.39.31 +12.207.68.102 +12.22.163.132 +122.24.190.182 +12.28.128.227 +12.30.60.67 +12.30.8.94 +12.34.119.12 +12.35.45.2 +12.35.96.66 +124.106.97.18 +124.120.114.246 +124.168.106.238 +124.176.112.221 +124.203.147.15 +124.21.204.161 +12.42.41.6 +124.243.199.34 +124.254.102.233 +124.254.75.216 +124.29.194.80 +124.29.197.220 +124.30.128.72 +12.43.57.218 +124.43.237.154 +12.4.60.195 +12.47.110.46 +124.81.116.6 +124.82.12.88 +12.5.1.207 +125.160.96.103 +125.16.150.4 +125.16.214.40 +125.163.18.6 +125.163.200.101 +125.172.23.158 +125.18.129.211 +125.182.14.51 +125.19.4.18 +125.19.52.178 +125.212.70.143 +125.215.128.18 +125.22.147.41 +125.238.228.140 +125.24.1.254 +125.5.41.106 +125.60.241.26 +125.60.243.20 +125.60.243.5 +125.97.4.156 +126.113.80.78 +12.6.117.146 +127.0.0.1 +12.7.177.130 +128.102.182.227 +128.111.41.161 +128.113.151.136 +128.117.192.4 +128.123.15.90 +128.138.42.57 +128.139.226.37 +128.141.27.99 +128.156.10.10 +128.174.245.163 +128.186.72.212 +128.187.0.178 +128.196.174.162 +128.214.133.2 +128.227.212.173 +128.227.39.254 +128.231.88.7 +128.233.179.155 +128.240.229.6 +128.240.229.67 +128.241.20.81 +128.241.20.82 +128.241.20.83 +128.241.20.84 +128.241.20.85 +128.241.20.86 +128.241.20.87 +128.249.96.251 +128.39.115.21 +128.97.88.70 +129.100.36.35 +129.187.15.180 +129.21.28.92 +129.230.248.1 +129.241.173.3 +129.25.13.139 +129.27.232.223 +129.35.231.17 +129.55.200.20 +129.7.138.191 +129.74.17.118 +129.74.19.19 +129.83.31.1 +129.93.140.137 +130.111.16.165 +130.111.68.145 +130.117.82.133 +130.119.248.12 +130.156.129.254 +130.179.121.48 +130.186.7.11 +130.192.112.234 +130.206.158.133 +130.206.158.162 +130.206.166.12 +130.214.40.129 +130.225.236.78 +130.234.94.150 +130.238.162.135 +130.241.20.230 +130.37.131.13 +130.37.131.14 +130.65.127.246 +130.68.4.61 +130.76.64.15 +130.88.202.43 +130.91.116.80 +131.107.0.102 +131.107.0.95 +131.107.0.96 +131.107.152.26 +131.107.152.27 +131.111.8.96 +131.112.16.140 +131.113.209.173 +131.130.120.27 +131.137.62.106 +131.146.33.208 +131.162.129.135 +131.191.30.206 +131.193.155.150 +131.225.80.2 +131.233.150.22 +131.246.191.251 +131.246.241.69 +131.252.16.17 +13.13.16.1 +13.13.16.2 +131.89.192.110 +132.167.63.150 +132.228.195.206 +132.230.35.100 +132.248.153.84 +132.248.161.152 +132.248.69.40 +132.252.149.100 +132.252.173.14 +132.254.96.2 +132.72.89.12 +132.79.14.15 +133.194.15.5 +133.27.228.132 +134.100.101.1 +134.131.125.49 +134.146.0.6 +134.159.146.133 +134.176.94.200 +134.188.4.10 +134.212.178.10 +134.2.22.113 +134.2.4.31 +134.243.209.12 +134.246.141.153 +134.50.57.61 +134.59.61.138 +134.60.112.134 +134.71.100.43 +135.12.0.34 +136.145.126.101 +136.145.126.21 +136.160.3.214 +136.2.1.101 +136.2.1.153 +136.242.12.144 +137.222.12.119 +137.251.45.243 +137.65.208.10 +137.73.122.127 +137.78.33.56 +137.87.66.100 +138.100.16.133 +138.100.9.126 +138.217.157.171 +138.220.25.25 +138.40.22.166 +138.88.68.3 +139.105.136.94 +139.142.151.254 +139.142.227.9 +139.1.44.13 +139.168.159.176 +139.17.165.156 +139.18.13.201 +139.18.13.202 +139.18.13.203 +139.18.13.204 +139.18.13.212 +139.18.2.100 +139.18.2.209 +139.18.2.214 +139.18.2.216 +139.18.2.43 +139.18.2.68 +139.18.2.81 +139.4.190.130 +140.137.11.40 +140.247.115.206 +141.11.234.60 +141.113.86.23 +141.150.247.246 +141.19.230.37 +141.211.67.239 +141.225.200.118 +141.227.5.1 +141.52.234.71 +141.74.1.1 +141.82.16.242 +141.83.68.145 +142.104.96.57 +142.161.106.1 +142.161.146.222 +142.161.88.238 +142.165.132.216 +142.165.199.160 +142.167.209.131 +142.176.141.50 +142.179.146.63 +142.213.178.23 +142.242.2.248 +142.245.193.10 +142.245.193.9 +142.245.59.3 +142.46.210.11 +142.47.248.3 +143.100.37.13 +143.107.209.237 +143.166.226.43 +143.166.255.40 +143.192.1.150 +143.192.1.163 +143.53.1.29 +143.81.252.13 +144.120.8.78 +144.131.134.245 +144.139.177.137 +144.160.98.31 +144.5.224.142 +144.75.5.43 +144.92.72.94 +144.94.0.4 +145.118.128.65 +145.18.143.251 +145.221.24.8 +145.221.52.70 +145.222.133.254 +145.222.176.10 +145.253.2.22 +145.253.2.29 +145.253.32.51 +145.46.220.6 +145.52.128.129 +145.52.129.154 +145.64.134.242 +145.76.9.10 +145.99.233.7 +146.102.104.243 +146.133.9.140 +146.145.131.253 +146.155.2.242 +146.165.34.102 +146.171.16.8 +146.83.152.27 +147.160.136.10 +147.162.231.115 +147.210.18.6 +147.232.26.26 +147.243.216.4 +147.32.89.65 +147.32.92.197 +147.66.131.10 +147.83.181.24 +147.83.198.136 +147.83.198.188 +147.83.204.130 +147.84.200.81 +147.84.200.85 +147.91.1.41 +147.91.1.45 +148.129.74.40 +148.202.167.49 +148.202.97.96 +148.208.201.100 +148.211.3.20 +148.215.22.63 +148.216.21.161 +148.221.17.189 +148.221.17.61 +148.221.42.82 +148.223.128.30 +148.223.198.2 +148.226.93.3 +148.228.125.97 +148.233.159.24 +148.233.210.32 +148.233.2.231 +148.233.65.140 +148.235.36.89 +148.243.121.20 +148.244.79.94 +148.245.156.98 +148.245.224.249 +148.245.43.108 +148.245.43.113 +148.78.246.241 +148.81.172.234 +148.87.1.172 +149.101.1.124 +149.153.4.101 +149.156.180.132 +149.199.62.254 +149.77.163.169 +149.9.0.27 +150.101.110.63 +150.101.115.188 +150.101.221.146 +150.101.221.203 +150.108.5.126 +150.131.128.98 +150.140.140.91 +150.162.27.56 +150.187.92.59 +150.203.4.57 +150.244.101.122 +150.61.31.119 +151.13.7.18 +151.145.232.92 +151.189.1.211 +151.193.220.27 +151.37.228.193 +151.38.143.126 +151.42.108.193 +151.44.130.233 +151.44.134.20 +151.47.227.20 +151.47.4.72 +151.48.103.136 +151.50.240.148 +151.51.121.211 +151.56.115.33 +151.8.14.130 +151.8.25.4 +151.89.15.211 +151.9.34.199 +15.195.185.76 +151.99.182.114 +15.203.137.76 +152.118.24.10 +15.219.201.69 +152.2.44.10 +152.34.87.98 +15.235.153.104 +15.243.169.69 +15.243.169.70 +15.243.169.73 +152.65.128.48 +152.74.21.113 +153.19.129.210 +154.20.166.181 +155.104.37.18 +155.136.80.160 +155.210.13.127 +155.210.13.128 +155.210.13.134 +155.210.13.142 +155.210.13.225 +155.210.13.68 +155.210.13.70 +155.210.13.77 +155.210.13.98 +155.210.47.63 +155.210.47.74 +155.210.47.76 +155.210.47.86 +155.210.60.129 +155.210.68.222 +155.210.86.60 +155.212.27.154 +155.212.72.82 +155.232.250.19 +155.232.250.35 +155.232.250.51 +155.35.46.11 +155.35.46.12 +155.56.68.220 +155.70.141.45 +155.92.193.21 +156.35.192.2 +156.35.192.4 +157.100.210.82 +157.100.50.178 +157.127.124.15 +157.138.20.91 +158.102.160.13 +158.102.162.6 +158.102.226.42 +158.109.167.56 +158.109.192.25 +158.125.1.113 +158.227.105.54 +158.227.75.88 +158.251.6.73 +158.42.165.40 +158.49.98.81 +158.91.214.245 +159.134.11.112 +159.191.12.25 +159.226.99.4 +159.237.12.82 +159.33.10.92 +159.50.203.8 +159.52.64.118 +159.87.116.4 +159.90.200.61 +160.228.152.6 +160.33.43.30 +160.62.4.10 +160.84.253.241 +160.85.104.90 +160.9.41.117 +161.116.1.239 +161.116.1.4 +161.116.1.66 +161.116.1.77 +161.116.19.2 +161.116.2.134 +161.134.39.30 +161.148.65.88 +161.215.18.51 +161.225.1.12 +161.226.4.6 +161.51.11.2 +161.53.17.134 +161.67.15.185 +161.71.121.46 +161.85.127.140 +161.85.127.153 +162.89.0.61 +162.95.80.214 +163.117.1.134 +163.117.80.80 +163.191.134.152 +163.23.222.104 +163.247.49.11 +163.247.62.121 +163.27.117.193 +163.29.171.1 +164.100.28.2 +164.107.46.230 +164.115.9.30 +164.140.159.143 +164.165.30.169 +164.214.4.62 +164.67.195.201 +164.67.195.67 +164.67.195.86 +164.73.208.30 +164.77.202.10 +164.77.210.162 +164.77.212.242 +164.77.238.114 +164.77.246.178 +164.77.255.200 +164.77.96.167 +165.118.1.50 +165.160.2.20 +165.170.128.65 +165.182.186.131 +165.201.5.7 +165.206.169.155 +165.21.154.10 +165.21.154.108 +165.21.154.109 +165.21.154.110 +165.21.154.111 +165.21.154.113 +165.21.154.114 +165.21.154.115 +165.21.154.116 +165.21.154.117 +165.21.154.14 +165.21.154.15 +165.21.154.16 +165.21.154.68 +165.21.154.69 +165.21.154.70 +165.21.154.71 +165.21.154.73 +165.21.154.74 +165.21.154.77 +165.21.155.10 +165.21.155.11 +165.21.155.12 +165.21.155.13 +165.21.155.14 +165.21.155.15 +165.21.155.16 +165.21.155.17 +165.21.155.8 +165.21.155.9 +165.228.124.102 +165.248.247.131 +165.72.200.10 +165.72.200.11 +166.114.125.158 +166.121.36.7 +166.214.141.48 +166.214.81.123 +166.77.6.4 +167.10.240.1 +167.112.135.3 +167.121.8.1 +167.206.125.124 +167.219.0.140 +168.187.206.206 +168.202.85.230 +168.209.98.43 +168.209.98.44 +168.224.32.15 +168.234.203.126 +168.243.233.178 +168.243.9.253 +168.28.200.6 +168.73.245.65 +168.8.249.175 +168.96.144.33 +170.140.58.114 +170.148.10.46 +170.155.1.10 +170.155.145.1 +170.224.163.2 +170.252.72.61 +170.66.1.155 +171.159.192.10 +171.161.160.10 +171.16.2.1 +171.16.2.2 +171.16.2.3 +171.16.2.4 +171.16.2.5 +171.16.2.6 +171.16.2.7 +171.16.2.8 +171.19.200.235 +172.128.149.116 +172.161.39.225 +172.179.195.32 +18.239.1.78 +189.128.72.99 +189.129.8.27 +189.130.211.149 +189.130.38.49 +189.130.69.178 +189.131.34.45 +189.131.70.40 +189.132.226.180 +189.132.37.232 +189.133.14.87 +189.134.9.193 +189.135.33.12 +189.135.47.86 +189.135.85.29 +189.136.141.123 +189.136.22.144 +189.136.67.243 +189.138.15.20 +189.138.78.14 +189.139.69.240 +189.139.90.158 +189.139.90.253 +189.140.152.13 +189.140.162.160 +189.141.102.231 +189.141.122.58 +189.141.124.158 +189.141.98.210 +189.142.105.208 +189.142.133.87 +189.142.34.217 +189.142.45.51 +189.142.46.176 +189.142.47.210 +189.142.52.23 +189.142.55.130 +189.142.61.40 +189.142.66.148 +189.142.67.179 +189.142.80.87 +189.143.23.212 +189.143.83.217 +189.144.18.121 +189.144.31.195 +189.145.151.215 +189.145.168.139 +189.145.191.175 +189.145.221.218 +189.145.23.34 +189.145.96.137 +189.145.96.8 +189.145.97.209 +189.149.55.35 +189.150.1.58 +189.150.5.99 +189.155.142.109 +189.155.57.197 +189.155.69.232 +189.155.84.140 +189.155.99.3 +189.156.28.62 +189.157.174.228 +189.158.171.227 +189.158.60.4 +189.158.7.81 +189.159.49.23 +189.161.74.96 +189.162.31.177 +189.162.44.19 +189.163.231.16 +189.163.47.248 +189.163.49.172 +189.163.50.211 +189.163.52.125 +189.163.54.125 +189.163.56.203 +189.163.57.48 +189.163.58.93 +189.163.59.13 +189.163.60.173 +189.163.61.79 +189.163.68.5 +189.163.82.98 +189.164.158.202 +189.166.110.215 +189.166.139.216 +189.166.149.128 +189.166.16.32 +189.166.180.161 +189.166.80.155 +189.167.15.29 +189.168.23.239 +189.169.144.139 +189.172.52.210 +189.173.37.16 +189.174.0.131 +189.174.89.68 +189.177.0.227 +189.177.2.168 +189.177.2.216 +189.177.3.113 +190.0.147.42 +190.0.26.129 +190.0.8.254 +190.10.190.177 +190.1.10.61 +190.142.68.124 +190.16.18.44 +190.2.152.126 +190.24.34.83 +190.24.82.3 +190.30.84.242 +190.3.13.82 +190.3.3.2 +190.36.178.222 +190.38.146.35 +190.40.175.136 +190.40.181.28 +190.40.77.76 +190.41.145.29 +190.41.175.72 +190.42.4.20 +190.44.7.23 +190.48.13.101 +190.48.223.214 +190.48.65.152 +190.48.65.79 +190.48.68.30 +190.48.72.240 +190.49.225.252 +190.50.133.82 +190.52.140.57 +190.55.42.233 +190.60.4.149 +190.6.195.37 +190.64.118.102 +190.64.1.228 +190.64.37.139 +190.64.74.131 +190.7.28.45 +190.7.30.12 +190.74.151.142 +190.74.47.134 +190.75.111.216 +190.75.28.177 +190.76.2.180 +190.84.255.103 +192.100.158.245 +192.102.214.6 +192.114.148.35 +192.114.167.66 +192.115.100.11 +192.117.113.14 +192.118.48.248 +192.118.68.5 +192.128.134.68 +192.135.19.77 +192.135.19.97 +192.136.15.181 +192.139.21.252 +192.139.217.22 +192.168.11.243 +192.168.50.1 +192.168.50.100 +192.168.50.102 +192.168.50.103 +192.168.50.104 +192.168.50.112 +192.168.50.113 +192.168.50.115 +192.168.50.121 +192.168.50.124 +192.168.50.126 +192.168.50.130 +192.168.50.132 +192.168.50.134 +192.168.50.142 +192.168.50.150 +192.168.50.2 +192.168.50.22 +192.168.50.3 +192.168.5.100 +192.168.5.2 +192.168.5.3 +192.168.60.2 +192.168.60.3 +192.168.60.4 +192.168.60.5 +192.168.6.1 +192.168.6.2 +192.17.240.41 +192.17.240.42 +192.17.240.43 +192.17.240.53 +192.17.240.79 +192.17.240.81 +192.193.220.201 +192.193.221.142 +192.193.221.201 +192.195.66.44 +192.195.66.45 +192.197.178.2 +192.197.213.245 +192.198.152.98 +192.207.230.17 +192.211.123.6 +192.216.236.65 +192.23.164.17 +192.234.135.41 +192.35.246.5 +192.35.35.34 +192.54.144.226 +192.58.229.21 +192.67.134.141 +192.68.211.161 +192.77.115.33 +192.85.47.1 +192.87.49.2 +192.88.158.50 +192.91.173.36 +192.92.134.94 +192.94.94.105 +193.0.241.41 +193.0.71.8 +193.10.118.205 +193.108.177.97 +193.108.233.65 +193.109.179.62 +193.109.251.41 +193.111.70.131 +193.113.57.161 +193.113.57.163 +193.118.203.3 +193.125.78.210 +193.126.38.192 +193.126.56.49 +193.130.127.25 +193.132.80.21 +193.134.76.171 +193.135.254.166 +193.136.128.7 +193.136.157.71 +193.136.232.3 +193.137.78.252 +193.144.12.130 +193.144.127.11 +193.144.127.144 +193.144.127.230 +193.144.127.250 +193.144.127.251 +193.144.40.86 +193.144.41.85 +193.144.44.197 +193.144.77.230 +193.144.79.106 +193.144.89.8 +193.145.218.29 +193.146.11.225 +193.146.142.226 +193.146.157.2 +193.146.38.128 +193.146.43.6 +193.146.95.50 +193.147.143.1 +193.147.150.201 +193.147.219.225 +193.147.2.2 +193.147.239.254 +193.147.25.160 +193.147.60.243 +193.147.71.90 +193.148.246.4 +193.148.35.14 +193.148.96.129 +193.150.206.10 +193.151.31.253 +193.15.192.157 +193.161.127.3 +193.16.216.68 +193.16.216.89 +193.164.224.209 +193.165.208.168 +193.165.73.21 +193.167.78.213 +193.168.50.8 +193.17.11.20 +193.172.8.38 +193.173.30.67 +193.178.155.100 +193.178.155.99 +193.178.208.6 +193.178.209.215 +193.179.186.98 +193.179.220.253 +193.188.105.23 +193.190.145.92 +193.190.223.130 +193.190.238.226 +193.195.180.1 +193.195.77.179 +193.195.79.164 +193.196.64.6 +193.198.167.190 +193.201.114.177 +193.201.114.99 +193.202.22.50 +193.205.218.188 +193.206.236.11 +193.2.100.4 +193.210.47.242 +193.218.90.23 +193.218.90.26 +193.219.28.146 +193.219.74.98 +193.222.134.230 +193.226.161.186 +193.226.239.62 +193.226.250.86 +193.228.97.66 +193.229.159.15 +193.229.159.16 +193.230.177.171 +193.230.201.246 +193.230.236.253 +193.231.32.241 +193.239.179.91 +193.239.254.33 +193.242.112.251 +193.242.9.68 +193.246.96.102 +193.2.47.5 +193.251.51.39 +193.251.74.8 +193.251.78.123 +193.252.38.80 +193.252.49.114 +193.254.155.48 +193.255.255.102 +193.26.128.145 +193.27.202.141 +193.29.186.1 +193.30.239.6 +193.41.142.2 +193.44.157.80 +193.47.80.37 +193.47.80.41 +193.47.80.94 +193.49.124.107 +193.52.39.1 +193.55.147.106 +193.55.87.79 +193.58.129.246 +193.58.223.71 +193.58.46.226 +193.6.17.178 +193.72.75.4 +193.75.212.66 +193.77.102.196 +193.77.222.223 +193.77.255.58 +193.77.91.243 +193.79.99.253 +193.80.191.131 +193.81.10.138 +193.86.2.162 +193.92.8.121 +193.94.60.55 +193.95.76.205 +193.99.213.5 +194.0.113.146 +194.100.213.252 +194.100.248.158 +194.100.6.2 +194.105.245.11 +194.106.17.242 +194.108.109.90 +194.109.163.36 +194.109.163.45 +194.113.59.80 +194.114.62.68 +194.1.157.141 +194.117.22.137 +194.117.24.10 +194.121.11.18 +194.121.11.21 +194.121.232.203 +194.122.200.218 +194.123.36.62 +194.125.96.57 +194.126.117.170 +194.126.220.22 +194.127.8.17 +194.127.8.18 +194.128.85.65 +194.134.254.190 +194.138.184.5 +194.138.39.52 +194.140.160.241 +194.140.16.51 +194.140.247.8 +194.140.248.140 +194.140.58.63 +194.140.65.241 +194.144.97.26 +194.145.62.45 +194.145.62.46 +194.147.53.5 +194.149.232.85 +194.149.246.24 +194.149.73.250 +194.151.33.61 +194.152.108.206 +194.154.66.125 +194.158.74.2 +194.158.74.3 +194.159.178.180 +194.160.35.18 +194.16.178.140 +194.166.245.242 +194.173.20.2 +194.176.224.33 +194.179.126.149 +194.179.126.155 +194.179.46.116 +194.179.83.86 +194.179.83.87 +194.179.83.88 +194.183.156.4 +194.183.245.31 +194.202.236.116 +194.204.152.122 +194.205.143.136 +194.206.224.149 +194.208.69.129 +194.210.97.202 +194.214.150.109 +194.216.8.66 +194.2.232.250 +194.224.114.9 +194.224.15.34 +194.224.175.130 +194.224.186.163 +194.224.199.20 +194.224.226.202 +194.224.227.80 +194.224.71.226 +194.224.71.228 +194.228.105.97 +194.228.205.74 +194.228.69.30 +194.231.192.236 +194.231.78.69 +194.242.47.20 +194.242.48.20 +194.250.211.8 +194.250.235.224 +194.25.240.170 +194.2.91.222 +194.29.46.110 +194.29.65.17 +194.30.110.98 +194.30.128.21 +194.30.128.24 +194.30.128.28 +194.30.48.254 +194.30.62.6 +194.30.97.18 +194.3.110.38 +194.3.129.164 +194.35.219.100 +194.42.147.49 +194.42.61.10 +194.50.46.250 +194.51.2.211 +194.55.169.150 +194.59.223.8 +194.6.162.6 +194.63.235.180 +194.66.191.22 +194.70.46.66 +194.7.176.173 +194.7.182.130 +194.72.238.16 +194.72.238.61 +194.73.103.21 +194.74.0.10 +194.74.0.2 +194.74.170.222 +194.75.129.200 +194.77.2.42 +194.77.38.6 +194.7.74.197 +194.77.74.50 +194.78.25.217 +194.78.45.187 +194.78.5.130 +194.8.216.56 +194.8.223.8 +194.85.56.57 +194.8.62.72 +194.88.222.175 +194.88.223.175 +194.90.178.2 +194.95.119.139 +194.95.179.130 +194.9.6.19 +194.98.16.2 +194.98.3.74 +195.101.10.250 +195.101.208.103 +195.110.70.55 +195.113.134.228 +195.113.227.6 +195.114.45.174 +195.115.167.124 +195.115.176.250 +195.115.36.26 +195.12.8.149 +195.128.212.130 +195.129.34.43 +195.137.13.41 +195.137.75.112 +195.137.79.46 +195.14.185.53 +195.14.188.89 +195.145.220.67 +195.145.22.147 +195.146.147.82 +195.148.1.125 +195.149.108.145 +195.149.210.37 +195.149.215.221 +195.153.189.10 +195.154.79.9 +195.158.177.59 +195.158.178.49 +195.158.179.144 +195.158.48.51 +195.162.194.25 +195.167.231.117 +195.167.38.178 +195.167.60.23 +195.178.176.210 +195.188.208.240 +195.190.122.122 +195.190.165.190 +195.19.33.19 +195.194.236.118 +195.195.236.131 +195.207.101.112 +195.212.29.163 +195.212.29.171 +195.212.29.92 +195.213.43.157 +195.215.228.78 +195.22.191.234 +195.222.58.78 +195.224.166.110 +195.225.121.125 +195.226.118.36 +195.226.126.250 +195.227.76.130 +195.228.170.103 +195.229.242.84 +195.231.210.130 +195.23.159.85 +195.23.197.2 +195.23.205.54 +195.23.27.200 +195.234.144.130 +195.234.177.34 +195.234.68.27 +195.235.177.242 +195.235.188.6 +195.235.227.10 +195.235.250.106 +195.235.253.28 +195.235.255.49 +195.235.8.12 +195.235.8.51 +195.235.92.108 +195.235.92.5 +195.23.69.33 +195.239.199.126 +195.23.98.105 +195.24.202.249 +195.244.166.2 +195.245.185.32 +195.245.248.24 +195.245.68.8 +195.248.175.46 +195.251.144.29 +195.25.242.252 +195.26.165.62 +195.28.173.232 +195.28.224.33 +195.28.68.146 +195.29.148.159 +195.31.220.150 +195.3.254.128 +195.33.105.17 +195.33.129.150 +195.35.171.166 +195.35.216.194 +195.37.166.1 +195.37.69.11 +195.38.117.164 +195.3.81.25 +195.38.126.217 +195.38.64.224 +195.39.217.130 +195.4.42.214 +195.46.140.158 +195.47.113.56 +195.4.86.193 +195.50.175.178 +195.5.29.24 +195.53.123.138 +195.5.37.132 +195.55.133.4 +195.55.247.227 +195.55.91.129 +195.56.214.143 +195.56.54.30 +195.57.11.77 +195.57.146.173 +195.58.124.197 +195.58.30.9 +195.62.226.201 +195.64.85.251 +195.65.71.45 +195.66.150.52 +195.66.233.102 +195.6.68.65 +195.67.111.34 +195.68.192.74 +195.69.123.169 +195.6.96.213 +195.70.61.55 +195.72.82.2 +195.7.32.139 +195.76.67.14 +195.76.86.245 +195.76.89.37 +195.76.89.43 +195.77.201.5 +195.78.44.156 +195.78.4.70 +195.78.52.102 +195.78.6.230 +195.80.165.61 +195.83.89.132 +195.83.89.189 +195.85.249.110 +195.8.70.48 +195.90.10.193 +195.90.124.35 +195.92.225.85 +195.95.234.13 +195.96.201.10 +195.98.50.58 +195.98.63.111 +196.15.16.20 +196.192.40.12 +196.201.73.11 +196.202.232.80 +196.203.176.30 +196.203.177.124 +196.205.163.253 +196.207.32.38 +196.207.37.131 +196.209.251.2 +196.209.253.3 +196.209.254.2 +196.217.147.237 +196.217.203.147 +196.217.38.127 +196.25.16.54 +196.25.255.194 +196.25.255.195 +196.25.255.210 +196.25.255.246 +196.25.255.250 +196.25.56.132 +196.27.73.250 +196.29.239.9 +196.31.11.50 +196.31.195.11 +196.35.5.145 +196.3.60.230 +196.41.30.38 +196.45.16.7 +196.4.53.132 +196.46.138.2 +198.103.167.20 +198.103.221.51 +198.103.223.51 +198.108.48.59 +198.110.207.90 +198.133.214.130 +198.140.63.116 +198.143.222.252 +198.144.205.66 +198.146.155.102 +198.150.96.50 +198.151.13.8 +198.155.189.88 +198.16.9.11 +198.169.189.225 +198.169.189.226 +198.174.192.180 +198.177.158.254 +198.181.8.254 +198.189.123.138 +198.204.92.115 +198.205.33.93 +198.207.223.237 +198.226.105.120 +198.247.174.254 +198.248.144.56 +198.54.202.194 +198.54.202.195 +198.54.202.210 +198.54.202.226 +198.54.202.234 +198.54.202.246 +198.54.202.250 +198.54.206.91 +198.66.93.130 +198.74.20.118 +198.96.134.61 +199.107.162.165 +199.111.95.152 +199.20.31.52 +199.203.172.254 +199.21.28.14 +199.222.139.241 +199.222.140.139 +199.2.248.100 +199.239.9.205 +199.243.123.4 +199.243.136.34 +199.243.239.13 +199.244.214.30 +199.249.205.165 +199.253.174.9 +199.26.150.250 +199.43.182.222 +199.43.48.129 +199.43.48.131 +199.46.198.230 +199.46.198.232 +199.46.198.233 +199.46.198.234 +199.46.198.237 +199.46.199.232 +199.46.199.234 +199.46.199.237 +199.46.200.233 +199.46.200.238 +199.67.138.83 +199.67.203.141 +199.72.169.122 +200.102.210.80 +200.10.221.112 +200.10.236.163 +200.103.96.98 +200.104.127.81 +200.104.150.89 +200.104.3.59 +200.105.153.50 +200.105.165.73 +200.105.231.66 +200.105.232.146 +200.106.216.7 +200.106.232.132 +200.106.43.14 +200.106.89.16 +200.107.11.139 +200.107.33.93 +200.107.43.213 +200.108.136.35 +200.108.198.137 +200.109.12.134 +200.109.151.180 +200.110.201.150 +200.110.71.14 +200.1.117.15 +200.11.197.110 +200.112.140.53 +200.112.226.209 +200.112.45.178 +200.113.26.55 +200.115.242.182 +200.117.141.121 +200.117.150.209 +200.117.190.66 +200.117.22.190 +200.117.53.214 +200.117.59.206 +200.118.220.121 +200.1.200.3 +200.120.123.49 +200.121.34.50 +200.121.52.107 +200.121.66.3 +200.122.130.197 +200.122.155.154 +200.12.229.226 +200.123.150.117 +200.123.150.129 +200.123.164.97 +200.123.167.225 +200.123.88.223 +200.124.167.220 +200.124.175.60 +200.124.235.1 +200.125.126.214 +200.125.130.34 +200.125.16.218 +200.125.41.116 +200.125.43.36 +200.126.109.237 +200.126.113.152 +200.126.165.233 +200.127.56.242 +200.127.62.165 +200.13.172.148 +200.13.22.114 +200.13.225.130 +200.13.227.42 +200.13.30.129 +200.133.215.2 +200.135.33.247 +200.136.247.101 +200.137.205.230 +200.138.150.68 +200.139.161.81 +200.141.163.5 +200.142.125.251 +200.142.126.94 +200.14.237.50 +200.14.253.216 +200.142.58.18 +200.142.58.20 +200.142.78.18 +200.148.204.66 +200.152.196.44 +200.157.32.153 +200.157.34.16 +200.157.7.185 +200.158.76.214 +200.159.254.190 +200.159.254.191 +200.159.41.66 +200.160.175.194 +200.161.114.167 +200.16.167.12 +200.162.213.184 +200.162.25.66 +200.162.36.226 +200.164.107.28 +200.164.145.209 +200.168.147.58 +200.169.18.188 +200.171.247.60 +200.175.226.27 +200.175.44.1 +200.177.213.187 +200.179.66.230 +200.180.36.130 +200.180.7.206 +200.182.98.12 +200.183.174.2 +200.184.142.66 +200.186.138.196 +200.186.157.217 +200.186.32.226 +200.189.112.20 +200.190.195.210 +200.193.150.235 +200.193.54.44 +200.194.250.254 +200.196.73.68 +200.199.248.2 +200.203.21.210 +200.205.133.98 +200.205.215.3 +200.207.151.28 +200.208.42.20 +200.209.220.55 +200.210.115.134 +200.210.29.180 +200.210.54.253 +200.21.15.186 +200.212.45.245 +200.214.134.10 +200.214.244.30 +200.215.129.10 +200.215.23.54 +200.21.69.106 +200.219.163.221 +200.219.168.187 +200.220.195.16 +200.228.133.42 +200.228.77.59 +200.231.153.152 +200.233.220.2 +200.23.39.45 +200.239.248.233 +200.239.248.244 +200.239.248.245 +200.23.9.71 +200.24.104.123 +200.241.55.2 +200.24.210.1 +200.24.212.170 +200.244.92.17 +200.247.122.132 +200.249.3.85 +200.25.129.188 +200.251.45.8 +200.252.216.140 +200.253.230.100 +200.255.245.130 +200.26.107.84 +200.26.152.217 +200.27.195.133 +200.27.221.195 +200.27.40.218 +200.27.58.8 +200.27.7.222 +200.27.8.2 +200.27.8.72 +200.27.8.75 +200.27.88.211 +200.29.71.117 +200.30.101.4 +200.30.175.42 +200.31.15.140 +200.31.197.182 +200.31.35.114 +200.31.75.109 +200.31.91.197 +200.32.104.183 +200.3.252.58 +200.32.80.110 +200.32.81.165 +200.34.113.90 +200.34.162.44 +200.35.176.17 +200.35.94.50 +200.3.94.234 +200.40.139.66 +200.40.169.158 +200.40.169.18 +200.40.171.70 +200.40.61.194 +200.40.82.138 +200.40.84.118 +200.40.86.70 +200.40.90.63 +200.40.97.137 +200.41.178.42 +200.41.232.34 +200.41.235.27 +200.41.60.131 +200.41.60.148 +200.42.227.73 +200.43.27.34 +200.43.64.76 +200.45.200.73 +200.45.249.12 +200.47.24.7 +200.48.60.71 +200.49.247.3 +200.50.127.59 +200.52.112.182 +200.52.167.2 +200.52.193.224 +200.52.193.227 +200.52.193.228 +200.52.193.229 +200.52.193.230 +200.52.193.232 +200.52.193.233 +200.52.193.234 +200.52.193.238 +200.52.193.51 +200.52.71.7 +200.53.84.244 +200.54.182.164 +200.55.139.25 +200.55.139.93 +200.55.156.166 +200.55.157.24 +200.55.189.115 +200.55.19.98 +200.55.216.114 +200.55.82.164 +200.56.125.1 +200.56.191.183 +200.57.76.226 +200.57.92.78 +200.58.160.146 +200.58.161.146 +200.60.116.162 +200.60.14.36 +200.60.61.4 +200.60.69.242 +200.6.198.186 +200.62.131.14 +200.62.147.106 +200.62.151.246 +200.62.8.51 +200.62.90.12 +200.63.73.19 +200.64.132.1 +200.65.120.16 +200.65.15.66 +200.65.33.189 +200.66.36.25 +200.67.167.181 +200.67.248.179 +200.67.3.51 +200.67.97.233 +200.68.1.162 +200.68.117.149 +200.68.83.117 +200.68.87.161 +200.69.137.190 +200.69.149.35 +200.69.201.237 +200.69.227.137 +200.70.134.10 +200.70.146.150 +200.7.111.34 +200.71.184.101 +200.71.239.68 +200.7.164.193 +200.7.193.194 +200.7.204.2 +200.72.134.133 +200.72.247.94 +200.72.251.211 +200.72.34.124 +200.73.34.5 +200.74.146.75 +200.74.154.232 +200.74.162.38 +200.75.19.243 +200.75.21.146 +200.75.26.68 +200.75.4.82 +200.75.79.223 +200.75.80.68 +200.75.87.142 +200.75.90.71 +200.75.92.166 +200.76.181.226 +200.76.37.170 +200.77.230.68 +200.77.24.245 +200.77.26.238 +200.77.40.88 +200.77.50.140 +200.78.143.146 +200.79.149.24 +200.79.169.32 +200.79.195.224 +200.81.220.180 +200.81.232.110 +200.82.106.54 +200.82.37.98 +200.82.93.47 +200.83.10.23 +200.83.58.140 +200.85.224.169 +200.85.47.250 +200.8.57.83 +200.86.197.211 +200.87.117.245 +200.87.123.149 +200.87.64.51 +200.88.131.155 +200.88.5.108 +200.88.82.69 +200.88.93.108 +200.8.91.13 +200.89.55.110 +200.90.24.242 +200.90.28.194 +200.91.233.179 +200.91.84.75 +200.92.136.166 +200.92.138.248 +200.92.177.181 +200.93.166.67 +200.93.194.140 +200.93.194.238 +200.93.198.99 +200.93.199.58 +200.93.221.82 +200.99.147.66 +201.114.104.167 +201.116.128.242 +201.120.6.253 +201.130.213.15 +201.130.237.114 +201.132.97.192 +201.134.185.195 +201.134.26.162 +201.134.88.228 +201.134.90.53 +201.135.140.7 +201.137.135.92 +201.139.207.241 +201.140.31.82 +201.140.58.63 +201.141.34.130 +201.143.217.184 +201.147.249.188 +201.15.110.83 +201.151.65.50 +201.151.75.252 +201.151.84.238 +201.15.252.157 +201.155.194.240 +201.155.8.227 +201.160.25.249 +201.164.155.36 +201.170.49.64 +201.19.170.56 +201.19.31.26 +201.198.239.67 +201.198.77.114 +201.20.202.243 +201.20.202.39 +201.206.0.218 +201.208.135.226 +201.208.206.100 +201.210.128.5 +201.210.227.28 +201.210.98.135 +201.211.165.4 +201.211.172.201 +201.212.113.232 +201.21.219.33 +201.21.26.96 +201.212.94.232 +201.214.108.85 +201.216.184.71 +201.216.193.1 +201.218.26.197 +201.218.3.154 +201.219.8.178 +201.221.142.155 +201.22.213.107 +201.222.88.44 +201.225.48.68 +201.228.1.178 +201.228.128.50 +201.229.253.114 +201.230.101.103 +201.230.101.177 +201.230.110.12 +201.230.19.157 +201.230.50.247 +201.230.66.99 +201.231.192.80 +201.231.20.89 +201.231.92.38 +201.232.20.167 +201.232.239.119 +201.232.92.21 +201.233.15.15 +201.234.186.157 +201.235.0.74 +201.235.14.69 +201.235.221.82 +201.235.239.69 +201.236.206.3 +201.238.197.186 +201.238.239.65 +201.240.123.190 +201.240.134.66 +201.240.134.99 +201.240.145.13 +201.240.145.153 +201.240.146.249 +201.240.147.41 +201.240.154.140 +201.240.178.1 +201.240.178.128 +201.240.18.190 +201.240.18.78 +201.240.247.132 +201.240.33.157 +201.240.5.198 +201.240.56.136 +201.240.56.210 +201.241.46.234 +201.241.63.202 +201.242.149.150 +201.243.155.106 +201.244.163.149 +201.244.181.134 +201.244.229.232 +201.244.252.197 +201.244.69.222 +201.245.246.29 +201.245.3.241 +201.247.209.237 +201.247.225.212 +201.248.241.99 +201.248.48.128 +201.248.53.229 +201.249.166.240 +201.249.74.94 +201.250.177.106 +201.250.65.139 +201.250.91.248 +201.250.97.226 +201.252.109.23 +201.252.112.45 +201.252.149.167 +201.252.184.61 +201.252.88.131 +201.253.159.181 +201.253.18.106 +201.253.42.119 +201.254.72.123 +201.254.77.55 +201.255.135.102 +201.255.64.44 +20.133.1.2 +201.34.125.154 +201.34.152.11 +201.34.204.69 +201.35.25.61 +20.138.1.245 +201.41.205.216 +201.45.33.171 +201.50.233.58 +201.50.52.8 +201.52.129.43 +201.52.185.253 +201.54.209.11 +201.58.114.194 +201.58.136.184 +201.58.192.134 +201.58.227.181 +201.58.251.51 +201.6.106.14 +201.63.3.194 +201.63.5.250 +201.66.159.45 +201.67.42.66 +201.7.144.4 +201.75.128.4 +201.75.138.147 +201.75.68.224 +201.78.150.252 +201.78.169.98 +201.78.184.243 +201.8.24.159 +201.86.5.48 +201.8.8.217 +201.89.47.8 +201.9.198.225 +201.9.57.20 +202.102.246.130 +202.103.156.28 +202.108.11.152 +202.108.22.79 +202.108.23.71 +202.116.3.101 +202.122.157.59 +202.124.138.210 +202.125.140.244 +202.125.154.120 +202.125.16.21 +202.127.18.230 +202.129.169.55 +202.131.227.132 +202.138.196.146 +202.138.91.211 +202.146.77.110 +202.148.12.2 +202.149.35.171 +202.150.64.123 +202.151.18.46 +202.152.32.69 +202.154.79.4 +202.155.117.231 +202.155.202.98 +202.155.238.182 +202.156.13.3 +202.156.8.10 +202.156.8.11 +202.156.9.3 +202.157.202.2 +202.164.173.179 +202.164.32.113 +202.165.196.27 +202.170.56.242 +202.173.146.192 +202.173.152.78 +202.173.190.39 +202.185.40.160 +202.189.237.60 +202.20.73.17 +202.20.73.30 +202.210.243.26 +202.27.186.17 +202.27.240.6 +202.28.78.12 +202.29.14.240 +202.3.217.125 +202.32.178.36 +202.3.246.37 +202.3.247.200 +202.32.8.233 +202.32.8.234 +202.32.8.235 +202.37.96.11 +202.44.73.187 +202.48.192.2 +202.51.215.134 +202.51.232.230 +202.54.191.2 +202.54.219.56 +202.54.223.98 +202.54.243.13 +202.55.154.233 +202.56.214.240 +202.56.231.116 +202.56.84.106 +202.56.84.226 +202.57.130.243 +202.59.160.178 +202.59.42.49 +202.62.122.145 +202.64.190.190 +202.64.21.226 +202.64.232.35 +202.67.4.19 +202.70.148.156 +202.70.152.133 +202.70.152.3 +202.7.166.167 +202.7.166.170 +202.7.176.130 +202.75.200.102 +202.76.177.58 +202.77.124.163 +202.79.17.209 +202.80.46.123 +202.80.46.186 +202.81.207.97 +202.82.103.23 +202.83.73.146 +202.83.73.67 +202.85.168.100 +202.89.151.249 +202.91.136.71 +202.91.207.51 +202.93.46.100 +202.95.159.249 +202.96.221.238 +202.96.51.149 +202.96.51.151 +202.96.51.152 +202.96.51.154 +202.96.51.155 +202.96.51.156 +202.96.51.157 +202.96.51.158 +203.100.254.78 +203.102.255.222 +203.107.217.61 +203.109.144.83 +203.112.80.138 +203.112.84.138 +203.115.20.100 +203.115.226.150 +203.115.226.151 +203.115.31.227 +203.116.39.174 +203.120.107.226 +203.121.0.17 +203.122.132.98 +203.122.14.137 +203.122.61.29 +203.123.162.114 +203.123.47.70 +203.124.137.100 +203.124.62.46 +203.125.226.210 +203.129.137.8 +203.130.204.147 +203.134.188.146 +203.134.188.82 +203.143.216.66 +203.143.28.137 +203.144.160.248 +203.144.30.34 +203.144.32.165 +203.145.139.211 +203.145.159.242 +203.145.159.44 +203.145.179.2 +203.14.53.15 +203.148.64.19 +203.150.207.75 +203.153.243.58 +203.153.244.198 +203.153.34.237 +203.156.74.64 +203.160.1.154 +203.160.1.38 +203.160.176.234 +203.162.3.145 +203.162.3.147 +203.162.3.155 +203.162.3.159 +203.162.36.241 +203.163.243.34 +203.167.190.177 +203.168.193.2 +203.168.193.3 +203.168.222.34 +203.168.222.35 +203.171.64.83 +203.171.74.45 +203.173.151.63 +203.173.48.58 +203.174.100.2 +203.17.42.235 +203.175.162.185 +203.177.101.236 +203.177.104.166 +203.177.12.122 +203.177.192.3 +203.177.229.67 +203.189.166.23 +203.191.175.140 +203.193.130.33 +203.194.176.211 +203.194.27.78 +203.197.150.195 +203.197.35.122 +203.197.48.246 +203.198.217.148 +203.199.126.230 +203.199.55.210 +203.200.106.92 +203.200.222.34 +203.200.33.226 +203.200.38.100 +203.200.39.81 +203.208.228.7 +203.212.6.179 +203.217.21.14 +203.217.43.184 +203.217.89.28 +203.221.254.74 +203.22.30.33 +203.23.22.151 +203.23.22.152 +203.23.22.153 +203.23.22.154 +203.236.3.225 +203.236.3.241 +203.24.113.250 +203.24.169.198 +203.25.165.1 +203.28.159.167 +203.28.159.168 +203.28.159.169 +203.28.159.170 +203.28.212.31 +203.32.202.10 +203.34.166.62 +203.4.202.57 +203.45.196.72 +203.49.153.153 +203.55.158.100 +203.58.236.244 +203.59.61.150 +203.6.164.50 +203.6.164.51 +203.67.20.48 +203.70.74.251 +203.74.162.88 +203.74.163.88 +203.77.194.194 +203.79.252.193 +203.79.252.194 +203.81.223.250 +203.84.155.242 +203.87.24.28 +203.88.144.198 +203.88.147.42 +203.88.210.65 +203.91.193.5 +203.91.195.62 +203.91.207.30 +203.92.154.36 +203.94.134.213 +203.96.151.10 +203.96.89.1 +203.97.104.55 +203.97.1.203 +203.97.237.234 +203.98.137.213 +204.104.55.243 +204.108.68.10 +204.108.8.5 +204.116.178.2 +204.116.184.15 +204.117.78.97 +204.119.252.2 +204.126.250.185 +204.146.182.254 +204.174.64.33 +204.174.64.34 +204.174.64.35 +204.174.64.36 +204.174.64.37 +204.179.122.250 +204.180.114.106 +204.239.2.250 +204.246.129.196 +204.62.195.252 +204.73.55.90 +204.75.125.173 +204.79.90.31 +204.84.33.104 +204.9.204.203 +204.94.233.254 +205.132.76.4 +205.142.197.91 +205.142.227.100 +205.153.56.10 +205.166.76.3 +205.167.198.122 +205.167.199.245 +205.167.7.18 +205.173.93.38 +205.173.93.41 +205.196.217.23 +205.200.104.254 +205.200.113.84 +205.203.128.142 +205.203.136.136 +205.204.242.22 +205.214.202.4 +205.220.219.35 +205.223.231.2 +205.225.179.241 +205.227.137.1 +205.234.189.1 +205.235.15.253 +205.237.128.78 +205.237.134.70 +205.238.27.66 +206.106.254.244 +206.107.147.1 +206.167.191.31 +206.172.0.195 +206.172.46.231 +206.17.6.1 +206.18.109.203 +206.182.217.213 +206.188.104.92 +206.191.69.18 +206.230.48.50 +206.231.74.91 +206.231.78.107 +206.231.92.67 +206.248.147.181 +206.248.176.176 +206.251.234.234 +206.252.214.29 +206.41.145.4 +206.47.235.133 +206.47.235.197 +206.47.249.251 +206.47.249.252 +206.57.3.94 +206.57.96.102 +206.75.198.6 +207.102.70.161 +207.107.246.139 +207.118.135.248 +207.133.68.213 +207.134.114.92 +207.134.250.139 +207.136.251.162 +207.14.148.59 +207.150.251.98 +207.155.27.128 +207.157.86.55 +207.171.167.25 +207.177.236.226 +207.179.172.219 +207.189.141.248 +207.189.235.248 +207.195.44.253 +207.196.60.250 +207.200.116.10 +207.200.116.13 +207.200.116.135 +207.200.116.197 +207.200.116.200 +207.200.116.65 +207.200.116.66 +207.200.116.67 +207.200.116.71 +207.200.116.74 +207.200.116.8 +207.203.133.254 +207.207.19.57 +207.225.172.23 +207.225.65.171 +207.235.52.250 +207.250.76.6 +207.28.181.101 +207.34.136.130 +207.35.239.195 +207.37.89.65 +207.41.202.4 +207.44.236.72 +207.46.98.32 +207.46.98.33 +207.46.98.34 +207.46.98.35 +207.46.98.36 +207.46.98.37 +207.46.98.38 +207.46.98.39 +207.46.98.40 +207.47.18.34 +207.59.218.106 +207.61.95.196 +207.69.16.114 +207.77.184.13 +207.80.134.144 +207.8.215.228 +207.93.98.10 +207.97.186.130 +208.125.3.155 +208.131.175.159 +208.159.115.237 +208.180.231.191 +208.180.234.40 +208.210.147.94 +208.216.106.166 +208.223.208.181 +208.223.216.203 +208.234.37.220 +208.247.90.217 +208.254.142.5 +208.3.110.180 +208.32.136.2 +208.44.45.98 +208.49.141.6 +208.50.5.101 +208.53.44.165 +208.54.95.129 +208.57.72.159 +208.65.151.4 +208.9.56.137 +208.97.183.20 +209.102.254.101 +209.11.244.162 +209.12.142.3 +209.124.105.126 +209.132.239.245 +209.134.176.12 +209.139.218.111 +209.150.221.186 +209.151.52.189 +209.160.32.68 +209.163.162.90 +209.167.50.27 +209.173.32.220 +209.174.145.13 +209.179.140.12 +209.181.189.181 +209.182.112.148 +209.183.142.171 +209.183.154.192 +209.184.95.1 +209.189.251.38 +209.191.173.34 +209.198.133.130 +209.200.141.185 +209.205.147.63 +209.210.200.49 +209.210.224.18 +209.217.38.250 +209.217.77.126 +209.220.60.162 +209.221.133.221 +209.221.240.193 +209.22.139.253 +209.222.54.44 +209.234.88.46 +209.237.236.227 +209.237.238.224 +209.237.238.232 +209.240.239.2 +209.242.165.250 +209.249.11.4 +209.251.70.83 +209.254.242.132 +209.31.132.82 +209.33.113.128 +209.33.209.35 +209.40.174.167 +209.42.32.238 +209.42.67.154 +209.5.112.231 +209.59.102.248 +209.59.115.153 +209.66.14.26 +209.66.200.61 +209.78.161.10 +209.82.54.163 +209.91.192.19 +209.98.145.69 +209.98.206.206 +210.10.111.121 +210.104.203.102 +210.1.135.123 +210.14.27.2 +210.143.35.12 +210.143.35.13 +210.143.35.14 +210.143.35.15 +210.143.35.16 +210.143.35.17 +210.143.35.19 +210.151.236.50 +210.165.85.44 +210.17.159.250 +210.17.165.180 +210.17.240.23 +210.173.180.147 +210.175.153.155 +210.177.157.10 +210.177.247.76 +210.18.25.214 +210.187.18.106 +210.19.204.115 +210.200.105.214 +210.210.13.138 +210.212.208.226 +210.212.42.254 +210.213.199.34 +210.213.219.248 +210.22.158.134 +210.249.197.13 +210.49.219.184 +210.55.22.54 +210.63.100.2 +210.75.0.19 +210.84.7.163 +210.9.141.251 +210.9.153.152 +210.92.9.193 +210.97.237.33 +210.97.238.225 +211.104.107.10 +211.115.202.200 +211.143.172.22 +211.14.9.244 +211.155.251.138 +211.160.80.28 +211.196.220.59 +211.210.214.28 +211.212.88.55 +211.219.130.231 +211.219.4.140 +211.22.177.3 +211.30.152.213 +211.30.203.139 +211.39.131.32 +211.41.100.11 +212.0.160.18 +212.10.144.52 +212.101.87.112 +212.101.96.3 +212.103.213.20 +212.105.193.119 +212.106.252.49 +212.110.90.180 +212.115.198.181 +212.116.219.161 +212.116.219.165 +212.117.142.6 +212.12.160.8 +212.12.186.91 +212.123.153.160 +212.123.206.40 +212.123.206.71 +212.123.4.20 +212.125.223.11 +212.126.220.10 +212.127.68.104 +212.128.134.130 +212.128.75.2 +212.128.75.252 +212.128.76.31 +212.128.76.35 +212.133.164.110 +212.13.51.136 +212.13.51.149 +212.13.51.160 +212.136.56.20 +212.138.64.172 +212.138.64.173 +212.138.64.174 +212.138.64.175 +212.138.64.176 +212.138.64.177 +212.138.64.178 +212.138.64.179 +212.138.64.180 +212.143.24.5 +212.143.66.129 +212.143.99.177 +212.144.116.138 +212.144.254.3 +212.145.137.112 +212.145.140.211 +212.145.153.101 +212.145.154.172 +212.145.177.178 +212.145.192.184 +212.145.239.146 +212.145.81.31 +212.145.89.220 +212.147.136.162 +212.150.146.37 +212.152.22.69 +212.154.141.138 +212.155.183.253 +212.158.217.53 +212.16.229.178 +212.163.154.19 +212.163.172.169 +212.163.172.180 +212.163.211.30 +212.163.4.91 +212.166.142.109 +212.166.234.59 +212.170.20.115 +212.170.227.36 +212.175.130.22 +212.175.222.1 +212.178.65.74 +212.179.134.130 +212.18.162.33 +212.18.3.4 +212.184.194.98 +212.186.214.34 +212.186.74.248 +212.189.36.69 +212.189.36.79 +212.190.198.36 +212.190.216.153 +212.191.172.4 +212.191.66.24 +212.199.1.246 +212.199.31.254 +212.199.52.46 +212.200.136.149 +212.202.164.34 +212.202.166.194 +212.202.24.206 +212.202.78.38 +212.204.119.131 +212.204.56.174 +212.209.24.66 +212.2.100.185 +212.211.153.5 +212.21.92.199 +212.223.4.90 +212.224.144.137 +212.224.148.35 +212.230.253.254 +212.23.224.72 +212.234.161.2 +212.234.82.61 +212.234.92.93 +212.234.93.154 +212.239.240.56 +212.24.156.186 +212.242.104.98 +212.242.133.182 +212.242.32.164 +212.247.11.6 +212.249.206.2 +212.25.20.250 +212.27.60.48 +212.30.9.1 +212.31.178.16 +212.31.86.34 +212.33.249.11 +212.34.68.17 +212.34.68.18 +212.34.68.19 +212.34.68.20 +212.34.68.21 +212.35.107.30 +212.35.97.73 +212.36.14.34 +212.36.14.35 +212.39.106.162 +212.39.64.158 +212.40.232.9 +212.40.242.14 +212.42.72.250 +212.42.94.123 +212.43.71.232 +212.44.52.218 +212.46.39.12 +212.49.161.156 +212.49.161.157 +212.49.189.1 +212.51.52.4 +212.51.52.8 +212.5.201.193 +212.52.207.204 +212.53.4.253 +212.55.28.220 +212.57.250.146 +212.59.162.191 +212.59.201.118 +212.6.236.146 +212.62.50.164 +212.64.161.67 +212.64.224.244 +212.64.45.190 +212.65.136.101 +212.68.194.139 +212.68.220.30 +212.71.17.162 +212.71.199.114 +212.74.185.205 +212.74.27.112 +212.75.96.9 +212.76.62.65 +212.77.105.137 +212.79.198.2 +212.8.117.109 +212.81.200.106 +212.81.206.71 +212.81.217.194 +212.81.218.226 +212.81.220.166 +212.81.9.226 +212.82.193.130 +212.84.110.236 +212.88.81.130 +212.93.227.34 +212.95.252.16 +212.97.176.190 +212.97.8.34 +212.98.160.55 +212.99.211.20 +213.0.43.166 +213.100.96.48 +213.103.214.74 +213.107.224.22 +213.10.75.44 +213.112.87.188 +213.113.41.239 +213.114.208.117 +213.11.49.150 +213.115.141.238 +213.115.177.6 +213.115.67.20 +213.118.244.2 +213.118.72.241 +213.118.98.126 +213.126.138.10 +213.13.115.63 +213.131.232.10 +213.131.232.2 +213.13.150.21 +213.132.187.163 +213.132.36.171 +213.133.48.81 +213.134.45.253 +213.137.112.250 +213.139.11.151 +213.139.18.32 +213.139.240.18 +213.139.26.42 +213.140.10.145 +213.140.17.96 +213.140.22.78 +213.140.61.210 +213.141.159.196 +213.144.182.35 +213.144.230.170 +213.144.236.18 +213.144.37.188 +213.145.45.34 +213.146.104.17 +213.146.116.141 +213.146.6.1 +213.148.143.238 +213.150.1.75 +213.150.1.76 +213.150.1.85 +213.150.1.86 +213.150.49.238 +213.151.103.140 +213.151.115.2 +213.151.79.2 +213.156.44.66 +213.156.52.127 +213.156.55.142 +213.156.56.162 +213.157.160.58 +213.157.239.174 +213.16.166.3 +213.162.200.20 +213.164.69.193 +213.164.7.22 +213.167.94.100 +213.168.14.182 +213.168.215.43 +213.168.67.34 +213.170.194.164 +213.170.46.30 +213.171.236.42 +213.172.194.130 +213.172.241.203 +213.17.224.135 +213.172.35.171 +213.172.35.79 +213.172.44.26 +213.172.54.99 +213.172.58.68 +213.172.60.253 +213.173.175.4 +213.173.251.164 +213.174.170.48 +213.175.2.50 +213.176.161.201 +213.177.169.226 +213.177.77.126 +213.178.217.135 +213.178.217.45 +213.178.217.67 +213.178.224.162 +213.178.224.163 +213.179.239.186 +213.180.128.171 +213.180.137.71 +213.180.137.72 +213.180.137.73 +213.183.2.26 +213.185.161.113 +213.186.206.150 +213.187.181.122 +213.188.99.162 +213.189.190.8 +213.190.195.103 +213.190.195.104 +213.190.37.235 +213.192.55.9 +213.192.66.1 +213.194.138.27 +213.195.92.38 +213.197.142.102 +213.197.143.150 +213.200.229.161 +213.200.241.67 +213.201.104.253 +213.201.114.236 +213.201.187.102 +213.201.80.12 +213.203.155.216 +213.204.15.134 +213.207.131.194 +213.208.123.107 +213.208.127.59 +213.211.160.24 +213.21.188.50 +213.213.85.42 +213.215.178.100 +213.215.183.164 +213.215.236.130 +213.217.154.186 +213.219.185.208 +213.220.209.5 +213.221.153.210 +213.221.60.218 +213.22.242.220 +213.223.154.82 +213.224.83.20 +213.225.118.190 +213.225.120.50 +213.226.132.18 +213.226.138.254 +213.227.39.213 +213.228.0.86 +213.228.166.22 +213.228.98.10 +213.229.137.231 +213.229.157.119 +213.229.183.138 +213.229.188.136 +213.229.202.16 +213.231.103.106 +213.232.97.247 +213.233.252.58 +213.233.43.90 +213.235.217.242 +213.238.218.11 +213.239.86.110 +213.240.218.201 +213.240.229.149 +213.24.183.88 +213.242.10.54 +213.249.147.202 +213.249.96.19 +213.250.11.130 +213.250.20.92 +213.252.180.64 +213.253.216.183 +213.254.100.139 +213.254.85.152 +213.254.90.113 +213.255.196.130 +213.27.135.38 +213.27.146.100 +213.27.166.138 +213.27.173.2 +213.27.200.50 +213.27.203.226 +213.27.219.66 +213.27.220.66 +213.27.221.234 +213.30.143.68 +213.30.159.66 +213.30.85.152 +213.30.85.166 +213.3.13.191 +213.3.26.139 +213.35.206.14 +213.35.251.90 +213.37.173.178 +213.37.24.14 +213.37.243.234 +213.37.60.137 +213.37.8.3 +213.38.213.194 +213.39.144.239 +213.39.171.152 +213.39.212.240 +213.39.217.33 +213.39.221.148 +213.4.106.116 +213.4.12.4 +213.41.243.200 +213.4.128.41 +213.4.128.45 +213.4.14.146 +213.42.2.11 +213.42.21.79 +213.5.143.30 +213.58.109.237 +213.58.116.174 +213.58.145.35 +213.58.194.142 +213.58.33.96 +213.60.131.215 +213.60.139.95 +213.60.147.43 +213.60.188.126 +213.60.220.36 +213.60.221.154 +213.60.46.46 +213.60.47.88 +213.60.65.253 +213.60.67.116 +213.61.242.146 +213.61.90.246 +213.63.46.21 +213.64.159.142 +213.65.156.16 +213.69.187.151 +213.73.41.62 +213.74.245.90 +213.76.133.1 +213.77.17.209 +213.78.137.34 +213.79.49.115 +213.8.101.76 +213.84.103.141 +213.84.103.49 +213.84.124.28 +213.84.242.66 +213.84.84.36 +213.8.59.215 +213.86.66.164 +213.88.101.65 +213.8.97.233 +213.91.244.212 +213.9.144.3 +213.9.211.12 +213.92.86.37 +213.92.86.38 +213.94.148.228 +213.94.217.62 +213.96.126.7 +213.96.13.54 +213.96.14.143 +213.96.157.218 +213.96.177.56 +213.96.200.204 +213.96.205.157 +213.96.215.244 +213.96.90.184 +213.96.93.251 +213.97.174.179 +213.97.42.225 +213.97.58.167 +213.97.80.219 +213.97.87.86 +213.98.104.254 +213.98.148.56 +213.98.22.198 +213.98.222.26 +213.98.231.230 +213.98.39.93 +213.98.4.216 +213.98.48.15 +213.98.53.234 +213.98.57.210 +213.98.78.123 +213.98.87.181 +213.98.87.199 +213.99.219.229 +214.1.91.94 +216.103.184.252 +216.106.163.230 +216.110.227.15 +216.112.146.147 +216.113.168.141 +216.113.200.67 +216.114.196.90 +216.117.134.7 +216.117.230.193 +216.119.107.148 +216.123.211.13 +216.124.244.180 +216.126.67.39 +216.133.162.185 +216.136.106.82 +216.136.107.58 +216.138.107.67 +216.140.213.131 +216.141.206.202 +216.143.142.68 +216.146.17.86 +216.146.70.241 +216.14.76.248 +216.148.62.195 +216.161.16.105 +216.16.224.34 +216.16.235.5 +216.168.115.179 +216.170.31.74 +216.171.98.77 +216.173.224.250 +216.177.232.232 +216.177.232.234 +216.184.125.96 +216.191.176.173 +216.191.53.98 +216.191.58.2 +216.193.56.2 +216.194.126.78 +216.194.173.253 +216.195.97.2 +216.197.161.47 +216.199.71.102 +216.204.101.4 +216.205.224.10 +216.206.255.25 +216.217.157.139 +216.220.59.168 +216.220.59.169 +216.221.82.237 +216.223.18.71 +216.226.40.149 +216.226.40.200 +216.226.40.63 +216.227.88.34 +216.228.161.16 +216.228.3.194 +216.230.148.70 +216.230.71.131 +216.231.34.126 +216.234.32.226 +216.235.151.2 +216.237.48.198 +216.239.85.76 +216.241.29.4 +216.24.148.2 +216.244.140.171 +216.249.42.52 +216.250.163.58 +216.254.112.37 +216.254.13.253 +216.254.153.67 +216.254.211.100 +216.254.25.14 +216.255.172.240 +216.31.14.46 +216.31.225.98 +216.39.144.209 +216.46.150.106 +216.46.17.182 +216.47.143.141 +216.48.35.34 +216.52.68.66 +216.54.32.154 +216.55.131.248 +216.57.121.6 +216.58.252.118 +216.58.87.217 +216.64.42.182 +216.68.133.146 +216.70.8.194 +216.73.250.224 +216.75.191.205 +216.77.71.245 +216.88.130.72 +216.9.243.104 +216.93.3.30 +217.106.167.150 +217.109.144.2 +217.109.166.162 +217.109.172.155 +217.10.95.68 +217.11.253.50 +217.113.241.128 +217.116.12.91 +217.116.13.145 +217.116.13.46 +217.116.232.175 +217.118.41.160 +217.119.119.2 +217.12.16.52 +217.12.16.56 +217.122.60.148 +217.125.117.170 +217.125.43.143 +217.125.7.136 +217.126.144.70 +217.126.158.159 +217.126.178.53 +217.126.210.148 +217.126.21.167 +217.126.228.231 +217.126.25.227 +217.127.115.187 +217.127.16.68 +217.127.174.39 +217.127.180.163 +217.127.186.174 +217.127.196.199 +217.127.228.207 +217.127.243.140 +217.127.251.203 +217.127.51.30 +217.127.61.233 +217.128.154.111 +217.128.210.50 +217.128.212.60 +217.128.83.208 +217.130.251.21 +217.132.32.228 +217.133.36.31 +217.133.44.21 +217.133.65.82 +217.133.8.238 +217.141.100.78 +217.14.40.1 +217.144.35.54 +217.145.35.136 +217.148.68.113 +217.151.115.11 +217.151.170.33 +217.153.143.122 +217.153.180.6 +217.153.202.51 +217.153.221.53 +217.15.42.238 +217.155.98.62 +217.156.78.129 +217.157.24.2 +217.158.72.162 +217.159.171.3 +217.159.243.166 +217.167.226.102 +217.169.121.13 +217.169.121.9 +217.169.178.1 +217.169.231.1 +217.169.231.130 +217.169.46.98 +217.170.4.4 +217.17.186.250 +217.17.197.193 +217.172.66.226 +217.18.252.226 +217.189.243.147 +217.189.74.41 +217.19.112.20 +217.19.12.3 +217.194.34.103 +217.195.221.154 +217.195.28.250 +217.196.255.221 +217.199.12.251 +217.199.19.234 +217.205.167.3 +217.21.163.66 +217.212.224.143 +217.212.224.146 +217.212.224.159 +217.212.224.162 +217.212.224.170 +217.216.137.123 +217.216.24.205 +217.216.58.25 +217.217.10.30 +217.218.46.254 +217.219.61.164 +217.220.128.1 +217.220.174.222 +217.220.42.90 +217.221.130.122 +217.221.158.49 +217.221.252.222 +217.223.200.90 +217.229.31.43 +217.229.56.60 +217.229.60.152 +217.22.96.65 +217.229.97.41 +217.230.128.40 +217.231.106.15 +217.23.167.78 +217.231.95.243 +217.232.108.242 +217.232.170.101 +217.24.122.2 +217.245.186.148 +217.245.186.153 +217.33.232.226 +217.33.6.2 +217.37.193.89 +217.40.91.9 +217.41.54.232 +217.44.112.153 +217.57.52.131 +217.57.88.158 +217.58.18.199 +217.59.178.202 +217.6.223.27 +217.64.0.19 +217.64.239.14 +217.65.0.119 +217.65.158.120 +217.66.205.2 +217.67.229.133 +217.68.180.165 +217.68.21.231 +217.68.49.65 +217.69.0.30 +217.71.18.36 +217.7.206.58 +217.7.2.2 +217.72.81.19 +217.72.84.4 +217.74.99.25 +217.75.235.240 +217.77.219.69 +217.79.68.31 +217.80.213.177 +217.81.7.96 +217.82.70.37 +217.84.87.240 +217.8.59.15 +217.87.213.174 +217.89.43.242 +217.91.124.7 +217.91.17.130 +217.91.32.252 +217.91.98.250 +217.94.172.116 +217.95.243.36 +217.95.247.233 +217.95.254.87 +217.96.55.2 +217.9.9.2 +218.101.2.41 +218.102.85.177 +218.106.116.66 +218.107.13.64 +218.107.26.144 +218.107.55.253 +218.111.116.126 +218.111.158.178 +218.111.196.57 +218.111.234.177 +218.111.62.161 +218.150.108.248 +218.150.109.187 +218.150.109.191 +218.150.109.252 +218.150.110.11 +218.150.110.142 +218.152.175.9 +218.186.11.1 +218.188.192.133 +218.189.177.245 +218.208.100.87 +218.21.128.162 +218.219.203.156 +218.236.115.195 +218.247.215.232 +218.250.199.140 +218.250.199.218 +218.76.62.226 +218.80.105.16 +218.80.177.229 +218.81.129.81 +218.90.189.253 +219.101.175.157 +219.101.39.161 +219.118.176.250 +219.142.192.187 +219.142.53.17 +219.142.53.18 +219.142.53.19 +219.142.53.21 +219.142.53.22 +219.142.53.24 +219.142.53.26 +219.142.53.27 +219.142.53.30 +219.237.229.206 +219.241.45.215 +219.251.5.2 +219.77.51.54 +219.77.59.230 +219.79.66.49 +219.91.150.158 +219.91.158.230 +219.93.240.218 +219.94.52.86 +219.95.27.163 +219.95.54.157 +220.101.190.188 +220.101.88.149 +220.126.53.193 +220.130.128.20 +220.130.177.108 +220.130.192.30 +220.130.30.194 +220.130.30.251 +220.130.59.19 +220.132.60.97 +220.134.58.117 +220.135.132.120 +220.135.152.144 +220.135.239.35 +220.181.18.96 +220.189.213.3 +220.205.230.9 +220.207.158.187 +220.215.149.66 +220.224.194.70 +220.224.37.102 +220.224.37.97 +220.225.129.125 +220.225.41.254 +220.225.53.35 +220.227.113.25 +220.227.141.158 +220.227.223.252 +220.233.33.142 +220.237.138.162 +220.239.37.126 +220.245.178.137 +220.245.178.139 +220.245.179.136 +220.248.118.10 +220.248.75.162 +220.253.52.90 +221.125.25.101 +221.127.155.45 +221.134.216.186 +221.135.191.222 +221.216.56.249 +221.219.112.146 +221.219.116.185 +221.221.174.198 +221.222.171.91 +221.222.174.80 +222.111.198.239 +222.124.108.14 +222.124.172.35 +222.124.37.170 +222.124.71.31 +222.124.86.241 +222.124.95.48 +222.128.33.246 +222.130.197.16 +222.145.134.148 +222.153.230.95 +222.154.246.175 +222.155.40.150 +222.158.55.201 +222.165.168.86 +222.166.160.1 +222.166.160.110 +222.166.160.111 +222.166.160.122 +222.166.160.123 +222.166.160.24 +222.166.160.249 +222.166.160.250 +222.166.160.251 +222.166.160.252 +222.166.160.254 +222.166.160.27 +222.166.160.29 +222.166.160.30 +222.166.160.31 +222.166.160.32 +222.166.160.33 +222.166.160.34 +222.166.160.35 +222.166.160.36 +222.166.160.37 +222.166.160.38 +222.166.160.39 +222.166.160.4 +222.166.160.40 +222.166.160.41 +222.166.160.42 +222.166.160.43 +222.166.160.47 +222.166.160.48 +222.166.160.49 +222.166.160.51 +222.166.160.52 +222.166.160.56 +222.166.160.57 +222.166.160.62 +222.166.160.63 +222.166.160.72 +222.166.160.73 +222.166.160.74 +222.166.160.75 +222.166.160.80 +222.166.160.95 +222.166.160.96 +222.166.160.97 +222.168.203.157 +222.191.64.171 +222.228.29.186 +222.240.167.86 +222.252.70.31 +222.255.120.132 +222.70.223.159 +222.90.1.75 +24.10.204.239 +24.10.75.165 +24.11.131.50 +24.114.255.99 +24.115.61.41 +24.116.157.30 +24.116.7.161 +24.12.143.89 +24.123.106.162 +24.123.250.145 +24.12.41.55 +24.125.244.207 +24.131.148.30 +24.132.22.104 +24.139.129.92 +24.141.154.187 +24.141.27.209 +24.14.132.183 +24.14.28.173 +24.148.162.127 +24.149.167.217 +24.154.34.43 +24.158.167.89 +24.16.131.169 +24.161.50.41 +24.161.62.231 +24.163.61.22 +24.165.157.227 +24.165.46.67 +24.16.55.167 +24.166.57.57 +24.167.35.96 +24.168.227.246 +24.172.44.254 +24.172.93.14 +24.177.57.226 +24.178.160.214 +24.178.75.196 +24.180.24.11 +24.184.148.18 +24.184.41.149 +24.185.54.138 +24.19.144.141 +24.196.78.200 +24.201.75.75 +24.203.35.241 +24.203.83.51 +24.205.145.205 +24.206.81.123 +24.21.110.82 +24.21.152.179 +24.215.156.56 +24.215.245.208 +24.217.76.176 +24.2.182.120 +24.222.39.56 +24.225.0.129 +24.225.18.88 +24.225.86.78 +24.227.167.18 +24.227.234.3 +24.229.33.69 +24.232.203.152 +24.234.128.35 +24.234.182.164 +24.237.200.85 +24.238.59.216 +24.239.163.136 +24.241.100.242 +24.246.222.5 +24.251.144.253 +24.251.19.243 +24.25.134.92 +24.253.253.91 +24.30.152.150 +24.30.167.5 +24.34.221.14 +24.36.207.144 +24.39.163.66 +24.39.215.98 +24.4.219.82 +24.46.158.210 +24.5.185.20 +24.56.201.102 +24.60.234.184 +24.6.142.139 +24.6.187.44 +24.62.34.121 +24.6.243.197 +24.69.160.150 +24.70.196.106 +24.7.144.50 +24.7.183.157 +24.72.50.166 +24.72.56.187 +24.72.98.89 +24.73.234.2 +24.74.100.175 +24.75.39.71 +24.78.129.195 +24.80.96.224 +24.8.230.199 +24.8.61.84 +24.87.47.27 +24.92.255.67 +24.9.253.24 +24.98.225.113 +24.98.255.190 +24.99.251.127 +24.99.91.7 +38.100.225.10 +38.100.225.11 +38.100.225.24 +38.100.225.25 +38.100.225.26 +38.100.225.3 +38.100.225.4 +38.100.225.5 +38.100.225.6 +38.100.225.7 +38.100.225.8 +38.100.225.9 +38.100.55.66 +38.101.116.105 +38.113.234.180 +38.113.234.181 +38.119.66.73 +38.98.147.130 +38.98.19.104 +38.98.19.106 +38.98.19.110 +38.98.19.114 +38.98.19.115 +38.98.19.97 +41.204.224.10 +41.212.130.43 +4.249.228.176 +4.78.205.35 +56.0.103.24 +57.66.150.110 +57.66.70.225 +57.67.16.50 +57.67.193.54 +57.67.195.200 +57.74.168.33 +57.74.227.131 +58.10.216.92 +58.10.231.181 +58.136.70.70 +58.152.164.76 +58.181.132.90 +58.185.121.110 +58.186.106.94 +58.186.174.77 +58.187.59.120 +58.26.20.222 +58.28.134.132 +58.38.10.161 +58.38.10.217 +58.38.5.226 +58.6.32.190 +58.64.40.121 +58.64.40.135 +58.64.79.227 +58.6.71.201 +58.68.77.34 +58.69.45.42 +58.6.95.23 +58.69.7.87 +58.71.12.233 +58.71.23.107 +58.87.139.90 +59.112.43.104 +59.117.125.146 +59.120.155.184 +59.120.194.252 +59.120.197.146 +59.120.32.120 +59.12.215.108 +59.125.101.208 +59.139.20.186 +59.144.168.222 +59.144.188.12 +59.144.190.235 +59.144.191.12 +59.144.19.33 +59.144.65.218 +59.144.66.254 +59.146.88.196 +59.149.43.169 +59.154.11.2 +59.159.239.6 +59.165.226.18 +59.167.239.83 +59.167.253.202 +59.167.26.232 +59.167.84.51 +59.178.86.116 +59.181.104.228 +59.183.3.62 +59.37.13.61 +59.37.38.18 +59.42.176.138 +59.42.191.199 +59.57.191.132 +59.61.89.118 +59.92.135.252 +59.92.88.142 +59.92.88.254 +59.93.68.218 +60.176.250.130 +60.191.80.27 +60.191.80.35 +60.191.80.38 +60.191.80.40 +60.191.80.47 +60.208.209.248 +60.209.241.194 +60.228.131.97 +60.228.67.16 +60.230.96.100 +60.234.166.179 +60.234.20.178 +60.248.9.115 +60.249.181.159 +60.250.193.203 +60.36.163.138 +60.48.103.195 +60.48.163.1 +60.48.192.45 +60.48.82.104 +60.48.97.185 +60.49.106.127 +60.49.174.194 +60.49.29.210 +60.49.45.104 +60.50.214.23 +60.51.112.130 +60.51.146.130 +60.52.113.220 +60.52.178.154 +60.52.197.34 +60.63.150.238 +61.11.126.168 +61.135.132.202 +61.135.146.206 +61.135.152.194 +61.14.10.115 +61.14.69.130 +61.17.58.115 +61.17.68.129 +61.17.98.90 +61.18.170.107 +61.18.170.108 +61.18.170.120 +61.18.170.38 +61.18.170.39 +61.18.170.47 +61.18.170.54 +61.18.170.60 +61.18.170.76 +61.18.170.77 +61.18.170.78 +61.18.170.79 +61.18.170.85 +61.18.170.86 +61.18.170.87 +61.18.170.88 +61.18.170.92 +61.18.170.93 +61.18.186.130 +61.18.186.132 +61.18.186.135 +61.185.28.126 +61.19.22.90 +61.195.147.201 +61.19.57.20 +61.19.65.221 +61.206.122.209 +61.218.78.110 +61.2.240.180 +61.228.240.108 +61.238.145.225 +61.238.76.73 +61.246.246.2 +61.246.251.18 +61.246.80.190 +61.246.83.15 +61.246.83.232 +61.246.86.27 +61.246.95.165 +61.30.76.38 +61.59.199.253 +61.6.55.164 +61.70.96.114 +61.7.217.254 +61.88.20.45 +61.90.155.5 +61.91.191.9 +61.95.194.149 +61.95.204.206 +61.95.31.147 +62.0.15.33 +62.100.102.226 +62.100.102.234 +62.101.102.210 +62.101.126.220 +62.101.168.23 +62.101.84.15 +62.101.84.181 +62.101.98.215 +62.106.191.196 +62.11.133.72 +62.118.177.178 +62.121.28.18 +62.121.33.128 +62.13.25.220 +62.134.61.22 +62.134.61.23 +62.138.229.138 +62.14.101.58 +62.14.125.170 +62.14.149.42 +62.14.191.231 +62.14.249.65 +62.147.136.59 +62.147.207.35 +62.14.87.205 +62.14.91.23 +62.149.2.56 +62.14.96.203 +62.15.134.154 +62.15.147.150 +62.15.163.96 +62.15.176.121 +62.152.115.229 +62.15.226.161 +62.15.250.102 +62.15.252.101 +62.15.253.87 +62.153.131.39 +62.157.192.144 +62.157.214.250 +62.15.76.87 +62.158.58.162 +62.15.95.161 +62.160.191.118 +62.161.71.248 +62.162.114.225 +62.162.135.23 +62.162.221.52 +62.163.239.116 +62.163.250.121 +62.165.155.165 +62.167.47.86 +62.167.9.17 +62.168.125.217 +62.168.125.219 +62.168.54.203 +62.168.55.46 +62.168.8.6 +62.171.194.44 +62.171.194.6 +62.174.200.177 +62.175.249.250 +62.175.251.76 +62.175.94.226 +62.177.220.94 +62.177.87.232 +62.178.154.176 +62.179.6.142 +62.179.75.197 +62.180.224.146 +62.180.61.61 +62.181.136.200 +62.181.248.185 +62.189.184.252 +62.193.245.234 +62.194.14.88 +62.202.91.113 +62.203.3.5 +62.206.18.182 +62.206.212.210 +62.206.214.7 +62.206.25.250 +62.212.109.132 +62.212.120.71 +62.212.123.10 +62.21.27.255 +62.214.90.133 +62.216.203.113 +62.217.241.200 +62.217.53.66 +62.219.162.242 +62.219.170.2 +62.219.229.253 +62.219.233.67 +62.22.174.194 +62.224.23.143 +62.225.112.236 +62.225.141.75 +62.225.37.69 +62.226.60.11 +62.231.11.138 +62.23.155.248 +62.23.233.50 +62.235.223.188 +62.240.165.130 +62.240.61.226 +62.24.129.27 +62.242.118.2 +62.242.2.36 +62.242.238.234 +62.244.101.4 +62.244.113.110 +62.245.101.94 +62.245.70.178 +62.247.128.130 +62.24.74.141 +62.251.113.150 +62.251.127.234 +62.251.162.253 +62.252.128.27 +62.252.32.15 +62.252.64.32 +62.253.128.14 +62.253.200.30 +62.2.99.250 +62.30.224.72 +62.31.75.219 +62.3.244.4 +62.3.244.5 +62.3.255.33 +62.36.0.146 +62.38.244.248 +62.39.119.241 +62.39.9.251 +62.40.79.66 +62.42.127.114 +62.42.44.145 +62.42.50.148 +62.42.94.225 +62.43.134.150 +62.43.186.1 +62.43.188.8 +62.43.189.25 +62.43.198.88 +62.43.203.116 +62.43.8.157 +62.45.230.194 +62.47.253.105 +62.48.159.18 +62.48.171.17 +62.48.185.200 +62.48.187.221 +62.48.192.77 +62.48.244.214 +62.56.190.2 +62.57.0.38 +62.57.143.157 +62.57.157.69 +62.57.38.135 +62.57.76.221 +62.58.72.211 +62.59.238.75 +62.60.100.172 +62.60.105.121 +62.6.139.14 +62.65.3.41 +62.66.170.129 +62.72.116.197 +62.78.62.66 +62.80.185.71 +62.81.101.110 +62.81.160.226 +62.81.192.237 +62.81.202.117 +62.87.153.116 +62.87.254.114 +62.87.54.62 +62.90.101.26 +62.90.11.82 +62.90.144.157 +62.90.144.158 +62.90.194.240 +62.90.74.68 +62.93.179.59 +62.93.184.140 +62.93.184.141 +62.94.144.183 +62.94.177.43 +62.97.104.130 +62.97.110.250 +62.97.123.15 +62.97.242.214 +62.97.78.11 +62.99.100.65 +62.99.106.43 +63.100.163.28 +63.100.163.31 +63.127.202.141 +63.135.11.113 +63.138.79.82 +63.146.49.40 +63.147.253.216 +63.160.254.219 +63.161.206.158 +63.162.143.5 +63.164.202.130 +63.165.153.252 +63.167.255.30 +63.168.13.146 +63.168.204.2 +63.168.204.8 +63.196.108.7 +63.208.219.40 +63.212.171.193 +63.226.17.173 +63.230.177.44 +63.230.98.190 +63.237.20.195 +63.237.51.241 +63.239.239.36 +63.239.69.1 +63.241.173.1 +63.241.173.64 +63.241.61.7 +63.245.24.253 +63.245.76.73 +63.251.31.10 +63.65.46.222 +63.77.20.247 +63.77.55.11 +63.80.47.6 +63.80.97.254 +63.83.227.2 +63.85.149.251 +63.87.230.3 +63.93.197.67 +63.98.81.3 +64.105.102.42 +64.107.94.21 +64.110.51.254 +64.114.199.1 +64.116.100.180 +64.116.132.161 +64.117.207.142 +64.118.247.174 +64.119.114.15 +64.121.4.142 +64.122.13.196 +64.122.13.236 +64.122.13.248 +64.122.13.252 +64.124.85.80 +64.126.95.7 +64.128.134.162 +64.128.200.10 +64.129.22.40 +64.132.110.34 +64.134.10.2 +64.135.100.2 +64.140.184.168 +64.140.245.130 +64.140.49.69 +64.143.221.84 +64.157.224.103 +64.163.208.32 +64.168.92.2 +64.180.110.51 +64.185.195.105 +64.190.19.210 +64.190.53.130 +64.201.181.154 +64.203.13.131 +64.203.37.215 +64.207.228.140 +64.208.172.177 +64.208.49.28 +64.210.196.197 +64.210.196.198 +64.210.49.196 +64.213.243.61 +64.221.232.246 +64.222.150.227 +64.229.149.39 +64.231.65.115 +64.233.166.136 +64.233.172.18 +64.233.172.37 +64.233.172.38 +64.233.173.106 +64.233.178.136 +64.235.233.206 +64.236.128.27 +64.236.208.25 +64.237.161.137 +64.237.225.57 +64.242.88.60 +64.242.9.194 +64.243.115.20 +64.246.99.194 +64.251.77.169 +64.251.87.198 +64.254.156.9 +64.26.168.124 +64.34.145.196 +64.34.145.198 +64.34.193.21 +64.40.92.174 +64.4.235.28 +64.42.76.10 +64.47.97.129 +64.4.8.114 +64.4.8.115 +64.4.8.116 +64.56.111.34 +64.60.112.98 +64.61.199.2 +64.62.190.36 +64.62.6.202 +64.65.233.43 +64.71.164.101 +64.71.164.125 +64.72.97.122 +64.73.134.202 +64.74.183.30 +64.76.109.1 +64.76.156.254 +64.76.156.60 +64.76.50.40 +64.76.71.162 +64.81.140.127 +64.81.141.190 +64.81.163.149 +64.81.2.162 +64.81.75.226 +64.86.124.7 +64.86.141.133 +65.100.44.236 +65.104.1.99 +65.110.164.103 +65.113.102.66 +65.114.206.39 +65.115.204.3 +65.117.102.179 +65.118.221.67 +65.119.181.163 +65.12.249.115 +65.125.109.162 +65.125.192.10 +65.126.180.13 +65.14.23.130 +65.160.238.180 +65.164.153.129 +65.165.87.157 +65.167.16.192 +65.170.132.226 +65.171.25.78 +65.173.199.254 +65.175.194.68 +65.182.13.69 +65.188.230.170 +65.196.150.2 +65.196.229.168 +65.196.27.64 +65.200.4.130 +65.201.157.2 +65.202.149.126 +65.205.199.126 +65.206.118.19 +65.210.79.126 +65.213.127.33 +65.214.44.156 +65.214.45.100 +65.218.86.157 +65.219.76.68 +65.223.180.175 +65.242.207.130 +65.242.48.2 +65.245.57.254 +65.26.197.223 +65.28.177.116 +65.32.171.47 +65.40.97.32 +65.54.165.45 +65.55.208.235 +65.55.208.236 +65.55.208.237 +65.55.208.238 +65.55.208.239 +65.55.208.240 +65.55.208.241 +65.55.208.242 +65.55.208.243 +65.55.208.244 +65.55.208.245 +65.55.208.250 +65.55.208.251 +65.55.208.252 +65.55.208.253 +65.55.208.254 +65.55.209.1 +65.55.209.2 +65.55.209.3 +65.55.209.4 +65.55.209.5 +65.55.209.6 +65.55.212.161 +65.55.212.162 +65.55.212.163 +65.55.212.164 +65.55.212.165 +65.55.212.166 +65.55.215.18 +65.55.215.44 +65.55.215.45 +65.55.215.46 +65.55.235.142 +65.55.235.161 +65.55.235.162 +65.55.246.70 +65.6.15.226 +65.77.78.55 +65.78.141.112 +65.82.123.30 +65.88.140.113 +65.89.12.2 +65.89.34.2 +65.96.71.167 +65.97.129.138 +66.0.179.106 +66.105.113.114 +66.109.214.6 +66.129.152.2 +66.129.224.36 +66.130.177.207 +66.130.80.114 +66.131.100.36 +66.134.72.234 +66.135.96.44 +66.136.119.246 +66.140.41.49 +66.142.168.149 +66.14.224.128 +66.147.93.153 +66.148.218.34 +66.151.251.18 +66.152.198.100 +66.153.61.2 +66.154.102.63 +66.154.102.69 +66.154.102.71 +66.154.103.138 +66.154.103.80 +66.160.176.237 +66.161.5.172 +66.16.206.159 +66.169.105.0 +66.177.155.210 +66.177.155.77 +66.178.44.43 +66.17.96.197 +66.180.82.81 +66.180.82.82 +66.180.82.83 +66.180.82.84 +66.180.82.85 +66.180.82.86 +66.180.82.87 +66.180.82.88 +66.180.82.89 +66.180.82.90 +66.181.58.73 +66.184.185.250 +66.188.12.192 +66.192.63.5 +66.194.193.253 +66.194.6.11 +66.194.6.67 +66.194.6.68 +66.194.6.70 +66.194.6.71 +66.194.6.72 +66.194.6.73 +66.194.6.74 +66.194.6.75 +66.194.6.76 +66.194.6.77 +66.194.6.78 +66.194.6.79 +66.194.6.80 +66.194.6.81 +66.194.6.83 +66.194.6.84 +66.194.6.92 +66.196.129.26 +66.196.129.6 +66.196.65.39 +66.201.60.131 +66.203.236.61 +66.207.120.227 +66.207.166.194 +66.207.75.252 +66.210.181.74 +66.210.187.222 +66.210.189.241 +66.210.216.19 +66.210.52.241 +66.212.208.2 +66.219.188.35 +66.228.165.119 +66.230.74.158 +66.231.23.38 +66.232.72.25 +66.236.8.30 +66.237.166.94 +66.237.201.163 +66.240.11.2 +66.24.119.224 +66.241.32.160 +66.244.236.227 +66.249.64.66 +66.249.64.68 +66.249.65.1 +66.249.65.103 +66.249.65.104 +66.249.65.105 +66.249.65.109 +66.249.65.142 +66.249.65.145 +66.249.65.162 +66.249.65.177 +66.249.65.197 +66.249.65.208 +66.249.65.227 +66.249.65.233 +66.249.65.234 +66.249.65.242 +66.249.65.243 +66.249.65.38 +66.249.65.45 +66.249.65.70 +66.249.65.81 +66.249.65.84 +66.249.65.9 +66.249.65.99 +66.249.66.13 +66.249.66.136 +66.249.66.144 +66.249.66.146 +66.249.66.169 +66.249.66.180 +66.249.66.2 +66.249.66.200 +66.249.66.227 +66.249.66.241 +66.249.66.36 +66.249.66.37 +66.249.66.38 +66.249.66.42 +66.249.66.46 +66.249.66.74 +66.249.71.40 +66.249.71.41 +66.249.71.53 +66.249.71.56 +66.249.71.78 +66.249.72.112 +66.249.72.130 +66.249.72.163 +66.249.72.165 +66.249.72.209 +66.249.72.211 +66.249.72.4 +66.249.72.52 +66.249.72.66 +66.249.72.75 +66.249.74.17 +66.252.164.170 +66.25.38.46 +66.26.93.140 +66.28.182.170 +66.28.82.18 +66.30.254.196 +66.30.27.203 +66.32.126.38 +66.39.211.2 +66.41.189.30 +66.43.16.188 +66.43.16.190 +66.43.246.116 +66.45.119.245 +66.50.2.193 +66.50.3.241 +66.50.3.54 +66.50.3.67 +66.50.3.88 +66.51.192.221 +66.59.170.154 +66.75.73.197 +66.8.163.216 +66.82.9.55 +66.82.9.56 +66.82.9.60 +66.92.150.120 +66.92.3.161 +66.92.42.136 +66.92.66.143 +66.93.1.38 +66.93.40.187 +66.96.36.28 +66.98.24.141 +67.10.255.109 +67.106.175.130 +67.10.79.178 +67.10.79.40 +67.109.84.5 +67.110.32.162 +67.111.11.194 +67.115.118.5 +67.117.137.33 +67.121.146.134 +67.129.98.254 +67.130.10.113 +67.136.224.30 +67.138.244.194 +67.139.156.35 +67.142.130.33 +67.151.45.162 +67.15.252.4 +67.154.143.190 +67.155.49.130 +67.158.23.82 +67.168.52.42 +67.170.154.107 +67.170.179.164 +67.170.250.22 +67.174.0.47 +67.176.118.208 +67.176.58.78 +67.180.18.207 +67.180.227.240 +67.180.230.24 +67.186.209.83 +67.186.78.248 +67.187.187.1 +67.187.220.153 +67.188.39.108 +67.189.6.44 +67.190.142.108 +67.19.176.42 +67.20.186.217 +67.34.118.60 +67.36.178.214 +67.36.189.146 +67.36.35.126 +67.49.2.77 +67.52.55.180 +67.53.244.173 +67.55.3.142 +67.67.172.97 +67.68.119.203 +67.68.74.221 +67.68.84.73 +67.70.39.170 +67.71.35.169 +67.78.69.98 +67.79.195.90 +67.82.1.13 +67.82.248.223 +67.84.209.172 +67.87.224.87 +67.88.249.34 +67.88.5.254 +67.93.59.146 +67.97.0.94 +68.104.187.229 +68.106.161.143 +68.107.15.239 +68.107.183.157 +68.10.90.48 +68.113.71.130 +68.126.188.113 +68.12.69.90 +68.142.212.202 +68.142.212.206 +68.142.249.203 +68.142.249.57 +68.142.250.29 +68.142.250.39 +68.142.250.71 +68.142.251.105 +68.142.251.107 +68.142.251.119 +68.142.251.142 +68.142.251.20 +68.142.251.21 +68.142.251.30 +68.142.251.73 +68.142.251.86 +68.142.251.89 +68.142.251.92 +68.142.34.13 +68.145.50.208 +68.147.162.14 +68.148.90.175 +68.15.11.73 +68.15.179.242 +68.15.40.43 +68.156.153.162 +68.156.159.10 +68.157.204.138 +68.158.39.2 +68.17.214.149 +68.178.18.78 +68.183.106.85 +68.187.20.53 +68.189.163.56 +68.19.109.144 +68.193.166.229 +68.194.182.244 +68.199.227.8 +68.202.143.37 +68.206.78.217 +68.209.108.64 +68.209.128.25 +68.209.178.14 +68.209.196.240 +68.209.79.142 +68.2.117.119 +68.2.165.202 +68.217.0.173 +68.218.5.171 +68.231.22.32 +68.234.119.142 +68.237.226.219 +68.237.60.112 +68.249.65.74 +68.254.179.150 +68.32.125.53 +68.35.51.223 +68.38.91.56 +68.4.112.127 +68.4.240.227 +68.46.95.194 +68.47.93.52 +68.49.46.220 +68.52.45.129 +68.58.57.58 +68.63.7.66 +68.67.222.21 +68.72.165.76 +68.77.171.20 +68.79.124.102 +68.82.6.103 +68.84.185.248 +68.89.240.154 +68.91.233.73 +68.91.250.99 +68.93.167.229 +68.94.42.4 +68.96.0.15 +68.9.71.2 +68.97.193.177 +68.98.155.64 +68.9.91.175 +69.0.96.239 +69.107.5.133 +69.115.173.170 +69.119.109.32 +69.122.98.46 +69.125.194.157 +69.132.52.213 +69.136.181.176 +69.139.152.187 +69.142.54.203 +69.148.171.209 +69.150.64.79 +69.15.139.18 +69.154.25.108 +69.154.49.244 +69.155.31.201 +69.156.197.242 +69.156.20.188 +69.159.96.227 +69.160.208.70 +69.161.129.138 +69.164.240.108 +69.174.184.46 +69.174.24.29 +69.18.45.18 +69.19.14.18 +69.208.183.6 +69.21.173.202 +69.213.173.144 +69.225.27.194 +69.233.11.65 +69.241.212.210 +69.24.183.176 +69.243.94.170 +69.245.18.193 +69.251.10.119 +69.251.39.95 +69.251.76.196 +69.252.156.191 +69.253.188.30 +69.255.187.232 +69.255.19.23 +69.255.34.188 +69.26.208.58 +69.26.215.162 +69.27.17.186 +69.30.215.30 +69.36.44.81 +69.40.141.14 +69.41.14.83 +69.44.230.240 +69.47.133.46 +69.47.221.8 +69.58.248.102 +69.59.75.29 +69.61.245.112 +69.64.73.123 +69.65.149.190 +69.68.125.68 +69.70.10.188 +69.70.37.170 +69.70.69.106 +69.79.135.54 +69.79.186.38 +69.84.110.163 +69.85.202.186 +69.94.210.125 +70.100.96.38 +70.103.160.146 +70.103.77.150 +70.107.23.136 +70.110.45.245 +70.112.69.53 +70.12.116.228 +70.121.222.101 +70.12.172.61 +70.135.32.179 +70.137.137.46 +70.141.150.73 +70.145.22.180 +70.147.73.173 +70.151.39.126 +70.157.76.8 +70.159.118.70 +70.160.203.93 +70.169.74.73 +70.170.20.148 +70.171.239.134 +70.176.97.207 +70.183.166.204 +70.183.59.200 +70.184.194.148 +70.184.214.60 +70.184.242.83 +70.184.33.96 +70.190.121.254 +70.19.9.196 +70.224.30.129 +70.225.87.230 +70.230.190.23 +70.230.223.51 +70.234.228.67 +70.241.66.145 +70.242.159.190 +70.243.53.194 +70.244.38.9 +70.246.191.235 +70.249.166.182 +70.252.6.62 +70.28.185.201 +70.35.233.22 +70.35.29.39 +70.37.41.120 +70.41.147.202 +70.43.199.2 +70.48.197.248 +70.48.6.34 +70.49.58.56 +70.49.59.150 +70.50.30.13 +70.51.201.53 +70.52.188.91 +70.55.245.105 +70.55.67.221 +70.56.10.88 +70.60.183.155 +70.61.172.163 +70.72.191.75 +70.72.206.193 +70.81.111.148 +70.81.76.115 +70.83.204.96 +70.84.60.218 +70.88.231.26 +70.89.157.68 +70.89.189.53 +70.91.73.225 +70.97.116.154 +71.10.101.243 +71.102.8.97 +71.106.236.22 +71.107.10.207 +71.108.225.200 +71.109.73.199 +71.115.7.103 +71.116.216.178 +71.117.224.14 +71.118.95.156 +71.119.234.241 +71.123.131.54 +71.123.214.138 +71.131.176.33 +71.131.36.250 +71.132.116.54 +71.142.161.134 +71.143.234.104 +71.16.123.98 +71.165.157.125 +71.166.74.200 +71.167.95.129 +71.168.200.15 +71.170.53.24 +71.170.87.73 +71.196.229.154 +71.198.114.108 +71.199.30.159 +71.200.9.205 +71.205.143.109 +71.206.7.94 +71.209.27.72 +71.219.39.142 +71.225.102.53 +71.228.211.93 +71.230.52.16 +71.237.136.11 +71.240.106.151 +71.248.183.117 +71.252.129.148 +71.252.244.159 +71.255.151.95 +71.37.224.79 +71.39.211.183 +71.40.0.242 +71.56.123.126 +71.56.17.77 +71.56.89.70 +71.62.123.230 +71.68.119.253 +71.68.46.26 +71.70.249.120 +71.75.200.222 +71.75.87.200 +71.77.47.254 +71.8.100.37 +72.118.1.247 +72.130.33.172 +72.136.172.78 +72.139.28.169 +72.140.204.239 +72.14.192.33 +72.14.192.5 +72.14.194.18 +72.14.194.31 +72.14.194.32 +72.14.195.49 +72.150.185.112 +72.150.186.157 +72.151.50.45 +72.155.117.161 +72.159.166.49 +72.1.64.215 +72.16.69.144 +72.177.208.27 +72.178.108.162 +72.20.140.196 +72.201.92.2 +72.204.80.41 +72.207.238.227 +72.226.150.127 +72.227.103.130 +72.229.176.31 +72.236.239.21 +72.236.26.172 +72.242.231.1 +72.242.72.102 +72.244.123.207 +72.252.68.163 +72.29.76.254 +72.30.107.81 +72.30.110.222 +72.30.111.26 +72.30.132.151 +72.30.177.10 +72.30.177.122 +72.30.177.15 +72.30.177.17 +72.30.177.170 +72.30.177.177 +72.30.177.179 +72.30.177.184 +72.30.177.20 +72.30.177.216 +72.30.177.72 +72.30.177.75 +72.30.177.79 +72.30.177.80 +72.30.177.83 +72.30.177.86 +72.30.177.94 +72.30.215.143 +72.30.215.75 +72.30.216.108 +72.30.216.14 +72.30.216.18 +72.30.216.23 +72.30.216.40 +72.30.216.95 +72.30.216.96 +72.30.216.97 +72.30.226.135 +72.30.226.137 +72.30.226.144 +72.30.226.148 +72.30.226.150 +72.30.226.158 +72.30.226.160 +72.30.226.171 +72.30.226.173 +72.30.226.206 +72.30.226.208 +72.30.226.217 +72.30.226.233 +72.30.252.102 +72.30.252.153 +72.30.252.159 +72.30.252.83 +72.30.252.86 +72.30.252.91 +72.30.61.102 +72.30.61.17 +72.30.61.41 +72.30.61.44 +72.30.61.85 +72.30.61.9 +72.38.49.243 +72.40.41.96 +72.47.24.37 +72.48.117.132 +72.5.150.149 +72.54.94.110 +72.58.113.21 +72.68.134.35 +72.77.15.11 +72.80.231.109 +72.8.108.229 +72.81.90.68 +72.83.156.104 +72.85.148.38 +72.89.127.31 +72.95.144.43 +74.100.12.233 +74.103.143.112 +74.104.35.3 +74.116.99.61 +74.12.70.66 +74.128.84.126 +74.130.224.255 +74.130.25.183 +74.132.71.71 +74.136.17.92 +74.136.215.218 +74.137.133.128 +74.14.232.47 +74.194.124.203 +74.210.23.156 +74.229.21.9 +74.56.30.231 +74.6.131.204 +74.62.29.253 +74.65.142.176 +74.6.65.220 +74.6.65.233 +74.6.65.237 +74.6.65.241 +74.6.65.247 +74.6.66.39 +74.6.67.137 +74.6.67.142 +74.6.67.151 +74.6.67.155 +74.6.67.231 +74.6.67.79 +74.6.68.109 +74.6.68.142 +74.6.68.149 +74.6.68.152 +74.6.68.159 +74.6.68.167 +74.6.68.25 +74.6.68.34 +74.6.68.45 +74.6.68.77 +74.6.69.109 +74.6.69.112 +74.6.69.115 +74.6.69.135 +74.6.69.14 +74.6.69.153 +74.6.69.228 +74.6.69.235 +74.6.69.24 +74.6.69.28 +74.6.69.70 +74.6.70.170 +74.6.70.215 +74.6.70.218 +74.6.70.223 +74.6.70.228 +74.6.70.245 +74.6.70.251 +74.6.70.76 +74.6.70.77 +74.6.70.81 +74.6.70.92 +74.6.70.97 +74.6.71.166 +74.6.71.228 +74.6.71.230 +74.6.71.253 +74.6.71.40 +74.6.71.51 +74.6.71.53 +74.6.71.55 +74.6.71.89 +74.6.71.9 +74.6.71.91 +74.6.72.118 +74.6.72.152 +74.6.72.175 +74.6.72.180 +74.6.72.187 +74.6.72.221 +74.6.72.249 +74.67.242.22 +74.6.72.95 +74.6.72.97 +74.6.73.117 +74.6.73.124 +74.6.73.154 +74.6.73.160 +74.6.73.254 +74.6.73.51 +74.6.73.70 +74.6.73.74 +74.6.73.81 +74.6.74.170 +74.6.74.176 +74.6.74.180 +74.6.74.186 +74.6.74.187 +74.6.74.188 +74.6.74.198 +74.6.74.199 +74.6.74.201 +74.6.74.204 +74.6.74.205 +74.6.74.207 +74.6.74.208 +74.6.74.213 +74.6.74.219 +74.6.74.220 +74.6.74.223 +74.6.74.226 +74.6.74.227 +74.6.74.229 +74.6.74.231 +74.6.74.232 +74.6.74.234 +74.6.74.31 +74.6.74.34 +74.6.74.54 +74.6.74.80 +74.6.74.82 +74.6.74.91 +74.6.75.22 +74.6.75.23 +74.6.75.25 +74.6.75.27 +74.6.75.28 +74.6.75.30 +74.6.75.35 +74.6.75.39 +74.6.75.44 +74.6.75.47 +74.6.76.11 +74.6.85.137 +74.6.85.139 +74.6.85.143 +74.6.85.144 +74.6.85.152 +74.6.85.162 +74.6.85.164 +74.6.85.165 +74.6.85.166 +74.6.85.168 +74.6.85.170 +74.6.85.171 +74.6.85.172 +74.6.85.173 +74.6.85.210 +74.6.85.214 +74.6.85.216 +74.6.85.217 +74.6.85.220 +74.6.85.223 +74.6.85.225 +74.6.85.228 +74.6.85.231 +74.6.85.232 +74.6.85.234 +74.6.85.235 +74.6.86.100 +74.6.86.101 +74.6.86.109 +74.6.86.111 +74.6.86.118 +74.6.86.119 +74.6.86.121 +74.6.86.125 +74.6.86.138 +74.6.86.143 +74.6.86.145 +74.6.86.149 +74.6.86.153 +74.6.86.154 +74.6.86.155 +74.6.86.16 +74.6.86.164 +74.6.86.167 +74.6.86.172 +74.6.86.200 +74.6.86.207 +74.6.86.210 +74.6.86.216 +74.6.86.218 +74.6.86.225 +74.6.86.226 +74.6.86.23 +74.6.86.27 +74.6.86.29 +74.6.86.31 +74.6.86.34 +74.6.86.40 +74.6.86.73 +74.6.86.76 +74.6.86.78 +74.6.86.81 +74.6.87.10 +74.6.87.105 +74.6.87.109 +74.6.87.117 +74.6.87.121 +74.6.87.123 +74.6.87.124 +74.6.87.18 +74.6.87.27 +74.6.87.40 +74.6.87.42 +74.6.87.44 +74.6.87.49 +74.6.87.76 +74.8.28.10 +74.8.63.237 +74.93.186.89 +74.96.84.243 +74.97.102.106 +74.98.134.124 +74.98.70.52 +75.129.138.229 +75.17.33.186 +75.179.156.2 +75.21.114.168 +75.21.70.154 +75.2.74.70 +75.33.13.48 +75.35.6.108 +75.41.69.24 +75.50.209.174 +75.55.13.45 +75.58.136.223 +75.67.20.143 +75.72.184.26 +75.72.19.159 +75.72.30.74 +75.74.64.72 +75.75.10.160 +76.171.4.74 +76.179.111.5 +76.182.218.139 +76.183.170.181 +76.183.43.251 +76.186.52.57 +76.188.7.143 +76.211.21.234 +77.107.193.135 +77.122.116.224 +80.100.106.10 +80.101.11.129 +80.102.124.169 +80.102.2.229 +80.102.36.68 +80.102.57.129 +80.103.172.83 +80.103.224.220 +80.104.126.225 +80.108.214.151 +80.109.200.178 +80.118.33.228 +80.118.44.178 +80.119.141.67 +80.121.105.141 +80.121.204.61 +80.122.236.30 +80.123.142.182 +80.126.103.153 +80.126.118.241 +80.126.144.147 +80.126.15.193 +80.126.4.36 +80.126.57.26 +80.126.83.107 +80.127.19.188 +80.127.65.147 +80.129.124.212 +80.134.241.202 +80.134.93.224 +80.136.145.140 +80.140.24.34 +80.142.37.154 +80.145.67.153 +80.146.182.10 +80.146.92.42 +80.15.136.111 +80.152.5.244 +80.165.136.45 +80.165.178.82 +80.169.130.234 +80.171.133.159 +80.171.31.197 +80.174.185.124 +80.174.185.160 +80.175.233.67 +80.177.114.220 +80.177.211.223 +80.178.208.109 +80.178.219.108 +80.179.114.248 +80.179.15.2 +80.188.205.90 +80.188.42.234 +80.191.134.209 +80.193.85.83 +80.197.21.82 +80.198.0.172 +80.200.142.82 +80.200.96.91 +80.201.236.227 +80.202.76.251 +80.202.84.251 +80.203.200.150 +80.203.210.238 +80.203.251.93 +80.203.32.163 +80.203.4.89 +80.203.60.68 +80.203.74.136 +80.203.78.249 +80.203.91.220 +80.204.228.14 +80.216.191.132 +80.216.191.66 +80.218.155.159 +80.218.29.161 +80.219.133.82 +80.223.123.234 +80.224.0.185 +80.224.111.15 +80.224.90.104 +80.227.100.56 +80.227.46.100 +80.228.111.30 +80.229.137.66 +80.229.234.185 +80.229.93.26 +80.229.93.29 +80.230.147.154 +80.231.18.3 +80.233.182.12 +80.23.38.18 +80.237.144.96 +80.239.42.164 +80.24.101.159 +80.24.10.61 +80.24.117.115 +80.24.123.142 +80.24.123.178 +80.24.18.80 +80.24.197.176 +80.24.244.187 +80.24.251.207 +80.24.254.229 +80.24.26.25 +80.24.33.58 +80.24.36.113 +80.244.98.87 +80.245.171.2 +80.24.63.253 +80.246.97.99 +80.24.78.67 +80.24.79.176 +80.250.208.241 +80.250.32.13 +80.25.106.158 +80.251.168.42 +80.251.207.16 +80.25.127.61 +80.25.130.126 +80.25.142.158 +80.25.162.185 +80.251.75.2 +80.25.215.147 +80.25.217.72 +80.25.24.93 +80.25.31.42 +80.254.108.218 +80.254.3.154 +80.25.71.109 +80.25.82.250 +80.25.92.124 +80.25.99.229 +80.26.138.107 +80.26.37.224 +80.26.4.92 +80.26.91.75 +80.32.140.74 +80.32.143.177 +80.32.22.247 +80.32.226.134 +80.32.247.65 +80.33.103.190 +80.33.133.32 +80.33.153.147 +80.33.181.123 +80.33.195.214 +80.33.201.129 +80.33.2.136 +80.33.238.46 +80.33.252.153 +80.33.253.22 +80.33.27.100 +80.33.31.51 +80.33.53.69 +80.33.5.83 +80.33.75.16 +80.34.152.179 +80.34.16.220 +80.34.172.92 +80.34.37.218 +80.34.42.217 +80.34.70.52 +80.34.72.200 +80.34.87.9 +80.35.110.206 +80.35.159.138 +80.35.162.78 +80.35.164.146 +80.35.173.82 +80.35.175.35 +80.35.224.245 +80.35.230.63 +80.35.239.247 +80.35.31.49 +80.35.34.7 +80.35.3.93 +80.36.138.24 +80.36.142.249 +80.36.159.106 +80.36.186.160 +80.36.187.33 +80.36.211.100 +80.36.21.29 +80.36.221.211 +80.36.250.48 +80.36.33.30 +80.3.64.12 +80.36.47.138 +80.3.64.8 +80.37.142.116 +80.37.159.162 +80.37.188.64 +80.37.206.77 +80.37.247.128 +80.37.53.158 +80.37.72.66 +80.37.82.4 +80.37.83.208 +80.38.106.57 +80.38.109.157 +80.38.114.98 +80.38.118.211 +80.38.13.67 +80.38.16.9 +80.38.207.100 +80.38.223.211 +80.38.62.95 +80.38.73.200 +80.38.91.178 +80.38.93.186 +80.38.98.35 +80.38.99.236 +80.39.11.237 +80.39.12.135 +80.39.146.230 +80.39.147.97 +80.39.204.72 +80.39.87.141 +80.39.97.104 +80.41.194.206 +80.41.202.141 +80.4.224.6 +80.45.13.33 +80.45.5.10 +80.55.101.190 +80.55.188.59 +80.55.196.210 +80.5.54.114 +80.55.58.178 +80.56.211.90 +80.56.242.223 +80.57.105.26 +80.57.251.202 +80.58.205.33 +80.58.205.34 +80.58.205.36 +80.58.205.39 +80.58.205.43 +80.58.205.45 +80.58.205.46 +80.58.205.56 +80.58.222.229 +80.58.228.43 +80.58.242.17 +80.59.113.7 +80.59.135.69 +80.59.14.140 +80.59.145.57 +80.59.177.82 +80.59.189.196 +80.59.5.81 +80.59.88.12 +80.60.172.106 +80.60.180.39 +80.62.83.151 +80.63.1.196 +80.63.56.142 +80.64.154.44 +80.64.33.38 +80.65.227.175 +80.67.208.30 +80.6.91.145 +80.70.48.19 +80.76.192.15 +80.76.38.68 +80.76.61.7 +80.77.145.144 +80.78.122.246 +80.79.97.18 +80.80.246.31 +80.81.110.82 +80.81.125.99 +80.82.48.48 +80.82.5.33 +80.83.52.34 +80.83.67.178 +80.85.130.42 +80.85.69.68 +80.86.118.162 +80.87.19.42 +80.87.208.33 +80.87.208.35 +80.87.212.179 +80.87.216.151 +80.88.99.139 +80.8.99.200 +80.91.119.89 +80.91.125.162 +80.96.179.50 +80.96.96.53 +80.97.199.36 +80.97.215.30 +80.97.67.17 +80.98.17.130 +80.99.100.206 +8.10.176.229 +81.103.64.238 +81.104.164.189 +81.108.213.112 +81.10.83.11 +81.11.176.142 +81.113.102.246 +81.113.225.174 +81.12.179.126 +81.125.177.1 +81.12.69.90 +81.137.252.251 +81.138.95.50 +81.140.103.235 +81.144.230.220 +81.148.25.151 +81.149.143.44 +81.15.162.4 +81.15.202.68 +81.158.191.75 +81.164.129.144 +81.164.59.159 +81.165.147.52 +81.168.113.60 +81.168.163.226 +81.168.42.145 +81.169.183.148 +81.171.11.149 +81.171.152.66 +81.172.11.66 +81.172.117.56 +81.172.122.153 +81.172.88.208 +81.173.175.120 +81.173.97.158 +81.174.11.140 +81.174.28.210 +81.174.42.35 +81.174.45.201 +81.175.13.246 +81.179.157.115 +81.183.215.195 +81.184.116.25 +81.187.132.94 +81.190.178.27 +81.193.16.163 +81.196.163.104 +81.196.44.23 +81.199.26.250 +81.199.28.250 +81.202.111.211 +81.202.166.78 +81.202.188.76 +81.202.67.180 +81.202.75.184 +81.203.145.14 +81.203.154.233 +81.203.201.28 +81.203.219.211 +81.203.236.119 +81.203.243.47 +81.203.251.29 +81.203.42.202 +81.203.70.3 +81.203.83.97 +81.206.108.76 +81.207.173.137 +81.208.101.203 +81.208.105.161 +81.208.105.162 +81.208.105.164 +81.208.58.50 +81.208.60.206 +81.208.83.245 +81.208.92.182 +81.214.191.20 +81.216.86.2 +81.221.132.131 +81.221.83.29 +81.222.184.101 +81.223.127.202 +81.223.167.42 +81.223.63.172 +81.227.115.72 +81.227.120.137 +81.227.171.105 +81.227.37.170 +81.232.90.64 +81.235.28.186 +81.241.133.81 +81.241.194.122 +81.241.207.109 +81.244.196.221 +81.244.216.3 +81.246.175.111 +81.252.118.57 +81.252.15.253 +81.252.21.201 +81.252.72.125 +81.255.106.129 +81.255.117.250 +81.255.124.178 +81.255.187.50 +81.255.239.131 +81.255.24.5 +81.255.29.89 +81.26.0.53 +81.26.147.34 +81.28.36.75 +81.30.180.141 +81.3.129.121 +81.3.177.4 +81.31.8.118 +81.32.148.232 +81.32.218.191 +81.32.28.144 +81.32.28.203 +81.32.28.227 +81.32.50.188 +81.33.126.37 +81.33.18.220 +81.34.103.19 +81.34.136.54 +81.34.157.189 +81.34.209.239 +81.34.247.90 +81.34.70.12 +81.35.118.196 +81.35.188.166 +81.35.197.155 +81.35.20.146 +81.35.26.225 +81.36.103.134 +81.36.112.28 +81.36.116.63 +81.36.126.207 +81.36.173.249 +81.36.228.107 +81.36.28.42 +81.36.37.178 +81.36.64.154 +81.36.80.111 +81.37.165.147 +81.37.173.109 +81.37.192.241 +81.37.227.193 +81.38.111.21 +81.38.150.126 +81.38.17.109 +81.38.177.166 +81.38.93.219 +81.38.93.222 +81.39.157.100 +81.39.185.195 +81.39.204.154 +81.41.100.62 +81.41.165.20 +81.41.8.157 +81.42.98.217 +81.44.160.98 +81.44.166.85 +81.44.167.41 +81.44.168.76 +81.44.168.82 +81.44.169.214 +81.44.53.31 +81.45.218.171 +81.45.250.97 +81.47.192.178 +81.47.192.179 +81.47.195.170 +81.47.195.226 +81.49.176.63 +81.50.67.188 +81.52.143.16 +81.52.161.76 +81.52.161.77 +81.52.162.152 +81.52.162.158 +81.56.141.170 +81.56.146.151 +81.56.166.188 +81.56.175.105 +81.56.195.251 +81.56.205.196 +81.56.216.15 +81.56.241.223 +81.56.255.31 +81.56.59.18 +81.57.4.105 +81.57.50.230 +81.57.51.166 +81.6.213.6 +81.6.58.29 +81.7.225.93 +81.73.98.35 +81.80.104.162 +81.80.130.189 +81.80.239.163 +81.8.172.155 +81.82.135.101 +81.82.155.79 +81.82.206.13 +81.82.238.62 +81.83.163.53 +81.84.127.114 +81.84.159.4 +81.84.178.15 +81.84.178.72 +81.84.24.119 +81.84.40.84 +81.84.90.30 +81.86.57.137 +81.86.73.104 +81.90.228.115 +81.9.193.226 +81.92.111.7 +81.92.176.130 +81.93.195.206 +82.101.171.62 +82.102.63.33 +82.103.0.45 +82.103.219.108 +82.104.56.18 +82.106.244.209 +82.10.93.211 +82.109.82.162 +82.111.18.2 +82.111.229.2 +82.11.129.93 +82.114.82.110 +82.117.206.82 +82.120.209.236 +82.12.168.41 +82.127.105.15 +82.127.96.74 +82.135.201.82 +82.135.221.92 +82.135.80.7 +82.135.82.67 +82.135.84.111 +82.141.167.36 +82.141.44.193 +82.143.255.4 +82.144.0.199 +82.144.0.25 +82.144.0.36 +82.144.0.62 +82.144.1.102 +82.144.1.146 +82.144.1.170 +82.144.11.74 +82.144.1.207 +82.144.1.87 +82.144.2.113 +82.144.21.29 +82.144.2.149 +82.144.2.159 +82.144.2.195 +82.144.2.236 +82.144.28.225 +82.144.2.93 +82.146.199.222 +82.146.82.2 +82.150.163.34 +82.150.2.19 +82.150.2.20 +82.152.101.93 +82.152.104.120 +82.152.250.42 +82.153.24.163 +82.155.0.210 +82.155.15.168 +82.155.9.23 +82.158.150.19 +82.158.163.94 +82.158.35.9 +82.158.58.163 +82.158.61.236 +82.158.63.12 +82.158.96.25 +82.159.106.120 +82.159.115.199 +82.159.118.54 +82.159.137.21 +82.159.137.22 +82.159.17.93 +82.159.20.201 +82.159.86.246 +82.161.144.98 +82.163.150.6 +82.163.49.203 +82.163.67.139 +82.163.81.46 +82.165.43.3 +82.170.79.133 +82.171.140.226 +82.171.25.241 +82.179.100.16 +82.182.105.24 +82.182.186.120 +82.182.26.235 +82.182.39.48 +82.186.173.179 +82.187.126.131 +82.190.119.242 +82.192.226.186 +82.198.250.69 +82.199.42.162 +82.201.8.74 +82.207.131.43 +82.208.156.60 +82.208.254.138 +82.210.249.81 +82.212.181.84 +82.216.64.147 +82.224.18.133 +82.225.136.116 +82.225.201.65 +82.225.218.116 +82.225.239.65 +82.225.49.204 +82.226.100.192 +82.226.105.37 +82.228.157.106 +82.228.94.90 +82.230.179.159 +82.230.86.64 +82.231.122.109 +82.231.144.203 +82.232.116.242 +82.232.134.196 +82.232.18.201 +82.232.197.215 +82.232.28.107 +82.233.125.221 +82.234.138.228 +82.234.174.241 +82.234.44.127 +82.235.231.30 +82.235.231.42 +82.236.162.165 +82.237.213.88 +82.237.49.208 +82.239.0.158 +82.24.146.151 +82.242.190.129 +82.243.5.59 +82.245.142.31 +82.245.182.33 +82.247.19.16 +82.250.71.207 +82.252.134.1 +82.253.210.194 +82.2.87.233 +82.33.8.119 +82.35.177.137 +82.36.130.203 +82.37.177.183 +82.38.25.27 +82.39.210.102 +82.39.80.70 +82.46.90.63 +82.47.17.179 +82.48.232.248 +82.48.43.184 +82.50.104.236 +82.50.228.168 +82.52.102.234 +82.52.37.189 +82.52.98.150 +82.58.68.137 +82.60.186.114 +82.61.147.13 +82.63.179.66 +82.65.127.2 +82.66.162.60 +82.66.211.162 +82.66.22.40 +82.67.155.171 +82.67.49.100 +82.69.54.69 +82.69.7.165 +82.70.14.132 +82.70.152.254 +82.70.54.181 +82.71.38.227 +82.71.5.60 +82.73.198.215 +82.76.37.64 +82.76.55.66 +82.76.61.26 +82.77.103.89 +82.77.127.93 +82.77.89.147 +82.79.145.111 +82.82.70.152 +82.82.94.119 +82.83.195.84 +82.83.237.77 +82.84.228.180 +82.92.252.77 +82.92.35.21 +82.92.62.7 +82.93.12.147 +82.93.23.192 +82.94.106.99 +82.94.81.142 +82.96.96.3 +82.99.36.29 +83.10.217.179 +83.103.125.200 +83.103.127.195 +83.103.98.242 +83.116.158.218 +83.11.86.69 +83.129.16.115 +83.129.181.79 +83.129.187.217 +83.131.103.119 +83.131.181.102 +83.135.138.94 +83.135.54.48 +83.137.120.120 +83.138.52.52 +83.139.17.137 +83.139.83.234 +83.14.12.50 +83.14.127.154 +83.14.142.50 +83.14.172.211 +83.14.179.58 +83.144.111.38 +83.145.100.34 +83.145.82.153 +83.145.84.28 +83.146.54.118 +83.147.152.75 +83.148.65.199 +83.149.19.69 +83.151.15.10 +83.152.53.112 +83.153.36.3 +83.160.164.246 +83.160.17.204 +83.161.20.24 +83.16.132.220 +83.16.209.2 +83.165.101.222 +83.165.102.73 +83.165.108.46 +83.165.194.227 +83.165.79.50 +83.165.90.30 +83.165.93.113 +83.167.193.193 +83.171.176.120 +83.17.223.178 +83.173.138.6 +83.173.251.61 +83.175.206.34 +83.175.208.195 +83.175.212.74 +83.175.213.194 +83.175.218.98 +83.17.60.182 +83.181.205.155 +83.18.215.226 +83.184.115.81 +83.186.122.227 +83.189.151.205 +83.190.27.111 +83.19.73.106 +83.198.32.75 +83.20.17.133 +83.205.126.110 +83.206.136.13 +83.206.141.253 +83.206.231.29 +83.206.94.99 +83.208.119.84 +83.211.123.106 +83.211.150.138 +83.211.188.39 +83.213.13.49 +83.213.44.77 +83.213.5.31 +83.217.101.34 +83.217.38.59 +83.220.131.182 +83.227.205.11 +83.228.174.201 +83.228.176.121 +83.228.186.156 +83.228.200.153 +83.230.130.125 +83.230.132.124 +83.230.159.58 +83.230.191.106 +83.235.129.194 +83.235.185.103 +83.236.169.18 +83.236.170.29 +83.236.182.28 +83.236.212.10 +83.238.95.40 +83.239.158.242 +83.240.139.54 +83.240.155.193 +83.241.174.42 +83.241.178.2 +83.242.67.134 +83.244.137.226 +83.252.15.192 +83.28.201.118 +83.31.199.197 +83.32.136.106 +83.32.154.188 +83.32.195.151 +83.32.204.146 +83.32.248.110 +83.32.71.229 +83.33.144.3 +83.33.246.104 +83.33.57.102 +83.34.214.213 +83.34.214.230 +83.34.222.222 +83.34.33.160 +83.35.147.173 +83.35.147.62 +83.35.211.138 +83.35.240.29 +83.35.58.17 +83.35.78.211 +83.36.159.222 +83.36.170.148 +83.36.234.148 +83.36.58.90 +83.36.74.155 +83.36.96.139 +83.37.130.90 +83.37.137.33 +83.37.195.167 +83.37.44.146 +83.37.45.43 +83.38.169.37 +83.38.199.63 +83.38.252.89 +83.38.75.11 +83.38.87.253 +83.39.132.143 +83.39.172.119 +83.40.181.113 +83.40.191.247 +83.40.214.255 +83.40.35.92 +83.41.123.220 +83.41.56.7 +83.41.57.191 +83.41.90.147 +83.42.111.38 +83.42.168.38 +83.42.251.107 +83.42.63.122 +83.43.11.56 +83.43.129.220 +83.43.134.61 +83.43.172.126 +83.43.242.216 +83.43.37.29 +83.43.39.236 +83.43.72.97 +83.44.0.121 +83.44.209.107 +83.44.90.159 +83.45.100.52 +83.45.159.38 +83.45.168.16 +83.45.75.18 +83.45.82.110 +83.46.104.169 +83.46.11.231 +83.46.167.3 +83.46.51.166 +83.49.102.190 +83.49.138.189 +83.49.217.153 +83.49.222.133 +83.49.253.182 +83.50.110.107 +83.50.125.16 +83.50.209.12 +83.50.22.166 +83.50.7.48 +83.52.100.150 +83.52.102.148 +83.52.133.217 +83.52.254.142 +83.52.92.77 +83.52.97.29 +83.52.98.84 +83.54.131.239 +83.54.133.147 +83.54.135.67 +83.54.139.20 +83.54.142.127 +83.54.247.116 +83.55.12.248 +83.55.169.239 +83.55.187.2 +83.55.203.103 +83.55.253.203 +83.55.255.118 +83.56.129.105 +83.56.244.112 +83.57.108.61 +83.57.108.88 +83.57.226.120 +83.58.209.254 +83.58.33.24 +83.58.77.203 +83.59.145.21 +83.59.203.12 +83.59.203.85 +83.59.76.6 +83.60.125.95 +83.60.229.95 +83.61.105.101 +83.61.129.151 +83.61.20.99 +83.61.32.55 +83.61.95.47 +83.64.107.92 +83.65.4.11 +83.67.132.123 +83.67.134.43 +83.67.205.73 +83.67.45.146 +83.6.80.63 +83.70.138.185 +83.70.152.251 +83.70.174.214 +83.71.101.184 +83.71.27.245 +83.71.73.49 +83.71.99.60 +83.81.106.166 +83.83.228.169 +83.90.97.114 +83.92.167.178 +83.95.212.92 +83.97.136.134 +83.99.49.136 +84.0.69.233 +84.102.22.36 +84.104.223.98 +84.105.120.124 +84.105.165.187 +84.105.98.9 +84.107.142.202 +84.108.24.82 +84.109.23.109 +84.1.161.48 +84.120.192.97 +84.120.206.229 +84.121.93.237 +84.122.102.203 +84.122.116.154 +84.122.129.221 +84.122.133.116 +84.122.215.34 +84.122.224.45 +84.122.97.46 +84.123.111.48 +84.123.179.110 +84.123.197.197 +84.123.37.246 +84.123.78.28 +84.131.154.219 +84.131.210.101 +84.131.236.222 +84.131.237.183 +84.13.28.191 +84.133.195.202 +84.133.250.63 +84.134.44.11 +84.137.98.148 +84.138.145.50 +84.139.213.147 +84.144.206.200 +84.144.210.114 +84.145.191.237 +84.146.247.190 +84.14.88.58 +84.150.118.203 +84.150.163.162 +84.150.94.106 +84.151.206.160 +84.152.172.95 +84.152.196.188 +84.152.49.159 +84.153.209.183 +84.154.73.63 +84.157.238.161 +84.159.10.143 +84.159.20.3 +84.160.133.231 +84.160.140.78 +84.163.156.211 +84.164.127.198 +84.164.44.89 +84.164.72.65 +84.165.217.155 +84.165.220.240 +84.169.110.168 +84.169.116.39 +84.169.180.193 +84.170.109.25 +84.170.169.185 +84.174.137.197 +84.174.194.85 +84.174.200.10 +84.175.40.217 +84.176.115.136 +84.177.8.176 +84.178.244.21 +84.180.1.181 +84.18.11.47 +84.18.17.96 +84.18.28.158 +84.183.144.105 +84.185.218.17 +84.185.249.4 +84.186.122.66 +84.187.25.189 +84.187.77.69 +84.188.129.228 +84.189.166.92 +84.191.212.136 +84.191.61.36 +84.191.61.43 +84.193.114.61 +84.193.13.125 +84.193.228.163 +84.196.11.69 +84.196.187.142 +84.197.26.118 +84.203.61.33 +84.210.225.36 +84.217.139.21 +84.220.213.36 +84.221.70.20 +84.222.106.11 +84.223.129.84 +84.227.29.25 +84.231.232.22 +84.232.60.112 +84.232.67.254 +84.234.228.5 +84.242.67.61 +84.244.109.34 +84.244.124.13 +84.245.2.2 +84.246.0.29 +84.246.12.242 +84.247.42.196 +84.250.32.2 +84.25.19.5 +84.253.169.202 +84.255.240.189 +84.29.73.55 +84.29.91.66 +84.32.72.90 +84.36.203.133 +84.37.10.13 +84.39.39.24 +84.40.128.157 +84.40.214.231 +84.41.209.154 +84.41.220.100 +84.44.175.196 +84.46.136.25 +84.48.118.3 +84.48.178.104 +84.48.89.253 +84.48.93.163 +84.50.131.110 +84.5.129.174 +84.52.10.204 +84.54.69.18 +84.54.69.2 +84.55.144.226 +84.56.0.186 +84.56.247.29 +84.56.37.44 +84.56.80.31 +84.56.9.103 +84.57.159.55 +84.57.164.161 +84.57.207.60 +84.58.225.79 +84.58.38.18 +84.60.214.31 +84.61.1.249 +84.61.176.140 +84.61.49.48 +84.61.50.74 +84.62.185.218 +84.62.22.127 +84.62.37.12 +84.6.253.2 +84.69.154.155 +84.72.138.61 +84.72.141.149 +84.72.62.206 +84.73.214.72 +84.76.211.158 +84.76.212.3 +84.76.220.22 +84.76.231.232 +84.77.103.164 +84.77.113.100 +84.77.130.224 +84.77.130.71 +84.77.132.76 +84.77.141.235 +84.77.166.239 +84.77.222.102 +84.77.247.42 +84.77.35.204 +84.77.65.216 +84.77.66.48 +84.77.83.196 +84.77.83.63 +84.77.99.188 +84.78.42.132 +84.81.186.233 +84.90.1.184 +84.90.94.144 +84.91.8.178 +84.9.191.2 +84.9.191.236 +84.92.81.108 +84.92.81.9 +84.9.50.180 +84.95.117.13 +84.9.63.110 +84.96.7.156 +85.10.211.195 +85.104.122.134 +85.104.9.241 +85.105.135.92 +85.105.149.6 +85.105.81.125 +85.120.78.193 +85.124.121.121 +85.1.2.44 +85.126.142.149 +85.128.37.130 +85.128.86.158 +85.13.20.217 +85.132.32.101 +85.135.168.218 +85.136.107.204 +85.136.181.193 +85.136.3.159 +85.136.3.209 +85.136.78.220 +85.137.120.185 +85.138.227.180 +85.138.38.149 +85.138.69.94 +85.139.184.40 +85.140.34.22 +85.141.173.110 +85.145.121.64 +85.146.141.71 +85.146.25.117 +85.147.21.149 +85.15.204.3 +85.157.204.3 +85.159.105.18 +85.17.105.44 +85.17.19.40 +85.176.12.65 +85.176.183.209 +85.176.69.163 +85.177.185.242 +85.178.110.174 +85.178.126.222 +85.178.216.76 +85.179.219.150 +85.181.102.101 +85.18.112.194 +85.18.115.132 +85.18.174.51 +85.182.1.190 +85.18.244.20 +85.185.147.250 +85.186.117.151 +85.186.121.152 +85.186.141.156 +85.187.144.132 +85.187.201.42 +85.187.204.23 +85.18.73.54 +85.187.5.224 +85.194.160.12 +85.196.200.83 +85.196.72.130 +85.197.193.25 +85.202.131.123 +85.207.0.236 +85.207.12.130 +85.20.92.70 +85.2.106.249 +85.214.67.89 +85.216.205.116 +85.221.172.215 +85.223.48.83 +85.228.216.96 +85.228.225.197 +85.237.176.153 +85.238.89.101 +85.238.91.33 +85.240.82.30 +85.2.42.73 +85.248.35.2 +85.248.70.136 +85.25.146.46 +85.27.64.75 +85.28.96.111 +85.33.125.3 +85.41.212.67 +85.42.100.210 +85.48.176.29 +85.48.192.235 +85.49.195.173 +85.49.196.134 +85.49.239.132 +85.49.252.191 +85.49.6.78 +85.49.69.35 +85.50.147.124 +85.50.32.107 +85.52.193.79 +85.53.102.186 +85.53.103.127 +85.53.112.88 +85.53.160.126 +85.53.76.149 +85.54.235.175 +85.55.139.23 +85.55.169.169 +85.56.199.254 +85.56.199.40 +85.57.131.196 +85.57.163.10 +85.57.165.83 +85.58.5.242 +85.59.143.248 +85.59.61.22 +85.60.1.42 +85.60.5.161 +85.60.5.188 +85.62.71.132 +85.62.71.133 +85.68.2.118 +85.70.105.185 +85.71.175.240 +85.75.56.6 +85.81.83.102 +85.83.3.219 +85.84.171.102 +85.84.171.104 +85.84.70.190 +85.84.75.193 +85.86.227.52 +85.86.236.49 +85.87.231.151 +85.87.65.46 +85.88.190.145 +85.91.68.81 +85.91.71.13 +85.91.71.252 +85.91.80.226 +85.93.97.90 +85.94.128.156 +85.94.131.167 +85.96.181.109 +86.101.175.153 +86.104.126.22 +86.105.56.254 +86.106.49.36 +86.122.209.78 +86.126.151.121 +86.133.154.30 +86.136.134.212 +86.139.228.235 +86.139.66.19 +86.143.250.190 +86.143.41.87 +86.149.73.237 +86.193.191.173 +86.199.17.165 +86.201.79.248 +86.203.223.114 +86.204.194.81 +86.205.96.211 +86.208.185.182 +86.212.202.88 +86.34.225.215 +86.34.8.112 +86.38.128.53 +86.41.152.115 +86.41.205.107 +86.41.220.22 +86.49.49.80 +86.71.203.235 +86.83.49.241 +86.87.130.23 +86.95.153.202 +87.0.184.18 +87.0.50.176 +87.102.15.151 +87.103.36.129 +87.103.58.194 +87.103.85.144 +87.105.93.136 +87.107.0.226 +87.10.80.183 +87.110.122.82 +87.110.202.104 +87.110.202.223 +87.11.112.124 +87.112.209.51 +87.113.209.152 +87.116.133.152 +87.118.105.74 +87.119.121.38 +87.11.92.21 +87.1.206.100 +87.122.190.97 +87.126.12.111 +87.126.27.157 +87.127.62.234 +87.14.100.69 +87.14.103.70 +87.162.133.51 +87.162.214.203 +87.164.238.44 +87.165.62.110 +87.175.250.160 +87.175.73.120 +87.18.199.170 +87.185.50.195 +87.187.41.129 +87.192.53.229 +87.194.13.166 +87.194.73.106 +87.194.78.55 +87.196.142.225 +87.196.164.93 +87.196.166.231 +87.196.205.116 +87.196.82.213 +87.197.48.209 +87.198.42.64 +87.200.114.94 +87.200.2.125 +87.200.2.126 +87.201.163.99 +87.204.42.43 +87.206.164.237 +87.206.236.67 +87.207.18.74 +87.207.244.106 +87.207.52.33 +87.216.132.50 +87.216.136.153 +87.216.164.111 +87.216.164.154 +87.216.164.166 +87.216.164.8 +87.216.165.129 +87.216.165.206 +87.216.165.74 +87.216.42.205 +87.217.10.226 +87.217.114.244 +87.217.115.86 +87.217.126.40 +87.217.140.89 +87.217.145.175 +87.217.16.102 +87.217.168.42 +87.217.176.255 +87.217.180.112 +87.217.180.176 +87.217.180.19 +87.217.180.232 +87.217.180.35 +87.217.180.54 +87.217.181.146 +87.217.181.199 +87.217.181.213 +87.217.181.252 +87.217.181.4 +87.217.181.44 +87.217.181.97 +87.217.255.176 +87.217.34.2 +87.217.34.40 +87.217.53.208 +87.217.60.99 +87.217.61.122 +87.217.61.31 +87.217.68.160 +87.217.8.133 +87.217.8.134 +87.217.8.136 +87.217.8.178 +87.217.8.187 +87.217.82.102 +87.217.82.112 +87.217.82.119 +87.217.82.12 +87.217.82.13 +87.217.82.151 +87.217.82.160 +87.217.82.164 +87.217.82.165 +87.217.82.177 +87.217.82.186 +87.217.82.204 +87.217.82.236 +87.217.82.241 +87.217.82.25 +87.217.8.232 +87.217.8.252 +87.217.8.254 +87.217.82.57 +87.217.82.58 +87.217.82.71 +87.217.82.75 +87.217.8.28 +87.217.82.86 +87.217.82.90 +87.217.83.103 +87.217.83.110 +87.217.83.111 +87.217.83.134 +87.217.83.141 +87.217.83.148 +87.217.83.155 +87.217.83.158 +87.217.83.173 +87.217.83.193 +87.217.83.208 +87.217.83.22 +87.217.83.24 +87.217.83.242 +87.217.83.249 +87.217.83.252 +87.217.83.253 +87.217.83.36 +87.217.83.37 +87.217.83.51 +87.217.83.52 +87.217.83.55 +87.217.83.59 +87.217.83.73 +87.217.83.78 +87.217.83.8 +87.217.83.99 +87.217.8.52 +87.217.9.115 +87.217.9.118 +87.217.9.153 +87.217.9.179 +87.217.9.20 +87.217.9.210 +87.217.9.3 +87.217.9.34 +87.218.114.43 +87.218.115.238 +87.218.120.54 +87.218.126.191 +87.218.143.81 +87.218.15.67 +87.218.176.149 +87.218.36.86 +87.218.43.113 +87.218.43.202 +87.218.43.33 +87.218.43.7 +87.218.52.163 +87.218.73.130 +87.218.78.240 +87.218.90.135 +87.219.128.48 +87.219.168.195 +87.219.168.67 +87.219.34.221 +87.219.66.58 +87.220.28.49 +87.223.171.108 +87.223.175.64 +87.223.183.189 +87.223.211.35 +87.223.225.239 +87.223.254.73 +87.2.236.112 +87.228.220.238 +87.230.125.132 +87.231.186.52 +87.231.201.219 +87.231.213.132 +87.231.214.128 +87.231.217.115 +87.231.217.16 +87.234.207.101 +87.235.110.157 +87.235.112.223 +87.235.112.43 +87.235.145.201 +87.235.214.233 +87.236.184.86 +87.240.137.229 +87.24.163.145 +87.242.42.148 +87.243.133.22 +87.243.152.2 +87.244.129.91 +87.244.130.185 +87.244.130.40 +87.244.133.9 +87.244.135.163 +87.244.138.189 +87.244.142.110 +87.244.142.113 +87.244.142.240 +87.244.142.241 +87.244.142.250 +87.244.143.124 +87.244.143.154 +87.244.152.110 +87.244.163.215 +87.244.164.193 +87.244.164.223 +87.244.164.75 +87.244.165.160 +87.244.167.196 +87.246.143.251 +87.246.153.50 +87.248.161.174 +87.248.65.105 +87.249.10.4 +87.249.39.58 +87.250.172.107 +87.25.172.133 +87.252.137.247 +87.255.106.10 +87.28.224.223 +87.30.118.94 +87.30.227.86 +87.4.176.79 +87.49.205.3 +87.51.247.22 +87.5.210.177 +87.5.230.229 +87.54.76.157 +87.55.134.70 +87.5.67.238 +87.5.78.116 +87.5.93.223 +87.5.98.220 +87.6.246.3 +87.64.158.52 +87.64.19.236 +87.65.190.136 +87.69.11.54 +87.7.179.69 +87.7.185.159 +87.7.221.138 +87.74.39.150 +87.74.51.253 +87.7.45.176 +87.78.110.148 +87.78.1.188 +87.78.133.105 +87.80.132.117 +87.8.176.111 +87.81.78.136 +87.8.18.170 +87.82.16.102 +87.8.92.111 +87.91.208.80 +87.9.244.51 +87.94.48.193 +87.97.21.69 +87.97.6.155 +87.99.41.252 +87.99.62.244 +88.0.10.90 +88.0.152.134 +88.0.160.54 +88.0.173.154 +88.0.209.37 +88.0.62.21 +88.0.65.210 +88.100.125.144 +88.105.49.226 +88.106.174.62 +88.11.152.64 +88.11.157.113 +88.11.1.67 +88.11.206.133 +88.112.190.169 +88.11.232.220 +88.11.35.118 +88.118.228.146 +88.11.92.19 +88.122.118.165 +88.122.172.129 +88.12.242.15 +8.8.130.194 +8.8.130.9 +88.134.147.137 +88.13.87.125 +88.140.19.215 +88.14.108.202 +88.14.169.65 +88.14.171.26 +88.14.221.217 +88.14.33.103 +88.149.156.238 +88.149.173.167 +88.151.16.21 +88.151.16.27 +88.151.17.100 +88.15.209.22 +88.153.120.185 +88.156.80.134 +88.157.74.121 +88.160.57.191 +88.16.127.163 +88.161.51.197 +88.163.216.95 +88.165.96.247 +88.17.117.151 +88.17.148.196 +88.17.234.16 +88.17.96.156 +88.192.163.196 +88.207.236.180 +88.209.196.7 +88.210.197.195 +88.211.165.93 +88.211.188.205 +88.2.123.163 +88.214.160.246 +88.214.166.90 +88.2.145.240 +88.2.148.216 +88.2.148.217 +88.2.180.178 +88.2.183.171 +88.2.185.82 +88.2.211.162 +88.2.211.37 +88.2.213.252 +88.222.152.157 +88.22.226.108 +88.2.224.42 +88.2.24.110 +88.229.130.160 +88.23.115.135 +88.23.51.173 +88.23.79.90 +88.2.4.62 +88.247.29.205 +88.3.224.248 +88.3.227.241 +88.3.228.65 +88.3.229.196 +88.3.230.14 +88.33.110.228 +88.36.182.18 +88.3.68.186 +88.41.8.197 +88.52.229.130 +88.5.239.50 +88.6.108.80 +88.64.13.47 +88.64.234.178 +88.65.31.49 +88.65.57.202 +88.66.52.46 +88.70.84.145 +88.7.111.114 +88.7.152.177 +88.73.15.4 +88.74.55.37 +88.7.64.9 +88.8.102.187 +88.8.186.160 +88.8.251.195 +88.86.31.1 +88.87.161.45 +88.8.79.90 +88.9.103.243 +88.9.134.129 +88.9.158.211 +88.96.1.249 +88.96.139.93 +89.100.176.38 +89.107.243.1 +89.1.18.68 +89.118.75.126 +89.1.212.202 +89.12.181.114 +89.12.188.59 +89.12.5.5 +89.129.198.81 +89.129.206.65 +89.136.106.192 +89.136.45.209 +89.139.200.155 +89.140.6.2 +89.150.137.212 +89.150.197.192 +89.152.4.186 +89.161.68.20 +89.163.26.164 +89.165.146.134 +89.165.57.229 +89.165.72.5 +89.173.7.6 +89.178.70.136 +89.190.194.168 +89.1.93.79 +89.207.208.1 +89.210.60.18 +89.210.95.89 +89.212.51.226 +89.212.6.186 +89.216.157.121 +89.217.179.97 +89.217.184.2 +89.217.7.34 +89.22.48.247 +89.235.30.100 +89.236.1.50 +89.242.117.251 +89.242.152.41 +89.245.107.100 +89.247.13.110 +89.24.7.17 +89.248.5.130 +89.26.138.62 +89.34.187.11 +89.34.220.131 +89.34.243.172 +89.48.124.174 +89.49.86.244 +89.54.187.86 +89.56.176.214 +89.59.98.192 +89.6.122.209 +89.6.212.19 +89.80.219.167 +89.83.225.212 +89.98.36.81 +90.187.88.135 +90.193.166.9 +90.194.158.216 +90.197.249.33 +90.2.170.91 +90.227.202.145 +90.36.55.73 +90.8.217.187 +91.127.206.175 +91.152.85.51 +91.186.36.98 +91.3.194.91 +91.4.88.183 +91.6.33.105 +91.84.14.67 diff --git a/pandora_server/util/pandora_dbstress.pl b/pandora_server/util/pandora_dbstress.pl index 9ee4074f7c..dd4bdef903 100755 --- a/pandora_server/util/pandora_dbstress.pl +++ b/pandora_server/util/pandora_dbstress.pl @@ -1,12 +1,29 @@ #!/usr/bin/perl -################################################################################## +################################################################################ # Pandora DB Stress tool -################################################################################## +################################################################################ # Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com -# Permission is granted to copy, distribute and/or modify this document -# under the terms of the GNU Free Documentation License, Version 2.0 -# or any later version published by the Free Software Foundation at www.gnu.org -################################################################################## +# Copyright (c) 2005-2006 Artica Soluciones Tecnológicas S.L +# +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. +#You should have received a copy of the GNU General Public License +#along with this program; if not, write to the Free Software +#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +################################################################################ + +my $target_interval = 300; +my $target_days = 40; +my $target_agent = 10; # if not defined, uses ALL agents + +################################################################################ +################################################################################ # Includes list use strict; @@ -20,17 +37,15 @@ use pandora_config; use pandora_tools; use pandora_db; -# Configure here target (AGENT_ID for Stress) -my $target_agent_id = 3; -my $target_interval = 300; -my $target_days = 7; +################################################################################ +################################################################################ -my $version = "1.2Beta 060213"; +my $version = "1.3-dev 070216"; # FLUSH in each IO (only for debug, very slooow) # ENABLED in DEBUGMODE # DISABLE FOR PRODUCTION -$| = 1; +$| = 0; my %pa_config; @@ -43,26 +58,25 @@ pandora_loadconfig (\%pa_config,2); # open database, only ONCE. We pass reference to DBI handler ($dbh) to all subprocess my $dbh = DBI->connect("DBI:mysql:pandora:$pa_config{'dbhost'}:3306",$pa_config{'dbuser'}, $pa_config{'dbpass'}, { RaiseError => 1, AutoCommit => 1 }); -print " [*] Working for agent ID $target_agent_id \n"; print " [*] Generating data of $target_days days ago \n"; print " [*] Interval for this workload is $target_interval \n"; -# For each module of $target_agent_id -my $query_idag = "select * from tagente_modulo where id_agente = $target_agent_id"; +#my $query_idag = "select * from tagente_modulo where id_agente = $target_agent"; +my $query_idag = "select * from tagente_modulo"; my $s_idag = $dbh->prepare($query_idag); $s_idag ->execute; my @data; # Read all alerts and apply to this incoming trap if ($s_idag->rows != 0) { while (@data = $s_idag->fetchrow_array()) { +print " [*] Working for agent ID ".$data[1]." \n"; # Fill this module with data ! - process_module (\%pa_config, $data[0], $target_interval, $data[4], $target_days, $data[2], $target_agent_id, $dbh); + process_module (\%pa_config, $data[0], $target_interval, $data[4], $target_days, $data[2], $data[1], $dbh); } } $s_idag->finish(); $dbh->disconnect(); print " [*] All work done\n\n"; - # END of main proc @@ -171,7 +185,6 @@ sub process_module(){ } } - close (LOG); print "\n"; }