From 5a0f6c5752e2f7fade0a8684a971a8c299669242 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Mon, 5 Sep 2016 22:54:33 +0200 Subject: [PATCH 01/20] Systemd support Related Issue: https://github.com/sysown/proxysql/issues/425 --- Makefile | 18 +++++++++++++++++- systemd/proxysql.service | 12 ++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 systemd/proxysql.service diff --git a/Makefile b/Makefile index 3fd5d6ebf..a3541182a 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,11 @@ DEBUG=${ALL_DEBUG} #export EXTRALINK CURVER=1.2.2 DISTRO := $(shell gawk -F= '/^NAME/{print $$2}' /etc/os-release) +ifeq ($(wildcard /usr/lib/systemd/systemd), /usr/lib/systemd/systemd) + SYSTEMD=1 +else + SYSTEMD=0 +endif .PHONY: default default: build_deps build_lib build_src @@ -311,8 +316,13 @@ cleanall: install: src/proxysql install -m 0755 src/proxysql /usr/local/bin install -m 0600 etc/proxysql.cnf /etc - install -m 0755 etc/init.d/proxysql /etc/init.d if [ ! -d /var/lib/proxysql ]; then mkdir /var/lib/proxysql ; fi +ifeq ($(SYSTEMD), 1) + install -m 0644 systemd/proxysql.service /usr/lib/systemd/system/ + systemctl daemon-reload + systemctl enable proxysql.service +else + install -m 0755 etc/init.d/proxysql /etc/init.d ifeq ($(DISTRO),"CentOS Linux") chkconfig --level 0123456 proxysql on else @@ -322,12 +332,17 @@ else update-rc.d proxysql defaults endif endif +endif .PHONY: install uninstall: rm /etc/proxysql.cnf rm /usr/local/bin/proxysql rmdir /var/lib/proxysql 2>/dev/null || true +ifeq ($(SYSTEMD), 1) + systemctl stop proxysql.service + rm /usr/lib/systemd/system/proxysql.service +else ifeq ($(DISTRO),"CentOS Linux") chkconfig --level 0123456 proxysql off rm /etc/init.d/proxysql @@ -340,4 +355,5 @@ else update-rc.d proxysql remove endif endif +endif .PHONY: uninstall diff --git a/systemd/proxysql.service b/systemd/proxysql.service new file mode 100644 index 000000000..7ea7df229 --- /dev/null +++ b/systemd/proxysql.service @@ -0,0 +1,12 @@ +[Unit] +Description=High Performance Advanced Proxy for MySQL +After=network.target + +[Service] +LimitNOFILE=102400 +LimitCORE=1073741824 +ExecStart=/usr/local/bin/proxysql -f +Restart=always + +[Install] +WantedBy=default.target From 2bcc1451b6a77a67cfbb32a2204368d8afa79c5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Sun, 18 Sep 2016 23:50:28 +0000 Subject: [PATCH 02/20] Two bug fixes related to mirroring: - default_hostgroup was not set: this causes multiplexing to always be disabled - fd in client_myds for mirror session was not initialized: this causes random crashes --- lib/MySQL_Session.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/MySQL_Session.cpp b/lib/MySQL_Session.cpp index c91fab819..7d18f534a 100644 --- a/lib/MySQL_Session.cpp +++ b/lib/MySQL_Session.cpp @@ -772,6 +772,7 @@ __get_pkts_from_client: newsess->client_myds = new MySQL_Data_Stream(); newsess->client_myds->DSS=STATE_SLEEP; newsess->client_myds->sess=newsess; + newsess->client_myds->fd=0; newsess->client_myds->myds_type=MYDS_FRONTEND; newsess->client_myds->PSarrayOUT= new PtrSizeArray(); newsess->thread_session_id=__sync_fetch_and_add(&glovars.thread_id,1); @@ -782,6 +783,7 @@ __get_pkts_from_client: newsess->client_myds->attach_connection(myconn); newsess->client_myds->myprot.init(&newsess->client_myds, newsess->client_myds->myconn->userinfo, newsess); newsess->to_process=1; + newsess->default_hostgroup=default_hostgroup; if (qpo->mirror_hostgroup>= 0) { newsess->mirror_hostgroup=qpo->mirror_hostgroup; // in the new session we copy the mirror hostgroup } else { From 4df53c69f41396343e19a1fe2452d109cccd7ea1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Sun, 18 Sep 2016 23:50:28 +0000 Subject: [PATCH 03/20] Two bug fixes related to mirroring: - default_hostgroup was not set: this causes multiplexing to always be disabled - fd in client_myds for mirror session was not initialized: this causes random crashes --- lib/MySQL_Session.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/MySQL_Session.cpp b/lib/MySQL_Session.cpp index b55caf281..375678747 100644 --- a/lib/MySQL_Session.cpp +++ b/lib/MySQL_Session.cpp @@ -783,6 +783,7 @@ __get_pkts_from_client: newsess->client_myds = new MySQL_Data_Stream(); newsess->client_myds->DSS=STATE_SLEEP; newsess->client_myds->sess=newsess; + newsess->client_myds->fd=0; newsess->client_myds->myds_type=MYDS_FRONTEND; newsess->client_myds->PSarrayOUT= new PtrSizeArray(); newsess->thread_session_id=__sync_fetch_and_add(&glovars.thread_id,1); @@ -793,6 +794,7 @@ __get_pkts_from_client: newsess->client_myds->attach_connection(myconn); newsess->client_myds->myprot.init(&newsess->client_myds, newsess->client_myds->myconn->userinfo, newsess); newsess->to_process=1; + newsess->default_hostgroup=default_hostgroup; if (qpo->mirror_hostgroup>= 0) { newsess->mirror_hostgroup=qpo->mirror_hostgroup; // in the new session we copy the mirror hostgroup } else { From 1969fd1805c41a2b0c1982c8775f526481807884 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Mon, 19 Sep 2016 22:44:00 +0000 Subject: [PATCH 04/20] Better error handling for mirror traffic --- include/MySQL_Session.h | 3 +++ lib/MySQL_Session.cpp | 30 ++++++++++++++++++++++++++++++ lib/MySQL_Thread.cpp | 9 +++++++++ 3 files changed, 42 insertions(+) diff --git a/include/MySQL_Session.h b/include/MySQL_Session.h index 5a0df3db9..5a7f85d1a 100644 --- a/include/MySQL_Session.h +++ b/include/MySQL_Session.h @@ -136,6 +136,9 @@ class MySQL_Session } } } + if (mirror) { + fprintf(stderr,"thr %x , status %d\n", this ,e ); + } status=e; } //MySQL_Protocol myprot_client; diff --git a/lib/MySQL_Session.cpp b/lib/MySQL_Session.cpp index 7d18f534a..f873f7962 100644 --- a/lib/MySQL_Session.cpp +++ b/lib/MySQL_Session.cpp @@ -1572,8 +1572,16 @@ handler_again: case CONNECTING_SERVER: //fprintf(stderr,"CONNECTING_SERVER\n"); + if (mirror) { + mybe->server_myds->connect_retries_on_failure=0; // no try for mirror + mybe->server_myds->wait_until=thread->curtime;; + pause_until=0; + } if (mybe->server_myds->max_connect_time) { if (thread->curtime >= mybe->server_myds->max_connect_time) { + if (mirror) { + PROXY_TRACE(); + } char buf[256]; sprintf(buf,"Max connect timeout reached while reaching hostgroup %d after %llums", current_hostgroup, (thread->curtime - CurrentQuery.start_time)/1000 ); client_myds->myprot.generate_pkt_ERR(true,NULL,NULL,1,1045,(char *)"#28000",buf); @@ -1589,6 +1597,10 @@ handler_again: if (mybe->server_myds->myconn) { //mybe->server_myds->destroy_MySQL_Connection(); mybe->server_myds->destroy_MySQL_Connection_From_Pool(false); + if (mirror) { + PROXY_TRACE(); + NEXT_IMMEDIATE(WAITING_CLIENT_DATA); + } } mybe->server_myds->max_connect_time=0; NEXT_IMMEDIATE(WAITING_CLIENT_DATA); @@ -1596,6 +1608,12 @@ handler_again: } if (mybe->server_myds->myconn==NULL) { handler___client_DSS_QUERY_SENT___server_DSS_NOT_INITIALIZED__get_connection(); + } + if (mybe->server_myds->myconn==NULL) { + if (mirror) { + PROXY_TRACE(); + NEXT_IMMEDIATE(WAITING_CLIENT_DATA); + } } if (mybe->server_myds->myconn==NULL) { pause_until=thread->curtime+mysql_thread___connect_retries_delay*1000; @@ -1622,10 +1640,16 @@ handler_again: /* */ assert(myconn->async_state_machine!=ASYNC_IDLE); rc=myconn->async_connect(myds->revents); + if (mirror) { + PROXY_TRACE(); + } if (myds->mypolls==NULL) { // connection yet not in mypolls myds->assign_fd_from_mysql_conn(); thread->mypolls.add(POLLIN|POLLOUT, mybe->server_myds->fd, mybe->server_myds, curtime); + if (mirror) { + PROXY_TRACE(); + } } switch (rc) { case 0: @@ -1649,6 +1673,9 @@ handler_again: if (myds->connect_retries_on_failure >0 ) { myds->connect_retries_on_failure--; //myds->destroy_MySQL_Connection(); + if (mirror) { + PROXY_TRACE(); + } myds->destroy_MySQL_Connection_From_Pool(false); NEXT_IMMEDIATE(CONNECTING_SERVER); } else { @@ -1671,6 +1698,9 @@ handler_again: previous_status.pop(); } //myds->destroy_MySQL_Connection(); + if (mirror) { + PROXY_TRACE(); + } myds->destroy_MySQL_Connection_From_Pool( myerr ? true : false ); myds->max_connect_time=0; NEXT_IMMEDIATE(WAITING_CLIENT_DATA); diff --git a/lib/MySQL_Thread.cpp b/lib/MySQL_Thread.cpp index 198766370..6d924a924 100644 --- a/lib/MySQL_Thread.cpp +++ b/lib/MySQL_Thread.cpp @@ -4,6 +4,10 @@ #include "cpp.h" #include "MySQL_Thread.h" +#ifdef DEBUG +MySQL_Session *sess_stopat; +#endif + #define PROXYSQL_LISTEN_LEN 1024 extern Query_Processor *GloQPro; @@ -1984,6 +1988,11 @@ void MySQL_Thread::process_all_sessions() { } for (n=0; nlen; n++) { MySQL_Session *sess=(MySQL_Session *)mysql_sessions->index(n); +#ifdef DEBUG + if(sess==sess_stopat) { + sess_stopat=sess; + } +#endif if (sess->mirror==true) { // this is a mirror session if (sess->status==WAITING_CLIENT_DATA) { // the mirror session has completed unregister_session(n); From cbe6c892dcf6a1264540a28c6134c1f99afb6b83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Mon, 19 Sep 2016 23:17:44 +0000 Subject: [PATCH 05/20] Setting version 1.2.3 --- include/proxysql.h | 2 +- src/1.log.1 | 38841 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 38842 insertions(+), 1 deletion(-) create mode 100644 src/1.log.1 diff --git a/include/proxysql.h b/include/proxysql.h index 3397ef58d..268337bc1 100644 --- a/include/proxysql.h +++ b/include/proxysql.h @@ -99,7 +99,7 @@ #else #define DEB "" #endif /* DEBUG */ -#define PROXYSQL_VERSION "1.2.3-RC" DEB +#define PROXYSQL_VERSION "1.2.3" DEB #define PROXYSQL_CODENAME "Truls" #ifndef PROXYSQL_FUNC_DEFS diff --git a/src/1.log.1 b/src/1.log.1 new file mode 100644 index 000000000..2e3f5a735 --- /dev/null +++ b/src/1.log.1 @@ -0,0 +1,38841 @@ +Main init phase0 completed in 6.9e-05 secs. +Main init global variables completed in 0.000346 secs. +2016-09-19 21:22:10 ProxySQL_Admin.cpp:2783:flush_admin_variables___database_to_runtime(): [ERROR] Impossible to set variable version with value "1.2.2-RC_DEBUG". Resetting to current "1.2.3-RC_DEBUG". +2016-09-19 21:22:10 ProxySQL_Admin.cpp:2832:flush_mysql_variables___database_to_runtime(): [ERROR] Impossible to set not existing variable stmt_multiplexing with value "false". Deleting +2016-09-19 21:22:10 ProxySQL_Admin.cpp:2832:flush_mysql_variables___database_to_runtime(): [ERROR] Impossible to set not existing variable session_var_wait_timeout with value "0". Deleting +2016-09-19 21:22:10 ProxySQL_Admin.cpp:2832:flush_mysql_variables___database_to_runtime(): [ERROR] Impossible to set not existing variable monitor_query_variables with value "SELECT * FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES". Deleting +2016-09-19 21:22:10 ProxySQL_Admin.cpp:2832:flush_mysql_variables___database_to_runtime(): [ERROR] Impossible to set not existing variable monitor_query_status with value "SELECT * FROM INFORMATION_SCHEMA.GLOBAL_STATUS". Deleting +2016-09-19 21:22:10 ProxySQL_Admin.cpp:2832:flush_mysql_variables___database_to_runtime(): [ERROR] Impossible to set not existing variable monitor_timer_cached with value "true". Deleting +2016-09-19 21:22:10 ProxySQL_Admin.cpp:2832:flush_mysql_variables___database_to_runtime(): [ERROR] Impossible to set not existing variable query_processor_iter with value "0". Deleting +2016-09-19 21:22:10 ProxySQL_Admin.cpp:2832:flush_mysql_variables___database_to_runtime(): [ERROR] Impossible to set not existing variable ping_interval_server with value "10000". Deleting +2016-09-19 21:22:10 ProxySQL_Admin.cpp:2832:flush_mysql_variables___database_to_runtime(): [ERROR] Impossible to set not existing variable max_stmts_per_connection with value "20". Deleting +2016-09-19 21:22:10 ProxySQL_Admin.cpp:2832:flush_mysql_variables___database_to_runtime(): [ERROR] Impossible to set not existing variable max_stmts_cache with value "10000". Deleting +Admin initialized in 0.094444 secs. +Standard ProxySQL Admin rev. 0.2.0902_DEBUG -- ProxySQL_Admin.cpp -- Sun Sep 18 23:59:25 2016 +Standard MySQL Threads Handler rev. 0.2.0902_DEBUG -- MySQL_Thread.cpp -- Mon Sep 19 17:51:10 2016 +Standard MySQL Authentication rev. 0.2.0902_DEBUG -- MySQL_Authentication.cpp -- Fri Sep 2 23:14:23 2016 +Main init phase2 completed in 0.096042 secs. +Main phase3 : GloMyLogger initialized in 3e-06 secs. +HID: 1 , address: 127.0.0.1 , port: 21891 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21892 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21893 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21891 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 0 , address: 127.0.0.1 , port: 3306 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +2016-09-19 21:22:10 MySQL_HostGroups_Manager.cpp:520:generate_mysql_replication_hostgroups_table(): [INFO] New mysql_replication_hostgroups table +writer_hostgroup: 1 , reader_hostgroup: 2, (null) +Main phase3 : GloAdmin initialized in 0.001217 secs. +Standard Query Processor rev. 0.2.0902_DEBUG -- Query_Processor.cpp -- Sun Sep 18 23:59:25 2016 +Main phase3 : Query Processor initialized in 0.000116 secs. +Main phase3 : MySQL Threads Handler initialized in 0.000111 secs. +In memory Standard Query Cache (SQC) rev. 1.2.0905_DEBUG -- Query_Cache.cpp -- Sun Sep 18 23:59:25 2016 +Main phase3 : Query Cache initialized in 0.000473 secs. +Main phase3 : MySQL Threads Handler listeners started in 0.000132 secs. +Main init phase3 completed in 0.002465 secs. +2016-09-19 21:22:19 ProxySQL_Admin.cpp:989:admin_handler_command_load_or_save(): [INFO] Received load mysql servers to runtime command +HID: 1 , address: 127.0.0.1 , port: 21891 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21892 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21893 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21891 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 0 , address: 127.0.0.1 , port: 3306 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +2016-09-19 21:22:19 MySQL_HostGroups_Manager.cpp:362:commit(): [WARNING] Removed server at address 140440716268544, hostgroup 2, address 127.0.0.1 port 21893. Setting status OFFLINE HARD and immediately dropping all free connections. Used connections will be dropped when trying to use them +2016-09-19 21:22:19 MySQL_HostGroups_Manager.cpp:362:commit(): [WARNING] Removed server at address 140440716268672, hostgroup 2, address 127.0.0.1 port 21891. Setting status OFFLINE HARD and immediately dropping all free connections. Used connections will be dropped when trying to use them +HID: 1 , address: 127.0.0.1 , port: 21891 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21892 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21893 , weight: 1 , status: OFFLINE_HARD , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21891 , weight: 1 , status: OFFLINE_HARD , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 0 , address: 127.0.0.1 , port: 3306 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 1 , address: 127.0.0.1 , port: 21891 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21892 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21893 , weight: 1 , status: OFFLINE_HARD , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 2 , address: 127.0.0.1 , port: 21891 , weight: 1 , status: OFFLINE_HARD , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +HID: 0 , address: 127.0.0.1 , port: 3306 , weight: 1 , status: ONLINE , max_connections: 200 , max_replication_lag: 0 , use_ssl: 0 , max_latency_ms: 0 , comment: +2016-09-19 21:22:19 MySQL_HostGroups_Manager.cpp:520:generate_mysql_replication_hostgroups_table(): [INFO] New mysql_replication_hostgroups table +writer_hostgroup: 1 , reader_hostgroup: 2, (null) +thr e622b480 , status 1 +connecting thr e622b480 , thread 3 , mypolls 0 +myconn e620d500 connecting thr e622b480 , thread 3 , mypolls 0 +return 1 , connecting thr e622b480 , thread 3 , mypolls 0 +mypolls connecting thr e622b480 , thread 3 , mypolls e620d028 +connecting thr e622b480 , thread 3 , mypolls e620d028 +myconn e620d500 connecting thr e622b480 , thread 3 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:530:handler(): [ERROR] Connect timeout on 127.0.0.1:21892 : 2377342973798 - 0 = 2377342973798 +return -2 , connecting thr e622b480 , thread 3 , mypolls e620d028 +DESTROY3 connecting thr e622b480 , thread 3 , mypolls e620d028 +thr e622b480 , status 3 +thr e622b900 , status 1 +connecting thr e622b900 , thread 7 , mypolls 0 +myconn e620d900 connecting thr e622b900 , thread 7 , mypolls 0 +return 1 , connecting thr e622b900 , thread 7 , mypolls 0 +mypolls connecting thr e622b900 , thread 7 , mypolls e620d028 +connecting thr e622b900 , thread 7 , mypolls e620d028 +myconn e620d900 connecting thr e622b900 , thread 7 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:530:handler(): [ERROR] Connect timeout on 127.0.0.1:21892 : 2377342975890 - 0 = 2377342975890 +return -2 , connecting thr e622b900 , thread 7 , mypolls e620d028 +DESTROY3 connecting thr e622b900 , thread 7 , mypolls e620d028 +thr e622b900 , status 3 +thr e622c500 , status 1 +connecting thr e622c500 , thread 16 , mypolls 0 +myconn e63a0100 connecting thr e622c500 , thread 16 , mypolls 0 +return 1 , connecting thr e622c500 , thread 16 , mypolls 0 +mypolls connecting thr e622c500 , thread 16 , mypolls e620d028 +thr e622c680 , status 1 +connecting thr e622c680 , thread 17 , mypolls 0 +myconn e63a0700 connecting thr e622c680 , thread 17 , mypolls 0 +return 1 , connecting thr e622c680 , thread 17 , mypolls 0 +mypolls connecting thr e622c680 , thread 17 , mypolls e620d028 +connecting thr e622c500 , thread 16 , mypolls e620d028 +myconn e63a0100 connecting thr e622c500 , thread 16 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:27 , MyDS:27) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622c500 , thread 16 , mypolls e620d028 +DESTROY3 connecting thr e622c500 , thread 16 , mypolls e620d028 +thr e622c500 , status 3 +connecting thr e622c680 , thread 17 , mypolls e620d028 +myconn e63a0700 connecting thr e622c680 , thread 17 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:28 , MyDS:28) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622c680 , thread 17 , mypolls e620d028 +DESTROY3 connecting thr e622c680 , thread 17 , mypolls e620d028 +thr e622c680 , status 3 +thr e622c980 , status 1 +connecting thr e622c980 , thread 19 , mypolls 0 +myconn e63a0a00 connecting thr e622c980 , thread 19 , mypolls 0 +return 1 , connecting thr e622c980 , thread 19 , mypolls 0 +mypolls connecting thr e622c980 , thread 19 , mypolls e620d028 +thr e622cb00 , status 1 +connecting thr e622cb00 , thread 20 , mypolls 0 +myconn e63a0d00 connecting thr e622cb00 , thread 20 , mypolls 0 +return 1 , connecting thr e622cb00 , thread 20 , mypolls 0 +mypolls connecting thr e622cb00 , thread 20 , mypolls e620d028 +connecting thr e622cb00 , thread 20 , mypolls e620d028 +myconn e63a0d00 connecting thr e622cb00 , thread 20 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:530:handler(): [ERROR] Connect timeout on 127.0.0.1:21892 : 2377342980270 - 0 = 2377342980270 +return -2 , connecting thr e622cb00 , thread 20 , mypolls e620d028 +DESTROY3 connecting thr e622cb00 , thread 20 , mypolls e620d028 +thr e622cb00 , status 3 +thr e622c680 , status 1 +connecting thr e622c680 , thread 22 , mypolls 0 +myconn e63a0600 connecting thr e622c680 , thread 22 , mypolls 0 +return 1 , connecting thr e622c680 , thread 22 , mypolls 0 +mypolls connecting thr e622c680 , thread 22 , mypolls e620d028 +thr e622c500 , status 1 +connecting thr e622c500 , thread 23 , mypolls 0 +myconn e63a0f00 connecting thr e622c500 , thread 23 , mypolls 0 +return 1 , connecting thr e622c500 , thread 23 , mypolls 0 +mypolls connecting thr e622c500 , thread 23 , mypolls e620d028 +connecting thr e622c980 , thread 19 , mypolls e620d028 +myconn e63a0a00 connecting thr e622c980 , thread 19 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:27 , MyDS:27) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622c980 , thread 19 , mypolls e620d028 +DESTROY3 connecting thr e622c980 , thread 19 , mypolls e620d028 +thr e622c980 , status 3 +thr e622cb00 , status 1 +connecting thr e622cb00 , thread 25 , mypolls 0 +myconn e56a2000 connecting thr e622cb00 , thread 25 , mypolls 0 +return 1 , connecting thr e622cb00 , thread 25 , mypolls 0 +mypolls connecting thr e622cb00 , thread 25 , mypolls e620d028 +thr e622cf80 , status 1 +connecting thr e622cf80 , thread 26 , mypolls 0 +myconn e56a2200 connecting thr e622cf80 , thread 26 , mypolls 0 +return 1 , connecting thr e622cf80 , thread 26 , mypolls 0 +mypolls connecting thr e622cf80 , thread 26 , mypolls e620d028 +thr e622d100 , status 1 +connecting thr e622d100 , thread 27 , mypolls 0 +myconn e56a2400 connecting thr e622d100 , thread 27 , mypolls 0 +return 1 , connecting thr e622d100 , thread 27 , mypolls 0 +mypolls connecting thr e622d100 , thread 27 , mypolls e620d028 +thr e622d280 , status 1 +connecting thr e622d280 , thread 28 , mypolls 0 +myconn e56a2600 connecting thr e622d280 , thread 28 , mypolls 0 +return 1 , connecting thr e622d280 , thread 28 , mypolls 0 +mypolls connecting thr e622d280 , thread 28 , mypolls e620d028 +thr e622d400 , status 1 +connecting thr e622d400 , thread 29 , mypolls 0 +myconn e56a2800 connecting thr e622d400 , thread 29 , mypolls 0 +return 1 , connecting thr e622d400 , thread 29 , mypolls 0 +mypolls connecting thr e622d400 , thread 29 , mypolls e620d028 +thr e622d580 , status 1 +connecting thr e622d580 , thread 30 , mypolls 0 +myconn e56a2a00 connecting thr e622d580 , thread 30 , mypolls 0 +return 1 , connecting thr e622d580 , thread 30 , mypolls 0 +mypolls connecting thr e622d580 , thread 30 , mypolls e620d028 +connecting thr e622c680 , thread 22 , mypolls e620d028 +myconn e63a0600 connecting thr e622c680 , thread 22 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:31 , MyDS:31) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622c680 , thread 22 , mypolls e620d028 +DESTROY3 connecting thr e622c680 , thread 22 , mypolls e620d028 +thr e622c680 , status 3 +connecting thr e622c500 , thread 23 , mypolls e620d028 +myconn e63a0f00 connecting thr e622c500 , thread 23 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:33 , MyDS:33) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622c500 , thread 23 , mypolls e620d028 +DESTROY3 connecting thr e622c500 , thread 23 , mypolls e620d028 +thr e622c500 , status 3 +connecting thr e622d580 , thread 30 , mypolls e620d028 +myconn e56a2a00 connecting thr e622d580 , thread 30 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:39 , MyDS:39) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622d580 , thread 30 , mypolls e620d028 +DESTROY3 connecting thr e622d580 , thread 30 , mypolls e620d028 +thr e622d580 , status 3 +connecting thr e622cb00 , thread 25 , mypolls e620d028 +myconn e56a2000 connecting thr e622cb00 , thread 25 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:34 , MyDS:34) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622cb00 , thread 25 , mypolls e620d028 +DESTROY3 connecting thr e622cb00 , thread 25 , mypolls e620d028 +thr e622cb00 , status 3 +connecting thr e622cf80 , thread 26 , mypolls e620d028 +myconn e56a2200 connecting thr e622cf80 , thread 26 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:35 , MyDS:35) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622cf80 , thread 26 , mypolls e620d028 +DESTROY3 connecting thr e622cf80 , thread 26 , mypolls e620d028 +thr e622cf80 , status 3 +connecting thr e622d100 , thread 27 , mypolls e620d028 +myconn e56a2400 connecting thr e622d100 , thread 27 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:36 , MyDS:36) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622d100 , thread 27 , mypolls e620d028 +DESTROY3 connecting thr e622d100 , thread 27 , mypolls e620d028 +thr e622d100 , status 3 +connecting thr e622d280 , thread 28 , mypolls e620d028 +myconn e56a2600 connecting thr e622d280 , thread 28 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:37 , MyDS:37) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622d280 , thread 28 , mypolls e620d028 +DESTROY3 connecting thr e622d280 , thread 28 , mypolls e620d028 +thr e622d280 , status 3 +connecting thr e622d400 , thread 29 , mypolls e620d028 +myconn e56a2800 connecting thr e622d400 , thread 29 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:530:handler(): [ERROR] Connect timeout on 127.0.0.1:21892 : 2377342986432 - 0 = 2377342986432 +return -2 , connecting thr e622d400 , thread 29 , mypolls e620d028 +DESTROY3 connecting thr e622d400 , thread 29 , mypolls e620d028 +thr e622d400 , status 3 +thr e622d700 , status 1 +connecting thr e622d700 , thread 32 , mypolls 0 +myconn e56a2600 connecting thr e622d700 , thread 32 , mypolls 0 +return 1 , connecting thr e622d700 , thread 32 , mypolls 0 +mypolls connecting thr e622d700 , thread 32 , mypolls e620d028 +thr e622d880 , status 1 +connecting thr e622d880 , thread 33 , mypolls 0 +myconn e56a2200 connecting thr e622d880 , thread 33 , mypolls 0 +return 1 , connecting thr e622d880 , thread 33 , mypolls 0 +mypolls connecting thr e622d880 , thread 33 , mypolls e620d028 +thr e622da00 , status 1 +connecting thr e622da00 , thread 34 , mypolls 0 +myconn e56a2a00 connecting thr e622da00 , thread 34 , mypolls 0 +return 1 , connecting thr e622da00 , thread 34 , mypolls 0 +mypolls connecting thr e622da00 , thread 34 , mypolls e620d028 +thr e622db80 , status 1 +connecting thr e622db80 , thread 35 , mypolls 0 +myconn e63a0100 connecting thr e622db80 , thread 35 , mypolls 0 +return 1 , connecting thr e622db80 , thread 35 , mypolls 0 +mypolls connecting thr e622db80 , thread 35 , mypolls e620d028 +thr e622dd00 , status 1 +connecting thr e622dd00 , thread 36 , mypolls 0 +myconn e56a2c00 connecting thr e622dd00 , thread 36 , mypolls 0 +return 1 , connecting thr e622dd00 , thread 36 , mypolls 0 +mypolls connecting thr e622dd00 , thread 36 , mypolls e620d028 +thr e622de80 , status 1 +connecting thr e622de80 , thread 37 , mypolls 0 +myconn e56a2f00 connecting thr e622de80 , thread 37 , mypolls 0 +return 1 , connecting thr e622de80 , thread 37 , mypolls 0 +mypolls connecting thr e622de80 , thread 37 , mypolls e620d028 +thr e57de000 , status 1 +connecting thr e57de000 , thread 38 , mypolls 0 +myconn e57dd200 connecting thr e57de000 , thread 38 , mypolls 0 +return 1 , connecting thr e57de000 , thread 38 , mypolls 0 +mypolls connecting thr e57de000 , thread 38 , mypolls e620d028 +thr e57de180 , status 1 +connecting thr e57de180 , thread 39 , mypolls 0 +myconn e57dd400 connecting thr e57de180 , thread 39 , mypolls 0 +return 1 , connecting thr e57de180 , thread 39 , mypolls 0 +mypolls connecting thr e57de180 , thread 39 , mypolls e620d028 +thr e57de300 , status 1 +connecting thr e57de300 , thread 40 , mypolls 0 +myconn e63a0300 connecting thr e57de300 , thread 40 , mypolls 0 +return 1 , connecting thr e57de300 , thread 40 , mypolls 0 +mypolls connecting thr e57de300 , thread 40 , mypolls e620d028 +thr e622c500 , status 1 +connecting thr e622c500 , thread 41 , mypolls 0 +myconn e63a0d00 connecting thr e622c500 , thread 41 , mypolls 0 +return 1 , connecting thr e622c500 , thread 41 , mypolls 0 +mypolls connecting thr e622c500 , thread 41 , mypolls e620d028 +connecting thr e57de300 , thread 40 , mypolls e620d028 +myconn e63a0300 connecting thr e57de300 , thread 40 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:530:handler(): [ERROR] Connect timeout on 127.0.0.1:21892 : 2377342996346 - 0 = 2377342996346 +2016-09-19 21:22:24 MySQL_HostGroups_Manager.cpp:166:connect_error(): [ERROR] Shunning server 127.0.0.1:21892 with 5 errors/sec. Shunning for 10 seconds +return -2 , connecting thr e57de300 , thread 40 , mypolls e620d028 +DESTROY3 connecting thr e57de300 , thread 40 , mypolls e620d028 +thr e57de300 , status 3 +connecting thr e57de180 , thread 39 , mypolls e620d028 +myconn e57dd400 connecting thr e57de180 , thread 39 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:43 , MyDS:43) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e57de180 , thread 39 , mypolls e620d028 +DESTROY3 connecting thr e57de180 , thread 39 , mypolls e620d028 +thr e57de180 , status 3 +connecting thr e622d700 , thread 32 , mypolls e620d028 +myconn e56a2600 connecting thr e622d700 , thread 32 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:33 , MyDS:33) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622d700 , thread 32 , mypolls e620d028 +DESTROY3 connecting thr e622d700 , thread 32 , mypolls e620d028 +thr e622d700 , status 3 +connecting thr e622d880 , thread 33 , mypolls e620d028 +myconn e56a2200 connecting thr e622d880 , thread 33 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:34 , MyDS:34) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622d880 , thread 33 , mypolls e620d028 +DESTROY3 connecting thr e622d880 , thread 33 , mypolls e620d028 +thr e622d880 , status 3 +connecting thr e622da00 , thread 34 , mypolls e620d028 +myconn e56a2a00 connecting thr e622da00 , thread 34 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:495:handler(): [ERROR] Failed to mysql_real_connect() on 127.0.0.1:21892 , FD (Conn:35 , MyDS:35) , 1049: Unknown database 'mysqlslap'. +return -1 , connecting thr e622da00 , thread 34 , mypolls e620d028 +DESTROY3 connecting thr e622da00 , thread 34 , mypolls e620d028 +thr e622da00 , status 3 +connecting thr e622db80 , thread 35 , mypolls e620d028 +myconn e63a0100 connecting thr e622db80 , thread 35 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:530:handler(): [ERROR] Connect timeout on 127.0.0.1:21892 : 2377342996346 - 0 = 2377342996346 +return -2 , connecting thr e622db80 , thread 35 , mypolls e620d028 +DESTROY3 connecting thr e622db80 , thread 35 , mypolls e620d028 +thr e622db80 , status 3 +connecting thr e622dd00 , thread 36 , mypolls e620d028 +myconn e56a2c00 connecting thr e622dd00 , thread 36 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:530:handler(): [ERROR] Connect timeout on 127.0.0.1:21892 : 2377342996346 - 0 = 2377342996346 +return -2 , connecting thr e622dd00 , thread 36 , mypolls e620d028 +DESTROY3 connecting thr e622dd00 , thread 36 , mypolls e620d028 +thr e622dd00 , status 3 +connecting thr e622de80 , thread 37 , mypolls e620d028 +myconn e56a2f00 connecting thr e622de80 , thread 37 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:530:handler(): [ERROR] Connect timeout on 127.0.0.1:21892 : 2377342996346 - 0 = 2377342996346 +return -2 , connecting thr e622de80 , thread 37 , mypolls e620d028 +DESTROY3 connecting thr e622de80 , thread 37 , mypolls e620d028 +thr e622de80 , status 3 +connecting thr e57de000 , thread 38 , mypolls e620d028 +myconn e57dd200 connecting thr e57de000 , thread 38 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:530:handler(): [ERROR] Connect timeout on 127.0.0.1:21892 : 2377342996346 - 0 = 2377342996346 +return -2 , connecting thr e57de000 , thread 38 , mypolls e620d028 +DESTROY3 connecting thr e57de000 , thread 38 , mypolls e620d028 +thr e57de000 , status 3 +connecting thr e622c500 , thread 41 , mypolls e620d028 +myconn e63a0d00 connecting thr e622c500 , thread 41 , mypolls e620d028 +2016-09-19 21:22:24 mysql_connection.cpp:530:handler(): [ERROR] Connect timeout on 127.0.0.1:21892 : 2377342996346 - 0 = 2377342996346 +return -2 , connecting thr e622c500 , thread 41 , mypolls e620d028 +DESTROY3 connecting thr e622c500 , thread 41 , mypolls e620d028 +thr e622c500 , status 3 +thr e622d280 , status 1 +connecting thr e622d280 , thread 43 , mypolls 0 +myconn 0 connecting thr e622d280 , thread 43 , mypolls 0 +thr e622d400 , status 1 +connecting thr e622d400 , thread 44 , mypolls 0 +myconn 0 connecting thr e622d400 , thread 44 , mypolls 0 +thr e57de480 , status 1 +connecting thr e57de480 , thread 45 , mypolls 0 +myconn 0 connecting thr e57de480 , thread 45 , mypolls 0 +thr e57de600 , status 1 +connecting thr e57de600 , thread 46 , mypolls 0 +myconn 0 connecting thr e57de600 , thread 46 , mypolls 0 +thr e57de780 , status 1 +connecting thr e57de780 , thread 47 , mypolls 0 +myconn 0 connecting thr e57de780 , thread 47 , mypolls 0 +thr e57de900 , status 1 +connecting thr e57de900 , thread 48 , mypolls 0 +myconn 0 connecting thr e57de900 , thread 48 , mypolls 0 +thr e622cf80 , status 1 +connecting thr e622cf80 , thread 50 , mypolls 0 +myconn 0 connecting thr e622cf80 , thread 50 , mypolls 0 +thr e57de000 , status 1 +connecting thr e57de000 , thread 51 , mypolls 0 +myconn 0 connecting thr e57de000 , thread 51 , mypolls 0 +thr e622c500 , status 1 +connecting thr e622c500 , thread 52 , mypolls 0 +myconn 0 connecting thr e622c500 , thread 52 , mypolls 0 +thr e622de80 , status 1 +connecting thr e622de80 , thread 53 , mypolls 0 +myconn 0 connecting thr e622de80 , thread 53 , mypolls 0 +thr e622dd00 , status 1 +connecting thr e622dd00 , thread 54 , mypolls 0 +myconn 0 connecting thr e622dd00 , thread 54 , mypolls 0 +thr e622db80 , status 1 +connecting thr e622db80 , thread 55 , mypolls 0 +myconn 0 connecting thr e622db80 , thread 55 , mypolls 0 +thr e622da00 , status 1 +connecting thr e622da00 , thread 56 , mypolls 0 +myconn 0 connecting thr e622da00 , thread 56 , mypolls 0 +thr e622d880 , status 1 +connecting thr e622d880 , thread 57 , mypolls 0 +myconn 0 connecting thr e622d880 , thread 57 , mypolls 0 +thr e622d700 , status 1 +connecting thr e622d700 , thread 58 , mypolls 0 +myconn 0 connecting thr e622d700 , thread 58 , mypolls 0 +thr e57de300 , status 1 +connecting thr e57de300 , thread 60 , mypolls 0 +myconn 0 connecting thr e57de300 , thread 60 , mypolls 0 +thr e622cb00 , status 1 +connecting thr e622cb00 , thread 61 , mypolls 0 +myconn 0 connecting thr e622cb00 , thread 61 , mypolls 0 +thr e622d580 , status 1 +connecting thr e622d580 , thread 62 , mypolls 0 +myconn 0 connecting thr e622d580 , thread 62 , mypolls 0 +thr e57dea80 , status 1 +connecting thr e57dea80 , thread 63 , mypolls 0 +myconn 0 connecting thr e57dea80 , thread 63 , mypolls 0 +thr e57dec00 , status 1 +connecting thr e57dec00 , thread 64 , mypolls 0 +myconn 0 connecting thr e57dec00 , thread 64 , mypolls 0 +thr e57ded80 , status 1 +connecting thr e57ded80 , thread 65 , mypolls 0 +myconn 0 connecting thr e57ded80 , thread 65 , mypolls 0 +thr e57def00 , status 1 +connecting thr e57def00 , thread 66 , mypolls 0 +myconn 0 connecting thr e57def00 , thread 66 , mypolls 0 +thr e57df080 , status 1 +connecting thr e57df080 , thread 67 , mypolls 0 +myconn 0 connecting thr e57df080 , thread 67 , mypolls 0 +thr e57df200 , status 1 +connecting thr e57df200 , thread 68 , mypolls 0 +myconn 0 connecting thr e57df200 , thread 68 , mypolls 0 +thr e57df380 , status 1 +connecting thr e57df380 , thread 69 , mypolls 0 +myconn 0 connecting thr e57df380 , thread 69 , mypolls 0 +thr e57df500 , status 1 +connecting thr e57df500 , thread 70 , mypolls 0 +myconn 0 connecting thr e57df500 , thread 70 , mypolls 0 +thr e57df680 , status 1 +connecting thr e57df680 , thread 71 , mypolls 0 +myconn 0 connecting thr e57df680 , thread 71 , mypolls 0 +thr e57df980 , status 1 +connecting thr e57df980 , thread 73 , mypolls 0 +myconn 0 connecting thr e57df980 , thread 73 , mypolls 0 +thr e57dfb00 , status 1 +connecting thr e57dfb00 , thread 74 , mypolls 0 +myconn 0 connecting thr e57dfb00 , thread 74 , mypolls 0 +thr e57dfc80 , status 1 +connecting thr e57dfc80 , thread 75 , mypolls 0 +myconn 0 connecting thr e57dfc80 , thread 75 , mypolls 0 +thr e57dfe00 , status 1 +connecting thr e57dfe00 , thread 76 , mypolls 0 +myconn 0 connecting thr e57dfe00 , thread 76 , mypolls 0 +thr e57e0100 , status 1 +connecting thr e57e0100 , thread 78 , mypolls 0 +myconn 0 connecting thr e57e0100 , thread 78 , mypolls 0 +thr e57e0280 , status 1 +connecting thr e57e0280 , thread 79 , mypolls 0 +myconn 0 connecting thr e57e0280 , thread 79 , mypolls 0 +thr e57e0400 , status 1 +connecting thr e57e0400 , thread 80 , mypolls 0 +myconn 0 connecting thr e57e0400 , thread 80 , mypolls 0 +thr e57e0580 , status 1 +connecting thr e57e0580 , thread 81 , mypolls 0 +myconn 0 connecting thr e57e0580 , thread 81 , mypolls 0 +thr e57e0700 , status 1 +connecting thr e57e0700 , thread 82 , mypolls 0 +myconn 0 connecting thr e57e0700 , thread 82 , mypolls 0 +thr e57e0880 , status 1 +connecting thr e57e0880 , thread 83 , mypolls 0 +myconn 0 connecting thr e57e0880 , thread 83 , mypolls 0 +thr e57e0a00 , status 1 +connecting thr e57e0a00 , thread 84 , mypolls 0 +myconn 0 connecting thr e57e0a00 , thread 84 , mypolls 0 +thr e57e0b80 , status 1 +connecting thr e57e0b80 , thread 85 , mypolls 0 +myconn 0 connecting thr e57e0b80 , thread 85 , mypolls 0 +thr e57e0d00 , status 1 +connecting thr e57e0d00 , thread 86 , mypolls 0 +myconn 0 connecting thr e57e0d00 , thread 86 , mypolls 0 +thr e57e0e80 , status 1 +connecting thr e57e0e80 , thread 87 , mypolls 0 +myconn 0 connecting thr e57e0e80 , thread 87 , mypolls 0 +thr e54eb000 , status 1 +connecting thr e54eb000 , thread 88 , mypolls 0 +myconn 0 connecting thr e54eb000 , thread 88 , mypolls 0 +thr e54eb180 , status 1 +connecting thr e54eb180 , thread 89 , mypolls 0 +myconn 0 connecting thr e54eb180 , thread 89 , mypolls 0 +thr e54eb300 , status 1 +connecting thr e54eb300 , thread 90 , mypolls 0 +myconn 0 connecting thr e54eb300 , thread 90 , mypolls 0 +thr e54eb480 , status 1 +connecting thr e54eb480 , thread 91 , mypolls 0 +myconn 0 connecting thr e54eb480 , thread 91 , mypolls 0 +thr e54eb600 , status 1 +connecting thr e54eb600 , thread 92 , mypolls 0 +myconn 0 connecting thr e54eb600 , thread 92 , mypolls 0 +thr e54eb900 , status 1 +connecting thr e54eb900 , thread 94 , mypolls 0 +myconn 0 connecting thr e54eb900 , thread 94 , mypolls 0 +thr e54eba80 , status 1 +connecting thr e54eba80 , thread 95 , mypolls 0 +myconn 0 connecting thr e54eba80 , thread 95 , mypolls 0 +thr e54ebc00 , status 1 +connecting thr e54ebc00 , thread 96 , mypolls 0 +myconn 0 connecting thr e54ebc00 , thread 96 , mypolls 0 +thr e54ebd80 , status 1 +connecting thr e54ebd80 , thread 97 , mypolls 0 +myconn 0 connecting thr e54ebd80 , thread 97 , mypolls 0 +thr e54ebf00 , status 1 +connecting thr e54ebf00 , thread 98 , mypolls 0 +myconn 0 connecting thr e54ebf00 , thread 98 , mypolls 0 +thr e54ec080 , status 1 +connecting thr e54ec080 , thread 99 , mypolls 0 +myconn 0 connecting thr e54ec080 , thread 99 , mypolls 0 +thr e54ec200 , status 1 +connecting thr e54ec200 , thread 100 , mypolls 0 +myconn 0 connecting thr e54ec200 , thread 100 , mypolls 0 +thr e54ec380 , status 1 +connecting thr e54ec380 , thread 101 , mypolls 0 +myconn 0 connecting thr e54ec380 , thread 101 , mypolls 0 +thr e54ec500 , status 1 +connecting thr e54ec500 , thread 102 , mypolls 0 +myconn 0 connecting thr e54ec500 , thread 102 , mypolls 0 +thr e54ec680 , status 1 +connecting thr e54ec680 , thread 103 , mypolls 0 +myconn 0 connecting thr e54ec680 , thread 103 , mypolls 0 +thr e54ec800 , status 1 +connecting thr e54ec800 , thread 104 , mypolls 0 +myconn 0 connecting thr e54ec800 , thread 104 , mypolls 0 +thr e54ec980 , status 1 +connecting thr e54ec980 , thread 105 , mypolls 0 +myconn 0 connecting thr e54ec980 , thread 105 , mypolls 0 +thr e54ecb00 , status 1 +connecting thr e54ecb00 , thread 106 , mypolls 0 +myconn 0 connecting thr e54ecb00 , thread 106 , mypolls 0 +thr e54ecc80 , status 1 +connecting thr e54ecc80 , thread 107 , mypolls 0 +myconn 0 connecting thr e54ecc80 , thread 107 , mypolls 0 +thr e54ece00 , status 1 +connecting thr e54ece00 , thread 108 , mypolls 0 +myconn 0 connecting thr e54ece00 , thread 108 , mypolls 0 +thr e54ed100 , status 1 +connecting thr e54ed100 , thread 110 , mypolls 0 +myconn 0 connecting thr e54ed100 , thread 110 , mypolls 0 +thr e54ed280 , status 1 +connecting thr e54ed280 , thread 111 , mypolls 0 +myconn 0 connecting thr e54ed280 , thread 111 , mypolls 0 +thr e54ed400 , status 1 +connecting thr e54ed400 , thread 112 , mypolls 0 +myconn 0 connecting thr e54ed400 , thread 112 , mypolls 0 +thr e54ed580 , status 1 +connecting thr e54ed580 , thread 113 , mypolls 0 +myconn 0 connecting thr e54ed580 , thread 113 , mypolls 0 +thr e54ed700 , status 1 +connecting thr e54ed700 , thread 114 , mypolls 0 +myconn 0 connecting thr e54ed700 , thread 114 , mypolls 0 +thr e54ed880 , status 1 +connecting thr e54ed880 , thread 115 , mypolls 0 +myconn 0 connecting thr e54ed880 , thread 115 , mypolls 0 +thr e54eda00 , status 1 +connecting thr e54eda00 , thread 116 , mypolls 0 +myconn 0 connecting thr e54eda00 , thread 116 , mypolls 0 +thr e54edb80 , status 1 +connecting thr e54edb80 , thread 117 , mypolls 0 +myconn 0 connecting thr e54edb80 , thread 117 , mypolls 0 +thr e54edd00 , status 1 +connecting thr e54edd00 , thread 118 , mypolls 0 +myconn 0 connecting thr e54edd00 , thread 118 , mypolls 0 +thr e54ede80 , status 1 +connecting thr e54ede80 , thread 119 , mypolls 0 +myconn 0 connecting thr e54ede80 , thread 119 , mypolls 0 +thr e5531000 , status 1 +connecting thr e5531000 , thread 120 , mypolls 0 +myconn 0 connecting thr e5531000 , thread 120 , mypolls 0 +thr e5531180 , status 1 +connecting thr e5531180 , thread 121 , mypolls 0 +myconn 0 connecting thr e5531180 , thread 121 , mypolls 0 +thr e5531300 , status 1 +connecting thr e5531300 , thread 122 , mypolls 0 +myconn 0 connecting thr e5531300 , thread 122 , mypolls 0 +thr e5531480 , status 1 +connecting thr e5531480 , thread 123 , mypolls 0 +myconn 0 connecting thr e5531480 , thread 123 , mypolls 0 +thr e5531780 , status 1 +connecting thr e5531780 , thread 125 , mypolls 0 +myconn 0 connecting thr e5531780 , thread 125 , mypolls 0 +thr e5531900 , status 1 +connecting thr e5531900 , thread 126 , mypolls 0 +myconn 0 connecting thr e5531900 , thread 126 , mypolls 0 +thr e5531a80 , status 1 +connecting thr e5531a80 , thread 127 , mypolls 0 +myconn 0 connecting thr e5531a80 , thread 127 , mypolls 0 +thr e5531c00 , status 1 +connecting thr e5531c00 , thread 128 , mypolls 0 +myconn 0 connecting thr e5531c00 , thread 128 , mypolls 0 +thr e5531d80 , status 1 +connecting thr e5531d80 , thread 129 , mypolls 0 +myconn 0 connecting thr e5531d80 , thread 129 , mypolls 0 +thr e5531f00 , status 1 +connecting thr e5531f00 , thread 130 , mypolls 0 +myconn 0 connecting thr e5531f00 , thread 130 , mypolls 0 +thr e5532080 , status 1 +connecting thr e5532080 , thread 131 , mypolls 0 +myconn 0 connecting thr e5532080 , thread 131 , mypolls 0 +thr e5532200 , status 1 +connecting thr e5532200 , thread 132 , mypolls 0 +myconn 0 connecting thr e5532200 , thread 132 , mypolls 0 +thr e5532380 , status 1 +connecting thr e5532380 , thread 133 , mypolls 0 +myconn 0 connecting thr e5532380 , thread 133 , mypolls 0 +thr e5532500 , status 1 +connecting thr e5532500 , thread 134 , mypolls 0 +myconn 0 connecting thr e5532500 , thread 134 , mypolls 0 +thr e5532680 , status 1 +connecting thr e5532680 , thread 135 , mypolls 0 +myconn 0 connecting thr e5532680 , thread 135 , mypolls 0 +thr e5532800 , status 1 +connecting thr e5532800 , thread 136 , mypolls 0 +myconn 0 connecting thr e5532800 , thread 136 , mypolls 0 +thr e5532980 , status 1 +connecting thr e5532980 , thread 137 , mypolls 0 +myconn 0 connecting thr e5532980 , thread 137 , mypolls 0 +thr e5532b00 , status 1 +connecting thr e5532b00 , thread 138 , mypolls 0 +myconn 0 connecting thr e5532b00 , thread 138 , mypolls 0 +thr e5532c80 , status 1 +connecting thr e5532c80 , thread 139 , mypolls 0 +myconn 0 connecting thr e5532c80 , thread 139 , mypolls 0 +thr e5532e00 , status 1 +connecting thr e5532e00 , thread 140 , mypolls 0 +myconn 0 connecting thr e5532e00 , thread 140 , mypolls 0 +thr e5533100 , status 1 +connecting thr e5533100 , thread 142 , mypolls 0 +myconn 0 connecting thr e5533100 , thread 142 , mypolls 0 +thr e5533280 , status 1 +connecting thr e5533280 , thread 143 , mypolls 0 +myconn 0 connecting thr e5533280 , thread 143 , mypolls 0 +thr e5533400 , status 1 +connecting thr e5533400 , thread 144 , mypolls 0 +myconn 0 connecting thr e5533400 , thread 144 , mypolls 0 +thr e5533580 , status 1 +connecting thr e5533580 , thread 145 , mypolls 0 +myconn 0 connecting thr e5533580 , thread 145 , mypolls 0 +thr e5533700 , status 1 +connecting thr e5533700 , thread 146 , mypolls 0 +myconn 0 connecting thr e5533700 , thread 146 , mypolls 0 +thr e5533880 , status 1 +connecting thr e5533880 , thread 147 , mypolls 0 +myconn 0 connecting thr e5533880 , thread 147 , mypolls 0 +thr e5533a00 , status 1 +connecting thr e5533a00 , thread 148 , mypolls 0 +myconn 0 connecting thr e5533a00 , thread 148 , mypolls 0 +thr e5533b80 , status 1 +connecting thr e5533b80 , thread 149 , mypolls 0 +myconn 0 connecting thr e5533b80 , thread 149 , mypolls 0 +thr e5533d00 , status 1 +connecting thr e5533d00 , thread 150 , mypolls 0 +myconn 0 connecting thr e5533d00 , thread 150 , mypolls 0 +thr e5533e80 , status 1 +connecting thr e5533e80 , thread 151 , mypolls 0 +myconn 0 connecting thr e5533e80 , thread 151 , mypolls 0 +thr e55fd000 , status 1 +connecting thr e55fd000 , thread 152 , mypolls 0 +myconn 0 connecting thr e55fd000 , thread 152 , mypolls 0 +thr e55fd180 , status 1 +connecting thr e55fd180 , thread 153 , mypolls 0 +myconn 0 connecting thr e55fd180 , thread 153 , mypolls 0 +thr e55fd300 , status 1 +connecting thr e55fd300 , thread 154 , mypolls 0 +myconn 0 connecting thr e55fd300 , thread 154 , mypolls 0 +thr e55fd480 , status 1 +connecting thr e55fd480 , thread 155 , mypolls 0 +myconn 0 connecting thr e55fd480 , thread 155 , mypolls 0 +thr e55fd600 , status 1 +connecting thr e55fd600 , thread 156 , mypolls 0 +myconn 0 connecting thr e55fd600 , thread 156 , mypolls 0 +thr e55fd780 , status 1 +connecting thr e55fd780 , thread 157 , mypolls 0 +myconn 0 connecting thr e55fd780 , thread 157 , mypolls 0 +thr e55fda80 , status 1 +connecting thr e55fda80 , thread 159 , mypolls 0 +myconn 0 connecting thr e55fda80 , thread 159 , mypolls 0 +thr e55fdc00 , status 1 +connecting thr e55fdc00 , thread 160 , mypolls 0 +myconn 0 connecting thr e55fdc00 , thread 160 , mypolls 0 +thr e55fdd80 , status 1 +connecting thr e55fdd80 , thread 161 , mypolls 0 +myconn 0 connecting thr e55fdd80 , thread 161 , mypolls 0 +thr e55fdf00 , status 1 +connecting thr e55fdf00 , thread 162 , mypolls 0 +myconn 0 connecting thr e55fdf00 , thread 162 , mypolls 0 +thr e55fe080 , status 1 +connecting thr e55fe080 , thread 163 , mypolls 0 +myconn 0 connecting thr e55fe080 , thread 163 , mypolls 0 +thr e55fe200 , status 1 +connecting thr e55fe200 , thread 164 , mypolls 0 +myconn 0 connecting thr e55fe200 , thread 164 , mypolls 0 +thr e55fe380 , status 1 +connecting thr e55fe380 , thread 165 , mypolls 0 +myconn 0 connecting thr e55fe380 , thread 165 , mypolls 0 +thr e55fe500 , status 1 +connecting thr e55fe500 , thread 166 , mypolls 0 +myconn 0 connecting thr e55fe500 , thread 166 , mypolls 0 +thr e55fe680 , status 1 +connecting thr e55fe680 , thread 167 , mypolls 0 +myconn 0 connecting thr e55fe680 , thread 167 , mypolls 0 +thr e55fe800 , status 1 +connecting thr e55fe800 , thread 168 , mypolls 0 +myconn 0 connecting thr e55fe800 , thread 168 , mypolls 0 +thr e55fe980 , status 1 +connecting thr e55fe980 , thread 169 , mypolls 0 +myconn 0 connecting thr e55fe980 , thread 169 , mypolls 0 +thr e55feb00 , status 1 +connecting thr e55feb00 , thread 170 , mypolls 0 +myconn 0 connecting thr e55feb00 , thread 170 , mypolls 0 +thr e55fec80 , status 1 +connecting thr e55fec80 , thread 171 , mypolls 0 +myconn 0 connecting thr e55fec80 , thread 171 , mypolls 0 +thr e55fee00 , status 1 +connecting thr e55fee00 , thread 172 , mypolls 0 +myconn 0 connecting thr e55fee00 , thread 172 , mypolls 0 +thr e55fef80 , status 1 +connecting thr e55fef80 , thread 173 , mypolls 0 +myconn 0 connecting thr e55fef80 , thread 173 , mypolls 0 +thr e55ff100 , status 1 +connecting thr e55ff100 , thread 174 , mypolls 0 +myconn 0 connecting thr e55ff100 , thread 174 , mypolls 0 +thr e55ff280 , status 1 +connecting thr e55ff280 , thread 175 , mypolls 0 +myconn 0 connecting thr e55ff280 , thread 175 , mypolls 0 +thr e55ff400 , status 1 +connecting thr e55ff400 , thread 176 , mypolls 0 +myconn 0 connecting thr e55ff400 , thread 176 , mypolls 0 +thr e55ff580 , status 1 +connecting thr e55ff580 , thread 177 , mypolls 0 +myconn 0 connecting thr e55ff580 , thread 177 , mypolls 0 +thr e55ff880 , status 1 +connecting thr e55ff880 , thread 179 , mypolls 0 +myconn 0 connecting thr e55ff880 , thread 179 , mypolls 0 +thr e55ffa00 , status 1 +connecting thr e55ffa00 , thread 180 , mypolls 0 +myconn 0 connecting thr e55ffa00 , thread 180 , mypolls 0 +thr e55ffb80 , status 1 +connecting thr e55ffb80 , thread 181 , mypolls 0 +myconn 0 connecting thr e55ffb80 , thread 181 , mypolls 0 +thr e55ffd00 , status 1 +connecting thr e55ffd00 , thread 182 , mypolls 0 +myconn 0 connecting thr e55ffd00 , thread 182 , mypolls 0 +thr e55ffe80 , status 1 +connecting thr e55ffe80 , thread 183 , mypolls 0 +myconn 0 connecting thr e55ffe80 , thread 183 , mypolls 0 +thr e4dfc000 , status 1 +connecting thr e4dfc000 , thread 184 , mypolls 0 +myconn 0 connecting thr e4dfc000 , thread 184 , mypolls 0 +thr e4dfc180 , status 1 +connecting thr e4dfc180 , thread 185 , mypolls 0 +myconn 0 connecting thr e4dfc180 , thread 185 , mypolls 0 +thr e4dfc300 , status 1 +connecting thr e4dfc300 , thread 186 , mypolls 0 +myconn 0 connecting thr e4dfc300 , thread 186 , mypolls 0 +thr e4dfc480 , status 1 +connecting thr e4dfc480 , thread 187 , mypolls 0 +myconn 0 connecting thr e4dfc480 , thread 187 , mypolls 0 +thr e4dfc600 , status 1 +connecting thr e4dfc600 , thread 188 , mypolls 0 +myconn 0 connecting thr e4dfc600 , thread 188 , mypolls 0 +thr e4dfc780 , status 1 +connecting thr e4dfc780 , thread 189 , mypolls 0 +myconn 0 connecting thr e4dfc780 , thread 189 , mypolls 0 +thr e4dfc900 , status 1 +connecting thr e4dfc900 , thread 190 , mypolls 0 +myconn 0 connecting thr e4dfc900 , thread 190 , mypolls 0 +thr e4dfca80 , status 1 +connecting thr e4dfca80 , thread 191 , mypolls 0 +myconn 0 connecting thr e4dfca80 , thread 191 , mypolls 0 +thr e4dfcc00 , status 1 +connecting thr e4dfcc00 , thread 192 , mypolls 0 +myconn 0 connecting thr e4dfcc00 , thread 192 , mypolls 0 +thr e4dfcd80 , status 1 +connecting thr e4dfcd80 , thread 193 , mypolls 0 +myconn 0 connecting thr e4dfcd80 , thread 193 , mypolls 0 +thr e4dfcf00 , status 1 +connecting thr e4dfcf00 , thread 194 , mypolls 0 +myconn 0 connecting thr e4dfcf00 , thread 194 , mypolls 0 +thr e4dfd080 , status 1 +connecting thr e4dfd080 , thread 195 , mypolls 0 +myconn 0 connecting thr e4dfd080 , thread 195 , mypolls 0 +thr e4dfd200 , status 1 +connecting thr e4dfd200 , thread 196 , mypolls 0 +myconn 0 connecting thr e4dfd200 , thread 196 , mypolls 0 +thr e4dfd380 , status 1 +connecting thr e4dfd380 , thread 197 , mypolls 0 +myconn 0 connecting thr e4dfd380 , thread 197 , mypolls 0 +thr e4dfd680 , status 1 +connecting thr e4dfd680 , thread 199 , mypolls 0 +myconn 0 connecting thr e4dfd680 , thread 199 , mypolls 0 +thr e4dfd800 , status 1 +connecting thr e4dfd800 , thread 200 , mypolls 0 +myconn 0 connecting thr e4dfd800 , thread 200 , mypolls 0 +thr e4dfd980 , status 1 +connecting thr e4dfd980 , thread 201 , mypolls 0 +myconn 0 connecting thr e4dfd980 , thread 201 , mypolls 0 +thr e4dfdb00 , status 1 +connecting thr e4dfdb00 , thread 202 , mypolls 0 +myconn 0 connecting thr e4dfdb00 , thread 202 , mypolls 0 +thr e4dfdc80 , status 1 +connecting thr e4dfdc80 , thread 203 , mypolls 0 +myconn 0 connecting thr e4dfdc80 , thread 203 , mypolls 0 +thr e4dfde00 , status 1 +connecting thr e4dfde00 , thread 204 , mypolls 0 +myconn 0 connecting thr e4dfde00 , thread 204 , mypolls 0 +thr e4dfdf80 , status 1 +connecting thr e4dfdf80 , thread 205 , mypolls 0 +myconn 0 connecting thr e4dfdf80 , thread 205 , mypolls 0 +thr e4dfe100 , status 1 +connecting thr e4dfe100 , thread 206 , mypolls 0 +myconn 0 connecting thr e4dfe100 , thread 206 , mypolls 0 +thr e4dfe280 , status 1 +connecting thr e4dfe280 , thread 207 , mypolls 0 +myconn 0 connecting thr e4dfe280 , thread 207 , mypolls 0 +thr e4dfe400 , status 1 +connecting thr e4dfe400 , thread 208 , mypolls 0 +myconn 0 connecting thr e4dfe400 , thread 208 , mypolls 0 +thr e4dfe580 , status 1 +connecting thr e4dfe580 , thread 209 , mypolls 0 +myconn 0 connecting thr e4dfe580 , thread 209 , mypolls 0 +thr e4dfe700 , status 1 +connecting thr e4dfe700 , thread 210 , mypolls 0 +myconn 0 connecting thr e4dfe700 , thread 210 , mypolls 0 +thr e4dfe880 , status 1 +connecting thr e4dfe880 , thread 211 , mypolls 0 +myconn 0 connecting thr e4dfe880 , thread 211 , mypolls 0 +thr e4dfea00 , status 1 +connecting thr e4dfea00 , thread 212 , mypolls 0 +myconn 0 connecting thr e4dfea00 , thread 212 , mypolls 0 +thr e4dfeb80 , status 1 +connecting thr e4dfeb80 , thread 213 , mypolls 0 +myconn 0 connecting thr e4dfeb80 , thread 213 , mypolls 0 +thr e4dfed00 , status 1 +connecting thr e4dfed00 , thread 214 , mypolls 0 +myconn 0 connecting thr e4dfed00 , thread 214 , mypolls 0 +thr e5659000 , status 1 +connecting thr e5659000 , thread 216 , mypolls 0 +myconn 0 connecting thr e5659000 , thread 216 , mypolls 0 +thr e5659180 , status 1 +connecting thr e5659180 , thread 217 , mypolls 0 +myconn 0 connecting thr e5659180 , thread 217 , mypolls 0 +thr e5659300 , status 1 +connecting thr e5659300 , thread 218 , mypolls 0 +myconn 0 connecting thr e5659300 , thread 218 , mypolls 0 +thr e5659480 , status 1 +connecting thr e5659480 , thread 219 , mypolls 0 +myconn 0 connecting thr e5659480 , thread 219 , mypolls 0 +thr e5659600 , status 1 +connecting thr e5659600 , thread 220 , mypolls 0 +myconn 0 connecting thr e5659600 , thread 220 , mypolls 0 +thr e5659780 , status 1 +connecting thr e5659780 , thread 221 , mypolls 0 +myconn 0 connecting thr e5659780 , thread 221 , mypolls 0 +thr e5659900 , status 1 +connecting thr e5659900 , thread 222 , mypolls 0 +myconn 0 connecting thr e5659900 , thread 222 , mypolls 0 +thr e5659a80 , status 1 +connecting thr e5659a80 , thread 223 , mypolls 0 +myconn 0 connecting thr e5659a80 , thread 223 , mypolls 0 +thr e5659c00 , status 1 +connecting thr e5659c00 , thread 224 , mypolls 0 +myconn 0 connecting thr e5659c00 , thread 224 , mypolls 0 +thr e5659d80 , status 1 +connecting thr e5659d80 , thread 225 , mypolls 0 +myconn 0 connecting thr e5659d80 , thread 225 , mypolls 0 +thr e5659f00 , status 1 +connecting thr e5659f00 , thread 226 , mypolls 0 +myconn 0 connecting thr e5659f00 , thread 226 , mypolls 0 +thr e565a080 , status 1 +connecting thr e565a080 , thread 227 , mypolls 0 +myconn 0 connecting thr e565a080 , thread 227 , mypolls 0 +thr e565a200 , status 1 +connecting thr e565a200 , thread 228 , mypolls 0 +myconn 0 connecting thr e565a200 , thread 228 , mypolls 0 +thr e565a380 , status 1 +connecting thr e565a380 , thread 229 , mypolls 0 +myconn 0 connecting thr e565a380 , thread 229 , mypolls 0 +thr e565a500 , status 1 +connecting thr e565a500 , thread 230 , mypolls 0 +myconn 0 connecting thr e565a500 , thread 230 , mypolls 0 +thr e565a680 , status 1 +connecting thr e565a680 , thread 231 , mypolls 0 +myconn 0 connecting thr e565a680 , thread 231 , mypolls 0 +thr e565a800 , status 1 +connecting thr e565a800 , thread 232 , mypolls 0 +myconn 0 connecting thr e565a800 , thread 232 , mypolls 0 +thr e565a980 , status 1 +connecting thr e565a980 , thread 233 , mypolls 0 +myconn 0 connecting thr e565a980 , thread 233 , mypolls 0 +thr e565ac80 , status 1 +connecting thr e565ac80 , thread 235 , mypolls 0 +myconn 0 connecting thr e565ac80 , thread 235 , mypolls 0 +thr e565ae00 , status 1 +connecting thr e565ae00 , thread 236 , mypolls 0 +myconn 0 connecting thr e565ae00 , thread 236 , mypolls 0 +thr e565af80 , status 1 +connecting thr e565af80 , thread 237 , mypolls 0 +myconn 0 connecting thr e565af80 , thread 237 , mypolls 0 +thr e565b100 , status 1 +connecting thr e565b100 , thread 238 , mypolls 0 +myconn 0 connecting thr e565b100 , thread 238 , mypolls 0 +thr e565b280 , status 1 +connecting thr e565b280 , thread 239 , mypolls 0 +myconn 0 connecting thr e565b280 , thread 239 , mypolls 0 +thr e565b400 , status 1 +connecting thr e565b400 , thread 240 , mypolls 0 +myconn 0 connecting thr e565b400 , thread 240 , mypolls 0 +thr e565b580 , status 1 +connecting thr e565b580 , thread 241 , mypolls 0 +myconn 0 connecting thr e565b580 , thread 241 , mypolls 0 +thr e565b700 , status 1 +connecting thr e565b700 , thread 242 , mypolls 0 +myconn 0 connecting thr e565b700 , thread 242 , mypolls 0 +thr e565b880 , status 1 +connecting thr e565b880 , thread 243 , mypolls 0 +myconn 0 connecting thr e565b880 , thread 243 , mypolls 0 +thr e565ba00 , status 1 +connecting thr e565ba00 , thread 244 , mypolls 0 +myconn 0 connecting thr e565ba00 , thread 244 , mypolls 0 +thr e565bb80 , status 1 +connecting thr e565bb80 , thread 245 , mypolls 0 +myconn 0 connecting thr e565bb80 , thread 245 , mypolls 0 +thr e565bd00 , status 1 +connecting thr e565bd00 , thread 246 , mypolls 0 +myconn 0 connecting thr e565bd00 , thread 246 , mypolls 0 +thr e565be80 , status 1 +connecting thr e565be80 , thread 247 , mypolls 0 +myconn 0 connecting thr e565be80 , thread 247 , mypolls 0 +thr e56f2000 , status 1 +connecting thr e56f2000 , thread 248 , mypolls 0 +myconn 0 connecting thr e56f2000 , thread 248 , mypolls 0 +thr e56f2180 , status 1 +connecting thr e56f2180 , thread 249 , mypolls 0 +myconn 0 connecting thr e56f2180 , thread 249 , mypolls 0 +thr e56f2300 , status 1 +connecting thr e56f2300 , thread 250 , mypolls 0 +myconn 0 connecting thr e56f2300 , thread 250 , mypolls 0 +thr e56f2480 , status 1 +connecting thr e56f2480 , thread 251 , mypolls 0 +myconn 0 connecting thr e56f2480 , thread 251 , mypolls 0 +thr e56f2600 , status 1 +connecting thr e56f2600 , thread 252 , mypolls 0 +myconn 0 connecting thr e56f2600 , thread 252 , mypolls 0 +thr e56f2780 , status 1 +connecting thr e56f2780 , thread 253 , mypolls 0 +myconn 0 connecting thr e56f2780 , thread 253 , mypolls 0 +thr e56f2a80 , status 1 +connecting thr e56f2a80 , thread 255 , mypolls 0 +myconn 0 connecting thr e56f2a80 , thread 255 , mypolls 0 +thr e56f2c00 , status 1 +connecting thr e56f2c00 , thread 256 , mypolls 0 +myconn 0 connecting thr e56f2c00 , thread 256 , mypolls 0 +thr e56f2d80 , status 1 +connecting thr e56f2d80 , thread 257 , mypolls 0 +myconn 0 connecting thr e56f2d80 , thread 257 , mypolls 0 +thr e56f2f00 , status 1 +connecting thr e56f2f00 , thread 258 , mypolls 0 +myconn 0 connecting thr e56f2f00 , thread 258 , mypolls 0 +thr e56f3080 , status 1 +connecting thr e56f3080 , thread 259 , mypolls 0 +myconn 0 connecting thr e56f3080 , thread 259 , mypolls 0 +thr e56f3200 , status 1 +connecting thr e56f3200 , thread 260 , mypolls 0 +myconn 0 connecting thr e56f3200 , thread 260 , mypolls 0 +thr e56f3380 , status 1 +connecting thr e56f3380 , thread 261 , mypolls 0 +myconn 0 connecting thr e56f3380 , thread 261 , mypolls 0 +thr e56f3500 , status 1 +connecting thr e56f3500 , thread 262 , mypolls 0 +myconn 0 connecting thr e56f3500 , thread 262 , mypolls 0 +thr e56f3680 , status 1 +connecting thr e56f3680 , thread 263 , mypolls 0 +myconn 0 connecting thr e56f3680 , thread 263 , mypolls 0 +thr e56f3800 , status 1 +connecting thr e56f3800 , thread 264 , mypolls 0 +myconn 0 connecting thr e56f3800 , thread 264 , mypolls 0 +thr e56f3980 , status 1 +connecting thr e56f3980 , thread 265 , mypolls 0 +myconn 0 connecting thr e56f3980 , thread 265 , mypolls 0 +thr e56f3b00 , status 1 +connecting thr e56f3b00 , thread 266 , mypolls 0 +myconn 0 connecting thr e56f3b00 , thread 266 , mypolls 0 +thr e56f3c80 , status 1 +connecting thr e56f3c80 , thread 267 , mypolls 0 +myconn 0 connecting thr e56f3c80 , thread 267 , mypolls 0 +thr e56f3e00 , status 1 +connecting thr e56f3e00 , thread 268 , mypolls 0 +myconn 0 connecting thr e56f3e00 , thread 268 , mypolls 0 +thr e56f3f80 , status 1 +connecting thr e56f3f80 , thread 269 , mypolls 0 +myconn 0 connecting thr e56f3f80 , thread 269 , mypolls 0 +thr e56f4100 , status 1 +connecting thr e56f4100 , thread 270 , mypolls 0 +myconn 0 connecting thr e56f4100 , thread 270 , mypolls 0 +thr e56f4280 , status 1 +connecting thr e56f4280 , thread 271 , mypolls 0 +myconn 0 connecting thr e56f4280 , thread 271 , mypolls 0 +thr e56f4400 , status 1 +connecting thr e56f4400 , thread 272 , mypolls 0 +myconn 0 connecting thr e56f4400 , thread 272 , mypolls 0 +thr e56f4580 , status 1 +connecting thr e56f4580 , thread 273 , mypolls 0 +myconn 0 connecting thr e56f4580 , thread 273 , mypolls 0 +thr e56f4700 , status 1 +connecting thr e56f4700 , thread 274 , mypolls 0 +myconn 0 connecting thr e56f4700 , thread 274 , mypolls 0 +thr e56f4880 , status 1 +connecting thr e56f4880 , thread 275 , mypolls 0 +myconn 0 connecting thr e56f4880 , thread 275 , mypolls 0 +thr e56f4b80 , status 1 +connecting thr e56f4b80 , thread 277 , mypolls 0 +myconn 0 connecting thr e56f4b80 , thread 277 , mypolls 0 +thr e56f4d00 , status 1 +connecting thr e56f4d00 , thread 278 , mypolls 0 +myconn 0 connecting thr e56f4d00 , thread 278 , mypolls 0 +thr e56f4e80 , status 1 +connecting thr e56f4e80 , thread 279 , mypolls 0 +myconn 0 connecting thr e56f4e80 , thread 279 , mypolls 0 +thr e57f9000 , status 1 +connecting thr e57f9000 , thread 280 , mypolls 0 +myconn 0 connecting thr e57f9000 , thread 280 , mypolls 0 +thr e57f9180 , status 1 +connecting thr e57f9180 , thread 281 , mypolls 0 +myconn 0 connecting thr e57f9180 , thread 281 , mypolls 0 +thr e57f9300 , status 1 +connecting thr e57f9300 , thread 282 , mypolls 0 +myconn 0 connecting thr e57f9300 , thread 282 , mypolls 0 +thr e57f9480 , status 1 +connecting thr e57f9480 , thread 283 , mypolls 0 +myconn 0 connecting thr e57f9480 , thread 283 , mypolls 0 +thr e57f9600 , status 1 +connecting thr e57f9600 , thread 284 , mypolls 0 +myconn 0 connecting thr e57f9600 , thread 284 , mypolls 0 +thr e57f9780 , status 1 +connecting thr e57f9780 , thread 285 , mypolls 0 +myconn 0 connecting thr e57f9780 , thread 285 , mypolls 0 +thr e57f9900 , status 1 +connecting thr e57f9900 , thread 286 , mypolls 0 +myconn 0 connecting thr e57f9900 , thread 286 , mypolls 0 +thr e57f9a80 , status 1 +connecting thr e57f9a80 , thread 287 , mypolls 0 +myconn 0 connecting thr e57f9a80 , thread 287 , mypolls 0 +thr e57f9c00 , status 1 +connecting thr e57f9c00 , thread 288 , mypolls 0 +myconn 0 connecting thr e57f9c00 , thread 288 , mypolls 0 +thr e57f9d80 , status 1 +connecting thr e57f9d80 , thread 289 , mypolls 0 +myconn 0 connecting thr e57f9d80 , thread 289 , mypolls 0 +thr e57f9f00 , status 1 +connecting thr e57f9f00 , thread 290 , mypolls 0 +myconn 0 connecting thr e57f9f00 , thread 290 , mypolls 0 +thr e57fa080 , status 1 +connecting thr e57fa080 , thread 291 , mypolls 0 +myconn 0 connecting thr e57fa080 , thread 291 , mypolls 0 +thr e57fa200 , status 1 +connecting thr e57fa200 , thread 292 , mypolls 0 +myconn 0 connecting thr e57fa200 , thread 292 , mypolls 0 +thr e57fa380 , status 1 +connecting thr e57fa380 , thread 293 , mypolls 0 +myconn 0 connecting thr e57fa380 , thread 293 , mypolls 0 +thr e57fa500 , status 1 +connecting thr e57fa500 , thread 294 , mypolls 0 +myconn 0 connecting thr e57fa500 , thread 294 , mypolls 0 +thr e57fa680 , status 1 +connecting thr e57fa680 , thread 295 , mypolls 0 +myconn 0 connecting thr e57fa680 , thread 295 , mypolls 0 +thr e57fa800 , status 1 +connecting thr e57fa800 , thread 296 , mypolls 0 +myconn 0 connecting thr e57fa800 , thread 296 , mypolls 0 +thr e57fa980 , status 1 +connecting thr e57fa980 , thread 297 , mypolls 0 +myconn 0 connecting thr e57fa980 , thread 297 , mypolls 0 +thr e57fab00 , status 1 +connecting thr e57fab00 , thread 298 , mypolls 0 +myconn 0 connecting thr e57fab00 , thread 298 , mypolls 0 +thr e57fac80 , status 1 +connecting thr e57fac80 , thread 299 , mypolls 0 +myconn 0 connecting thr e57fac80 , thread 299 , mypolls 0 +thr e57fae00 , status 1 +connecting thr e57fae00 , thread 300 , mypolls 0 +myconn 0 connecting thr e57fae00 , thread 300 , mypolls 0 +thr e57faf80 , status 1 +connecting thr e57faf80 , thread 301 , mypolls 0 +myconn 0 connecting thr e57faf80 , thread 301 , mypolls 0 +thr e57fb100 , status 1 +connecting thr e57fb100 , thread 302 , mypolls 0 +myconn 0 connecting thr e57fb100 , thread 302 , mypolls 0 +thr e57fb280 , status 1 +connecting thr e57fb280 , thread 303 , mypolls 0 +myconn 0 connecting thr e57fb280 , thread 303 , mypolls 0 +thr e57fb400 , status 1 +connecting thr e57fb400 , thread 304 , mypolls 0 +myconn 0 connecting thr e57fb400 , thread 304 , mypolls 0 +thr e57fb580 , status 1 +connecting thr e57fb580 , thread 305 , mypolls 0 +myconn 0 connecting thr e57fb580 , thread 305 , mypolls 0 +thr e57fb700 , status 1 +connecting thr e57fb700 , thread 306 , mypolls 0 +myconn 0 connecting thr e57fb700 , thread 306 , mypolls 0 +thr e57fb880 , status 1 +connecting thr e57fb880 , thread 307 , mypolls 0 +myconn 0 connecting thr e57fb880 , thread 307 , mypolls 0 +thr e57fba00 , status 1 +connecting thr e57fba00 , thread 308 , mypolls 0 +myconn 0 connecting thr e57fba00 , thread 308 , mypolls 0 +thr e57fbb80 , status 1 +connecting thr e57fbb80 , thread 309 , mypolls 0 +myconn 0 connecting thr e57fbb80 , thread 309 , mypolls 0 +thr e57fbd00 , status 1 +connecting thr e57fbd00 , thread 310 , mypolls 0 +myconn 0 connecting thr e57fbd00 , thread 310 , mypolls 0 +thr e57fbe80 , status 1 +connecting thr e57fbe80 , thread 311 , mypolls 0 +myconn 0 connecting thr e57fbe80 , thread 311 , mypolls 0 +thr e56bf000 , status 1 +connecting thr e56bf000 , thread 312 , mypolls 0 +myconn 0 connecting thr e56bf000 , thread 312 , mypolls 0 +thr e56bf180 , status 1 +connecting thr e56bf180 , thread 313 , mypolls 0 +myconn 0 connecting thr e56bf180 , thread 313 , mypolls 0 +thr e56bf300 , status 1 +connecting thr e56bf300 , thread 314 , mypolls 0 +myconn 0 connecting thr e56bf300 , thread 314 , mypolls 0 +thr e56bf480 , status 1 +connecting thr e56bf480 , thread 315 , mypolls 0 +myconn 0 connecting thr e56bf480 , thread 315 , mypolls 0 +thr e56bf600 , status 1 +connecting thr e56bf600 , thread 316 , mypolls 0 +myconn 0 connecting thr e56bf600 , thread 316 , mypolls 0 +thr e56bf780 , status 1 +connecting thr e56bf780 , thread 317 , mypolls 0 +myconn 0 connecting thr e56bf780 , thread 317 , mypolls 0 +thr e56bf900 , status 1 +connecting thr e56bf900 , thread 318 , mypolls 0 +myconn 0 connecting thr e56bf900 , thread 318 , mypolls 0 +thr e56bfa80 , status 1 +connecting thr e56bfa80 , thread 319 , mypolls 0 +myconn 0 connecting thr e56bfa80 , thread 319 , mypolls 0 +thr e56bfc00 , status 1 +connecting thr e56bfc00 , thread 320 , mypolls 0 +myconn 0 connecting thr e56bfc00 , thread 320 , mypolls 0 +thr e56bfd80 , status 1 +connecting thr e56bfd80 , thread 321 , mypolls 0 +myconn 0 connecting thr e56bfd80 , thread 321 , mypolls 0 +thr e56bff00 , status 1 +connecting thr e56bff00 , thread 322 , mypolls 0 +myconn 0 connecting thr e56bff00 , thread 322 , mypolls 0 +thr e56c0080 , status 1 +connecting thr e56c0080 , thread 323 , mypolls 0 +myconn 0 connecting thr e56c0080 , thread 323 , mypolls 0 +thr e56c0200 , status 1 +connecting thr e56c0200 , thread 324 , mypolls 0 +myconn 0 connecting thr e56c0200 , thread 324 , mypolls 0 +thr e56c0380 , status 1 +connecting thr e56c0380 , thread 325 , mypolls 0 +myconn 0 connecting thr e56c0380 , thread 325 , mypolls 0 +thr e56c0500 , status 1 +connecting thr e56c0500 , thread 326 , mypolls 0 +myconn 0 connecting thr e56c0500 , thread 326 , mypolls 0 +thr e56c0680 , status 1 +connecting thr e56c0680 , thread 327 , mypolls 0 +myconn 0 connecting thr e56c0680 , thread 327 , mypolls 0 +thr e56c0800 , status 1 +connecting thr e56c0800 , thread 328 , mypolls 0 +myconn 0 connecting thr e56c0800 , thread 328 , mypolls 0 +thr e56c0980 , status 1 +connecting thr e56c0980 , thread 329 , mypolls 0 +myconn 0 connecting thr e56c0980 , thread 329 , mypolls 0 +thr e56c0b00 , status 1 +connecting thr e56c0b00 , thread 330 , mypolls 0 +myconn 0 connecting thr e56c0b00 , thread 330 , mypolls 0 +thr e56c0c80 , status 1 +connecting thr e56c0c80 , thread 331 , mypolls 0 +myconn 0 connecting thr e56c0c80 , thread 331 , mypolls 0 +thr e56c0e00 , status 1 +connecting thr e56c0e00 , thread 332 , mypolls 0 +myconn 0 connecting thr e56c0e00 , thread 332 , mypolls 0 +thr e56c0f80 , status 1 +connecting thr e56c0f80 , thread 333 , mypolls 0 +myconn 0 connecting thr e56c0f80 , thread 333 , mypolls 0 +thr e56c1100 , status 1 +connecting thr e56c1100 , thread 334 , mypolls 0 +myconn 0 connecting thr e56c1100 , thread 334 , mypolls 0 +thr e56c1280 , status 1 +connecting thr e56c1280 , thread 335 , mypolls 0 +myconn 0 connecting thr e56c1280 , thread 335 , mypolls 0 +thr e56c1400 , status 1 +connecting thr e56c1400 , thread 336 , mypolls 0 +myconn 0 connecting thr e56c1400 , thread 336 , mypolls 0 +thr e56c1580 , status 1 +connecting thr e56c1580 , thread 337 , mypolls 0 +myconn 0 connecting thr e56c1580 , thread 337 , mypolls 0 +thr e56c1700 , status 1 +connecting thr e56c1700 , thread 338 , mypolls 0 +myconn 0 connecting thr e56c1700 , thread 338 , mypolls 0 +thr e56c1880 , status 1 +connecting thr e56c1880 , thread 339 , mypolls 0 +myconn 0 connecting thr e56c1880 , thread 339 , mypolls 0 +thr e56c1a00 , status 1 +connecting thr e56c1a00 , thread 340 , mypolls 0 +myconn 0 connecting thr e56c1a00 , thread 340 , mypolls 0 +thr e56c1b80 , status 1 +connecting thr e56c1b80 , thread 341 , mypolls 0 +myconn 0 connecting thr e56c1b80 , thread 341 , mypolls 0 +thr e56c1d00 , status 1 +connecting thr e56c1d00 , thread 342 , mypolls 0 +myconn 0 connecting thr e56c1d00 , thread 342 , mypolls 0 +thr e56c1e80 , status 1 +connecting thr e56c1e80 , thread 343 , mypolls 0 +myconn 0 connecting thr e56c1e80 , thread 343 , mypolls 0 +thr e5650000 , status 1 +connecting thr e5650000 , thread 344 , mypolls 0 +myconn 0 connecting thr e5650000 , thread 344 , mypolls 0 +thr e5650180 , status 1 +connecting thr e5650180 , thread 345 , mypolls 0 +myconn 0 connecting thr e5650180 , thread 345 , mypolls 0 +thr e5650300 , status 1 +connecting thr e5650300 , thread 346 , mypolls 0 +myconn 0 connecting thr e5650300 , thread 346 , mypolls 0 +thr e5650480 , status 1 +connecting thr e5650480 , thread 347 , mypolls 0 +myconn 0 connecting thr e5650480 , thread 347 , mypolls 0 +thr e5650600 , status 1 +connecting thr e5650600 , thread 348 , mypolls 0 +myconn 0 connecting thr e5650600 , thread 348 , mypolls 0 +thr e5650780 , status 1 +connecting thr e5650780 , thread 349 , mypolls 0 +myconn 0 connecting thr e5650780 , thread 349 , mypolls 0 +thr e5650900 , status 1 +connecting thr e5650900 , thread 350 , mypolls 0 +myconn 0 connecting thr e5650900 , thread 350 , mypolls 0 +thr e5650a80 , status 1 +connecting thr e5650a80 , thread 351 , mypolls 0 +myconn 0 connecting thr e5650a80 , thread 351 , mypolls 0 +thr e5650c00 , status 1 +connecting thr e5650c00 , thread 352 , mypolls 0 +myconn 0 connecting thr e5650c00 , thread 352 , mypolls 0 +thr e5650d80 , status 1 +connecting thr e5650d80 , thread 353 , mypolls 0 +myconn 0 connecting thr e5650d80 , thread 353 , mypolls 0 +thr e5650f00 , status 1 +connecting thr e5650f00 , thread 354 , mypolls 0 +myconn 0 connecting thr e5650f00 , thread 354 , mypolls 0 +thr e5651080 , status 1 +connecting thr e5651080 , thread 355 , mypolls 0 +myconn 0 connecting thr e5651080 , thread 355 , mypolls 0 +thr e5651200 , status 1 +connecting thr e5651200 , thread 356 , mypolls 0 +myconn 0 connecting thr e5651200 , thread 356 , mypolls 0 +thr e5651380 , status 1 +connecting thr e5651380 , thread 357 , mypolls 0 +myconn 0 connecting thr e5651380 , thread 357 , mypolls 0 +thr e5651500 , status 1 +connecting thr e5651500 , thread 358 , mypolls 0 +myconn 0 connecting thr e5651500 , thread 358 , mypolls 0 +thr e5651680 , status 1 +connecting thr e5651680 , thread 359 , mypolls 0 +myconn 0 connecting thr e5651680 , thread 359 , mypolls 0 +thr e5651800 , status 1 +connecting thr e5651800 , thread 360 , mypolls 0 +myconn 0 connecting thr e5651800 , thread 360 , mypolls 0 +thr e5651980 , status 1 +connecting thr e5651980 , thread 361 , mypolls 0 +myconn 0 connecting thr e5651980 , thread 361 , mypolls 0 +thr e5651b00 , status 1 +connecting thr e5651b00 , thread 362 , mypolls 0 +myconn 0 connecting thr e5651b00 , thread 362 , mypolls 0 +thr e5651c80 , status 1 +connecting thr e5651c80 , thread 363 , mypolls 0 +myconn 0 connecting thr e5651c80 , thread 363 , mypolls 0 +thr e5651e00 , status 1 +connecting thr e5651e00 , thread 364 , mypolls 0 +myconn 0 connecting thr e5651e00 , thread 364 , mypolls 0 +thr e5651f80 , status 1 +connecting thr e5651f80 , thread 365 , mypolls 0 +myconn 0 connecting thr e5651f80 , thread 365 , mypolls 0 +thr e5652100 , status 1 +connecting thr e5652100 , thread 366 , mypolls 0 +myconn 0 connecting thr e5652100 , thread 366 , mypolls 0 +thr e5652280 , status 1 +connecting thr e5652280 , thread 367 , mypolls 0 +myconn 0 connecting thr e5652280 , thread 367 , mypolls 0 +thr e5652400 , status 1 +connecting thr e5652400 , thread 368 , mypolls 0 +myconn 0 connecting thr e5652400 , thread 368 , mypolls 0 +thr e5652580 , status 1 +connecting thr e5652580 , thread 369 , mypolls 0 +myconn 0 connecting thr e5652580 , thread 369 , mypolls 0 +thr e5652700 , status 1 +connecting thr e5652700 , thread 370 , mypolls 0 +myconn 0 connecting thr e5652700 , thread 370 , mypolls 0 +thr e5652880 , status 1 +connecting thr e5652880 , thread 371 , mypolls 0 +myconn 0 connecting thr e5652880 , thread 371 , mypolls 0 +thr e5652a00 , status 1 +connecting thr e5652a00 , thread 372 , mypolls 0 +myconn 0 connecting thr e5652a00 , thread 372 , mypolls 0 +thr e5652b80 , status 1 +connecting thr e5652b80 , thread 373 , mypolls 0 +myconn 0 connecting thr e5652b80 , thread 373 , mypolls 0 +thr e5652d00 , status 1 +connecting thr e5652d00 , thread 374 , mypolls 0 +myconn 0 connecting thr e5652d00 , thread 374 , mypolls 0 +thr e5652e80 , status 1 +connecting thr e5652e80 , thread 375 , mypolls 0 +myconn 0 connecting thr e5652e80 , thread 375 , mypolls 0 +thr e5416000 , status 1 +connecting thr e5416000 , thread 376 , mypolls 0 +myconn 0 connecting thr e5416000 , thread 376 , mypolls 0 +thr e5416180 , status 1 +connecting thr e5416180 , thread 377 , mypolls 0 +myconn 0 connecting thr e5416180 , thread 377 , mypolls 0 +thr e5416300 , status 1 +connecting thr e5416300 , thread 378 , mypolls 0 +myconn 0 connecting thr e5416300 , thread 378 , mypolls 0 +thr e5416480 , status 1 +connecting thr e5416480 , thread 379 , mypolls 0 +myconn 0 connecting thr e5416480 , thread 379 , mypolls 0 +thr e5416600 , status 1 +connecting thr e5416600 , thread 380 , mypolls 0 +myconn 0 connecting thr e5416600 , thread 380 , mypolls 0 +thr e5416780 , status 1 +connecting thr e5416780 , thread 381 , mypolls 0 +myconn 0 connecting thr e5416780 , thread 381 , mypolls 0 +thr e5416900 , status 1 +connecting thr e5416900 , thread 382 , mypolls 0 +myconn 0 connecting thr e5416900 , thread 382 , mypolls 0 +thr e5416a80 , status 1 +connecting thr e5416a80 , thread 383 , mypolls 0 +myconn 0 connecting thr e5416a80 , thread 383 , mypolls 0 +thr e5416c00 , status 1 +connecting thr e5416c00 , thread 384 , mypolls 0 +myconn 0 connecting thr e5416c00 , thread 384 , mypolls 0 +thr e5416d80 , status 1 +connecting thr e5416d80 , thread 385 , mypolls 0 +myconn 0 connecting thr e5416d80 , thread 385 , mypolls 0 +thr e5416f00 , status 1 +connecting thr e5416f00 , thread 386 , mypolls 0 +myconn 0 connecting thr e5416f00 , thread 386 , mypolls 0 +thr e5417080 , status 1 +connecting thr e5417080 , thread 387 , mypolls 0 +myconn 0 connecting thr e5417080 , thread 387 , mypolls 0 +thr e5417200 , status 1 +connecting thr e5417200 , thread 388 , mypolls 0 +myconn 0 connecting thr e5417200 , thread 388 , mypolls 0 +thr e5417380 , status 1 +connecting thr e5417380 , thread 389 , mypolls 0 +myconn 0 connecting thr e5417380 , thread 389 , mypolls 0 +thr e5417500 , status 1 +connecting thr e5417500 , thread 390 , mypolls 0 +myconn 0 connecting thr e5417500 , thread 390 , mypolls 0 +thr e5417680 , status 1 +connecting thr e5417680 , thread 391 , mypolls 0 +myconn 0 connecting thr e5417680 , thread 391 , mypolls 0 +thr e5417800 , status 1 +connecting thr e5417800 , thread 392 , mypolls 0 +myconn 0 connecting thr e5417800 , thread 392 , mypolls 0 +thr e5417980 , status 1 +connecting thr e5417980 , thread 393 , mypolls 0 +myconn 0 connecting thr e5417980 , thread 393 , mypolls 0 +thr e5417b00 , status 1 +connecting thr e5417b00 , thread 394 , mypolls 0 +myconn 0 connecting thr e5417b00 , thread 394 , mypolls 0 +thr e5417c80 , status 1 +connecting thr e5417c80 , thread 395 , mypolls 0 +myconn 0 connecting thr e5417c80 , thread 395 , mypolls 0 +thr e5417e00 , status 1 +connecting thr e5417e00 , thread 396 , mypolls 0 +myconn 0 connecting thr e5417e00 , thread 396 , mypolls 0 +thr e5417f80 , status 1 +connecting thr e5417f80 , thread 397 , mypolls 0 +myconn 0 connecting thr e5417f80 , thread 397 , mypolls 0 +thr e5418100 , status 1 +connecting thr e5418100 , thread 398 , mypolls 0 +myconn 0 connecting thr e5418100 , thread 398 , mypolls 0 +thr e5418280 , status 1 +connecting thr e5418280 , thread 399 , mypolls 0 +myconn 0 connecting thr e5418280 , thread 399 , mypolls 0 +thr e5418400 , status 1 +connecting thr e5418400 , thread 400 , mypolls 0 +myconn 0 connecting thr e5418400 , thread 400 , mypolls 0 +thr e5418580 , status 1 +connecting thr e5418580 , thread 401 , mypolls 0 +myconn 0 connecting thr e5418580 , thread 401 , mypolls 0 +thr e5418700 , status 1 +connecting thr e5418700 , thread 402 , mypolls 0 +myconn 0 connecting thr e5418700 , thread 402 , mypolls 0 +thr e5418880 , status 1 +connecting thr e5418880 , thread 403 , mypolls 0 +myconn 0 connecting thr e5418880 , thread 403 , mypolls 0 +thr e5418a00 , status 1 +connecting thr e5418a00 , thread 404 , mypolls 0 +myconn 0 connecting thr e5418a00 , thread 404 , mypolls 0 +thr e5418b80 , status 1 +connecting thr e5418b80 , thread 405 , mypolls 0 +myconn 0 connecting thr e5418b80 , thread 405 , mypolls 0 +thr e5418d00 , status 1 +connecting thr e5418d00 , thread 406 , mypolls 0 +myconn 0 connecting thr e5418d00 , thread 406 , mypolls 0 +thr e5418e80 , status 1 +connecting thr e5418e80 , thread 407 , mypolls 0 +myconn 0 connecting thr e5418e80 , thread 407 , mypolls 0 +thr e3df6000 , status 1 +connecting thr e3df6000 , thread 408 , mypolls 0 +myconn 0 connecting thr e3df6000 , thread 408 , mypolls 0 +thr e3df6180 , status 1 +connecting thr e3df6180 , thread 409 , mypolls 0 +myconn 0 connecting thr e3df6180 , thread 409 , mypolls 0 +thr e3df6300 , status 1 +connecting thr e3df6300 , thread 410 , mypolls 0 +myconn 0 connecting thr e3df6300 , thread 410 , mypolls 0 +thr e3df6480 , status 1 +connecting thr e3df6480 , thread 411 , mypolls 0 +myconn 0 connecting thr e3df6480 , thread 411 , mypolls 0 +thr e3df6600 , status 1 +connecting thr e3df6600 , thread 412 , mypolls 0 +myconn 0 connecting thr e3df6600 , thread 412 , mypolls 0 +thr e3df6780 , status 1 +connecting thr e3df6780 , thread 413 , mypolls 0 +myconn 0 connecting thr e3df6780 , thread 413 , mypolls 0 +thr e3df6900 , status 1 +connecting thr e3df6900 , thread 414 , mypolls 0 +myconn 0 connecting thr e3df6900 , thread 414 , mypolls 0 +thr e3df6a80 , status 1 +connecting thr e3df6a80 , thread 415 , mypolls 0 +myconn 0 connecting thr e3df6a80 , thread 415 , mypolls 0 +thr e3df6c00 , status 1 +connecting thr e3df6c00 , thread 416 , mypolls 0 +myconn 0 connecting thr e3df6c00 , thread 416 , mypolls 0 +thr e3df6d80 , status 1 +connecting thr e3df6d80 , thread 417 , mypolls 0 +myconn 0 connecting thr e3df6d80 , thread 417 , mypolls 0 +thr e3df6f00 , status 1 +connecting thr e3df6f00 , thread 418 , mypolls 0 +myconn 0 connecting thr e3df6f00 , thread 418 , mypolls 0 +thr e3df7080 , status 1 +connecting thr e3df7080 , thread 419 , mypolls 0 +myconn 0 connecting thr e3df7080 , thread 419 , mypolls 0 +thr e3df7200 , status 1 +connecting thr e3df7200 , thread 420 , mypolls 0 +myconn 0 connecting thr e3df7200 , thread 420 , mypolls 0 +thr e3df7380 , status 1 +connecting thr e3df7380 , thread 421 , mypolls 0 +myconn 0 connecting thr e3df7380 , thread 421 , mypolls 0 +thr e3df7500 , status 1 +connecting thr e3df7500 , thread 422 , mypolls 0 +myconn 0 connecting thr e3df7500 , thread 422 , mypolls 0 +thr e3df7680 , status 1 +connecting thr e3df7680 , thread 423 , mypolls 0 +myconn 0 connecting thr e3df7680 , thread 423 , mypolls 0 +thr e3df7800 , status 1 +connecting thr e3df7800 , thread 424 , mypolls 0 +myconn 0 connecting thr e3df7800 , thread 424 , mypolls 0 +thr e3df7980 , status 1 +connecting thr e3df7980 , thread 425 , mypolls 0 +myconn 0 connecting thr e3df7980 , thread 425 , mypolls 0 +thr e3df7b00 , status 1 +connecting thr e3df7b00 , thread 426 , mypolls 0 +myconn 0 connecting thr e3df7b00 , thread 426 , mypolls 0 +thr e3df7c80 , status 1 +connecting thr e3df7c80 , thread 427 , mypolls 0 +myconn 0 connecting thr e3df7c80 , thread 427 , mypolls 0 +thr e3df7e00 , status 1 +connecting thr e3df7e00 , thread 428 , mypolls 0 +myconn 0 connecting thr e3df7e00 , thread 428 , mypolls 0 +thr e3df7f80 , status 1 +connecting thr e3df7f80 , thread 429 , mypolls 0 +myconn 0 connecting thr e3df7f80 , thread 429 , mypolls 0 +thr e3df8100 , status 1 +connecting thr e3df8100 , thread 430 , mypolls 0 +myconn 0 connecting thr e3df8100 , thread 430 , mypolls 0 +thr e3df8280 , status 1 +connecting thr e3df8280 , thread 431 , mypolls 0 +myconn 0 connecting thr e3df8280 , thread 431 , mypolls 0 +thr e3df8400 , status 1 +connecting thr e3df8400 , thread 432 , mypolls 0 +myconn 0 connecting thr e3df8400 , thread 432 , mypolls 0 +thr e3df8580 , status 1 +connecting thr e3df8580 , thread 433 , mypolls 0 +myconn 0 connecting thr e3df8580 , thread 433 , mypolls 0 +thr e3df8700 , status 1 +connecting thr e3df8700 , thread 434 , mypolls 0 +myconn 0 connecting thr e3df8700 , thread 434 , mypolls 0 +thr e3df8880 , status 1 +connecting thr e3df8880 , thread 435 , mypolls 0 +myconn 0 connecting thr e3df8880 , thread 435 , mypolls 0 +thr e3df8a00 , status 1 +connecting thr e3df8a00 , thread 436 , mypolls 0 +myconn 0 connecting thr e3df8a00 , thread 436 , mypolls 0 +thr e3df8b80 , status 1 +connecting thr e3df8b80 , thread 437 , mypolls 0 +myconn 0 connecting thr e3df8b80 , thread 437 , mypolls 0 +thr e3df8d00 , status 1 +connecting thr e3df8d00 , thread 438 , mypolls 0 +myconn 0 connecting thr e3df8d00 , thread 438 , mypolls 0 +thr e3df8e80 , status 1 +connecting thr e3df8e80 , thread 439 , mypolls 0 +myconn 0 connecting thr e3df8e80 , thread 439 , mypolls 0 +thr e3bf6000 , status 1 +connecting thr e3bf6000 , thread 440 , mypolls 0 +myconn 0 connecting thr e3bf6000 , thread 440 , mypolls 0 +thr e3bf6180 , status 1 +connecting thr e3bf6180 , thread 441 , mypolls 0 +myconn 0 connecting thr e3bf6180 , thread 441 , mypolls 0 +thr e3bf6300 , status 1 +connecting thr e3bf6300 , thread 442 , mypolls 0 +myconn 0 connecting thr e3bf6300 , thread 442 , mypolls 0 +thr e3bf6480 , status 1 +connecting thr e3bf6480 , thread 443 , mypolls 0 +myconn 0 connecting thr e3bf6480 , thread 443 , mypolls 0 +thr e3bf6600 , status 1 +connecting thr e3bf6600 , thread 444 , mypolls 0 +myconn 0 connecting thr e3bf6600 , thread 444 , mypolls 0 +thr e3bf6780 , status 1 +connecting thr e3bf6780 , thread 445 , mypolls 0 +myconn 0 connecting thr e3bf6780 , thread 445 , mypolls 0 +thr e3bf6900 , status 1 +connecting thr e3bf6900 , thread 446 , mypolls 0 +myconn 0 connecting thr e3bf6900 , thread 446 , mypolls 0 +thr e3bf6a80 , status 1 +connecting thr e3bf6a80 , thread 447 , mypolls 0 +myconn 0 connecting thr e3bf6a80 , thread 447 , mypolls 0 +thr e3bf6c00 , status 1 +connecting thr e3bf6c00 , thread 448 , mypolls 0 +myconn 0 connecting thr e3bf6c00 , thread 448 , mypolls 0 +thr e3bf6d80 , status 1 +connecting thr e3bf6d80 , thread 449 , mypolls 0 +myconn 0 connecting thr e3bf6d80 , thread 449 , mypolls 0 +thr e3bf6f00 , status 1 +connecting thr e3bf6f00 , thread 450 , mypolls 0 +myconn 0 connecting thr e3bf6f00 , thread 450 , mypolls 0 +thr e3bf7080 , status 1 +connecting thr e3bf7080 , thread 451 , mypolls 0 +myconn 0 connecting thr e3bf7080 , thread 451 , mypolls 0 +thr e3bf7200 , status 1 +connecting thr e3bf7200 , thread 452 , mypolls 0 +myconn 0 connecting thr e3bf7200 , thread 452 , mypolls 0 +thr e3bf7380 , status 1 +connecting thr e3bf7380 , thread 453 , mypolls 0 +myconn 0 connecting thr e3bf7380 , thread 453 , mypolls 0 +thr e3bf7500 , status 1 +connecting thr e3bf7500 , thread 454 , mypolls 0 +myconn 0 connecting thr e3bf7500 , thread 454 , mypolls 0 +thr e3bf7680 , status 1 +connecting thr e3bf7680 , thread 455 , mypolls 0 +myconn 0 connecting thr e3bf7680 , thread 455 , mypolls 0 +thr e3bf7800 , status 1 +connecting thr e3bf7800 , thread 456 , mypolls 0 +myconn 0 connecting thr e3bf7800 , thread 456 , mypolls 0 +thr e3bf7980 , status 1 +connecting thr e3bf7980 , thread 457 , mypolls 0 +myconn 0 connecting thr e3bf7980 , thread 457 , mypolls 0 +thr e3bf7b00 , status 1 +connecting thr e3bf7b00 , thread 458 , mypolls 0 +myconn 0 connecting thr e3bf7b00 , thread 458 , mypolls 0 +thr e3bf7c80 , status 1 +connecting thr e3bf7c80 , thread 459 , mypolls 0 +myconn 0 connecting thr e3bf7c80 , thread 459 , mypolls 0 +thr e3bf7e00 , status 1 +connecting thr e3bf7e00 , thread 460 , mypolls 0 +myconn 0 connecting thr e3bf7e00 , thread 460 , mypolls 0 +thr e3bf7f80 , status 1 +connecting thr e3bf7f80 , thread 461 , mypolls 0 +myconn 0 connecting thr e3bf7f80 , thread 461 , mypolls 0 +thr e3bf8100 , status 1 +connecting thr e3bf8100 , thread 462 , mypolls 0 +myconn 0 connecting thr e3bf8100 , thread 462 , mypolls 0 +thr e3bf8280 , status 1 +connecting thr e3bf8280 , thread 463 , mypolls 0 +myconn 0 connecting thr e3bf8280 , thread 463 , mypolls 0 +thr e3bf8400 , status 1 +connecting thr e3bf8400 , thread 464 , mypolls 0 +myconn 0 connecting thr e3bf8400 , thread 464 , mypolls 0 +thr e3bf8580 , status 1 +connecting thr e3bf8580 , thread 465 , mypolls 0 +myconn 0 connecting thr e3bf8580 , thread 465 , mypolls 0 +thr e3bf8700 , status 1 +connecting thr e3bf8700 , thread 466 , mypolls 0 +myconn 0 connecting thr e3bf8700 , thread 466 , mypolls 0 +thr e3bf8880 , status 1 +connecting thr e3bf8880 , thread 467 , mypolls 0 +myconn 0 connecting thr e3bf8880 , thread 467 , mypolls 0 +thr e3bf8a00 , status 1 +connecting thr e3bf8a00 , thread 468 , mypolls 0 +myconn 0 connecting thr e3bf8a00 , thread 468 , mypolls 0 +thr e3bf8b80 , status 1 +connecting thr e3bf8b80 , thread 469 , mypolls 0 +myconn 0 connecting thr e3bf8b80 , thread 469 , mypolls 0 +thr e3bf8d00 , status 1 +connecting thr e3bf8d00 , thread 470 , mypolls 0 +myconn 0 connecting thr e3bf8d00 , thread 470 , mypolls 0 +thr e3bf8e80 , status 1 +connecting thr e3bf8e80 , thread 471 , mypolls 0 +myconn 0 connecting thr e3bf8e80 , thread 471 , mypolls 0 +thr e36c1000 , status 1 +connecting thr e36c1000 , thread 472 , mypolls 0 +myconn 0 connecting thr e36c1000 , thread 472 , mypolls 0 +thr e36c1180 , status 1 +connecting thr e36c1180 , thread 473 , mypolls 0 +myconn 0 connecting thr e36c1180 , thread 473 , mypolls 0 +thr e36c1300 , status 1 +connecting thr e36c1300 , thread 474 , mypolls 0 +myconn 0 connecting thr e36c1300 , thread 474 , mypolls 0 +thr e36c1480 , status 1 +connecting thr e36c1480 , thread 475 , mypolls 0 +myconn 0 connecting thr e36c1480 , thread 475 , mypolls 0 +thr e36c1600 , status 1 +connecting thr e36c1600 , thread 476 , mypolls 0 +myconn 0 connecting thr e36c1600 , thread 476 , mypolls 0 +thr e36c1780 , status 1 +connecting thr e36c1780 , thread 477 , mypolls 0 +myconn 0 connecting thr e36c1780 , thread 477 , mypolls 0 +thr e36c1900 , status 1 +connecting thr e36c1900 , thread 478 , mypolls 0 +myconn 0 connecting thr e36c1900 , thread 478 , mypolls 0 +thr e36c1a80 , status 1 +connecting thr e36c1a80 , thread 479 , mypolls 0 +myconn 0 connecting thr e36c1a80 , thread 479 , mypolls 0 +thr e36c1c00 , status 1 +connecting thr e36c1c00 , thread 480 , mypolls 0 +myconn 0 connecting thr e36c1c00 , thread 480 , mypolls 0 +thr e36c1d80 , status 1 +connecting thr e36c1d80 , thread 481 , mypolls 0 +myconn 0 connecting thr e36c1d80 , thread 481 , mypolls 0 +thr e36c1f00 , status 1 +connecting thr e36c1f00 , thread 482 , mypolls 0 +myconn 0 connecting thr e36c1f00 , thread 482 , mypolls 0 +thr e36c2080 , status 1 +connecting thr e36c2080 , thread 483 , mypolls 0 +myconn 0 connecting thr e36c2080 , thread 483 , mypolls 0 +thr e36c2200 , status 1 +connecting thr e36c2200 , thread 484 , mypolls 0 +myconn 0 connecting thr e36c2200 , thread 484 , mypolls 0 +thr e36c2380 , status 1 +connecting thr e36c2380 , thread 485 , mypolls 0 +myconn 0 connecting thr e36c2380 , thread 485 , mypolls 0 +thr e36c2500 , status 1 +connecting thr e36c2500 , thread 486 , mypolls 0 +myconn 0 connecting thr e36c2500 , thread 486 , mypolls 0 +thr e36c2680 , status 1 +connecting thr e36c2680 , thread 487 , mypolls 0 +myconn 0 connecting thr e36c2680 , thread 487 , mypolls 0 +thr e36c2800 , status 1 +connecting thr e36c2800 , thread 488 , mypolls 0 +myconn 0 connecting thr e36c2800 , thread 488 , mypolls 0 +thr e36c2980 , status 1 +connecting thr e36c2980 , thread 489 , mypolls 0 +myconn 0 connecting thr e36c2980 , thread 489 , mypolls 0 +thr e36c2b00 , status 1 +connecting thr e36c2b00 , thread 490 , mypolls 0 +myconn 0 connecting thr e36c2b00 , thread 490 , mypolls 0 +thr e36c2c80 , status 1 +connecting thr e36c2c80 , thread 491 , mypolls 0 +myconn 0 connecting thr e36c2c80 , thread 491 , mypolls 0 +thr e36c2e00 , status 1 +connecting thr e36c2e00 , thread 492 , mypolls 0 +myconn 0 connecting thr e36c2e00 , thread 492 , mypolls 0 +thr e36c2f80 , status 1 +connecting thr e36c2f80 , thread 493 , mypolls 0 +myconn 0 connecting thr e36c2f80 , thread 493 , mypolls 0 +thr e36c3100 , status 1 +connecting thr e36c3100 , thread 494 , mypolls 0 +myconn 0 connecting thr e36c3100 , thread 494 , mypolls 0 +thr e36c3280 , status 1 +connecting thr e36c3280 , thread 495 , mypolls 0 +myconn 0 connecting thr e36c3280 , thread 495 , mypolls 0 +thr e36c3400 , status 1 +connecting thr e36c3400 , thread 496 , mypolls 0 +myconn 0 connecting thr e36c3400 , thread 496 , mypolls 0 +thr e36c3580 , status 1 +connecting thr e36c3580 , thread 497 , mypolls 0 +myconn 0 connecting thr e36c3580 , thread 497 , mypolls 0 +thr e36c3700 , status 1 +connecting thr e36c3700 , thread 498 , mypolls 0 +myconn 0 connecting thr e36c3700 , thread 498 , mypolls 0 +thr e36c3880 , status 1 +connecting thr e36c3880 , thread 499 , mypolls 0 +myconn 0 connecting thr e36c3880 , thread 499 , mypolls 0 +thr e36c3a00 , status 1 +connecting thr e36c3a00 , thread 500 , mypolls 0 +myconn 0 connecting thr e36c3a00 , thread 500 , mypolls 0 +thr e36c3b80 , status 1 +connecting thr e36c3b80 , thread 501 , mypolls 0 +myconn 0 connecting thr e36c3b80 , thread 501 , mypolls 0 +thr e36c3d00 , status 1 +connecting thr e36c3d00 , thread 502 , mypolls 0 +myconn 0 connecting thr e36c3d00 , thread 502 , mypolls 0 +thr e36c3e80 , status 1 +connecting thr e36c3e80 , thread 503 , mypolls 0 +myconn 0 connecting thr e36c3e80 , thread 503 , mypolls 0 +thr e352a000 , status 1 +connecting thr e352a000 , thread 504 , mypolls 0 +myconn 0 connecting thr e352a000 , thread 504 , mypolls 0 +thr e352a180 , status 1 +connecting thr e352a180 , thread 505 , mypolls 0 +myconn 0 connecting thr e352a180 , thread 505 , mypolls 0 +thr e352a300 , status 1 +connecting thr e352a300 , thread 506 , mypolls 0 +myconn 0 connecting thr e352a300 , thread 506 , mypolls 0 +thr e352a480 , status 1 +connecting thr e352a480 , thread 507 , mypolls 0 +myconn 0 connecting thr e352a480 , thread 507 , mypolls 0 +thr e352a600 , status 1 +connecting thr e352a600 , thread 508 , mypolls 0 +myconn 0 connecting thr e352a600 , thread 508 , mypolls 0 +thr e352a780 , status 1 +connecting thr e352a780 , thread 509 , mypolls 0 +myconn 0 connecting thr e352a780 , thread 509 , mypolls 0 +thr e352a900 , status 1 +connecting thr e352a900 , thread 510 , mypolls 0 +myconn 0 connecting thr e352a900 , thread 510 , mypolls 0 +thr e352aa80 , status 1 +connecting thr e352aa80 , thread 511 , mypolls 0 +myconn 0 connecting thr e352aa80 , thread 511 , mypolls 0 +thr e352ac00 , status 1 +connecting thr e352ac00 , thread 512 , mypolls 0 +myconn 0 connecting thr e352ac00 , thread 512 , mypolls 0 +thr e352ad80 , status 1 +connecting thr e352ad80 , thread 513 , mypolls 0 +myconn 0 connecting thr e352ad80 , thread 513 , mypolls 0 +thr e352af00 , status 1 +connecting thr e352af00 , thread 514 , mypolls 0 +myconn 0 connecting thr e352af00 , thread 514 , mypolls 0 +thr e352b080 , status 1 +connecting thr e352b080 , thread 515 , mypolls 0 +myconn 0 connecting thr e352b080 , thread 515 , mypolls 0 +thr e352b200 , status 1 +connecting thr e352b200 , thread 516 , mypolls 0 +myconn 0 connecting thr e352b200 , thread 516 , mypolls 0 +thr e352b380 , status 1 +connecting thr e352b380 , thread 517 , mypolls 0 +myconn 0 connecting thr e352b380 , thread 517 , mypolls 0 +thr e352b500 , status 1 +connecting thr e352b500 , thread 518 , mypolls 0 +myconn 0 connecting thr e352b500 , thread 518 , mypolls 0 +thr e352b680 , status 1 +connecting thr e352b680 , thread 519 , mypolls 0 +myconn 0 connecting thr e352b680 , thread 519 , mypolls 0 +thr e352b800 , status 1 +connecting thr e352b800 , thread 520 , mypolls 0 +myconn 0 connecting thr e352b800 , thread 520 , mypolls 0 +thr e352b980 , status 1 +connecting thr e352b980 , thread 521 , mypolls 0 +myconn 0 connecting thr e352b980 , thread 521 , mypolls 0 +thr e352bb00 , status 1 +connecting thr e352bb00 , thread 522 , mypolls 0 +myconn 0 connecting thr e352bb00 , thread 522 , mypolls 0 +thr e352bc80 , status 1 +connecting thr e352bc80 , thread 523 , mypolls 0 +myconn 0 connecting thr e352bc80 , thread 523 , mypolls 0 +thr e352be00 , status 1 +connecting thr e352be00 , thread 524 , mypolls 0 +myconn 0 connecting thr e352be00 , thread 524 , mypolls 0 +thr e352bf80 , status 1 +connecting thr e352bf80 , thread 525 , mypolls 0 +myconn 0 connecting thr e352bf80 , thread 525 , mypolls 0 +thr e352c100 , status 1 +connecting thr e352c100 , thread 526 , mypolls 0 +myconn 0 connecting thr e352c100 , thread 526 , mypolls 0 +thr e352c280 , status 1 +connecting thr e352c280 , thread 527 , mypolls 0 +myconn 0 connecting thr e352c280 , thread 527 , mypolls 0 +thr e352c400 , status 1 +connecting thr e352c400 , thread 528 , mypolls 0 +myconn 0 connecting thr e352c400 , thread 528 , mypolls 0 +thr e352c580 , status 1 +connecting thr e352c580 , thread 529 , mypolls 0 +myconn 0 connecting thr e352c580 , thread 529 , mypolls 0 +thr e352c700 , status 1 +connecting thr e352c700 , thread 530 , mypolls 0 +myconn 0 connecting thr e352c700 , thread 530 , mypolls 0 +thr e352c880 , status 1 +connecting thr e352c880 , thread 531 , mypolls 0 +myconn 0 connecting thr e352c880 , thread 531 , mypolls 0 +thr e352ca00 , status 1 +connecting thr e352ca00 , thread 532 , mypolls 0 +myconn 0 connecting thr e352ca00 , thread 532 , mypolls 0 +thr e352cb80 , status 1 +connecting thr e352cb80 , thread 533 , mypolls 0 +myconn 0 connecting thr e352cb80 , thread 533 , mypolls 0 +thr e352cd00 , status 1 +connecting thr e352cd00 , thread 534 , mypolls 0 +myconn 0 connecting thr e352cd00 , thread 534 , mypolls 0 +thr e352ce80 , status 1 +connecting thr e352ce80 , thread 535 , mypolls 0 +myconn 0 connecting thr e352ce80 , thread 535 , mypolls 0 +thr e6249000 , status 1 +connecting thr e6249000 , thread 536 , mypolls 0 +myconn 0 connecting thr e6249000 , thread 536 , mypolls 0 +thr e6249180 , status 1 +connecting thr e6249180 , thread 537 , mypolls 0 +myconn 0 connecting thr e6249180 , thread 537 , mypolls 0 +thr e6249300 , status 1 +connecting thr e6249300 , thread 538 , mypolls 0 +myconn 0 connecting thr e6249300 , thread 538 , mypolls 0 +thr e6249480 , status 1 +connecting thr e6249480 , thread 539 , mypolls 0 +myconn 0 connecting thr e6249480 , thread 539 , mypolls 0 +thr e6249600 , status 1 +connecting thr e6249600 , thread 540 , mypolls 0 +myconn 0 connecting thr e6249600 , thread 540 , mypolls 0 +thr e6249780 , status 1 +connecting thr e6249780 , thread 541 , mypolls 0 +myconn 0 connecting thr e6249780 , thread 541 , mypolls 0 +thr e6249900 , status 1 +connecting thr e6249900 , thread 542 , mypolls 0 +myconn 0 connecting thr e6249900 , thread 542 , mypolls 0 +thr e6249a80 , status 1 +connecting thr e6249a80 , thread 543 , mypolls 0 +myconn 0 connecting thr e6249a80 , thread 543 , mypolls 0 +thr e6249c00 , status 1 +connecting thr e6249c00 , thread 544 , mypolls 0 +myconn 0 connecting thr e6249c00 , thread 544 , mypolls 0 +thr e6249d80 , status 1 +connecting thr e6249d80 , thread 545 , mypolls 0 +myconn 0 connecting thr e6249d80 , thread 545 , mypolls 0 +thr e6249f00 , status 1 +connecting thr e6249f00 , thread 546 , mypolls 0 +myconn 0 connecting thr e6249f00 , thread 546 , mypolls 0 +thr e624a080 , status 1 +connecting thr e624a080 , thread 547 , mypolls 0 +myconn 0 connecting thr e624a080 , thread 547 , mypolls 0 +thr e624a200 , status 1 +connecting thr e624a200 , thread 548 , mypolls 0 +myconn 0 connecting thr e624a200 , thread 548 , mypolls 0 +thr e624a380 , status 1 +connecting thr e624a380 , thread 549 , mypolls 0 +myconn 0 connecting thr e624a380 , thread 549 , mypolls 0 +thr e624a500 , status 1 +connecting thr e624a500 , thread 550 , mypolls 0 +myconn 0 connecting thr e624a500 , thread 550 , mypolls 0 +thr e624a680 , status 1 +connecting thr e624a680 , thread 551 , mypolls 0 +myconn 0 connecting thr e624a680 , thread 551 , mypolls 0 +thr e624a800 , status 1 +connecting thr e624a800 , thread 552 , mypolls 0 +myconn 0 connecting thr e624a800 , thread 552 , mypolls 0 +thr e624a980 , status 1 +connecting thr e624a980 , thread 553 , mypolls 0 +myconn 0 connecting thr e624a980 , thread 553 , mypolls 0 +thr e624ab00 , status 1 +connecting thr e624ab00 , thread 554 , mypolls 0 +myconn 0 connecting thr e624ab00 , thread 554 , mypolls 0 +thr e624ac80 , status 1 +connecting thr e624ac80 , thread 555 , mypolls 0 +myconn 0 connecting thr e624ac80 , thread 555 , mypolls 0 +thr e624ae00 , status 1 +connecting thr e624ae00 , thread 556 , mypolls 0 +myconn 0 connecting thr e624ae00 , thread 556 , mypolls 0 +thr e624af80 , status 1 +connecting thr e624af80 , thread 557 , mypolls 0 +myconn 0 connecting thr e624af80 , thread 557 , mypolls 0 +thr e624b100 , status 1 +connecting thr e624b100 , thread 558 , mypolls 0 +myconn 0 connecting thr e624b100 , thread 558 , mypolls 0 +thr e624b280 , status 1 +connecting thr e624b280 , thread 559 , mypolls 0 +myconn 0 connecting thr e624b280 , thread 559 , mypolls 0 +thr e624b400 , status 1 +connecting thr e624b400 , thread 560 , mypolls 0 +myconn 0 connecting thr e624b400 , thread 560 , mypolls 0 +thr e624b580 , status 1 +connecting thr e624b580 , thread 561 , mypolls 0 +myconn 0 connecting thr e624b580 , thread 561 , mypolls 0 +thr e624b700 , status 1 +connecting thr e624b700 , thread 562 , mypolls 0 +myconn 0 connecting thr e624b700 , thread 562 , mypolls 0 +thr e624b880 , status 1 +connecting thr e624b880 , thread 563 , mypolls 0 +myconn 0 connecting thr e624b880 , thread 563 , mypolls 0 +thr e624ba00 , status 1 +connecting thr e624ba00 , thread 564 , mypolls 0 +myconn 0 connecting thr e624ba00 , thread 564 , mypolls 0 +thr e624bb80 , status 1 +connecting thr e624bb80 , thread 565 , mypolls 0 +myconn 0 connecting thr e624bb80 , thread 565 , mypolls 0 +thr e624bd00 , status 1 +connecting thr e624bd00 , thread 566 , mypolls 0 +myconn 0 connecting thr e624bd00 , thread 566 , mypolls 0 +thr e624be80 , status 1 +connecting thr e624be80 , thread 567 , mypolls 0 +myconn 0 connecting thr e624be80 , thread 567 , mypolls 0 +thr e31ec000 , status 1 +connecting thr e31ec000 , thread 568 , mypolls 0 +myconn 0 connecting thr e31ec000 , thread 568 , mypolls 0 +thr e31ec180 , status 1 +connecting thr e31ec180 , thread 569 , mypolls 0 +myconn 0 connecting thr e31ec180 , thread 569 , mypolls 0 +thr e31ec300 , status 1 +connecting thr e31ec300 , thread 570 , mypolls 0 +myconn 0 connecting thr e31ec300 , thread 570 , mypolls 0 +thr e31ec480 , status 1 +connecting thr e31ec480 , thread 571 , mypolls 0 +myconn 0 connecting thr e31ec480 , thread 571 , mypolls 0 +thr e31ec600 , status 1 +connecting thr e31ec600 , thread 572 , mypolls 0 +myconn 0 connecting thr e31ec600 , thread 572 , mypolls 0 +thr e31ec780 , status 1 +connecting thr e31ec780 , thread 573 , mypolls 0 +myconn 0 connecting thr e31ec780 , thread 573 , mypolls 0 +thr e31ec900 , status 1 +connecting thr e31ec900 , thread 574 , mypolls 0 +myconn 0 connecting thr e31ec900 , thread 574 , mypolls 0 +thr e31eca80 , status 1 +connecting thr e31eca80 , thread 575 , mypolls 0 +myconn 0 connecting thr e31eca80 , thread 575 , mypolls 0 +thr e31ecc00 , status 1 +connecting thr e31ecc00 , thread 576 , mypolls 0 +myconn 0 connecting thr e31ecc00 , thread 576 , mypolls 0 +thr e31ecd80 , status 1 +connecting thr e31ecd80 , thread 577 , mypolls 0 +myconn 0 connecting thr e31ecd80 , thread 577 , mypolls 0 +thr e31ecf00 , status 1 +connecting thr e31ecf00 , thread 578 , mypolls 0 +myconn 0 connecting thr e31ecf00 , thread 578 , mypolls 0 +thr e31ed080 , status 1 +connecting thr e31ed080 , thread 579 , mypolls 0 +myconn 0 connecting thr e31ed080 , thread 579 , mypolls 0 +thr e31ed200 , status 1 +connecting thr e31ed200 , thread 580 , mypolls 0 +myconn 0 connecting thr e31ed200 , thread 580 , mypolls 0 +thr e31ed380 , status 1 +connecting thr e31ed380 , thread 581 , mypolls 0 +myconn 0 connecting thr e31ed380 , thread 581 , mypolls 0 +thr e31ed500 , status 1 +connecting thr e31ed500 , thread 582 , mypolls 0 +myconn 0 connecting thr e31ed500 , thread 582 , mypolls 0 +thr e31ed680 , status 1 +connecting thr e31ed680 , thread 583 , mypolls 0 +myconn 0 connecting thr e31ed680 , thread 583 , mypolls 0 +thr e31ed800 , status 1 +connecting thr e31ed800 , thread 584 , mypolls 0 +myconn 0 connecting thr e31ed800 , thread 584 , mypolls 0 +thr e31ed980 , status 1 +connecting thr e31ed980 , thread 585 , mypolls 0 +myconn 0 connecting thr e31ed980 , thread 585 , mypolls 0 +thr e31edb00 , status 1 +connecting thr e31edb00 , thread 586 , mypolls 0 +myconn 0 connecting thr e31edb00 , thread 586 , mypolls 0 +thr e31edc80 , status 1 +connecting thr e31edc80 , thread 587 , mypolls 0 +myconn 0 connecting thr e31edc80 , thread 587 , mypolls 0 +thr e31ede00 , status 1 +connecting thr e31ede00 , thread 588 , mypolls 0 +myconn 0 connecting thr e31ede00 , thread 588 , mypolls 0 +thr e31edf80 , status 1 +connecting thr e31edf80 , thread 589 , mypolls 0 +myconn 0 connecting thr e31edf80 , thread 589 , mypolls 0 +thr e31ee100 , status 1 +connecting thr e31ee100 , thread 590 , mypolls 0 +myconn 0 connecting thr e31ee100 , thread 590 , mypolls 0 +thr e31ee280 , status 1 +connecting thr e31ee280 , thread 591 , mypolls 0 +myconn 0 connecting thr e31ee280 , thread 591 , mypolls 0 +thr e31ee400 , status 1 +connecting thr e31ee400 , thread 592 , mypolls 0 +myconn 0 connecting thr e31ee400 , thread 592 , mypolls 0 +thr e31ee580 , status 1 +connecting thr e31ee580 , thread 593 , mypolls 0 +myconn 0 connecting thr e31ee580 , thread 593 , mypolls 0 +thr e31ee700 , status 1 +connecting thr e31ee700 , thread 594 , mypolls 0 +myconn 0 connecting thr e31ee700 , thread 594 , mypolls 0 +thr e31ee880 , status 1 +connecting thr e31ee880 , thread 595 , mypolls 0 +myconn 0 connecting thr e31ee880 , thread 595 , mypolls 0 +thr e31eea00 , status 1 +connecting thr e31eea00 , thread 596 , mypolls 0 +myconn 0 connecting thr e31eea00 , thread 596 , mypolls 0 +thr e31eeb80 , status 1 +connecting thr e31eeb80 , thread 597 , mypolls 0 +myconn 0 connecting thr e31eeb80 , thread 597 , mypolls 0 +thr e31eed00 , status 1 +connecting thr e31eed00 , thread 598 , mypolls 0 +myconn 0 connecting thr e31eed00 , thread 598 , mypolls 0 +thr e31eee80 , status 1 +connecting thr e31eee80 , thread 599 , mypolls 0 +myconn 0 connecting thr e31eee80 , thread 599 , mypolls 0 +thr e2ffa000 , status 1 +connecting thr e2ffa000 , thread 600 , mypolls 0 +myconn 0 connecting thr e2ffa000 , thread 600 , mypolls 0 +thr e2ffa180 , status 1 +connecting thr e2ffa180 , thread 601 , mypolls 0 +myconn 0 connecting thr e2ffa180 , thread 601 , mypolls 0 +thr e2ffa300 , status 1 +connecting thr e2ffa300 , thread 602 , mypolls 0 +myconn 0 connecting thr e2ffa300 , thread 602 , mypolls 0 +thr e2ffa480 , status 1 +connecting thr e2ffa480 , thread 603 , mypolls 0 +myconn 0 connecting thr e2ffa480 , thread 603 , mypolls 0 +thr e2ffa600 , status 1 +connecting thr e2ffa600 , thread 604 , mypolls 0 +myconn 0 connecting thr e2ffa600 , thread 604 , mypolls 0 +thr e2ffa780 , status 1 +connecting thr e2ffa780 , thread 605 , mypolls 0 +myconn 0 connecting thr e2ffa780 , thread 605 , mypolls 0 +thr e2ffa900 , status 1 +connecting thr e2ffa900 , thread 606 , mypolls 0 +myconn 0 connecting thr e2ffa900 , thread 606 , mypolls 0 +thr e2ffaa80 , status 1 +connecting thr e2ffaa80 , thread 607 , mypolls 0 +myconn 0 connecting thr e2ffaa80 , thread 607 , mypolls 0 +thr e2ffac00 , status 1 +connecting thr e2ffac00 , thread 608 , mypolls 0 +myconn 0 connecting thr e2ffac00 , thread 608 , mypolls 0 +thr e2ffad80 , status 1 +connecting thr e2ffad80 , thread 609 , mypolls 0 +myconn 0 connecting thr e2ffad80 , thread 609 , mypolls 0 +thr e2ffaf00 , status 1 +connecting thr e2ffaf00 , thread 610 , mypolls 0 +myconn 0 connecting thr e2ffaf00 , thread 610 , mypolls 0 +thr e2ffb080 , status 1 +connecting thr e2ffb080 , thread 611 , mypolls 0 +myconn 0 connecting thr e2ffb080 , thread 611 , mypolls 0 +thr e2ffb200 , status 1 +connecting thr e2ffb200 , thread 612 , mypolls 0 +myconn 0 connecting thr e2ffb200 , thread 612 , mypolls 0 +thr e2ffb380 , status 1 +connecting thr e2ffb380 , thread 613 , mypolls 0 +myconn 0 connecting thr e2ffb380 , thread 613 , mypolls 0 +thr e2ffb500 , status 1 +connecting thr e2ffb500 , thread 614 , mypolls 0 +myconn 0 connecting thr e2ffb500 , thread 614 , mypolls 0 +thr e2ffb680 , status 1 +connecting thr e2ffb680 , thread 615 , mypolls 0 +myconn 0 connecting thr e2ffb680 , thread 615 , mypolls 0 +thr e2ffb800 , status 1 +connecting thr e2ffb800 , thread 616 , mypolls 0 +myconn 0 connecting thr e2ffb800 , thread 616 , mypolls 0 +thr e2ffb980 , status 1 +connecting thr e2ffb980 , thread 617 , mypolls 0 +myconn 0 connecting thr e2ffb980 , thread 617 , mypolls 0 +thr e2ffbb00 , status 1 +connecting thr e2ffbb00 , thread 618 , mypolls 0 +myconn 0 connecting thr e2ffbb00 , thread 618 , mypolls 0 +thr e2ffbc80 , status 1 +connecting thr e2ffbc80 , thread 619 , mypolls 0 +myconn 0 connecting thr e2ffbc80 , thread 619 , mypolls 0 +thr e2ffbe00 , status 1 +connecting thr e2ffbe00 , thread 620 , mypolls 0 +myconn 0 connecting thr e2ffbe00 , thread 620 , mypolls 0 +thr e2ffbf80 , status 1 +connecting thr e2ffbf80 , thread 621 , mypolls 0 +myconn 0 connecting thr e2ffbf80 , thread 621 , mypolls 0 +thr e2ffc100 , status 1 +connecting thr e2ffc100 , thread 622 , mypolls 0 +myconn 0 connecting thr e2ffc100 , thread 622 , mypolls 0 +thr e2ffc280 , status 1 +connecting thr e2ffc280 , thread 623 , mypolls 0 +myconn 0 connecting thr e2ffc280 , thread 623 , mypolls 0 +thr e2ffc400 , status 1 +connecting thr e2ffc400 , thread 624 , mypolls 0 +myconn 0 connecting thr e2ffc400 , thread 624 , mypolls 0 +thr e2ffc580 , status 1 +connecting thr e2ffc580 , thread 625 , mypolls 0 +myconn 0 connecting thr e2ffc580 , thread 625 , mypolls 0 +thr e2ffc700 , status 1 +connecting thr e2ffc700 , thread 626 , mypolls 0 +myconn 0 connecting thr e2ffc700 , thread 626 , mypolls 0 +thr e2ffc880 , status 1 +connecting thr e2ffc880 , thread 627 , mypolls 0 +myconn 0 connecting thr e2ffc880 , thread 627 , mypolls 0 +thr e2ffca00 , status 1 +connecting thr e2ffca00 , thread 628 , mypolls 0 +myconn 0 connecting thr e2ffca00 , thread 628 , mypolls 0 +thr e2ffcb80 , status 1 +connecting thr e2ffcb80 , thread 629 , mypolls 0 +myconn 0 connecting thr e2ffcb80 , thread 629 , mypolls 0 +thr e2ffcd00 , status 1 +connecting thr e2ffcd00 , thread 630 , mypolls 0 +myconn 0 connecting thr e2ffcd00 , thread 630 , mypolls 0 +thr e2ffce80 , status 1 +connecting thr e2ffce80 , thread 631 , mypolls 0 +myconn 0 connecting thr e2ffce80 , thread 631 , mypolls 0 +thr e2ab8000 , status 1 +connecting thr e2ab8000 , thread 632 , mypolls 0 +myconn 0 connecting thr e2ab8000 , thread 632 , mypolls 0 +thr e2ab8180 , status 1 +connecting thr e2ab8180 , thread 633 , mypolls 0 +myconn 0 connecting thr e2ab8180 , thread 633 , mypolls 0 +thr e2ab8300 , status 1 +connecting thr e2ab8300 , thread 634 , mypolls 0 +myconn 0 connecting thr e2ab8300 , thread 634 , mypolls 0 +thr e2ab8480 , status 1 +connecting thr e2ab8480 , thread 635 , mypolls 0 +myconn 0 connecting thr e2ab8480 , thread 635 , mypolls 0 +thr e2ab8600 , status 1 +connecting thr e2ab8600 , thread 636 , mypolls 0 +myconn 0 connecting thr e2ab8600 , thread 636 , mypolls 0 +thr e2ab8780 , status 1 +connecting thr e2ab8780 , thread 637 , mypolls 0 +myconn 0 connecting thr e2ab8780 , thread 637 , mypolls 0 +thr e2ab8900 , status 1 +connecting thr e2ab8900 , thread 638 , mypolls 0 +myconn 0 connecting thr e2ab8900 , thread 638 , mypolls 0 +thr e2ab8a80 , status 1 +connecting thr e2ab8a80 , thread 639 , mypolls 0 +myconn 0 connecting thr e2ab8a80 , thread 639 , mypolls 0 +thr e2ab8c00 , status 1 +connecting thr e2ab8c00 , thread 640 , mypolls 0 +myconn 0 connecting thr e2ab8c00 , thread 640 , mypolls 0 +thr e2ab8d80 , status 1 +connecting thr e2ab8d80 , thread 641 , mypolls 0 +myconn 0 connecting thr e2ab8d80 , thread 641 , mypolls 0 +thr e2ab8f00 , status 1 +connecting thr e2ab8f00 , thread 642 , mypolls 0 +myconn 0 connecting thr e2ab8f00 , thread 642 , mypolls 0 +thr e2ab9080 , status 1 +connecting thr e2ab9080 , thread 643 , mypolls 0 +myconn 0 connecting thr e2ab9080 , thread 643 , mypolls 0 +thr e2ab9200 , status 1 +connecting thr e2ab9200 , thread 644 , mypolls 0 +myconn 0 connecting thr e2ab9200 , thread 644 , mypolls 0 +thr e2ab9380 , status 1 +connecting thr e2ab9380 , thread 645 , mypolls 0 +myconn 0 connecting thr e2ab9380 , thread 645 , mypolls 0 +thr e2ab9500 , status 1 +connecting thr e2ab9500 , thread 646 , mypolls 0 +myconn 0 connecting thr e2ab9500 , thread 646 , mypolls 0 +thr e2ab9680 , status 1 +connecting thr e2ab9680 , thread 647 , mypolls 0 +myconn 0 connecting thr e2ab9680 , thread 647 , mypolls 0 +thr e2ab9800 , status 1 +connecting thr e2ab9800 , thread 648 , mypolls 0 +myconn 0 connecting thr e2ab9800 , thread 648 , mypolls 0 +thr e2ab9980 , status 1 +connecting thr e2ab9980 , thread 649 , mypolls 0 +myconn 0 connecting thr e2ab9980 , thread 649 , mypolls 0 +thr e2ab9b00 , status 1 +connecting thr e2ab9b00 , thread 650 , mypolls 0 +myconn 0 connecting thr e2ab9b00 , thread 650 , mypolls 0 +thr e2ab9c80 , status 1 +connecting thr e2ab9c80 , thread 651 , mypolls 0 +myconn 0 connecting thr e2ab9c80 , thread 651 , mypolls 0 +thr e2ab9e00 , status 1 +connecting thr e2ab9e00 , thread 652 , mypolls 0 +myconn 0 connecting thr e2ab9e00 , thread 652 , mypolls 0 +thr e2ab9f80 , status 1 +connecting thr e2ab9f80 , thread 653 , mypolls 0 +myconn 0 connecting thr e2ab9f80 , thread 653 , mypolls 0 +thr e2aba100 , status 1 +connecting thr e2aba100 , thread 654 , mypolls 0 +myconn 0 connecting thr e2aba100 , thread 654 , mypolls 0 +thr e2aba280 , status 1 +connecting thr e2aba280 , thread 655 , mypolls 0 +myconn 0 connecting thr e2aba280 , thread 655 , mypolls 0 +thr e2aba400 , status 1 +connecting thr e2aba400 , thread 656 , mypolls 0 +myconn 0 connecting thr e2aba400 , thread 656 , mypolls 0 +thr e2aba580 , status 1 +connecting thr e2aba580 , thread 657 , mypolls 0 +myconn 0 connecting thr e2aba580 , thread 657 , mypolls 0 +thr e2aba700 , status 1 +connecting thr e2aba700 , thread 658 , mypolls 0 +myconn 0 connecting thr e2aba700 , thread 658 , mypolls 0 +thr e2aba880 , status 1 +connecting thr e2aba880 , thread 659 , mypolls 0 +myconn 0 connecting thr e2aba880 , thread 659 , mypolls 0 +thr e2abaa00 , status 1 +connecting thr e2abaa00 , thread 660 , mypolls 0 +myconn 0 connecting thr e2abaa00 , thread 660 , mypolls 0 +thr e2abab80 , status 1 +connecting thr e2abab80 , thread 661 , mypolls 0 +myconn 0 connecting thr e2abab80 , thread 661 , mypolls 0 +thr e2abad00 , status 1 +connecting thr e2abad00 , thread 662 , mypolls 0 +myconn 0 connecting thr e2abad00 , thread 662 , mypolls 0 +thr e2abae80 , status 1 +connecting thr e2abae80 , thread 663 , mypolls 0 +myconn 0 connecting thr e2abae80 , thread 663 , mypolls 0 +thr e291b000 , status 1 +connecting thr e291b000 , thread 664 , mypolls 0 +myconn 0 connecting thr e291b000 , thread 664 , mypolls 0 +thr e291b180 , status 1 +connecting thr e291b180 , thread 665 , mypolls 0 +myconn 0 connecting thr e291b180 , thread 665 , mypolls 0 +thr e291b300 , status 1 +connecting thr e291b300 , thread 666 , mypolls 0 +myconn 0 connecting thr e291b300 , thread 666 , mypolls 0 +thr e291b480 , status 1 +connecting thr e291b480 , thread 667 , mypolls 0 +myconn 0 connecting thr e291b480 , thread 667 , mypolls 0 +thr e291b600 , status 1 +connecting thr e291b600 , thread 668 , mypolls 0 +myconn 0 connecting thr e291b600 , thread 668 , mypolls 0 +thr e291b780 , status 1 +connecting thr e291b780 , thread 669 , mypolls 0 +myconn 0 connecting thr e291b780 , thread 669 , mypolls 0 +thr e291b900 , status 1 +connecting thr e291b900 , thread 670 , mypolls 0 +myconn 0 connecting thr e291b900 , thread 670 , mypolls 0 +thr e291ba80 , status 1 +connecting thr e291ba80 , thread 671 , mypolls 0 +myconn 0 connecting thr e291ba80 , thread 671 , mypolls 0 +thr e291bc00 , status 1 +connecting thr e291bc00 , thread 672 , mypolls 0 +myconn 0 connecting thr e291bc00 , thread 672 , mypolls 0 +thr e291bd80 , status 1 +connecting thr e291bd80 , thread 673 , mypolls 0 +myconn 0 connecting thr e291bd80 , thread 673 , mypolls 0 +thr e291bf00 , status 1 +connecting thr e291bf00 , thread 674 , mypolls 0 +myconn 0 connecting thr e291bf00 , thread 674 , mypolls 0 +thr e291c080 , status 1 +connecting thr e291c080 , thread 675 , mypolls 0 +myconn 0 connecting thr e291c080 , thread 675 , mypolls 0 +thr e291c200 , status 1 +connecting thr e291c200 , thread 676 , mypolls 0 +myconn 0 connecting thr e291c200 , thread 676 , mypolls 0 +thr e291c380 , status 1 +connecting thr e291c380 , thread 677 , mypolls 0 +myconn 0 connecting thr e291c380 , thread 677 , mypolls 0 +thr e291c500 , status 1 +connecting thr e291c500 , thread 678 , mypolls 0 +myconn 0 connecting thr e291c500 , thread 678 , mypolls 0 +thr e291c680 , status 1 +connecting thr e291c680 , thread 679 , mypolls 0 +myconn 0 connecting thr e291c680 , thread 679 , mypolls 0 +thr e291c800 , status 1 +connecting thr e291c800 , thread 680 , mypolls 0 +myconn 0 connecting thr e291c800 , thread 680 , mypolls 0 +thr e291c980 , status 1 +connecting thr e291c980 , thread 681 , mypolls 0 +myconn 0 connecting thr e291c980 , thread 681 , mypolls 0 +thr e291cb00 , status 1 +connecting thr e291cb00 , thread 682 , mypolls 0 +myconn 0 connecting thr e291cb00 , thread 682 , mypolls 0 +thr e291cc80 , status 1 +connecting thr e291cc80 , thread 683 , mypolls 0 +myconn 0 connecting thr e291cc80 , thread 683 , mypolls 0 +thr e291ce00 , status 1 +connecting thr e291ce00 , thread 684 , mypolls 0 +myconn 0 connecting thr e291ce00 , thread 684 , mypolls 0 +thr e291cf80 , status 1 +connecting thr e291cf80 , thread 685 , mypolls 0 +myconn 0 connecting thr e291cf80 , thread 685 , mypolls 0 +thr e291d100 , status 1 +connecting thr e291d100 , thread 686 , mypolls 0 +myconn 0 connecting thr e291d100 , thread 686 , mypolls 0 +thr e291d280 , status 1 +connecting thr e291d280 , thread 687 , mypolls 0 +myconn 0 connecting thr e291d280 , thread 687 , mypolls 0 +thr e291d400 , status 1 +connecting thr e291d400 , thread 688 , mypolls 0 +myconn 0 connecting thr e291d400 , thread 688 , mypolls 0 +thr e291d580 , status 1 +connecting thr e291d580 , thread 689 , mypolls 0 +myconn 0 connecting thr e291d580 , thread 689 , mypolls 0 +thr e291d700 , status 1 +connecting thr e291d700 , thread 690 , mypolls 0 +myconn 0 connecting thr e291d700 , thread 690 , mypolls 0 +thr e291d880 , status 1 +connecting thr e291d880 , thread 691 , mypolls 0 +myconn 0 connecting thr e291d880 , thread 691 , mypolls 0 +thr e291da00 , status 1 +connecting thr e291da00 , thread 692 , mypolls 0 +myconn 0 connecting thr e291da00 , thread 692 , mypolls 0 +thr e291db80 , status 1 +connecting thr e291db80 , thread 693 , mypolls 0 +myconn 0 connecting thr e291db80 , thread 693 , mypolls 0 +thr e291dd00 , status 1 +connecting thr e291dd00 , thread 694 , mypolls 0 +myconn 0 connecting thr e291dd00 , thread 694 , mypolls 0 +thr e291de80 , status 1 +connecting thr e291de80 , thread 695 , mypolls 0 +myconn 0 connecting thr e291de80 , thread 695 , mypolls 0 +thr e277d000 , status 1 +connecting thr e277d000 , thread 696 , mypolls 0 +myconn 0 connecting thr e277d000 , thread 696 , mypolls 0 +thr e277d180 , status 1 +connecting thr e277d180 , thread 697 , mypolls 0 +myconn 0 connecting thr e277d180 , thread 697 , mypolls 0 +thr e277d300 , status 1 +connecting thr e277d300 , thread 698 , mypolls 0 +myconn 0 connecting thr e277d300 , thread 698 , mypolls 0 +thr e277d480 , status 1 +connecting thr e277d480 , thread 699 , mypolls 0 +myconn 0 connecting thr e277d480 , thread 699 , mypolls 0 +thr e277d600 , status 1 +connecting thr e277d600 , thread 700 , mypolls 0 +myconn 0 connecting thr e277d600 , thread 700 , mypolls 0 +thr e277d780 , status 1 +connecting thr e277d780 , thread 701 , mypolls 0 +myconn 0 connecting thr e277d780 , thread 701 , mypolls 0 +thr e277d900 , status 1 +connecting thr e277d900 , thread 702 , mypolls 0 +myconn 0 connecting thr e277d900 , thread 702 , mypolls 0 +thr e277da80 , status 1 +connecting thr e277da80 , thread 703 , mypolls 0 +myconn 0 connecting thr e277da80 , thread 703 , mypolls 0 +thr e277dc00 , status 1 +connecting thr e277dc00 , thread 704 , mypolls 0 +myconn 0 connecting thr e277dc00 , thread 704 , mypolls 0 +thr e277dd80 , status 1 +connecting thr e277dd80 , thread 705 , mypolls 0 +myconn 0 connecting thr e277dd80 , thread 705 , mypolls 0 +thr e277df00 , status 1 +connecting thr e277df00 , thread 706 , mypolls 0 +myconn 0 connecting thr e277df00 , thread 706 , mypolls 0 +thr e277e080 , status 1 +connecting thr e277e080 , thread 707 , mypolls 0 +myconn 0 connecting thr e277e080 , thread 707 , mypolls 0 +thr e277e200 , status 1 +connecting thr e277e200 , thread 708 , mypolls 0 +myconn 0 connecting thr e277e200 , thread 708 , mypolls 0 +thr e277e380 , status 1 +connecting thr e277e380 , thread 709 , mypolls 0 +myconn 0 connecting thr e277e380 , thread 709 , mypolls 0 +thr e277e500 , status 1 +connecting thr e277e500 , thread 710 , mypolls 0 +myconn 0 connecting thr e277e500 , thread 710 , mypolls 0 +thr e277e680 , status 1 +connecting thr e277e680 , thread 711 , mypolls 0 +myconn 0 connecting thr e277e680 , thread 711 , mypolls 0 +thr e277e800 , status 1 +connecting thr e277e800 , thread 712 , mypolls 0 +myconn 0 connecting thr e277e800 , thread 712 , mypolls 0 +thr e277e980 , status 1 +connecting thr e277e980 , thread 713 , mypolls 0 +myconn 0 connecting thr e277e980 , thread 713 , mypolls 0 +thr e277eb00 , status 1 +connecting thr e277eb00 , thread 714 , mypolls 0 +myconn 0 connecting thr e277eb00 , thread 714 , mypolls 0 +thr e277ec80 , status 1 +connecting thr e277ec80 , thread 715 , mypolls 0 +myconn 0 connecting thr e277ec80 , thread 715 , mypolls 0 +thr e277ee00 , status 1 +connecting thr e277ee00 , thread 716 , mypolls 0 +myconn 0 connecting thr e277ee00 , thread 716 , mypolls 0 +thr e277ef80 , status 1 +connecting thr e277ef80 , thread 717 , mypolls 0 +myconn 0 connecting thr e277ef80 , thread 717 , mypolls 0 +thr e277f100 , status 1 +connecting thr e277f100 , thread 718 , mypolls 0 +myconn 0 connecting thr e277f100 , thread 718 , mypolls 0 +thr e277f280 , status 1 +connecting thr e277f280 , thread 719 , mypolls 0 +myconn 0 connecting thr e277f280 , thread 719 , mypolls 0 +thr e277f400 , status 1 +connecting thr e277f400 , thread 720 , mypolls 0 +myconn 0 connecting thr e277f400 , thread 720 , mypolls 0 +thr e277f580 , status 1 +connecting thr e277f580 , thread 721 , mypolls 0 +myconn 0 connecting thr e277f580 , thread 721 , mypolls 0 +thr e277f700 , status 1 +connecting thr e277f700 , thread 722 , mypolls 0 +myconn 0 connecting thr e277f700 , thread 722 , mypolls 0 +thr e277f880 , status 1 +connecting thr e277f880 , thread 723 , mypolls 0 +myconn 0 connecting thr e277f880 , thread 723 , mypolls 0 +thr e277fa00 , status 1 +connecting thr e277fa00 , thread 724 , mypolls 0 +myconn 0 connecting thr e277fa00 , thread 724 , mypolls 0 +thr e277fb80 , status 1 +connecting thr e277fb80 , thread 725 , mypolls 0 +myconn 0 connecting thr e277fb80 , thread 725 , mypolls 0 +thr e277fd00 , status 1 +connecting thr e277fd00 , thread 726 , mypolls 0 +myconn 0 connecting thr e277fd00 , thread 726 , mypolls 0 +thr e277fe80 , status 1 +connecting thr e277fe80 , thread 727 , mypolls 0 +myconn 0 connecting thr e277fe80 , thread 727 , mypolls 0 +thr e25db000 , status 1 +connecting thr e25db000 , thread 728 , mypolls 0 +myconn 0 connecting thr e25db000 , thread 728 , mypolls 0 +thr e25db180 , status 1 +connecting thr e25db180 , thread 729 , mypolls 0 +myconn 0 connecting thr e25db180 , thread 729 , mypolls 0 +thr e25db300 , status 1 +connecting thr e25db300 , thread 730 , mypolls 0 +myconn 0 connecting thr e25db300 , thread 730 , mypolls 0 +thr e25db480 , status 1 +connecting thr e25db480 , thread 731 , mypolls 0 +myconn 0 connecting thr e25db480 , thread 731 , mypolls 0 +thr e25db600 , status 1 +connecting thr e25db600 , thread 732 , mypolls 0 +myconn 0 connecting thr e25db600 , thread 732 , mypolls 0 +thr e25db780 , status 1 +connecting thr e25db780 , thread 733 , mypolls 0 +myconn 0 connecting thr e25db780 , thread 733 , mypolls 0 +thr e25db900 , status 1 +connecting thr e25db900 , thread 734 , mypolls 0 +myconn 0 connecting thr e25db900 , thread 734 , mypolls 0 +thr e25dba80 , status 1 +connecting thr e25dba80 , thread 735 , mypolls 0 +myconn 0 connecting thr e25dba80 , thread 735 , mypolls 0 +thr e25dbc00 , status 1 +connecting thr e25dbc00 , thread 736 , mypolls 0 +myconn 0 connecting thr e25dbc00 , thread 736 , mypolls 0 +thr e25dbd80 , status 1 +connecting thr e25dbd80 , thread 737 , mypolls 0 +myconn 0 connecting thr e25dbd80 , thread 737 , mypolls 0 +thr e25dbf00 , status 1 +connecting thr e25dbf00 , thread 738 , mypolls 0 +myconn 0 connecting thr e25dbf00 , thread 738 , mypolls 0 +thr e25dc080 , status 1 +connecting thr e25dc080 , thread 739 , mypolls 0 +myconn 0 connecting thr e25dc080 , thread 739 , mypolls 0 +thr e25dc200 , status 1 +connecting thr e25dc200 , thread 740 , mypolls 0 +myconn 0 connecting thr e25dc200 , thread 740 , mypolls 0 +thr e25dc380 , status 1 +connecting thr e25dc380 , thread 741 , mypolls 0 +myconn 0 connecting thr e25dc380 , thread 741 , mypolls 0 +thr e25dc500 , status 1 +connecting thr e25dc500 , thread 742 , mypolls 0 +myconn 0 connecting thr e25dc500 , thread 742 , mypolls 0 +thr e25dc680 , status 1 +connecting thr e25dc680 , thread 743 , mypolls 0 +myconn 0 connecting thr e25dc680 , thread 743 , mypolls 0 +thr e25dc800 , status 1 +connecting thr e25dc800 , thread 744 , mypolls 0 +myconn 0 connecting thr e25dc800 , thread 744 , mypolls 0 +thr e25dc980 , status 1 +connecting thr e25dc980 , thread 745 , mypolls 0 +myconn 0 connecting thr e25dc980 , thread 745 , mypolls 0 +thr e25dcb00 , status 1 +connecting thr e25dcb00 , thread 746 , mypolls 0 +myconn 0 connecting thr e25dcb00 , thread 746 , mypolls 0 +thr e25dcc80 , status 1 +connecting thr e25dcc80 , thread 747 , mypolls 0 +myconn 0 connecting thr e25dcc80 , thread 747 , mypolls 0 +thr e25dce00 , status 1 +connecting thr e25dce00 , thread 748 , mypolls 0 +myconn 0 connecting thr e25dce00 , thread 748 , mypolls 0 +thr e25dcf80 , status 1 +connecting thr e25dcf80 , thread 749 , mypolls 0 +myconn 0 connecting thr e25dcf80 , thread 749 , mypolls 0 +thr e25dd100 , status 1 +connecting thr e25dd100 , thread 750 , mypolls 0 +myconn 0 connecting thr e25dd100 , thread 750 , mypolls 0 +thr e25dd280 , status 1 +connecting thr e25dd280 , thread 751 , mypolls 0 +myconn 0 connecting thr e25dd280 , thread 751 , mypolls 0 +thr e25dd400 , status 1 +connecting thr e25dd400 , thread 752 , mypolls 0 +myconn 0 connecting thr e25dd400 , thread 752 , mypolls 0 +thr e25dd580 , status 1 +connecting thr e25dd580 , thread 753 , mypolls 0 +myconn 0 connecting thr e25dd580 , thread 753 , mypolls 0 +thr e25dd700 , status 1 +connecting thr e25dd700 , thread 754 , mypolls 0 +myconn 0 connecting thr e25dd700 , thread 754 , mypolls 0 +thr e25dd880 , status 1 +connecting thr e25dd880 , thread 755 , mypolls 0 +myconn 0 connecting thr e25dd880 , thread 755 , mypolls 0 +thr e25dda00 , status 1 +connecting thr e25dda00 , thread 756 , mypolls 0 +myconn 0 connecting thr e25dda00 , thread 756 , mypolls 0 +thr e25ddb80 , status 1 +connecting thr e25ddb80 , thread 757 , mypolls 0 +myconn 0 connecting thr e25ddb80 , thread 757 , mypolls 0 +thr e25ddd00 , status 1 +connecting thr e25ddd00 , thread 758 , mypolls 0 +myconn 0 connecting thr e25ddd00 , thread 758 , mypolls 0 +thr e25dde80 , status 1 +connecting thr e25dde80 , thread 759 , mypolls 0 +myconn 0 connecting thr e25dde80 , thread 759 , mypolls 0 +thr e23fd000 , status 1 +connecting thr e23fd000 , thread 760 , mypolls 0 +myconn 0 connecting thr e23fd000 , thread 760 , mypolls 0 +thr e23fd180 , status 1 +connecting thr e23fd180 , thread 761 , mypolls 0 +myconn 0 connecting thr e23fd180 , thread 761 , mypolls 0 +thr e23fd300 , status 1 +connecting thr e23fd300 , thread 762 , mypolls 0 +myconn 0 connecting thr e23fd300 , thread 762 , mypolls 0 +thr e23fd480 , status 1 +connecting thr e23fd480 , thread 763 , mypolls 0 +myconn 0 connecting thr e23fd480 , thread 763 , mypolls 0 +thr e23fd600 , status 1 +connecting thr e23fd600 , thread 764 , mypolls 0 +myconn 0 connecting thr e23fd600 , thread 764 , mypolls 0 +thr e23fd780 , status 1 +connecting thr e23fd780 , thread 765 , mypolls 0 +myconn 0 connecting thr e23fd780 , thread 765 , mypolls 0 +thr e23fd900 , status 1 +connecting thr e23fd900 , thread 766 , mypolls 0 +myconn 0 connecting thr e23fd900 , thread 766 , mypolls 0 +thr e23fda80 , status 1 +connecting thr e23fda80 , thread 767 , mypolls 0 +myconn 0 connecting thr e23fda80 , thread 767 , mypolls 0 +thr e23fdc00 , status 1 +connecting thr e23fdc00 , thread 768 , mypolls 0 +myconn 0 connecting thr e23fdc00 , thread 768 , mypolls 0 +thr e23fdd80 , status 1 +connecting thr e23fdd80 , thread 769 , mypolls 0 +myconn 0 connecting thr e23fdd80 , thread 769 , mypolls 0 +thr e23fdf00 , status 1 +connecting thr e23fdf00 , thread 770 , mypolls 0 +myconn 0 connecting thr e23fdf00 , thread 770 , mypolls 0 +thr e23fe080 , status 1 +connecting thr e23fe080 , thread 771 , mypolls 0 +myconn 0 connecting thr e23fe080 , thread 771 , mypolls 0 +thr e23fe200 , status 1 +connecting thr e23fe200 , thread 772 , mypolls 0 +myconn 0 connecting thr e23fe200 , thread 772 , mypolls 0 +thr e23fe380 , status 1 +connecting thr e23fe380 , thread 773 , mypolls 0 +myconn 0 connecting thr e23fe380 , thread 773 , mypolls 0 +thr e23fe500 , status 1 +connecting thr e23fe500 , thread 774 , mypolls 0 +myconn 0 connecting thr e23fe500 , thread 774 , mypolls 0 +thr e23fe680 , status 1 +connecting thr e23fe680 , thread 775 , mypolls 0 +myconn 0 connecting thr e23fe680 , thread 775 , mypolls 0 +thr e23fe800 , status 1 +connecting thr e23fe800 , thread 776 , mypolls 0 +myconn 0 connecting thr e23fe800 , thread 776 , mypolls 0 +thr e23fe980 , status 1 +connecting thr e23fe980 , thread 777 , mypolls 0 +myconn 0 connecting thr e23fe980 , thread 777 , mypolls 0 +thr e23feb00 , status 1 +connecting thr e23feb00 , thread 778 , mypolls 0 +myconn 0 connecting thr e23feb00 , thread 778 , mypolls 0 +thr e23fec80 , status 1 +connecting thr e23fec80 , thread 779 , mypolls 0 +myconn 0 connecting thr e23fec80 , thread 779 , mypolls 0 +thr e23fee00 , status 1 +connecting thr e23fee00 , thread 780 , mypolls 0 +myconn 0 connecting thr e23fee00 , thread 780 , mypolls 0 +thr e23fef80 , status 1 +connecting thr e23fef80 , thread 781 , mypolls 0 +myconn 0 connecting thr e23fef80 , thread 781 , mypolls 0 +thr e23ff100 , status 1 +connecting thr e23ff100 , thread 782 , mypolls 0 +myconn 0 connecting thr e23ff100 , thread 782 , mypolls 0 +thr e23ff280 , status 1 +connecting thr e23ff280 , thread 783 , mypolls 0 +myconn 0 connecting thr e23ff280 , thread 783 , mypolls 0 +thr e23ff400 , status 1 +connecting thr e23ff400 , thread 784 , mypolls 0 +myconn 0 connecting thr e23ff400 , thread 784 , mypolls 0 +thr e23ff580 , status 1 +connecting thr e23ff580 , thread 785 , mypolls 0 +myconn 0 connecting thr e23ff580 , thread 785 , mypolls 0 +thr e23ff700 , status 1 +connecting thr e23ff700 , thread 786 , mypolls 0 +myconn 0 connecting thr e23ff700 , thread 786 , mypolls 0 +thr e23ff880 , status 1 +connecting thr e23ff880 , thread 787 , mypolls 0 +myconn 0 connecting thr e23ff880 , thread 787 , mypolls 0 +thr e23ffa00 , status 1 +connecting thr e23ffa00 , thread 788 , mypolls 0 +myconn 0 connecting thr e23ffa00 , thread 788 , mypolls 0 +thr e23ffb80 , status 1 +connecting thr e23ffb80 , thread 789 , mypolls 0 +myconn 0 connecting thr e23ffb80 , thread 789 , mypolls 0 +thr e23ffd00 , status 1 +connecting thr e23ffd00 , thread 790 , mypolls 0 +myconn 0 connecting thr e23ffd00 , thread 790 , mypolls 0 +thr e23ffe80 , status 1 +connecting thr e23ffe80 , thread 791 , mypolls 0 +myconn 0 connecting thr e23ffe80 , thread 791 , mypolls 0 +thr e1eb4000 , status 1 +connecting thr e1eb4000 , thread 792 , mypolls 0 +myconn 0 connecting thr e1eb4000 , thread 792 , mypolls 0 +thr e1eb4180 , status 1 +connecting thr e1eb4180 , thread 793 , mypolls 0 +myconn 0 connecting thr e1eb4180 , thread 793 , mypolls 0 +thr e1eb4300 , status 1 +connecting thr e1eb4300 , thread 794 , mypolls 0 +myconn 0 connecting thr e1eb4300 , thread 794 , mypolls 0 +thr e1eb4480 , status 1 +connecting thr e1eb4480 , thread 795 , mypolls 0 +myconn 0 connecting thr e1eb4480 , thread 795 , mypolls 0 +thr e1eb4600 , status 1 +connecting thr e1eb4600 , thread 796 , mypolls 0 +myconn 0 connecting thr e1eb4600 , thread 796 , mypolls 0 +thr e1eb4780 , status 1 +connecting thr e1eb4780 , thread 797 , mypolls 0 +myconn 0 connecting thr e1eb4780 , thread 797 , mypolls 0 +thr e1eb4900 , status 1 +connecting thr e1eb4900 , thread 798 , mypolls 0 +myconn 0 connecting thr e1eb4900 , thread 798 , mypolls 0 +thr e1eb4a80 , status 1 +connecting thr e1eb4a80 , thread 799 , mypolls 0 +myconn 0 connecting thr e1eb4a80 , thread 799 , mypolls 0 +thr e1eb4c00 , status 1 +connecting thr e1eb4c00 , thread 800 , mypolls 0 +myconn 0 connecting thr e1eb4c00 , thread 800 , mypolls 0 +thr e1eb4d80 , status 1 +connecting thr e1eb4d80 , thread 801 , mypolls 0 +myconn 0 connecting thr e1eb4d80 , thread 801 , mypolls 0 +thr e1eb4f00 , status 1 +connecting thr e1eb4f00 , thread 802 , mypolls 0 +myconn 0 connecting thr e1eb4f00 , thread 802 , mypolls 0 +thr e1eb5080 , status 1 +connecting thr e1eb5080 , thread 803 , mypolls 0 +myconn 0 connecting thr e1eb5080 , thread 803 , mypolls 0 +thr e1eb5200 , status 1 +connecting thr e1eb5200 , thread 804 , mypolls 0 +myconn 0 connecting thr e1eb5200 , thread 804 , mypolls 0 +thr e1eb5380 , status 1 +connecting thr e1eb5380 , thread 805 , mypolls 0 +myconn 0 connecting thr e1eb5380 , thread 805 , mypolls 0 +thr e1eb5500 , status 1 +connecting thr e1eb5500 , thread 806 , mypolls 0 +myconn 0 connecting thr e1eb5500 , thread 806 , mypolls 0 +thr e1eb5680 , status 1 +connecting thr e1eb5680 , thread 807 , mypolls 0 +myconn 0 connecting thr e1eb5680 , thread 807 , mypolls 0 +thr e1eb5800 , status 1 +connecting thr e1eb5800 , thread 808 , mypolls 0 +myconn 0 connecting thr e1eb5800 , thread 808 , mypolls 0 +thr e1eb5980 , status 1 +connecting thr e1eb5980 , thread 809 , mypolls 0 +myconn 0 connecting thr e1eb5980 , thread 809 , mypolls 0 +thr e1eb5b00 , status 1 +connecting thr e1eb5b00 , thread 810 , mypolls 0 +myconn 0 connecting thr e1eb5b00 , thread 810 , mypolls 0 +thr e1eb5c80 , status 1 +connecting thr e1eb5c80 , thread 811 , mypolls 0 +myconn 0 connecting thr e1eb5c80 , thread 811 , mypolls 0 +thr e1eb5e00 , status 1 +connecting thr e1eb5e00 , thread 812 , mypolls 0 +myconn 0 connecting thr e1eb5e00 , thread 812 , mypolls 0 +thr e1eb5f80 , status 1 +connecting thr e1eb5f80 , thread 813 , mypolls 0 +myconn 0 connecting thr e1eb5f80 , thread 813 , mypolls 0 +thr e1eb6100 , status 1 +connecting thr e1eb6100 , thread 814 , mypolls 0 +myconn 0 connecting thr e1eb6100 , thread 814 , mypolls 0 +thr e1eb6280 , status 1 +connecting thr e1eb6280 , thread 815 , mypolls 0 +myconn 0 connecting thr e1eb6280 , thread 815 , mypolls 0 +thr e1eb6400 , status 1 +connecting thr e1eb6400 , thread 816 , mypolls 0 +myconn 0 connecting thr e1eb6400 , thread 816 , mypolls 0 +thr e1eb6580 , status 1 +connecting thr e1eb6580 , thread 817 , mypolls 0 +myconn 0 connecting thr e1eb6580 , thread 817 , mypolls 0 +thr e1eb6700 , status 1 +connecting thr e1eb6700 , thread 818 , mypolls 0 +myconn 0 connecting thr e1eb6700 , thread 818 , mypolls 0 +thr e1eb6880 , status 1 +connecting thr e1eb6880 , thread 819 , mypolls 0 +myconn 0 connecting thr e1eb6880 , thread 819 , mypolls 0 +thr e1eb6a00 , status 1 +connecting thr e1eb6a00 , thread 820 , mypolls 0 +myconn 0 connecting thr e1eb6a00 , thread 820 , mypolls 0 +thr e1eb6b80 , status 1 +connecting thr e1eb6b80 , thread 821 , mypolls 0 +myconn 0 connecting thr e1eb6b80 , thread 821 , mypolls 0 +thr e1eb6d00 , status 1 +connecting thr e1eb6d00 , thread 822 , mypolls 0 +myconn 0 connecting thr e1eb6d00 , thread 822 , mypolls 0 +thr e1eb6e80 , status 1 +connecting thr e1eb6e80 , thread 823 , mypolls 0 +myconn 0 connecting thr e1eb6e80 , thread 823 , mypolls 0 +thr e1d14000 , status 1 +connecting thr e1d14000 , thread 824 , mypolls 0 +myconn 0 connecting thr e1d14000 , thread 824 , mypolls 0 +thr e1d14180 , status 1 +connecting thr e1d14180 , thread 825 , mypolls 0 +myconn 0 connecting thr e1d14180 , thread 825 , mypolls 0 +thr e1d14300 , status 1 +connecting thr e1d14300 , thread 826 , mypolls 0 +myconn 0 connecting thr e1d14300 , thread 826 , mypolls 0 +thr e1d14480 , status 1 +connecting thr e1d14480 , thread 827 , mypolls 0 +myconn 0 connecting thr e1d14480 , thread 827 , mypolls 0 +thr e1d14600 , status 1 +connecting thr e1d14600 , thread 828 , mypolls 0 +myconn 0 connecting thr e1d14600 , thread 828 , mypolls 0 +thr e1d14780 , status 1 +connecting thr e1d14780 , thread 829 , mypolls 0 +myconn 0 connecting thr e1d14780 , thread 829 , mypolls 0 +thr e1d14900 , status 1 +connecting thr e1d14900 , thread 830 , mypolls 0 +myconn 0 connecting thr e1d14900 , thread 830 , mypolls 0 +thr e1d14a80 , status 1 +connecting thr e1d14a80 , thread 831 , mypolls 0 +myconn 0 connecting thr e1d14a80 , thread 831 , mypolls 0 +thr e1d14c00 , status 1 +connecting thr e1d14c00 , thread 832 , mypolls 0 +myconn 0 connecting thr e1d14c00 , thread 832 , mypolls 0 +thr e1d14d80 , status 1 +connecting thr e1d14d80 , thread 833 , mypolls 0 +myconn 0 connecting thr e1d14d80 , thread 833 , mypolls 0 +thr e1d14f00 , status 1 +connecting thr e1d14f00 , thread 834 , mypolls 0 +myconn 0 connecting thr e1d14f00 , thread 834 , mypolls 0 +thr e1d15080 , status 1 +connecting thr e1d15080 , thread 835 , mypolls 0 +myconn 0 connecting thr e1d15080 , thread 835 , mypolls 0 +thr e1d15200 , status 1 +connecting thr e1d15200 , thread 836 , mypolls 0 +myconn 0 connecting thr e1d15200 , thread 836 , mypolls 0 +thr e1d15380 , status 1 +connecting thr e1d15380 , thread 837 , mypolls 0 +myconn 0 connecting thr e1d15380 , thread 837 , mypolls 0 +thr e1d15500 , status 1 +connecting thr e1d15500 , thread 838 , mypolls 0 +myconn 0 connecting thr e1d15500 , thread 838 , mypolls 0 +thr e1d15680 , status 1 +connecting thr e1d15680 , thread 839 , mypolls 0 +myconn 0 connecting thr e1d15680 , thread 839 , mypolls 0 +thr e1d15800 , status 1 +connecting thr e1d15800 , thread 840 , mypolls 0 +myconn 0 connecting thr e1d15800 , thread 840 , mypolls 0 +thr e1d15980 , status 1 +connecting thr e1d15980 , thread 841 , mypolls 0 +myconn 0 connecting thr e1d15980 , thread 841 , mypolls 0 +thr e1d15b00 , status 1 +connecting thr e1d15b00 , thread 842 , mypolls 0 +myconn 0 connecting thr e1d15b00 , thread 842 , mypolls 0 +thr e1d15c80 , status 1 +connecting thr e1d15c80 , thread 843 , mypolls 0 +myconn 0 connecting thr e1d15c80 , thread 843 , mypolls 0 +thr e1d15e00 , status 1 +connecting thr e1d15e00 , thread 844 , mypolls 0 +myconn 0 connecting thr e1d15e00 , thread 844 , mypolls 0 +thr e1d15f80 , status 1 +connecting thr e1d15f80 , thread 845 , mypolls 0 +myconn 0 connecting thr e1d15f80 , thread 845 , mypolls 0 +thr e1d16100 , status 1 +connecting thr e1d16100 , thread 846 , mypolls 0 +myconn 0 connecting thr e1d16100 , thread 846 , mypolls 0 +thr e1d16280 , status 1 +connecting thr e1d16280 , thread 847 , mypolls 0 +myconn 0 connecting thr e1d16280 , thread 847 , mypolls 0 +thr e1d16400 , status 1 +connecting thr e1d16400 , thread 848 , mypolls 0 +myconn 0 connecting thr e1d16400 , thread 848 , mypolls 0 +thr e1d16580 , status 1 +connecting thr e1d16580 , thread 849 , mypolls 0 +myconn 0 connecting thr e1d16580 , thread 849 , mypolls 0 +thr e1d16700 , status 1 +connecting thr e1d16700 , thread 850 , mypolls 0 +myconn 0 connecting thr e1d16700 , thread 850 , mypolls 0 +thr e1d16880 , status 1 +connecting thr e1d16880 , thread 851 , mypolls 0 +myconn 0 connecting thr e1d16880 , thread 851 , mypolls 0 +thr e1d16a00 , status 1 +connecting thr e1d16a00 , thread 852 , mypolls 0 +myconn 0 connecting thr e1d16a00 , thread 852 , mypolls 0 +thr e1d16b80 , status 1 +connecting thr e1d16b80 , thread 853 , mypolls 0 +myconn 0 connecting thr e1d16b80 , thread 853 , mypolls 0 +thr e1d16d00 , status 1 +connecting thr e1d16d00 , thread 854 , mypolls 0 +myconn 0 connecting thr e1d16d00 , thread 854 , mypolls 0 +thr e1d16e80 , status 1 +connecting thr e1d16e80 , thread 855 , mypolls 0 +myconn 0 connecting thr e1d16e80 , thread 855 , mypolls 0 +thr e1b77000 , status 1 +connecting thr e1b77000 , thread 856 , mypolls 0 +myconn 0 connecting thr e1b77000 , thread 856 , mypolls 0 +thr e1b77180 , status 1 +connecting thr e1b77180 , thread 857 , mypolls 0 +myconn 0 connecting thr e1b77180 , thread 857 , mypolls 0 +thr e1b77300 , status 1 +connecting thr e1b77300 , thread 858 , mypolls 0 +myconn 0 connecting thr e1b77300 , thread 858 , mypolls 0 +thr e1b77480 , status 1 +connecting thr e1b77480 , thread 859 , mypolls 0 +myconn 0 connecting thr e1b77480 , thread 859 , mypolls 0 +thr e1b77600 , status 1 +connecting thr e1b77600 , thread 860 , mypolls 0 +myconn 0 connecting thr e1b77600 , thread 860 , mypolls 0 +thr e1b77780 , status 1 +connecting thr e1b77780 , thread 861 , mypolls 0 +myconn 0 connecting thr e1b77780 , thread 861 , mypolls 0 +thr e1b77900 , status 1 +connecting thr e1b77900 , thread 862 , mypolls 0 +myconn 0 connecting thr e1b77900 , thread 862 , mypolls 0 +thr e1b77a80 , status 1 +connecting thr e1b77a80 , thread 863 , mypolls 0 +myconn 0 connecting thr e1b77a80 , thread 863 , mypolls 0 +thr e1b77c00 , status 1 +connecting thr e1b77c00 , thread 864 , mypolls 0 +myconn 0 connecting thr e1b77c00 , thread 864 , mypolls 0 +thr e1b77d80 , status 1 +connecting thr e1b77d80 , thread 865 , mypolls 0 +myconn 0 connecting thr e1b77d80 , thread 865 , mypolls 0 +thr e1b77f00 , status 1 +connecting thr e1b77f00 , thread 866 , mypolls 0 +myconn 0 connecting thr e1b77f00 , thread 866 , mypolls 0 +thr e1b78080 , status 1 +connecting thr e1b78080 , thread 867 , mypolls 0 +myconn 0 connecting thr e1b78080 , thread 867 , mypolls 0 +thr e1b78200 , status 1 +connecting thr e1b78200 , thread 868 , mypolls 0 +myconn 0 connecting thr e1b78200 , thread 868 , mypolls 0 +thr e1b78380 , status 1 +connecting thr e1b78380 , thread 869 , mypolls 0 +myconn 0 connecting thr e1b78380 , thread 869 , mypolls 0 +thr e1b78500 , status 1 +connecting thr e1b78500 , thread 870 , mypolls 0 +myconn 0 connecting thr e1b78500 , thread 870 , mypolls 0 +thr e1b78680 , status 1 +connecting thr e1b78680 , thread 871 , mypolls 0 +myconn 0 connecting thr e1b78680 , thread 871 , mypolls 0 +thr e1b78800 , status 1 +connecting thr e1b78800 , thread 872 , mypolls 0 +myconn 0 connecting thr e1b78800 , thread 872 , mypolls 0 +thr e1b78980 , status 1 +connecting thr e1b78980 , thread 873 , mypolls 0 +myconn 0 connecting thr e1b78980 , thread 873 , mypolls 0 +thr e1b78b00 , status 1 +connecting thr e1b78b00 , thread 874 , mypolls 0 +myconn 0 connecting thr e1b78b00 , thread 874 , mypolls 0 +thr e1b78c80 , status 1 +connecting thr e1b78c80 , thread 875 , mypolls 0 +myconn 0 connecting thr e1b78c80 , thread 875 , mypolls 0 +thr e1b78e00 , status 1 +connecting thr e1b78e00 , thread 876 , mypolls 0 +myconn 0 connecting thr e1b78e00 , thread 876 , mypolls 0 +thr e1b78f80 , status 1 +connecting thr e1b78f80 , thread 877 , mypolls 0 +myconn 0 connecting thr e1b78f80 , thread 877 , mypolls 0 +thr e1b79100 , status 1 +connecting thr e1b79100 , thread 878 , mypolls 0 +myconn 0 connecting thr e1b79100 , thread 878 , mypolls 0 +thr e1b79280 , status 1 +connecting thr e1b79280 , thread 879 , mypolls 0 +myconn 0 connecting thr e1b79280 , thread 879 , mypolls 0 +thr e1b79400 , status 1 +connecting thr e1b79400 , thread 880 , mypolls 0 +myconn 0 connecting thr e1b79400 , thread 880 , mypolls 0 +thr e1b79580 , status 1 +connecting thr e1b79580 , thread 881 , mypolls 0 +myconn 0 connecting thr e1b79580 , thread 881 , mypolls 0 +thr e1b79700 , status 1 +connecting thr e1b79700 , thread 882 , mypolls 0 +myconn 0 connecting thr e1b79700 , thread 882 , mypolls 0 +thr e1b79880 , status 1 +connecting thr e1b79880 , thread 883 , mypolls 0 +myconn 0 connecting thr e1b79880 , thread 883 , mypolls 0 +thr e1b79a00 , status 1 +connecting thr e1b79a00 , thread 884 , mypolls 0 +myconn 0 connecting thr e1b79a00 , thread 884 , mypolls 0 +thr e1b79b80 , status 1 +connecting thr e1b79b80 , thread 885 , mypolls 0 +myconn 0 connecting thr e1b79b80 , thread 885 , mypolls 0 +thr e1b79d00 , status 1 +connecting thr e1b79d00 , thread 886 , mypolls 0 +myconn 0 connecting thr e1b79d00 , thread 886 , mypolls 0 +thr e1b79e80 , status 1 +connecting thr e1b79e80 , thread 887 , mypolls 0 +myconn 0 connecting thr e1b79e80 , thread 887 , mypolls 0 +thr e19d8000 , status 1 +connecting thr e19d8000 , thread 888 , mypolls 0 +myconn 0 connecting thr e19d8000 , thread 888 , mypolls 0 +thr e19d8180 , status 1 +connecting thr e19d8180 , thread 889 , mypolls 0 +myconn 0 connecting thr e19d8180 , thread 889 , mypolls 0 +thr e19d8300 , status 1 +connecting thr e19d8300 , thread 890 , mypolls 0 +myconn 0 connecting thr e19d8300 , thread 890 , mypolls 0 +thr e19d8480 , status 1 +connecting thr e19d8480 , thread 891 , mypolls 0 +myconn 0 connecting thr e19d8480 , thread 891 , mypolls 0 +thr e19d8600 , status 1 +connecting thr e19d8600 , thread 892 , mypolls 0 +myconn 0 connecting thr e19d8600 , thread 892 , mypolls 0 +thr e19d8780 , status 1 +connecting thr e19d8780 , thread 893 , mypolls 0 +myconn 0 connecting thr e19d8780 , thread 893 , mypolls 0 +thr e19d8900 , status 1 +connecting thr e19d8900 , thread 894 , mypolls 0 +myconn 0 connecting thr e19d8900 , thread 894 , mypolls 0 +thr e19d8a80 , status 1 +connecting thr e19d8a80 , thread 895 , mypolls 0 +myconn 0 connecting thr e19d8a80 , thread 895 , mypolls 0 +thr e19d8c00 , status 1 +connecting thr e19d8c00 , thread 896 , mypolls 0 +myconn 0 connecting thr e19d8c00 , thread 896 , mypolls 0 +thr e19d8d80 , status 1 +connecting thr e19d8d80 , thread 897 , mypolls 0 +myconn 0 connecting thr e19d8d80 , thread 897 , mypolls 0 +thr e19d8f00 , status 1 +connecting thr e19d8f00 , thread 898 , mypolls 0 +myconn 0 connecting thr e19d8f00 , thread 898 , mypolls 0 +thr e19d9080 , status 1 +connecting thr e19d9080 , thread 899 , mypolls 0 +myconn 0 connecting thr e19d9080 , thread 899 , mypolls 0 +thr e19d9200 , status 1 +connecting thr e19d9200 , thread 900 , mypolls 0 +myconn 0 connecting thr e19d9200 , thread 900 , mypolls 0 +thr e19d9380 , status 1 +connecting thr e19d9380 , thread 901 , mypolls 0 +myconn 0 connecting thr e19d9380 , thread 901 , mypolls 0 +thr e19d9500 , status 1 +connecting thr e19d9500 , thread 902 , mypolls 0 +myconn 0 connecting thr e19d9500 , thread 902 , mypolls 0 +thr e19d9680 , status 1 +connecting thr e19d9680 , thread 903 , mypolls 0 +myconn 0 connecting thr e19d9680 , thread 903 , mypolls 0 +thr e19d9800 , status 1 +connecting thr e19d9800 , thread 904 , mypolls 0 +myconn 0 connecting thr e19d9800 , thread 904 , mypolls 0 +thr e19d9980 , status 1 +connecting thr e19d9980 , thread 905 , mypolls 0 +myconn 0 connecting thr e19d9980 , thread 905 , mypolls 0 +thr e19d9b00 , status 1 +connecting thr e19d9b00 , thread 906 , mypolls 0 +myconn 0 connecting thr e19d9b00 , thread 906 , mypolls 0 +thr e19d9c80 , status 1 +connecting thr e19d9c80 , thread 907 , mypolls 0 +myconn 0 connecting thr e19d9c80 , thread 907 , mypolls 0 +thr e19d9e00 , status 1 +connecting thr e19d9e00 , thread 908 , mypolls 0 +myconn 0 connecting thr e19d9e00 , thread 908 , mypolls 0 +thr e19d9f80 , status 1 +connecting thr e19d9f80 , thread 909 , mypolls 0 +myconn 0 connecting thr e19d9f80 , thread 909 , mypolls 0 +thr e19da100 , status 1 +connecting thr e19da100 , thread 910 , mypolls 0 +myconn 0 connecting thr e19da100 , thread 910 , mypolls 0 +thr e19da280 , status 1 +connecting thr e19da280 , thread 911 , mypolls 0 +myconn 0 connecting thr e19da280 , thread 911 , mypolls 0 +thr e19da400 , status 1 +connecting thr e19da400 , thread 912 , mypolls 0 +myconn 0 connecting thr e19da400 , thread 912 , mypolls 0 +thr e19da580 , status 1 +connecting thr e19da580 , thread 913 , mypolls 0 +myconn 0 connecting thr e19da580 , thread 913 , mypolls 0 +thr e19da700 , status 1 +connecting thr e19da700 , thread 914 , mypolls 0 +myconn 0 connecting thr e19da700 , thread 914 , mypolls 0 +thr e19da880 , status 1 +connecting thr e19da880 , thread 915 , mypolls 0 +myconn 0 connecting thr e19da880 , thread 915 , mypolls 0 +thr e19daa00 , status 1 +connecting thr e19daa00 , thread 916 , mypolls 0 +myconn 0 connecting thr e19daa00 , thread 916 , mypolls 0 +thr e19dab80 , status 1 +connecting thr e19dab80 , thread 917 , mypolls 0 +myconn 0 connecting thr e19dab80 , thread 917 , mypolls 0 +thr e19dad00 , status 1 +connecting thr e19dad00 , thread 918 , mypolls 0 +myconn 0 connecting thr e19dad00 , thread 918 , mypolls 0 +thr e19dae80 , status 1 +connecting thr e19dae80 , thread 919 , mypolls 0 +myconn 0 connecting thr e19dae80 , thread 919 , mypolls 0 +thr e17f9000 , status 1 +connecting thr e17f9000 , thread 920 , mypolls 0 +myconn 0 connecting thr e17f9000 , thread 920 , mypolls 0 +thr e17f9180 , status 1 +connecting thr e17f9180 , thread 921 , mypolls 0 +myconn 0 connecting thr e17f9180 , thread 921 , mypolls 0 +thr e17f9300 , status 1 +connecting thr e17f9300 , thread 922 , mypolls 0 +myconn 0 connecting thr e17f9300 , thread 922 , mypolls 0 +thr e17f9480 , status 1 +connecting thr e17f9480 , thread 923 , mypolls 0 +myconn 0 connecting thr e17f9480 , thread 923 , mypolls 0 +thr e17f9600 , status 1 +connecting thr e17f9600 , thread 924 , mypolls 0 +myconn 0 connecting thr e17f9600 , thread 924 , mypolls 0 +thr e17f9780 , status 1 +connecting thr e17f9780 , thread 925 , mypolls 0 +myconn 0 connecting thr e17f9780 , thread 925 , mypolls 0 +thr e17f9900 , status 1 +connecting thr e17f9900 , thread 926 , mypolls 0 +myconn 0 connecting thr e17f9900 , thread 926 , mypolls 0 +thr e17f9a80 , status 1 +connecting thr e17f9a80 , thread 927 , mypolls 0 +myconn 0 connecting thr e17f9a80 , thread 927 , mypolls 0 +thr e17f9c00 , status 1 +connecting thr e17f9c00 , thread 928 , mypolls 0 +myconn 0 connecting thr e17f9c00 , thread 928 , mypolls 0 +thr e17f9d80 , status 1 +connecting thr e17f9d80 , thread 929 , mypolls 0 +myconn 0 connecting thr e17f9d80 , thread 929 , mypolls 0 +thr e17f9f00 , status 1 +connecting thr e17f9f00 , thread 930 , mypolls 0 +myconn 0 connecting thr e17f9f00 , thread 930 , mypolls 0 +thr e17fa080 , status 1 +connecting thr e17fa080 , thread 931 , mypolls 0 +myconn 0 connecting thr e17fa080 , thread 931 , mypolls 0 +thr e17fa200 , status 1 +connecting thr e17fa200 , thread 932 , mypolls 0 +myconn 0 connecting thr e17fa200 , thread 932 , mypolls 0 +thr e17fa380 , status 1 +connecting thr e17fa380 , thread 933 , mypolls 0 +myconn 0 connecting thr e17fa380 , thread 933 , mypolls 0 +thr e17fa500 , status 1 +connecting thr e17fa500 , thread 934 , mypolls 0 +myconn 0 connecting thr e17fa500 , thread 934 , mypolls 0 +thr e17fa680 , status 1 +connecting thr e17fa680 , thread 935 , mypolls 0 +myconn 0 connecting thr e17fa680 , thread 935 , mypolls 0 +thr e17fa800 , status 1 +connecting thr e17fa800 , thread 936 , mypolls 0 +myconn 0 connecting thr e17fa800 , thread 936 , mypolls 0 +thr e17fa980 , status 1 +connecting thr e17fa980 , thread 937 , mypolls 0 +myconn 0 connecting thr e17fa980 , thread 937 , mypolls 0 +thr e17fab00 , status 1 +connecting thr e17fab00 , thread 938 , mypolls 0 +myconn 0 connecting thr e17fab00 , thread 938 , mypolls 0 +thr e17fac80 , status 1 +connecting thr e17fac80 , thread 939 , mypolls 0 +myconn 0 connecting thr e17fac80 , thread 939 , mypolls 0 +thr e17fae00 , status 1 +connecting thr e17fae00 , thread 940 , mypolls 0 +myconn 0 connecting thr e17fae00 , thread 940 , mypolls 0 +thr e17faf80 , status 1 +connecting thr e17faf80 , thread 941 , mypolls 0 +myconn 0 connecting thr e17faf80 , thread 941 , mypolls 0 +thr e17fb100 , status 1 +connecting thr e17fb100 , thread 942 , mypolls 0 +myconn 0 connecting thr e17fb100 , thread 942 , mypolls 0 +thr e17fb280 , status 1 +connecting thr e17fb280 , thread 943 , mypolls 0 +myconn 0 connecting thr e17fb280 , thread 943 , mypolls 0 +thr e17fb400 , status 1 +connecting thr e17fb400 , thread 944 , mypolls 0 +myconn 0 connecting thr e17fb400 , thread 944 , mypolls 0 +thr e17fb580 , status 1 +connecting thr e17fb580 , thread 945 , mypolls 0 +myconn 0 connecting thr e17fb580 , thread 945 , mypolls 0 +thr e17fb700 , status 1 +connecting thr e17fb700 , thread 946 , mypolls 0 +myconn 0 connecting thr e17fb700 , thread 946 , mypolls 0 +thr e17fb880 , status 1 +connecting thr e17fb880 , thread 947 , mypolls 0 +myconn 0 connecting thr e17fb880 , thread 947 , mypolls 0 +thr e17fba00 , status 1 +connecting thr e17fba00 , thread 948 , mypolls 0 +myconn 0 connecting thr e17fba00 , thread 948 , mypolls 0 +thr e17fbb80 , status 1 +connecting thr e17fbb80 , thread 949 , mypolls 0 +myconn 0 connecting thr e17fbb80 , thread 949 , mypolls 0 +thr e17fbd00 , status 1 +connecting thr e17fbd00 , thread 950 , mypolls 0 +myconn 0 connecting thr e17fbd00 , thread 950 , mypolls 0 +thr e17fbe80 , status 1 +connecting thr e17fbe80 , thread 951 , mypolls 0 +myconn 0 connecting thr e17fbe80 , thread 951 , mypolls 0 +thr e15fa000 , status 1 +connecting thr e15fa000 , thread 952 , mypolls 0 +myconn 0 connecting thr e15fa000 , thread 952 , mypolls 0 +thr e15fa180 , status 1 +connecting thr e15fa180 , thread 953 , mypolls 0 +myconn 0 connecting thr e15fa180 , thread 953 , mypolls 0 +thr e15fa300 , status 1 +connecting thr e15fa300 , thread 954 , mypolls 0 +myconn 0 connecting thr e15fa300 , thread 954 , mypolls 0 +thr e15fa480 , status 1 +connecting thr e15fa480 , thread 955 , mypolls 0 +myconn 0 connecting thr e15fa480 , thread 955 , mypolls 0 +thr e15fa600 , status 1 +connecting thr e15fa600 , thread 956 , mypolls 0 +myconn 0 connecting thr e15fa600 , thread 956 , mypolls 0 +thr e15fa780 , status 1 +connecting thr e15fa780 , thread 957 , mypolls 0 +myconn 0 connecting thr e15fa780 , thread 957 , mypolls 0 +thr e15fa900 , status 1 +connecting thr e15fa900 , thread 958 , mypolls 0 +myconn 0 connecting thr e15fa900 , thread 958 , mypolls 0 +thr e15faa80 , status 1 +connecting thr e15faa80 , thread 959 , mypolls 0 +myconn 0 connecting thr e15faa80 , thread 959 , mypolls 0 +thr e15fac00 , status 1 +connecting thr e15fac00 , thread 960 , mypolls 0 +myconn 0 connecting thr e15fac00 , thread 960 , mypolls 0 +thr e15fad80 , status 1 +connecting thr e15fad80 , thread 961 , mypolls 0 +myconn 0 connecting thr e15fad80 , thread 961 , mypolls 0 +thr e15faf00 , status 1 +connecting thr e15faf00 , thread 962 , mypolls 0 +myconn 0 connecting thr e15faf00 , thread 962 , mypolls 0 +thr e15fb080 , status 1 +connecting thr e15fb080 , thread 963 , mypolls 0 +myconn 0 connecting thr e15fb080 , thread 963 , mypolls 0 +thr e15fb200 , status 1 +connecting thr e15fb200 , thread 964 , mypolls 0 +myconn 0 connecting thr e15fb200 , thread 964 , mypolls 0 +thr e15fb380 , status 1 +connecting thr e15fb380 , thread 965 , mypolls 0 +myconn 0 connecting thr e15fb380 , thread 965 , mypolls 0 +thr e15fb500 , status 1 +connecting thr e15fb500 , thread 966 , mypolls 0 +myconn 0 connecting thr e15fb500 , thread 966 , mypolls 0 +thr e15fb680 , status 1 +connecting thr e15fb680 , thread 967 , mypolls 0 +myconn 0 connecting thr e15fb680 , thread 967 , mypolls 0 +thr e15fb800 , status 1 +connecting thr e15fb800 , thread 968 , mypolls 0 +myconn 0 connecting thr e15fb800 , thread 968 , mypolls 0 +thr e15fb980 , status 1 +connecting thr e15fb980 , thread 969 , mypolls 0 +myconn 0 connecting thr e15fb980 , thread 969 , mypolls 0 +thr e15fbb00 , status 1 +connecting thr e15fbb00 , thread 970 , mypolls 0 +myconn 0 connecting thr e15fbb00 , thread 970 , mypolls 0 +thr e15fbc80 , status 1 +connecting thr e15fbc80 , thread 971 , mypolls 0 +myconn 0 connecting thr e15fbc80 , thread 971 , mypolls 0 +thr e15fbe00 , status 1 +connecting thr e15fbe00 , thread 972 , mypolls 0 +myconn 0 connecting thr e15fbe00 , thread 972 , mypolls 0 +thr e15fbf80 , status 1 +connecting thr e15fbf80 , thread 973 , mypolls 0 +myconn 0 connecting thr e15fbf80 , thread 973 , mypolls 0 +thr e15fc100 , status 1 +connecting thr e15fc100 , thread 974 , mypolls 0 +myconn 0 connecting thr e15fc100 , thread 974 , mypolls 0 +thr e15fc280 , status 1 +connecting thr e15fc280 , thread 975 , mypolls 0 +myconn 0 connecting thr e15fc280 , thread 975 , mypolls 0 +thr e15fc400 , status 1 +connecting thr e15fc400 , thread 976 , mypolls 0 +myconn 0 connecting thr e15fc400 , thread 976 , mypolls 0 +thr e15fc580 , status 1 +connecting thr e15fc580 , thread 977 , mypolls 0 +myconn 0 connecting thr e15fc580 , thread 977 , mypolls 0 +thr e15fc700 , status 1 +connecting thr e15fc700 , thread 978 , mypolls 0 +myconn 0 connecting thr e15fc700 , thread 978 , mypolls 0 +thr e15fc880 , status 1 +connecting thr e15fc880 , thread 979 , mypolls 0 +myconn 0 connecting thr e15fc880 , thread 979 , mypolls 0 +thr e15fca00 , status 1 +connecting thr e15fca00 , thread 980 , mypolls 0 +myconn 0 connecting thr e15fca00 , thread 980 , mypolls 0 +thr e15fcb80 , status 1 +connecting thr e15fcb80 , thread 981 , mypolls 0 +myconn 0 connecting thr e15fcb80 , thread 981 , mypolls 0 +thr e15fcd00 , status 1 +connecting thr e15fcd00 , thread 982 , mypolls 0 +myconn 0 connecting thr e15fcd00 , thread 982 , mypolls 0 +thr e15fce80 , status 1 +connecting thr e15fce80 , thread 983 , mypolls 0 +myconn 0 connecting thr e15fce80 , thread 983 , mypolls 0 +thr e110b000 , status 1 +connecting thr e110b000 , thread 984 , mypolls 0 +myconn 0 connecting thr e110b000 , thread 984 , mypolls 0 +thr e110b180 , status 1 +connecting thr e110b180 , thread 985 , mypolls 0 +myconn 0 connecting thr e110b180 , thread 985 , mypolls 0 +thr e110b300 , status 1 +connecting thr e110b300 , thread 986 , mypolls 0 +myconn 0 connecting thr e110b300 , thread 986 , mypolls 0 +thr e110b480 , status 1 +connecting thr e110b480 , thread 987 , mypolls 0 +myconn 0 connecting thr e110b480 , thread 987 , mypolls 0 +thr e110b600 , status 1 +connecting thr e110b600 , thread 988 , mypolls 0 +myconn 0 connecting thr e110b600 , thread 988 , mypolls 0 +thr e110b780 , status 1 +connecting thr e110b780 , thread 989 , mypolls 0 +myconn 0 connecting thr e110b780 , thread 989 , mypolls 0 +thr e110b900 , status 1 +connecting thr e110b900 , thread 990 , mypolls 0 +myconn 0 connecting thr e110b900 , thread 990 , mypolls 0 +thr e110ba80 , status 1 +connecting thr e110ba80 , thread 991 , mypolls 0 +myconn 0 connecting thr e110ba80 , thread 991 , mypolls 0 +thr e110bc00 , status 1 +connecting thr e110bc00 , thread 992 , mypolls 0 +myconn 0 connecting thr e110bc00 , thread 992 , mypolls 0 +thr e110bd80 , status 1 +connecting thr e110bd80 , thread 993 , mypolls 0 +myconn 0 connecting thr e110bd80 , thread 993 , mypolls 0 +thr e110bf00 , status 1 +connecting thr e110bf00 , thread 994 , mypolls 0 +myconn 0 connecting thr e110bf00 , thread 994 , mypolls 0 +thr e110c080 , status 1 +connecting thr e110c080 , thread 995 , mypolls 0 +myconn 0 connecting thr e110c080 , thread 995 , mypolls 0 +thr e110c200 , status 1 +connecting thr e110c200 , thread 996 , mypolls 0 +myconn 0 connecting thr e110c200 , thread 996 , mypolls 0 +thr e110c380 , status 1 +connecting thr e110c380 , thread 997 , mypolls 0 +myconn 0 connecting thr e110c380 , thread 997 , mypolls 0 +thr e110c500 , status 1 +connecting thr e110c500 , thread 998 , mypolls 0 +myconn 0 connecting thr e110c500 , thread 998 , mypolls 0 +thr e110c680 , status 1 +connecting thr e110c680 , thread 999 , mypolls 0 +myconn 0 connecting thr e110c680 , thread 999 , mypolls 0 +thr e110c800 , status 1 +connecting thr e110c800 , thread 1000 , mypolls 0 +myconn 0 connecting thr e110c800 , thread 1000 , mypolls 0 +thr e110c980 , status 1 +connecting thr e110c980 , thread 1001 , mypolls 0 +myconn 0 connecting thr e110c980 , thread 1001 , mypolls 0 +thr e110cb00 , status 1 +connecting thr e110cb00 , thread 1002 , mypolls 0 +myconn 0 connecting thr e110cb00 , thread 1002 , mypolls 0 +thr e110cc80 , status 1 +connecting thr e110cc80 , thread 1003 , mypolls 0 +myconn 0 connecting thr e110cc80 , thread 1003 , mypolls 0 +thr e110ce00 , status 1 +connecting thr e110ce00 , thread 1004 , mypolls 0 +myconn 0 connecting thr e110ce00 , thread 1004 , mypolls 0 +thr e110cf80 , status 1 +connecting thr e110cf80 , thread 1005 , mypolls 0 +myconn 0 connecting thr e110cf80 , thread 1005 , mypolls 0 +thr e110d100 , status 1 +connecting thr e110d100 , thread 1006 , mypolls 0 +myconn 0 connecting thr e110d100 , thread 1006 , mypolls 0 +thr e110d280 , status 1 +connecting thr e110d280 , thread 1007 , mypolls 0 +myconn 0 connecting thr e110d280 , thread 1007 , mypolls 0 +thr e110d400 , status 1 +connecting thr e110d400 , thread 1008 , mypolls 0 +myconn 0 connecting thr e110d400 , thread 1008 , mypolls 0 +thr e110d580 , status 1 +connecting thr e110d580 , thread 1009 , mypolls 0 +myconn 0 connecting thr e110d580 , thread 1009 , mypolls 0 +thr e110d700 , status 1 +connecting thr e110d700 , thread 1010 , mypolls 0 +myconn 0 connecting thr e110d700 , thread 1010 , mypolls 0 +thr e110d880 , status 1 +connecting thr e110d880 , thread 1011 , mypolls 0 +myconn 0 connecting thr e110d880 , thread 1011 , mypolls 0 +thr e110da00 , status 1 +connecting thr e110da00 , thread 1012 , mypolls 0 +myconn 0 connecting thr e110da00 , thread 1012 , mypolls 0 +thr e110db80 , status 1 +connecting thr e110db80 , thread 1013 , mypolls 0 +myconn 0 connecting thr e110db80 , thread 1013 , mypolls 0 +thr e110dd00 , status 1 +connecting thr e110dd00 , thread 1014 , mypolls 0 +myconn 0 connecting thr e110dd00 , thread 1014 , mypolls 0 +thr e110de80 , status 1 +connecting thr e110de80 , thread 1015 , mypolls 0 +myconn 0 connecting thr e110de80 , thread 1015 , mypolls 0 +thr e0f75000 , status 1 +connecting thr e0f75000 , thread 1016 , mypolls 0 +myconn 0 connecting thr e0f75000 , thread 1016 , mypolls 0 +thr e0f75180 , status 1 +connecting thr e0f75180 , thread 1017 , mypolls 0 +myconn 0 connecting thr e0f75180 , thread 1017 , mypolls 0 +thr e0f75300 , status 1 +connecting thr e0f75300 , thread 1018 , mypolls 0 +myconn 0 connecting thr e0f75300 , thread 1018 , mypolls 0 +thr e0f75480 , status 1 +connecting thr e0f75480 , thread 1019 , mypolls 0 +myconn 0 connecting thr e0f75480 , thread 1019 , mypolls 0 +thr e0f75600 , status 1 +connecting thr e0f75600 , thread 1020 , mypolls 0 +myconn 0 connecting thr e0f75600 , thread 1020 , mypolls 0 +thr e0f75780 , status 1 +connecting thr e0f75780 , thread 1021 , mypolls 0 +myconn 0 connecting thr e0f75780 , thread 1021 , mypolls 0 +thr e0f75900 , status 1 +connecting thr e0f75900 , thread 1022 , mypolls 0 +myconn 0 connecting thr e0f75900 , thread 1022 , mypolls 0 +thr e0f75a80 , status 1 +connecting thr e0f75a80 , thread 1023 , mypolls 0 +myconn 0 connecting thr e0f75a80 , thread 1023 , mypolls 0 +thr e0f75c00 , status 1 +connecting thr e0f75c00 , thread 1024 , mypolls 0 +myconn 0 connecting thr e0f75c00 , thread 1024 , mypolls 0 +thr e0f75d80 , status 1 +connecting thr e0f75d80 , thread 1025 , mypolls 0 +myconn 0 connecting thr e0f75d80 , thread 1025 , mypolls 0 +thr e0f75f00 , status 1 +connecting thr e0f75f00 , thread 1026 , mypolls 0 +myconn 0 connecting thr e0f75f00 , thread 1026 , mypolls 0 +thr e0f76080 , status 1 +connecting thr e0f76080 , thread 1027 , mypolls 0 +myconn 0 connecting thr e0f76080 , thread 1027 , mypolls 0 +thr e0f76200 , status 1 +connecting thr e0f76200 , thread 1028 , mypolls 0 +myconn 0 connecting thr e0f76200 , thread 1028 , mypolls 0 +thr e0f76380 , status 1 +connecting thr e0f76380 , thread 1029 , mypolls 0 +myconn 0 connecting thr e0f76380 , thread 1029 , mypolls 0 +thr e0f76500 , status 1 +connecting thr e0f76500 , thread 1030 , mypolls 0 +myconn 0 connecting thr e0f76500 , thread 1030 , mypolls 0 +thr e0f76680 , status 1 +connecting thr e0f76680 , thread 1031 , mypolls 0 +myconn 0 connecting thr e0f76680 , thread 1031 , mypolls 0 +thr e0f76800 , status 1 +connecting thr e0f76800 , thread 1032 , mypolls 0 +myconn 0 connecting thr e0f76800 , thread 1032 , mypolls 0 +thr e0f76980 , status 1 +connecting thr e0f76980 , thread 1033 , mypolls 0 +myconn 0 connecting thr e0f76980 , thread 1033 , mypolls 0 +thr e0f76b00 , status 1 +connecting thr e0f76b00 , thread 1034 , mypolls 0 +myconn 0 connecting thr e0f76b00 , thread 1034 , mypolls 0 +thr e0f76c80 , status 1 +connecting thr e0f76c80 , thread 1035 , mypolls 0 +myconn 0 connecting thr e0f76c80 , thread 1035 , mypolls 0 +thr e0f76e00 , status 1 +connecting thr e0f76e00 , thread 1036 , mypolls 0 +myconn 0 connecting thr e0f76e00 , thread 1036 , mypolls 0 +thr e0f76f80 , status 1 +connecting thr e0f76f80 , thread 1037 , mypolls 0 +myconn 0 connecting thr e0f76f80 , thread 1037 , mypolls 0 +thr e0f77100 , status 1 +connecting thr e0f77100 , thread 1038 , mypolls 0 +myconn 0 connecting thr e0f77100 , thread 1038 , mypolls 0 +thr e0f77280 , status 1 +connecting thr e0f77280 , thread 1039 , mypolls 0 +myconn 0 connecting thr e0f77280 , thread 1039 , mypolls 0 +thr e0f77400 , status 1 +connecting thr e0f77400 , thread 1040 , mypolls 0 +myconn 0 connecting thr e0f77400 , thread 1040 , mypolls 0 +thr e0f77580 , status 1 +connecting thr e0f77580 , thread 1041 , mypolls 0 +myconn 0 connecting thr e0f77580 , thread 1041 , mypolls 0 +thr e0f77700 , status 1 +connecting thr e0f77700 , thread 1042 , mypolls 0 +myconn 0 connecting thr e0f77700 , thread 1042 , mypolls 0 +thr e0f77880 , status 1 +connecting thr e0f77880 , thread 1043 , mypolls 0 +myconn 0 connecting thr e0f77880 , thread 1043 , mypolls 0 +thr e0f77a00 , status 1 +connecting thr e0f77a00 , thread 1044 , mypolls 0 +myconn 0 connecting thr e0f77a00 , thread 1044 , mypolls 0 +thr e0f77b80 , status 1 +connecting thr e0f77b80 , thread 1045 , mypolls 0 +myconn 0 connecting thr e0f77b80 , thread 1045 , mypolls 0 +thr e0f77d00 , status 1 +connecting thr e0f77d00 , thread 1046 , mypolls 0 +myconn 0 connecting thr e0f77d00 , thread 1046 , mypolls 0 +thr e0f77e80 , status 1 +connecting thr e0f77e80 , thread 1047 , mypolls 0 +myconn 0 connecting thr e0f77e80 , thread 1047 , mypolls 0 +thr e0dd4000 , status 1 +connecting thr e0dd4000 , thread 1048 , mypolls 0 +myconn 0 connecting thr e0dd4000 , thread 1048 , mypolls 0 +thr e0dd4180 , status 1 +connecting thr e0dd4180 , thread 1049 , mypolls 0 +myconn 0 connecting thr e0dd4180 , thread 1049 , mypolls 0 +thr e0dd4300 , status 1 +connecting thr e0dd4300 , thread 1050 , mypolls 0 +myconn 0 connecting thr e0dd4300 , thread 1050 , mypolls 0 +thr e0dd4480 , status 1 +connecting thr e0dd4480 , thread 1051 , mypolls 0 +myconn 0 connecting thr e0dd4480 , thread 1051 , mypolls 0 +thr e0dd4600 , status 1 +connecting thr e0dd4600 , thread 1052 , mypolls 0 +myconn 0 connecting thr e0dd4600 , thread 1052 , mypolls 0 +thr e0dd4780 , status 1 +connecting thr e0dd4780 , thread 1053 , mypolls 0 +myconn 0 connecting thr e0dd4780 , thread 1053 , mypolls 0 +thr e0dd4900 , status 1 +connecting thr e0dd4900 , thread 1054 , mypolls 0 +myconn 0 connecting thr e0dd4900 , thread 1054 , mypolls 0 +thr e0dd4a80 , status 1 +connecting thr e0dd4a80 , thread 1055 , mypolls 0 +myconn 0 connecting thr e0dd4a80 , thread 1055 , mypolls 0 +thr e0dd4c00 , status 1 +connecting thr e0dd4c00 , thread 1056 , mypolls 0 +myconn 0 connecting thr e0dd4c00 , thread 1056 , mypolls 0 +thr e0dd4d80 , status 1 +connecting thr e0dd4d80 , thread 1057 , mypolls 0 +myconn 0 connecting thr e0dd4d80 , thread 1057 , mypolls 0 +thr e0dd4f00 , status 1 +connecting thr e0dd4f00 , thread 1058 , mypolls 0 +myconn 0 connecting thr e0dd4f00 , thread 1058 , mypolls 0 +thr e0dd5080 , status 1 +connecting thr e0dd5080 , thread 1059 , mypolls 0 +myconn 0 connecting thr e0dd5080 , thread 1059 , mypolls 0 +thr e0dd5200 , status 1 +connecting thr e0dd5200 , thread 1060 , mypolls 0 +myconn 0 connecting thr e0dd5200 , thread 1060 , mypolls 0 +thr e0dd5380 , status 1 +connecting thr e0dd5380 , thread 1061 , mypolls 0 +myconn 0 connecting thr e0dd5380 , thread 1061 , mypolls 0 +thr e0dd5500 , status 1 +connecting thr e0dd5500 , thread 1062 , mypolls 0 +myconn 0 connecting thr e0dd5500 , thread 1062 , mypolls 0 +thr e0dd5680 , status 1 +connecting thr e0dd5680 , thread 1063 , mypolls 0 +myconn 0 connecting thr e0dd5680 , thread 1063 , mypolls 0 +thr e0dd5800 , status 1 +connecting thr e0dd5800 , thread 1064 , mypolls 0 +myconn 0 connecting thr e0dd5800 , thread 1064 , mypolls 0 +thr e0dd5980 , status 1 +connecting thr e0dd5980 , thread 1065 , mypolls 0 +myconn 0 connecting thr e0dd5980 , thread 1065 , mypolls 0 +thr e0dd5b00 , status 1 +connecting thr e0dd5b00 , thread 1066 , mypolls 0 +myconn 0 connecting thr e0dd5b00 , thread 1066 , mypolls 0 +thr e0dd5c80 , status 1 +connecting thr e0dd5c80 , thread 1067 , mypolls 0 +myconn 0 connecting thr e0dd5c80 , thread 1067 , mypolls 0 +thr e0dd5e00 , status 1 +connecting thr e0dd5e00 , thread 1068 , mypolls 0 +myconn 0 connecting thr e0dd5e00 , thread 1068 , mypolls 0 +thr e0dd5f80 , status 1 +connecting thr e0dd5f80 , thread 1069 , mypolls 0 +myconn 0 connecting thr e0dd5f80 , thread 1069 , mypolls 0 +thr e0dd6100 , status 1 +connecting thr e0dd6100 , thread 1070 , mypolls 0 +myconn 0 connecting thr e0dd6100 , thread 1070 , mypolls 0 +thr e0dd6280 , status 1 +connecting thr e0dd6280 , thread 1071 , mypolls 0 +myconn 0 connecting thr e0dd6280 , thread 1071 , mypolls 0 +thr e0dd6400 , status 1 +connecting thr e0dd6400 , thread 1072 , mypolls 0 +myconn 0 connecting thr e0dd6400 , thread 1072 , mypolls 0 +thr e0dd6580 , status 1 +connecting thr e0dd6580 , thread 1073 , mypolls 0 +myconn 0 connecting thr e0dd6580 , thread 1073 , mypolls 0 +thr e0dd6700 , status 1 +connecting thr e0dd6700 , thread 1074 , mypolls 0 +myconn 0 connecting thr e0dd6700 , thread 1074 , mypolls 0 +thr e0dd6880 , status 1 +connecting thr e0dd6880 , thread 1075 , mypolls 0 +myconn 0 connecting thr e0dd6880 , thread 1075 , mypolls 0 +thr e0dd6a00 , status 1 +connecting thr e0dd6a00 , thread 1076 , mypolls 0 +myconn 0 connecting thr e0dd6a00 , thread 1076 , mypolls 0 +thr e0dd6b80 , status 1 +connecting thr e0dd6b80 , thread 1077 , mypolls 0 +myconn 0 connecting thr e0dd6b80 , thread 1077 , mypolls 0 +thr e0dd6d00 , status 1 +connecting thr e0dd6d00 , thread 1078 , mypolls 0 +myconn 0 connecting thr e0dd6d00 , thread 1078 , mypolls 0 +thr e0dd6e80 , status 1 +connecting thr e0dd6e80 , thread 1079 , mypolls 0 +myconn 0 connecting thr e0dd6e80 , thread 1079 , mypolls 0 +thr e0bfb000 , status 1 +connecting thr e0bfb000 , thread 1080 , mypolls 0 +myconn 0 connecting thr e0bfb000 , thread 1080 , mypolls 0 +thr e0bfb180 , status 1 +connecting thr e0bfb180 , thread 1081 , mypolls 0 +myconn 0 connecting thr e0bfb180 , thread 1081 , mypolls 0 +thr e0bfb300 , status 1 +connecting thr e0bfb300 , thread 1082 , mypolls 0 +myconn 0 connecting thr e0bfb300 , thread 1082 , mypolls 0 +thr e0bfb480 , status 1 +connecting thr e0bfb480 , thread 1083 , mypolls 0 +myconn 0 connecting thr e0bfb480 , thread 1083 , mypolls 0 +thr e0bfb600 , status 1 +connecting thr e0bfb600 , thread 1084 , mypolls 0 +myconn 0 connecting thr e0bfb600 , thread 1084 , mypolls 0 +thr e0bfb780 , status 1 +connecting thr e0bfb780 , thread 1085 , mypolls 0 +myconn 0 connecting thr e0bfb780 , thread 1085 , mypolls 0 +thr e0bfb900 , status 1 +connecting thr e0bfb900 , thread 1086 , mypolls 0 +myconn 0 connecting thr e0bfb900 , thread 1086 , mypolls 0 +thr e0bfba80 , status 1 +connecting thr e0bfba80 , thread 1087 , mypolls 0 +myconn 0 connecting thr e0bfba80 , thread 1087 , mypolls 0 +thr e0bfbc00 , status 1 +connecting thr e0bfbc00 , thread 1088 , mypolls 0 +myconn 0 connecting thr e0bfbc00 , thread 1088 , mypolls 0 +thr e0bfbd80 , status 1 +connecting thr e0bfbd80 , thread 1089 , mypolls 0 +myconn 0 connecting thr e0bfbd80 , thread 1089 , mypolls 0 +thr e0bfbf00 , status 1 +connecting thr e0bfbf00 , thread 1090 , mypolls 0 +myconn 0 connecting thr e0bfbf00 , thread 1090 , mypolls 0 +thr e0bfc080 , status 1 +connecting thr e0bfc080 , thread 1091 , mypolls 0 +myconn 0 connecting thr e0bfc080 , thread 1091 , mypolls 0 +thr e0bfc200 , status 1 +connecting thr e0bfc200 , thread 1092 , mypolls 0 +myconn 0 connecting thr e0bfc200 , thread 1092 , mypolls 0 +thr e0bfc380 , status 1 +connecting thr e0bfc380 , thread 1093 , mypolls 0 +myconn 0 connecting thr e0bfc380 , thread 1093 , mypolls 0 +thr e0bfc500 , status 1 +connecting thr e0bfc500 , thread 1094 , mypolls 0 +myconn 0 connecting thr e0bfc500 , thread 1094 , mypolls 0 +thr e0bfc680 , status 1 +connecting thr e0bfc680 , thread 1095 , mypolls 0 +myconn 0 connecting thr e0bfc680 , thread 1095 , mypolls 0 +thr e0bfc800 , status 1 +connecting thr e0bfc800 , thread 1096 , mypolls 0 +myconn 0 connecting thr e0bfc800 , thread 1096 , mypolls 0 +thr e0bfc980 , status 1 +connecting thr e0bfc980 , thread 1097 , mypolls 0 +myconn 0 connecting thr e0bfc980 , thread 1097 , mypolls 0 +thr e0bfcb00 , status 1 +connecting thr e0bfcb00 , thread 1098 , mypolls 0 +myconn 0 connecting thr e0bfcb00 , thread 1098 , mypolls 0 +thr e0bfcc80 , status 1 +connecting thr e0bfcc80 , thread 1099 , mypolls 0 +myconn 0 connecting thr e0bfcc80 , thread 1099 , mypolls 0 +thr e0bfce00 , status 1 +connecting thr e0bfce00 , thread 1100 , mypolls 0 +myconn 0 connecting thr e0bfce00 , thread 1100 , mypolls 0 +thr e0bfcf80 , status 1 +connecting thr e0bfcf80 , thread 1101 , mypolls 0 +myconn 0 connecting thr e0bfcf80 , thread 1101 , mypolls 0 +thr e0bfd100 , status 1 +connecting thr e0bfd100 , thread 1102 , mypolls 0 +myconn 0 connecting thr e0bfd100 , thread 1102 , mypolls 0 +thr e0bfd280 , status 1 +connecting thr e0bfd280 , thread 1103 , mypolls 0 +myconn 0 connecting thr e0bfd280 , thread 1103 , mypolls 0 +thr e0bfd400 , status 1 +connecting thr e0bfd400 , thread 1104 , mypolls 0 +myconn 0 connecting thr e0bfd400 , thread 1104 , mypolls 0 +thr e0bfd580 , status 1 +connecting thr e0bfd580 , thread 1105 , mypolls 0 +myconn 0 connecting thr e0bfd580 , thread 1105 , mypolls 0 +thr e0bfd700 , status 1 +connecting thr e0bfd700 , thread 1106 , mypolls 0 +myconn 0 connecting thr e0bfd700 , thread 1106 , mypolls 0 +thr e0bfd880 , status 1 +connecting thr e0bfd880 , thread 1107 , mypolls 0 +myconn 0 connecting thr e0bfd880 , thread 1107 , mypolls 0 +thr e0bfda00 , status 1 +connecting thr e0bfda00 , thread 1108 , mypolls 0 +myconn 0 connecting thr e0bfda00 , thread 1108 , mypolls 0 +thr e0bfdb80 , status 1 +connecting thr e0bfdb80 , thread 1109 , mypolls 0 +myconn 0 connecting thr e0bfdb80 , thread 1109 , mypolls 0 +thr e0bfdd00 , status 1 +connecting thr e0bfdd00 , thread 1110 , mypolls 0 +myconn 0 connecting thr e0bfdd00 , thread 1110 , mypolls 0 +thr e0bfde80 , status 1 +connecting thr e0bfde80 , thread 1111 , mypolls 0 +myconn 0 connecting thr e0bfde80 , thread 1111 , mypolls 0 +thr e09fc000 , status 1 +connecting thr e09fc000 , thread 1112 , mypolls 0 +myconn 0 connecting thr e09fc000 , thread 1112 , mypolls 0 +thr e09fc180 , status 1 +connecting thr e09fc180 , thread 1113 , mypolls 0 +myconn 0 connecting thr e09fc180 , thread 1113 , mypolls 0 +thr e09fc300 , status 1 +connecting thr e09fc300 , thread 1114 , mypolls 0 +myconn 0 connecting thr e09fc300 , thread 1114 , mypolls 0 +thr e09fc480 , status 1 +connecting thr e09fc480 , thread 1115 , mypolls 0 +myconn 0 connecting thr e09fc480 , thread 1115 , mypolls 0 +thr e09fc600 , status 1 +connecting thr e09fc600 , thread 1116 , mypolls 0 +myconn 0 connecting thr e09fc600 , thread 1116 , mypolls 0 +thr e09fc780 , status 1 +connecting thr e09fc780 , thread 1117 , mypolls 0 +myconn 0 connecting thr e09fc780 , thread 1117 , mypolls 0 +thr e09fc900 , status 1 +connecting thr e09fc900 , thread 1118 , mypolls 0 +myconn 0 connecting thr e09fc900 , thread 1118 , mypolls 0 +thr e09fca80 , status 1 +connecting thr e09fca80 , thread 1119 , mypolls 0 +myconn 0 connecting thr e09fca80 , thread 1119 , mypolls 0 +thr e09fcc00 , status 1 +connecting thr e09fcc00 , thread 1120 , mypolls 0 +myconn 0 connecting thr e09fcc00 , thread 1120 , mypolls 0 +thr e09fcd80 , status 1 +connecting thr e09fcd80 , thread 1121 , mypolls 0 +myconn 0 connecting thr e09fcd80 , thread 1121 , mypolls 0 +thr e09fcf00 , status 1 +connecting thr e09fcf00 , thread 1122 , mypolls 0 +myconn 0 connecting thr e09fcf00 , thread 1122 , mypolls 0 +thr e09fd080 , status 1 +connecting thr e09fd080 , thread 1123 , mypolls 0 +myconn 0 connecting thr e09fd080 , thread 1123 , mypolls 0 +thr e09fd200 , status 1 +connecting thr e09fd200 , thread 1124 , mypolls 0 +myconn 0 connecting thr e09fd200 , thread 1124 , mypolls 0 +thr e09fd380 , status 1 +connecting thr e09fd380 , thread 1125 , mypolls 0 +myconn 0 connecting thr e09fd380 , thread 1125 , mypolls 0 +thr e09fd500 , status 1 +connecting thr e09fd500 , thread 1126 , mypolls 0 +myconn 0 connecting thr e09fd500 , thread 1126 , mypolls 0 +thr e09fd680 , status 1 +connecting thr e09fd680 , thread 1127 , mypolls 0 +myconn 0 connecting thr e09fd680 , thread 1127 , mypolls 0 +thr e09fd800 , status 1 +connecting thr e09fd800 , thread 1128 , mypolls 0 +myconn 0 connecting thr e09fd800 , thread 1128 , mypolls 0 +thr e09fd980 , status 1 +connecting thr e09fd980 , thread 1129 , mypolls 0 +myconn 0 connecting thr e09fd980 , thread 1129 , mypolls 0 +thr e09fdb00 , status 1 +connecting thr e09fdb00 , thread 1130 , mypolls 0 +myconn 0 connecting thr e09fdb00 , thread 1130 , mypolls 0 +thr e09fdc80 , status 1 +connecting thr e09fdc80 , thread 1131 , mypolls 0 +myconn 0 connecting thr e09fdc80 , thread 1131 , mypolls 0 +thr e09fde00 , status 1 +connecting thr e09fde00 , thread 1132 , mypolls 0 +myconn 0 connecting thr e09fde00 , thread 1132 , mypolls 0 +thr e09fdf80 , status 1 +connecting thr e09fdf80 , thread 1133 , mypolls 0 +myconn 0 connecting thr e09fdf80 , thread 1133 , mypolls 0 +thr e09fe100 , status 1 +connecting thr e09fe100 , thread 1134 , mypolls 0 +myconn 0 connecting thr e09fe100 , thread 1134 , mypolls 0 +thr e09fe280 , status 1 +connecting thr e09fe280 , thread 1135 , mypolls 0 +myconn 0 connecting thr e09fe280 , thread 1135 , mypolls 0 +thr e09fe400 , status 1 +connecting thr e09fe400 , thread 1136 , mypolls 0 +myconn 0 connecting thr e09fe400 , thread 1136 , mypolls 0 +thr e09fe580 , status 1 +connecting thr e09fe580 , thread 1137 , mypolls 0 +myconn 0 connecting thr e09fe580 , thread 1137 , mypolls 0 +thr e09fe700 , status 1 +connecting thr e09fe700 , thread 1138 , mypolls 0 +myconn 0 connecting thr e09fe700 , thread 1138 , mypolls 0 +thr e09fe880 , status 1 +connecting thr e09fe880 , thread 1139 , mypolls 0 +myconn 0 connecting thr e09fe880 , thread 1139 , mypolls 0 +thr e09fea00 , status 1 +connecting thr e09fea00 , thread 1140 , mypolls 0 +myconn 0 connecting thr e09fea00 , thread 1140 , mypolls 0 +thr e09feb80 , status 1 +connecting thr e09feb80 , thread 1141 , mypolls 0 +myconn 0 connecting thr e09feb80 , thread 1141 , mypolls 0 +thr e09fed00 , status 1 +connecting thr e09fed00 , thread 1142 , mypolls 0 +myconn 0 connecting thr e09fed00 , thread 1142 , mypolls 0 +thr e09fee80 , status 1 +connecting thr e09fee80 , thread 1143 , mypolls 0 +myconn 0 connecting thr e09fee80 , thread 1143 , mypolls 0 +thr e050d000 , status 1 +connecting thr e050d000 , thread 1144 , mypolls 0 +myconn 0 connecting thr e050d000 , thread 1144 , mypolls 0 +thr e050d180 , status 1 +connecting thr e050d180 , thread 1145 , mypolls 0 +myconn 0 connecting thr e050d180 , thread 1145 , mypolls 0 +thr e050d300 , status 1 +connecting thr e050d300 , thread 1146 , mypolls 0 +myconn 0 connecting thr e050d300 , thread 1146 , mypolls 0 +thr e050d480 , status 1 +connecting thr e050d480 , thread 1147 , mypolls 0 +myconn 0 connecting thr e050d480 , thread 1147 , mypolls 0 +thr e050d600 , status 1 +connecting thr e050d600 , thread 1148 , mypolls 0 +myconn 0 connecting thr e050d600 , thread 1148 , mypolls 0 +thr e050d780 , status 1 +connecting thr e050d780 , thread 1149 , mypolls 0 +myconn 0 connecting thr e050d780 , thread 1149 , mypolls 0 +thr e050d900 , status 1 +connecting thr e050d900 , thread 1150 , mypolls 0 +myconn 0 connecting thr e050d900 , thread 1150 , mypolls 0 +thr e050da80 , status 1 +connecting thr e050da80 , thread 1151 , mypolls 0 +myconn 0 connecting thr e050da80 , thread 1151 , mypolls 0 +thr e050dc00 , status 1 +connecting thr e050dc00 , thread 1152 , mypolls 0 +myconn 0 connecting thr e050dc00 , thread 1152 , mypolls 0 +thr e050dd80 , status 1 +connecting thr e050dd80 , thread 1153 , mypolls 0 +myconn 0 connecting thr e050dd80 , thread 1153 , mypolls 0 +thr e050df00 , status 1 +connecting thr e050df00 , thread 1154 , mypolls 0 +myconn 0 connecting thr e050df00 , thread 1154 , mypolls 0 +thr e050e080 , status 1 +connecting thr e050e080 , thread 1155 , mypolls 0 +myconn 0 connecting thr e050e080 , thread 1155 , mypolls 0 +thr e050e200 , status 1 +connecting thr e050e200 , thread 1156 , mypolls 0 +myconn 0 connecting thr e050e200 , thread 1156 , mypolls 0 +thr e050e380 , status 1 +connecting thr e050e380 , thread 1157 , mypolls 0 +myconn 0 connecting thr e050e380 , thread 1157 , mypolls 0 +thr e050e500 , status 1 +connecting thr e050e500 , thread 1158 , mypolls 0 +myconn 0 connecting thr e050e500 , thread 1158 , mypolls 0 +thr e050e680 , status 1 +connecting thr e050e680 , thread 1159 , mypolls 0 +myconn 0 connecting thr e050e680 , thread 1159 , mypolls 0 +thr e050e800 , status 1 +connecting thr e050e800 , thread 1160 , mypolls 0 +myconn 0 connecting thr e050e800 , thread 1160 , mypolls 0 +thr e050e980 , status 1 +connecting thr e050e980 , thread 1161 , mypolls 0 +myconn 0 connecting thr e050e980 , thread 1161 , mypolls 0 +thr e050eb00 , status 1 +connecting thr e050eb00 , thread 1162 , mypolls 0 +myconn 0 connecting thr e050eb00 , thread 1162 , mypolls 0 +thr e050ec80 , status 1 +connecting thr e050ec80 , thread 1163 , mypolls 0 +myconn 0 connecting thr e050ec80 , thread 1163 , mypolls 0 +thr e050ee00 , status 1 +connecting thr e050ee00 , thread 1164 , mypolls 0 +myconn 0 connecting thr e050ee00 , thread 1164 , mypolls 0 +thr e050ef80 , status 1 +connecting thr e050ef80 , thread 1165 , mypolls 0 +myconn 0 connecting thr e050ef80 , thread 1165 , mypolls 0 +thr e050f100 , status 1 +connecting thr e050f100 , thread 1166 , mypolls 0 +myconn 0 connecting thr e050f100 , thread 1166 , mypolls 0 +thr e050f280 , status 1 +connecting thr e050f280 , thread 1167 , mypolls 0 +myconn 0 connecting thr e050f280 , thread 1167 , mypolls 0 +thr e050f400 , status 1 +connecting thr e050f400 , thread 1168 , mypolls 0 +myconn 0 connecting thr e050f400 , thread 1168 , mypolls 0 +thr e050f580 , status 1 +connecting thr e050f580 , thread 1169 , mypolls 0 +myconn 0 connecting thr e050f580 , thread 1169 , mypolls 0 +thr e050f700 , status 1 +connecting thr e050f700 , thread 1170 , mypolls 0 +myconn 0 connecting thr e050f700 , thread 1170 , mypolls 0 +thr e050f880 , status 1 +connecting thr e050f880 , thread 1171 , mypolls 0 +myconn 0 connecting thr e050f880 , thread 1171 , mypolls 0 +thr e050fa00 , status 1 +connecting thr e050fa00 , thread 1172 , mypolls 0 +myconn 0 connecting thr e050fa00 , thread 1172 , mypolls 0 +thr e050fb80 , status 1 +connecting thr e050fb80 , thread 1173 , mypolls 0 +myconn 0 connecting thr e050fb80 , thread 1173 , mypolls 0 +thr e050fd00 , status 1 +connecting thr e050fd00 , thread 1174 , mypolls 0 +myconn 0 connecting thr e050fd00 , thread 1174 , mypolls 0 +thr e050fe80 , status 1 +connecting thr e050fe80 , thread 1175 , mypolls 0 +myconn 0 connecting thr e050fe80 , thread 1175 , mypolls 0 +thr e036f000 , status 1 +connecting thr e036f000 , thread 1176 , mypolls 0 +myconn 0 connecting thr e036f000 , thread 1176 , mypolls 0 +thr e036f180 , status 1 +connecting thr e036f180 , thread 1177 , mypolls 0 +myconn 0 connecting thr e036f180 , thread 1177 , mypolls 0 +thr e036f300 , status 1 +connecting thr e036f300 , thread 1178 , mypolls 0 +myconn 0 connecting thr e036f300 , thread 1178 , mypolls 0 +thr e036f480 , status 1 +connecting thr e036f480 , thread 1179 , mypolls 0 +myconn 0 connecting thr e036f480 , thread 1179 , mypolls 0 +thr e036f600 , status 1 +connecting thr e036f600 , thread 1180 , mypolls 0 +myconn 0 connecting thr e036f600 , thread 1180 , mypolls 0 +thr e036f780 , status 1 +connecting thr e036f780 , thread 1181 , mypolls 0 +myconn 0 connecting thr e036f780 , thread 1181 , mypolls 0 +thr e036f900 , status 1 +connecting thr e036f900 , thread 1182 , mypolls 0 +myconn 0 connecting thr e036f900 , thread 1182 , mypolls 0 +thr e036fa80 , status 1 +connecting thr e036fa80 , thread 1183 , mypolls 0 +myconn 0 connecting thr e036fa80 , thread 1183 , mypolls 0 +thr e036fc00 , status 1 +connecting thr e036fc00 , thread 1184 , mypolls 0 +myconn 0 connecting thr e036fc00 , thread 1184 , mypolls 0 +thr e036fd80 , status 1 +connecting thr e036fd80 , thread 1185 , mypolls 0 +myconn 0 connecting thr e036fd80 , thread 1185 , mypolls 0 +thr e036ff00 , status 1 +connecting thr e036ff00 , thread 1186 , mypolls 0 +myconn 0 connecting thr e036ff00 , thread 1186 , mypolls 0 +thr e0370080 , status 1 +connecting thr e0370080 , thread 1187 , mypolls 0 +myconn 0 connecting thr e0370080 , thread 1187 , mypolls 0 +thr e0370200 , status 1 +connecting thr e0370200 , thread 1188 , mypolls 0 +myconn 0 connecting thr e0370200 , thread 1188 , mypolls 0 +thr e0370380 , status 1 +connecting thr e0370380 , thread 1189 , mypolls 0 +myconn 0 connecting thr e0370380 , thread 1189 , mypolls 0 +thr e0370500 , status 1 +connecting thr e0370500 , thread 1190 , mypolls 0 +myconn 0 connecting thr e0370500 , thread 1190 , mypolls 0 +thr e0370680 , status 1 +connecting thr e0370680 , thread 1191 , mypolls 0 +myconn 0 connecting thr e0370680 , thread 1191 , mypolls 0 +thr e0370800 , status 1 +connecting thr e0370800 , thread 1192 , mypolls 0 +myconn 0 connecting thr e0370800 , thread 1192 , mypolls 0 +thr e0370980 , status 1 +connecting thr e0370980 , thread 1193 , mypolls 0 +myconn 0 connecting thr e0370980 , thread 1193 , mypolls 0 +thr e0370b00 , status 1 +connecting thr e0370b00 , thread 1194 , mypolls 0 +myconn 0 connecting thr e0370b00 , thread 1194 , mypolls 0 +thr e0370c80 , status 1 +connecting thr e0370c80 , thread 1195 , mypolls 0 +myconn 0 connecting thr e0370c80 , thread 1195 , mypolls 0 +thr e0370e00 , status 1 +connecting thr e0370e00 , thread 1196 , mypolls 0 +myconn 0 connecting thr e0370e00 , thread 1196 , mypolls 0 +thr e0370f80 , status 1 +connecting thr e0370f80 , thread 1197 , mypolls 0 +myconn 0 connecting thr e0370f80 , thread 1197 , mypolls 0 +thr e0371100 , status 1 +connecting thr e0371100 , thread 1198 , mypolls 0 +myconn 0 connecting thr e0371100 , thread 1198 , mypolls 0 +thr e0371280 , status 1 +connecting thr e0371280 , thread 1199 , mypolls 0 +myconn 0 connecting thr e0371280 , thread 1199 , mypolls 0 +thr e0371400 , status 1 +connecting thr e0371400 , thread 1200 , mypolls 0 +myconn 0 connecting thr e0371400 , thread 1200 , mypolls 0 +thr e0371580 , status 1 +connecting thr e0371580 , thread 1201 , mypolls 0 +myconn 0 connecting thr e0371580 , thread 1201 , mypolls 0 +thr e0371700 , status 1 +connecting thr e0371700 , thread 1202 , mypolls 0 +myconn 0 connecting thr e0371700 , thread 1202 , mypolls 0 +thr e0371880 , status 1 +connecting thr e0371880 , thread 1203 , mypolls 0 +myconn 0 connecting thr e0371880 , thread 1203 , mypolls 0 +thr e0371a00 , status 1 +connecting thr e0371a00 , thread 1204 , mypolls 0 +myconn 0 connecting thr e0371a00 , thread 1204 , mypolls 0 +thr e0371b80 , status 1 +connecting thr e0371b80 , thread 1205 , mypolls 0 +myconn 0 connecting thr e0371b80 , thread 1205 , mypolls 0 +thr e0371d00 , status 1 +connecting thr e0371d00 , thread 1206 , mypolls 0 +myconn 0 connecting thr e0371d00 , thread 1206 , mypolls 0 +thr e0371e80 , status 1 +connecting thr e0371e80 , thread 1207 , mypolls 0 +myconn 0 connecting thr e0371e80 , thread 1207 , mypolls 0 +thr e01d0000 , status 1 +connecting thr e01d0000 , thread 1208 , mypolls 0 +myconn 0 connecting thr e01d0000 , thread 1208 , mypolls 0 +thr e01d0180 , status 1 +connecting thr e01d0180 , thread 1209 , mypolls 0 +myconn 0 connecting thr e01d0180 , thread 1209 , mypolls 0 +thr e01d0300 , status 1 +connecting thr e01d0300 , thread 1210 , mypolls 0 +myconn 0 connecting thr e01d0300 , thread 1210 , mypolls 0 +thr e01d0480 , status 1 +connecting thr e01d0480 , thread 1211 , mypolls 0 +myconn 0 connecting thr e01d0480 , thread 1211 , mypolls 0 +thr e01d0600 , status 1 +connecting thr e01d0600 , thread 1212 , mypolls 0 +myconn 0 connecting thr e01d0600 , thread 1212 , mypolls 0 +thr e01d0780 , status 1 +connecting thr e01d0780 , thread 1213 , mypolls 0 +myconn 0 connecting thr e01d0780 , thread 1213 , mypolls 0 +thr e01d0900 , status 1 +connecting thr e01d0900 , thread 1214 , mypolls 0 +myconn 0 connecting thr e01d0900 , thread 1214 , mypolls 0 +thr e01d0a80 , status 1 +connecting thr e01d0a80 , thread 1215 , mypolls 0 +myconn 0 connecting thr e01d0a80 , thread 1215 , mypolls 0 +thr e01d0c00 , status 1 +connecting thr e01d0c00 , thread 1216 , mypolls 0 +myconn 0 connecting thr e01d0c00 , thread 1216 , mypolls 0 +thr e01d0d80 , status 1 +connecting thr e01d0d80 , thread 1217 , mypolls 0 +myconn 0 connecting thr e01d0d80 , thread 1217 , mypolls 0 +thr e01d0f00 , status 1 +connecting thr e01d0f00 , thread 1218 , mypolls 0 +myconn 0 connecting thr e01d0f00 , thread 1218 , mypolls 0 +thr e01d1080 , status 1 +connecting thr e01d1080 , thread 1219 , mypolls 0 +myconn 0 connecting thr e01d1080 , thread 1219 , mypolls 0 +thr e01d1200 , status 1 +connecting thr e01d1200 , thread 1220 , mypolls 0 +myconn 0 connecting thr e01d1200 , thread 1220 , mypolls 0 +thr e01d1380 , status 1 +connecting thr e01d1380 , thread 1221 , mypolls 0 +myconn 0 connecting thr e01d1380 , thread 1221 , mypolls 0 +thr e01d1500 , status 1 +connecting thr e01d1500 , thread 1222 , mypolls 0 +myconn 0 connecting thr e01d1500 , thread 1222 , mypolls 0 +thr e01d1680 , status 1 +connecting thr e01d1680 , thread 1223 , mypolls 0 +myconn 0 connecting thr e01d1680 , thread 1223 , mypolls 0 +thr e01d1800 , status 1 +connecting thr e01d1800 , thread 1224 , mypolls 0 +myconn 0 connecting thr e01d1800 , thread 1224 , mypolls 0 +thr e01d1980 , status 1 +connecting thr e01d1980 , thread 1225 , mypolls 0 +myconn 0 connecting thr e01d1980 , thread 1225 , mypolls 0 +thr e01d1b00 , status 1 +connecting thr e01d1b00 , thread 1226 , mypolls 0 +myconn 0 connecting thr e01d1b00 , thread 1226 , mypolls 0 +thr e01d1c80 , status 1 +connecting thr e01d1c80 , thread 1227 , mypolls 0 +myconn 0 connecting thr e01d1c80 , thread 1227 , mypolls 0 +thr e01d1e00 , status 1 +connecting thr e01d1e00 , thread 1228 , mypolls 0 +myconn 0 connecting thr e01d1e00 , thread 1228 , mypolls 0 +thr e01d1f80 , status 1 +connecting thr e01d1f80 , thread 1229 , mypolls 0 +myconn 0 connecting thr e01d1f80 , thread 1229 , mypolls 0 +thr e01d2100 , status 1 +connecting thr e01d2100 , thread 1230 , mypolls 0 +myconn 0 connecting thr e01d2100 , thread 1230 , mypolls 0 +thr e01d2280 , status 1 +connecting thr e01d2280 , thread 1231 , mypolls 0 +myconn 0 connecting thr e01d2280 , thread 1231 , mypolls 0 +thr e01d2400 , status 1 +connecting thr e01d2400 , thread 1232 , mypolls 0 +myconn 0 connecting thr e01d2400 , thread 1232 , mypolls 0 +thr e01d2580 , status 1 +connecting thr e01d2580 , thread 1233 , mypolls 0 +myconn 0 connecting thr e01d2580 , thread 1233 , mypolls 0 +thr e01d2700 , status 1 +connecting thr e01d2700 , thread 1234 , mypolls 0 +myconn 0 connecting thr e01d2700 , thread 1234 , mypolls 0 +thr e01d2880 , status 1 +connecting thr e01d2880 , thread 1235 , mypolls 0 +myconn 0 connecting thr e01d2880 , thread 1235 , mypolls 0 +thr e01d2a00 , status 1 +connecting thr e01d2a00 , thread 1236 , mypolls 0 +myconn 0 connecting thr e01d2a00 , thread 1236 , mypolls 0 +thr e01d2b80 , status 1 +connecting thr e01d2b80 , thread 1237 , mypolls 0 +myconn 0 connecting thr e01d2b80 , thread 1237 , mypolls 0 +thr e01d2d00 , status 1 +connecting thr e01d2d00 , thread 1238 , mypolls 0 +myconn 0 connecting thr e01d2d00 , thread 1238 , mypolls 0 +thr e01d2e80 , status 1 +connecting thr e01d2e80 , thread 1239 , mypolls 0 +myconn 0 connecting thr e01d2e80 , thread 1239 , mypolls 0 +thr dfff8000 , status 1 +connecting thr dfff8000 , thread 1240 , mypolls 0 +myconn 0 connecting thr dfff8000 , thread 1240 , mypolls 0 +thr dfff8180 , status 1 +connecting thr dfff8180 , thread 1241 , mypolls 0 +myconn 0 connecting thr dfff8180 , thread 1241 , mypolls 0 +thr dfff8300 , status 1 +connecting thr dfff8300 , thread 1242 , mypolls 0 +myconn 0 connecting thr dfff8300 , thread 1242 , mypolls 0 +thr dfff8480 , status 1 +connecting thr dfff8480 , thread 1243 , mypolls 0 +myconn 0 connecting thr dfff8480 , thread 1243 , mypolls 0 +thr dfff8600 , status 1 +connecting thr dfff8600 , thread 1244 , mypolls 0 +myconn 0 connecting thr dfff8600 , thread 1244 , mypolls 0 +thr dfff8780 , status 1 +connecting thr dfff8780 , thread 1245 , mypolls 0 +myconn 0 connecting thr dfff8780 , thread 1245 , mypolls 0 +thr dfff8900 , status 1 +connecting thr dfff8900 , thread 1246 , mypolls 0 +myconn 0 connecting thr dfff8900 , thread 1246 , mypolls 0 +thr dfff8a80 , status 1 +connecting thr dfff8a80 , thread 1247 , mypolls 0 +myconn 0 connecting thr dfff8a80 , thread 1247 , mypolls 0 +thr dfff8c00 , status 1 +connecting thr dfff8c00 , thread 1248 , mypolls 0 +myconn 0 connecting thr dfff8c00 , thread 1248 , mypolls 0 +thr dfff8d80 , status 1 +connecting thr dfff8d80 , thread 1249 , mypolls 0 +myconn 0 connecting thr dfff8d80 , thread 1249 , mypolls 0 +thr dfff8f00 , status 1 +connecting thr dfff8f00 , thread 1250 , mypolls 0 +myconn 0 connecting thr dfff8f00 , thread 1250 , mypolls 0 +thr dfff9080 , status 1 +connecting thr dfff9080 , thread 1251 , mypolls 0 +myconn 0 connecting thr dfff9080 , thread 1251 , mypolls 0 +thr dfff9200 , status 1 +connecting thr dfff9200 , thread 1252 , mypolls 0 +myconn 0 connecting thr dfff9200 , thread 1252 , mypolls 0 +thr dfff9380 , status 1 +connecting thr dfff9380 , thread 1253 , mypolls 0 +myconn 0 connecting thr dfff9380 , thread 1253 , mypolls 0 +thr dfff9500 , status 1 +connecting thr dfff9500 , thread 1254 , mypolls 0 +myconn 0 connecting thr dfff9500 , thread 1254 , mypolls 0 +thr dfff9680 , status 1 +connecting thr dfff9680 , thread 1255 , mypolls 0 +myconn 0 connecting thr dfff9680 , thread 1255 , mypolls 0 +thr dfff9800 , status 1 +connecting thr dfff9800 , thread 1256 , mypolls 0 +myconn 0 connecting thr dfff9800 , thread 1256 , mypolls 0 +thr dfff9980 , status 1 +connecting thr dfff9980 , thread 1257 , mypolls 0 +myconn 0 connecting thr dfff9980 , thread 1257 , mypolls 0 +thr dfff9b00 , status 1 +connecting thr dfff9b00 , thread 1258 , mypolls 0 +myconn 0 connecting thr dfff9b00 , thread 1258 , mypolls 0 +thr dfff9c80 , status 1 +connecting thr dfff9c80 , thread 1259 , mypolls 0 +myconn 0 connecting thr dfff9c80 , thread 1259 , mypolls 0 +thr dfff9e00 , status 1 +connecting thr dfff9e00 , thread 1260 , mypolls 0 +myconn 0 connecting thr dfff9e00 , thread 1260 , mypolls 0 +thr dfff9f80 , status 1 +connecting thr dfff9f80 , thread 1261 , mypolls 0 +myconn 0 connecting thr dfff9f80 , thread 1261 , mypolls 0 +thr dfffa100 , status 1 +connecting thr dfffa100 , thread 1262 , mypolls 0 +myconn 0 connecting thr dfffa100 , thread 1262 , mypolls 0 +thr dfffa280 , status 1 +connecting thr dfffa280 , thread 1263 , mypolls 0 +myconn 0 connecting thr dfffa280 , thread 1263 , mypolls 0 +thr dfffa400 , status 1 +connecting thr dfffa400 , thread 1264 , mypolls 0 +myconn 0 connecting thr dfffa400 , thread 1264 , mypolls 0 +thr dfffa580 , status 1 +connecting thr dfffa580 , thread 1265 , mypolls 0 +myconn 0 connecting thr dfffa580 , thread 1265 , mypolls 0 +thr dfffa700 , status 1 +connecting thr dfffa700 , thread 1266 , mypolls 0 +myconn 0 connecting thr dfffa700 , thread 1266 , mypolls 0 +thr dfffa880 , status 1 +connecting thr dfffa880 , thread 1267 , mypolls 0 +myconn 0 connecting thr dfffa880 , thread 1267 , mypolls 0 +thr dfffaa00 , status 1 +connecting thr dfffaa00 , thread 1268 , mypolls 0 +myconn 0 connecting thr dfffaa00 , thread 1268 , mypolls 0 +thr dfffab80 , status 1 +connecting thr dfffab80 , thread 1269 , mypolls 0 +myconn 0 connecting thr dfffab80 , thread 1269 , mypolls 0 +thr dfffad00 , status 1 +connecting thr dfffad00 , thread 1270 , mypolls 0 +myconn 0 connecting thr dfffad00 , thread 1270 , mypolls 0 +thr dfffae80 , status 1 +connecting thr dfffae80 , thread 1271 , mypolls 0 +myconn 0 connecting thr dfffae80 , thread 1271 , mypolls 0 +thr dfaa0000 , status 1 +connecting thr dfaa0000 , thread 1272 , mypolls 0 +myconn 0 connecting thr dfaa0000 , thread 1272 , mypolls 0 +thr dfaa0180 , status 1 +connecting thr dfaa0180 , thread 1273 , mypolls 0 +myconn 0 connecting thr dfaa0180 , thread 1273 , mypolls 0 +thr dfaa0300 , status 1 +connecting thr dfaa0300 , thread 1274 , mypolls 0 +myconn 0 connecting thr dfaa0300 , thread 1274 , mypolls 0 +thr dfaa0480 , status 1 +connecting thr dfaa0480 , thread 1275 , mypolls 0 +myconn 0 connecting thr dfaa0480 , thread 1275 , mypolls 0 +thr dfaa0600 , status 1 +connecting thr dfaa0600 , thread 1276 , mypolls 0 +myconn 0 connecting thr dfaa0600 , thread 1276 , mypolls 0 +thr dfaa0780 , status 1 +connecting thr dfaa0780 , thread 1277 , mypolls 0 +myconn 0 connecting thr dfaa0780 , thread 1277 , mypolls 0 +thr dfaa0900 , status 1 +connecting thr dfaa0900 , thread 1278 , mypolls 0 +myconn 0 connecting thr dfaa0900 , thread 1278 , mypolls 0 +thr dfaa0a80 , status 1 +connecting thr dfaa0a80 , thread 1279 , mypolls 0 +myconn 0 connecting thr dfaa0a80 , thread 1279 , mypolls 0 +thr dfaa0c00 , status 1 +connecting thr dfaa0c00 , thread 1280 , mypolls 0 +myconn 0 connecting thr dfaa0c00 , thread 1280 , mypolls 0 +thr dfaa0d80 , status 1 +connecting thr dfaa0d80 , thread 1281 , mypolls 0 +myconn 0 connecting thr dfaa0d80 , thread 1281 , mypolls 0 +thr dfaa0f00 , status 1 +connecting thr dfaa0f00 , thread 1282 , mypolls 0 +myconn 0 connecting thr dfaa0f00 , thread 1282 , mypolls 0 +thr dfaa1080 , status 1 +connecting thr dfaa1080 , thread 1283 , mypolls 0 +myconn 0 connecting thr dfaa1080 , thread 1283 , mypolls 0 +thr dfaa1200 , status 1 +connecting thr dfaa1200 , thread 1284 , mypolls 0 +myconn 0 connecting thr dfaa1200 , thread 1284 , mypolls 0 +thr dfaa1380 , status 1 +connecting thr dfaa1380 , thread 1285 , mypolls 0 +myconn 0 connecting thr dfaa1380 , thread 1285 , mypolls 0 +thr dfaa1500 , status 1 +connecting thr dfaa1500 , thread 1286 , mypolls 0 +myconn 0 connecting thr dfaa1500 , thread 1286 , mypolls 0 +thr dfaa1680 , status 1 +connecting thr dfaa1680 , thread 1287 , mypolls 0 +myconn 0 connecting thr dfaa1680 , thread 1287 , mypolls 0 +thr dfaa1800 , status 1 +connecting thr dfaa1800 , thread 1288 , mypolls 0 +myconn 0 connecting thr dfaa1800 , thread 1288 , mypolls 0 +thr dfaa1980 , status 1 +connecting thr dfaa1980 , thread 1289 , mypolls 0 +myconn 0 connecting thr dfaa1980 , thread 1289 , mypolls 0 +thr dfaa1b00 , status 1 +connecting thr dfaa1b00 , thread 1290 , mypolls 0 +myconn 0 connecting thr dfaa1b00 , thread 1290 , mypolls 0 +thr dfaa1c80 , status 1 +connecting thr dfaa1c80 , thread 1291 , mypolls 0 +myconn 0 connecting thr dfaa1c80 , thread 1291 , mypolls 0 +thr dfaa1e00 , status 1 +connecting thr dfaa1e00 , thread 1292 , mypolls 0 +myconn 0 connecting thr dfaa1e00 , thread 1292 , mypolls 0 +thr dfaa1f80 , status 1 +connecting thr dfaa1f80 , thread 1293 , mypolls 0 +myconn 0 connecting thr dfaa1f80 , thread 1293 , mypolls 0 +thr dfaa2100 , status 1 +connecting thr dfaa2100 , thread 1294 , mypolls 0 +myconn 0 connecting thr dfaa2100 , thread 1294 , mypolls 0 +thr dfaa2280 , status 1 +connecting thr dfaa2280 , thread 1295 , mypolls 0 +myconn 0 connecting thr dfaa2280 , thread 1295 , mypolls 0 +thr dfaa2400 , status 1 +connecting thr dfaa2400 , thread 1296 , mypolls 0 +myconn 0 connecting thr dfaa2400 , thread 1296 , mypolls 0 +thr dfaa2580 , status 1 +connecting thr dfaa2580 , thread 1297 , mypolls 0 +myconn 0 connecting thr dfaa2580 , thread 1297 , mypolls 0 +thr dfaa2700 , status 1 +connecting thr dfaa2700 , thread 1298 , mypolls 0 +myconn 0 connecting thr dfaa2700 , thread 1298 , mypolls 0 +thr dfaa2880 , status 1 +connecting thr dfaa2880 , thread 1299 , mypolls 0 +myconn 0 connecting thr dfaa2880 , thread 1299 , mypolls 0 +thr dfaa2a00 , status 1 +connecting thr dfaa2a00 , thread 1300 , mypolls 0 +myconn 0 connecting thr dfaa2a00 , thread 1300 , mypolls 0 +thr dfaa2b80 , status 1 +connecting thr dfaa2b80 , thread 1301 , mypolls 0 +myconn 0 connecting thr dfaa2b80 , thread 1301 , mypolls 0 +thr dfaa2d00 , status 1 +connecting thr dfaa2d00 , thread 1302 , mypolls 0 +myconn 0 connecting thr dfaa2d00 , thread 1302 , mypolls 0 +thr dfaa2e80 , status 1 +connecting thr dfaa2e80 , thread 1303 , mypolls 0 +myconn 0 connecting thr dfaa2e80 , thread 1303 , mypolls 0 +thr df909000 , status 1 +connecting thr df909000 , thread 1304 , mypolls 0 +myconn 0 connecting thr df909000 , thread 1304 , mypolls 0 +thr df909180 , status 1 +connecting thr df909180 , thread 1305 , mypolls 0 +myconn 0 connecting thr df909180 , thread 1305 , mypolls 0 +thr df909300 , status 1 +connecting thr df909300 , thread 1306 , mypolls 0 +myconn 0 connecting thr df909300 , thread 1306 , mypolls 0 +thr df909480 , status 1 +connecting thr df909480 , thread 1307 , mypolls 0 +myconn 0 connecting thr df909480 , thread 1307 , mypolls 0 +thr df909600 , status 1 +connecting thr df909600 , thread 1308 , mypolls 0 +myconn 0 connecting thr df909600 , thread 1308 , mypolls 0 +thr df909780 , status 1 +connecting thr df909780 , thread 1309 , mypolls 0 +myconn 0 connecting thr df909780 , thread 1309 , mypolls 0 +thr df909900 , status 1 +connecting thr df909900 , thread 1310 , mypolls 0 +myconn 0 connecting thr df909900 , thread 1310 , mypolls 0 +thr df909a80 , status 1 +connecting thr df909a80 , thread 1311 , mypolls 0 +myconn 0 connecting thr df909a80 , thread 1311 , mypolls 0 +thr df909c00 , status 1 +connecting thr df909c00 , thread 1312 , mypolls 0 +myconn 0 connecting thr df909c00 , thread 1312 , mypolls 0 +thr df909d80 , status 1 +connecting thr df909d80 , thread 1313 , mypolls 0 +myconn 0 connecting thr df909d80 , thread 1313 , mypolls 0 +thr df909f00 , status 1 +connecting thr df909f00 , thread 1314 , mypolls 0 +myconn 0 connecting thr df909f00 , thread 1314 , mypolls 0 +thr df90a080 , status 1 +connecting thr df90a080 , thread 1315 , mypolls 0 +myconn 0 connecting thr df90a080 , thread 1315 , mypolls 0 +thr df90a200 , status 1 +connecting thr df90a200 , thread 1316 , mypolls 0 +myconn 0 connecting thr df90a200 , thread 1316 , mypolls 0 +thr df90a380 , status 1 +connecting thr df90a380 , thread 1317 , mypolls 0 +myconn 0 connecting thr df90a380 , thread 1317 , mypolls 0 +thr df90a500 , status 1 +connecting thr df90a500 , thread 1318 , mypolls 0 +myconn 0 connecting thr df90a500 , thread 1318 , mypolls 0 +thr df90a680 , status 1 +connecting thr df90a680 , thread 1319 , mypolls 0 +myconn 0 connecting thr df90a680 , thread 1319 , mypolls 0 +thr df90a800 , status 1 +connecting thr df90a800 , thread 1320 , mypolls 0 +myconn 0 connecting thr df90a800 , thread 1320 , mypolls 0 +thr df90a980 , status 1 +connecting thr df90a980 , thread 1321 , mypolls 0 +myconn 0 connecting thr df90a980 , thread 1321 , mypolls 0 +thr df90ab00 , status 1 +connecting thr df90ab00 , thread 1322 , mypolls 0 +myconn 0 connecting thr df90ab00 , thread 1322 , mypolls 0 +thr df90ac80 , status 1 +connecting thr df90ac80 , thread 1323 , mypolls 0 +myconn 0 connecting thr df90ac80 , thread 1323 , mypolls 0 +thr df90ae00 , status 1 +connecting thr df90ae00 , thread 1324 , mypolls 0 +myconn 0 connecting thr df90ae00 , thread 1324 , mypolls 0 +thr df90af80 , status 1 +connecting thr df90af80 , thread 1325 , mypolls 0 +myconn 0 connecting thr df90af80 , thread 1325 , mypolls 0 +thr df90b100 , status 1 +connecting thr df90b100 , thread 1326 , mypolls 0 +myconn 0 connecting thr df90b100 , thread 1326 , mypolls 0 +thr df90b280 , status 1 +connecting thr df90b280 , thread 1327 , mypolls 0 +myconn 0 connecting thr df90b280 , thread 1327 , mypolls 0 +thr df90b400 , status 1 +connecting thr df90b400 , thread 1328 , mypolls 0 +myconn 0 connecting thr df90b400 , thread 1328 , mypolls 0 +thr df90b580 , status 1 +connecting thr df90b580 , thread 1329 , mypolls 0 +myconn 0 connecting thr df90b580 , thread 1329 , mypolls 0 +thr df90b700 , status 1 +connecting thr df90b700 , thread 1330 , mypolls 0 +myconn 0 connecting thr df90b700 , thread 1330 , mypolls 0 +thr df90b880 , status 1 +connecting thr df90b880 , thread 1331 , mypolls 0 +myconn 0 connecting thr df90b880 , thread 1331 , mypolls 0 +thr df90ba00 , status 1 +connecting thr df90ba00 , thread 1332 , mypolls 0 +myconn 0 connecting thr df90ba00 , thread 1332 , mypolls 0 +thr df90bb80 , status 1 +connecting thr df90bb80 , thread 1333 , mypolls 0 +myconn 0 connecting thr df90bb80 , thread 1333 , mypolls 0 +thr df90bd00 , status 1 +connecting thr df90bd00 , thread 1334 , mypolls 0 +myconn 0 connecting thr df90bd00 , thread 1334 , mypolls 0 +thr df90be80 , status 1 +connecting thr df90be80 , thread 1335 , mypolls 0 +myconn 0 connecting thr df90be80 , thread 1335 , mypolls 0 +thr df76a000 , status 1 +connecting thr df76a000 , thread 1336 , mypolls 0 +myconn 0 connecting thr df76a000 , thread 1336 , mypolls 0 +thr df76a180 , status 1 +connecting thr df76a180 , thread 1337 , mypolls 0 +myconn 0 connecting thr df76a180 , thread 1337 , mypolls 0 +thr df76a300 , status 1 +connecting thr df76a300 , thread 1338 , mypolls 0 +myconn 0 connecting thr df76a300 , thread 1338 , mypolls 0 +thr df76a480 , status 1 +connecting thr df76a480 , thread 1339 , mypolls 0 +myconn 0 connecting thr df76a480 , thread 1339 , mypolls 0 +thr df76a600 , status 1 +connecting thr df76a600 , thread 1340 , mypolls 0 +myconn 0 connecting thr df76a600 , thread 1340 , mypolls 0 +thr df76a780 , status 1 +connecting thr df76a780 , thread 1341 , mypolls 0 +myconn 0 connecting thr df76a780 , thread 1341 , mypolls 0 +thr df76a900 , status 1 +connecting thr df76a900 , thread 1342 , mypolls 0 +myconn 0 connecting thr df76a900 , thread 1342 , mypolls 0 +thr df76aa80 , status 1 +connecting thr df76aa80 , thread 1343 , mypolls 0 +myconn 0 connecting thr df76aa80 , thread 1343 , mypolls 0 +thr df76ac00 , status 1 +connecting thr df76ac00 , thread 1344 , mypolls 0 +myconn 0 connecting thr df76ac00 , thread 1344 , mypolls 0 +thr df76ad80 , status 1 +connecting thr df76ad80 , thread 1345 , mypolls 0 +myconn 0 connecting thr df76ad80 , thread 1345 , mypolls 0 +thr df76af00 , status 1 +connecting thr df76af00 , thread 1346 , mypolls 0 +myconn 0 connecting thr df76af00 , thread 1346 , mypolls 0 +thr df76b080 , status 1 +connecting thr df76b080 , thread 1347 , mypolls 0 +myconn 0 connecting thr df76b080 , thread 1347 , mypolls 0 +thr df76b200 , status 1 +connecting thr df76b200 , thread 1348 , mypolls 0 +myconn 0 connecting thr df76b200 , thread 1348 , mypolls 0 +thr df76b380 , status 1 +connecting thr df76b380 , thread 1349 , mypolls 0 +myconn 0 connecting thr df76b380 , thread 1349 , mypolls 0 +thr df76b500 , status 1 +connecting thr df76b500 , thread 1350 , mypolls 0 +myconn 0 connecting thr df76b500 , thread 1350 , mypolls 0 +thr df76b680 , status 1 +connecting thr df76b680 , thread 1351 , mypolls 0 +myconn 0 connecting thr df76b680 , thread 1351 , mypolls 0 +thr df76b800 , status 1 +connecting thr df76b800 , thread 1352 , mypolls 0 +myconn 0 connecting thr df76b800 , thread 1352 , mypolls 0 +thr df76b980 , status 1 +connecting thr df76b980 , thread 1353 , mypolls 0 +myconn 0 connecting thr df76b980 , thread 1353 , mypolls 0 +thr df76bb00 , status 1 +connecting thr df76bb00 , thread 1354 , mypolls 0 +myconn 0 connecting thr df76bb00 , thread 1354 , mypolls 0 +thr df76bc80 , status 1 +connecting thr df76bc80 , thread 1355 , mypolls 0 +myconn 0 connecting thr df76bc80 , thread 1355 , mypolls 0 +thr df76be00 , status 1 +connecting thr df76be00 , thread 1356 , mypolls 0 +myconn 0 connecting thr df76be00 , thread 1356 , mypolls 0 +thr df76bf80 , status 1 +connecting thr df76bf80 , thread 1357 , mypolls 0 +myconn 0 connecting thr df76bf80 , thread 1357 , mypolls 0 +thr df76c100 , status 1 +connecting thr df76c100 , thread 1358 , mypolls 0 +myconn 0 connecting thr df76c100 , thread 1358 , mypolls 0 +thr df76c280 , status 1 +connecting thr df76c280 , thread 1359 , mypolls 0 +myconn 0 connecting thr df76c280 , thread 1359 , mypolls 0 +thr df76c400 , status 1 +connecting thr df76c400 , thread 1360 , mypolls 0 +myconn 0 connecting thr df76c400 , thread 1360 , mypolls 0 +thr df76c580 , status 1 +connecting thr df76c580 , thread 1361 , mypolls 0 +myconn 0 connecting thr df76c580 , thread 1361 , mypolls 0 +thr df76c700 , status 1 +connecting thr df76c700 , thread 1362 , mypolls 0 +myconn 0 connecting thr df76c700 , thread 1362 , mypolls 0 +thr df76c880 , status 1 +connecting thr df76c880 , thread 1363 , mypolls 0 +myconn 0 connecting thr df76c880 , thread 1363 , mypolls 0 +thr df76ca00 , status 1 +connecting thr df76ca00 , thread 1364 , mypolls 0 +myconn 0 connecting thr df76ca00 , thread 1364 , mypolls 0 +thr df76cb80 , status 1 +connecting thr df76cb80 , thread 1365 , mypolls 0 +myconn 0 connecting thr df76cb80 , thread 1365 , mypolls 0 +thr df76cd00 , status 1 +connecting thr df76cd00 , thread 1366 , mypolls 0 +myconn 0 connecting thr df76cd00 , thread 1366 , mypolls 0 +thr df76ce80 , status 1 +connecting thr df76ce80 , thread 1367 , mypolls 0 +myconn 0 connecting thr df76ce80 , thread 1367 , mypolls 0 +thr df5cb000 , status 1 +connecting thr df5cb000 , thread 1368 , mypolls 0 +myconn 0 connecting thr df5cb000 , thread 1368 , mypolls 0 +thr df5cb180 , status 1 +connecting thr df5cb180 , thread 1369 , mypolls 0 +myconn 0 connecting thr df5cb180 , thread 1369 , mypolls 0 +thr df5cb300 , status 1 +connecting thr df5cb300 , thread 1370 , mypolls 0 +myconn 0 connecting thr df5cb300 , thread 1370 , mypolls 0 +thr df5cb480 , status 1 +connecting thr df5cb480 , thread 1371 , mypolls 0 +myconn 0 connecting thr df5cb480 , thread 1371 , mypolls 0 +thr df5cb600 , status 1 +connecting thr df5cb600 , thread 1372 , mypolls 0 +myconn 0 connecting thr df5cb600 , thread 1372 , mypolls 0 +thr df5cb780 , status 1 +connecting thr df5cb780 , thread 1373 , mypolls 0 +myconn 0 connecting thr df5cb780 , thread 1373 , mypolls 0 +thr df5cb900 , status 1 +connecting thr df5cb900 , thread 1374 , mypolls 0 +myconn 0 connecting thr df5cb900 , thread 1374 , mypolls 0 +thr df5cba80 , status 1 +connecting thr df5cba80 , thread 1375 , mypolls 0 +myconn 0 connecting thr df5cba80 , thread 1375 , mypolls 0 +thr df5cbc00 , status 1 +connecting thr df5cbc00 , thread 1376 , mypolls 0 +myconn 0 connecting thr df5cbc00 , thread 1376 , mypolls 0 +thr df5cbd80 , status 1 +connecting thr df5cbd80 , thread 1377 , mypolls 0 +myconn 0 connecting thr df5cbd80 , thread 1377 , mypolls 0 +thr df5cbf00 , status 1 +connecting thr df5cbf00 , thread 1378 , mypolls 0 +myconn 0 connecting thr df5cbf00 , thread 1378 , mypolls 0 +thr df5cc080 , status 1 +connecting thr df5cc080 , thread 1379 , mypolls 0 +myconn 0 connecting thr df5cc080 , thread 1379 , mypolls 0 +thr df5cc200 , status 1 +connecting thr df5cc200 , thread 1380 , mypolls 0 +myconn 0 connecting thr df5cc200 , thread 1380 , mypolls 0 +thr df5cc380 , status 1 +connecting thr df5cc380 , thread 1381 , mypolls 0 +myconn 0 connecting thr df5cc380 , thread 1381 , mypolls 0 +thr df5cc500 , status 1 +connecting thr df5cc500 , thread 1382 , mypolls 0 +myconn 0 connecting thr df5cc500 , thread 1382 , mypolls 0 +thr df5cc680 , status 1 +connecting thr df5cc680 , thread 1383 , mypolls 0 +myconn 0 connecting thr df5cc680 , thread 1383 , mypolls 0 +thr df5cc800 , status 1 +connecting thr df5cc800 , thread 1384 , mypolls 0 +myconn 0 connecting thr df5cc800 , thread 1384 , mypolls 0 +thr df5cc980 , status 1 +connecting thr df5cc980 , thread 1385 , mypolls 0 +myconn 0 connecting thr df5cc980 , thread 1385 , mypolls 0 +thr df5ccb00 , status 1 +connecting thr df5ccb00 , thread 1386 , mypolls 0 +myconn 0 connecting thr df5ccb00 , thread 1386 , mypolls 0 +thr df5ccc80 , status 1 +connecting thr df5ccc80 , thread 1387 , mypolls 0 +myconn 0 connecting thr df5ccc80 , thread 1387 , mypolls 0 +thr df5cce00 , status 1 +connecting thr df5cce00 , thread 1388 , mypolls 0 +myconn 0 connecting thr df5cce00 , thread 1388 , mypolls 0 +thr df5ccf80 , status 1 +connecting thr df5ccf80 , thread 1389 , mypolls 0 +myconn 0 connecting thr df5ccf80 , thread 1389 , mypolls 0 +thr df5cd100 , status 1 +connecting thr df5cd100 , thread 1390 , mypolls 0 +myconn 0 connecting thr df5cd100 , thread 1390 , mypolls 0 +thr df5cd280 , status 1 +connecting thr df5cd280 , thread 1391 , mypolls 0 +myconn 0 connecting thr df5cd280 , thread 1391 , mypolls 0 +thr df5cd400 , status 1 +connecting thr df5cd400 , thread 1392 , mypolls 0 +myconn 0 connecting thr df5cd400 , thread 1392 , mypolls 0 +thr df5cd580 , status 1 +connecting thr df5cd580 , thread 1393 , mypolls 0 +myconn 0 connecting thr df5cd580 , thread 1393 , mypolls 0 +thr df5cd700 , status 1 +connecting thr df5cd700 , thread 1394 , mypolls 0 +myconn 0 connecting thr df5cd700 , thread 1394 , mypolls 0 +thr df5cd880 , status 1 +connecting thr df5cd880 , thread 1395 , mypolls 0 +myconn 0 connecting thr df5cd880 , thread 1395 , mypolls 0 +thr df5cda00 , status 1 +connecting thr df5cda00 , thread 1396 , mypolls 0 +myconn 0 connecting thr df5cda00 , thread 1396 , mypolls 0 +thr df5cdb80 , status 1 +connecting thr df5cdb80 , thread 1397 , mypolls 0 +myconn 0 connecting thr df5cdb80 , thread 1397 , mypolls 0 +thr df5cdd00 , status 1 +connecting thr df5cdd00 , thread 1398 , mypolls 0 +myconn 0 connecting thr df5cdd00 , thread 1398 , mypolls 0 +thr df5cde80 , status 1 +connecting thr df5cde80 , thread 1399 , mypolls 0 +myconn 0 connecting thr df5cde80 , thread 1399 , mypolls 0 +thr df03a000 , status 1 +connecting thr df03a000 , thread 1400 , mypolls 0 +myconn 0 connecting thr df03a000 , thread 1400 , mypolls 0 +thr df03a180 , status 1 +connecting thr df03a180 , thread 1401 , mypolls 0 +myconn 0 connecting thr df03a180 , thread 1401 , mypolls 0 +thr df03a300 , status 1 +connecting thr df03a300 , thread 1402 , mypolls 0 +myconn 0 connecting thr df03a300 , thread 1402 , mypolls 0 +thr df03a480 , status 1 +connecting thr df03a480 , thread 1403 , mypolls 0 +myconn 0 connecting thr df03a480 , thread 1403 , mypolls 0 +thr df03a600 , status 1 +connecting thr df03a600 , thread 1404 , mypolls 0 +myconn 0 connecting thr df03a600 , thread 1404 , mypolls 0 +thr df03a780 , status 1 +connecting thr df03a780 , thread 1405 , mypolls 0 +myconn 0 connecting thr df03a780 , thread 1405 , mypolls 0 +thr df03a900 , status 1 +connecting thr df03a900 , thread 1406 , mypolls 0 +myconn 0 connecting thr df03a900 , thread 1406 , mypolls 0 +thr df03aa80 , status 1 +connecting thr df03aa80 , thread 1407 , mypolls 0 +myconn 0 connecting thr df03aa80 , thread 1407 , mypolls 0 +thr df03ac00 , status 1 +connecting thr df03ac00 , thread 1408 , mypolls 0 +myconn 0 connecting thr df03ac00 , thread 1408 , mypolls 0 +thr df03ad80 , status 1 +connecting thr df03ad80 , thread 1409 , mypolls 0 +myconn 0 connecting thr df03ad80 , thread 1409 , mypolls 0 +thr df03af00 , status 1 +connecting thr df03af00 , thread 1410 , mypolls 0 +myconn 0 connecting thr df03af00 , thread 1410 , mypolls 0 +thr df03b080 , status 1 +connecting thr df03b080 , thread 1411 , mypolls 0 +myconn 0 connecting thr df03b080 , thread 1411 , mypolls 0 +thr df03b200 , status 1 +connecting thr df03b200 , thread 1412 , mypolls 0 +myconn 0 connecting thr df03b200 , thread 1412 , mypolls 0 +thr df03b380 , status 1 +connecting thr df03b380 , thread 1413 , mypolls 0 +myconn 0 connecting thr df03b380 , thread 1413 , mypolls 0 +thr df03b500 , status 1 +connecting thr df03b500 , thread 1414 , mypolls 0 +myconn 0 connecting thr df03b500 , thread 1414 , mypolls 0 +thr df03b680 , status 1 +connecting thr df03b680 , thread 1415 , mypolls 0 +myconn 0 connecting thr df03b680 , thread 1415 , mypolls 0 +thr df03b800 , status 1 +connecting thr df03b800 , thread 1416 , mypolls 0 +myconn 0 connecting thr df03b800 , thread 1416 , mypolls 0 +thr df03b980 , status 1 +connecting thr df03b980 , thread 1417 , mypolls 0 +myconn 0 connecting thr df03b980 , thread 1417 , mypolls 0 +thr df03bb00 , status 1 +connecting thr df03bb00 , thread 1418 , mypolls 0 +myconn 0 connecting thr df03bb00 , thread 1418 , mypolls 0 +thr df03bc80 , status 1 +connecting thr df03bc80 , thread 1419 , mypolls 0 +myconn 0 connecting thr df03bc80 , thread 1419 , mypolls 0 +thr df03be00 , status 1 +connecting thr df03be00 , thread 1420 , mypolls 0 +myconn 0 connecting thr df03be00 , thread 1420 , mypolls 0 +thr df03bf80 , status 1 +connecting thr df03bf80 , thread 1421 , mypolls 0 +myconn 0 connecting thr df03bf80 , thread 1421 , mypolls 0 +thr df03c100 , status 1 +connecting thr df03c100 , thread 1422 , mypolls 0 +myconn 0 connecting thr df03c100 , thread 1422 , mypolls 0 +thr df03c280 , status 1 +connecting thr df03c280 , thread 1423 , mypolls 0 +myconn 0 connecting thr df03c280 , thread 1423 , mypolls 0 +thr df03c400 , status 1 +connecting thr df03c400 , thread 1424 , mypolls 0 +myconn 0 connecting thr df03c400 , thread 1424 , mypolls 0 +thr df03c580 , status 1 +connecting thr df03c580 , thread 1425 , mypolls 0 +myconn 0 connecting thr df03c580 , thread 1425 , mypolls 0 +thr df03c700 , status 1 +connecting thr df03c700 , thread 1426 , mypolls 0 +myconn 0 connecting thr df03c700 , thread 1426 , mypolls 0 +thr df03c880 , status 1 +connecting thr df03c880 , thread 1427 , mypolls 0 +myconn 0 connecting thr df03c880 , thread 1427 , mypolls 0 +thr df03ca00 , status 1 +connecting thr df03ca00 , thread 1428 , mypolls 0 +myconn 0 connecting thr df03ca00 , thread 1428 , mypolls 0 +thr df03cb80 , status 1 +connecting thr df03cb80 , thread 1429 , mypolls 0 +myconn 0 connecting thr df03cb80 , thread 1429 , mypolls 0 +thr df03cd00 , status 1 +connecting thr df03cd00 , thread 1430 , mypolls 0 +myconn 0 connecting thr df03cd00 , thread 1430 , mypolls 0 +thr df03ce80 , status 1 +connecting thr df03ce80 , thread 1431 , mypolls 0 +myconn 0 connecting thr df03ce80 , thread 1431 , mypolls 0 +thr df1fc000 , status 1 +connecting thr df1fc000 , thread 1432 , mypolls 0 +myconn 0 connecting thr df1fc000 , thread 1432 , mypolls 0 +thr df1fc180 , status 1 +connecting thr df1fc180 , thread 1433 , mypolls 0 +myconn 0 connecting thr df1fc180 , thread 1433 , mypolls 0 +thr df1fc300 , status 1 +connecting thr df1fc300 , thread 1434 , mypolls 0 +myconn 0 connecting thr df1fc300 , thread 1434 , mypolls 0 +thr df1fc480 , status 1 +connecting thr df1fc480 , thread 1435 , mypolls 0 +myconn 0 connecting thr df1fc480 , thread 1435 , mypolls 0 +thr df1fc600 , status 1 +connecting thr df1fc600 , thread 1436 , mypolls 0 +myconn 0 connecting thr df1fc600 , thread 1436 , mypolls 0 +thr df1fc780 , status 1 +connecting thr df1fc780 , thread 1437 , mypolls 0 +myconn 0 connecting thr df1fc780 , thread 1437 , mypolls 0 +thr df1fc900 , status 1 +connecting thr df1fc900 , thread 1438 , mypolls 0 +myconn 0 connecting thr df1fc900 , thread 1438 , mypolls 0 +thr df1fca80 , status 1 +connecting thr df1fca80 , thread 1439 , mypolls 0 +myconn 0 connecting thr df1fca80 , thread 1439 , mypolls 0 +thr df1fcc00 , status 1 +connecting thr df1fcc00 , thread 1440 , mypolls 0 +myconn 0 connecting thr df1fcc00 , thread 1440 , mypolls 0 +thr df1fcd80 , status 1 +connecting thr df1fcd80 , thread 1441 , mypolls 0 +myconn 0 connecting thr df1fcd80 , thread 1441 , mypolls 0 +thr df1fcf00 , status 1 +connecting thr df1fcf00 , thread 1442 , mypolls 0 +myconn 0 connecting thr df1fcf00 , thread 1442 , mypolls 0 +thr df1fd080 , status 1 +connecting thr df1fd080 , thread 1443 , mypolls 0 +myconn 0 connecting thr df1fd080 , thread 1443 , mypolls 0 +thr df1fd200 , status 1 +connecting thr df1fd200 , thread 1444 , mypolls 0 +myconn 0 connecting thr df1fd200 , thread 1444 , mypolls 0 +thr df1fd380 , status 1 +connecting thr df1fd380 , thread 1445 , mypolls 0 +myconn 0 connecting thr df1fd380 , thread 1445 , mypolls 0 +thr df1fd500 , status 1 +connecting thr df1fd500 , thread 1446 , mypolls 0 +myconn 0 connecting thr df1fd500 , thread 1446 , mypolls 0 +thr df1fd680 , status 1 +connecting thr df1fd680 , thread 1447 , mypolls 0 +myconn 0 connecting thr df1fd680 , thread 1447 , mypolls 0 +thr df1fd800 , status 1 +connecting thr df1fd800 , thread 1448 , mypolls 0 +myconn 0 connecting thr df1fd800 , thread 1448 , mypolls 0 +thr df1fd980 , status 1 +connecting thr df1fd980 , thread 1449 , mypolls 0 +myconn 0 connecting thr df1fd980 , thread 1449 , mypolls 0 +thr df1fdb00 , status 1 +connecting thr df1fdb00 , thread 1450 , mypolls 0 +myconn 0 connecting thr df1fdb00 , thread 1450 , mypolls 0 +thr df1fdc80 , status 1 +connecting thr df1fdc80 , thread 1451 , mypolls 0 +myconn 0 connecting thr df1fdc80 , thread 1451 , mypolls 0 +thr df1fde00 , status 1 +connecting thr df1fde00 , thread 1452 , mypolls 0 +myconn 0 connecting thr df1fde00 , thread 1452 , mypolls 0 +thr df1fdf80 , status 1 +connecting thr df1fdf80 , thread 1453 , mypolls 0 +myconn 0 connecting thr df1fdf80 , thread 1453 , mypolls 0 +thr df1fe100 , status 1 +connecting thr df1fe100 , thread 1454 , mypolls 0 +myconn 0 connecting thr df1fe100 , thread 1454 , mypolls 0 +thr df1fe280 , status 1 +connecting thr df1fe280 , thread 1455 , mypolls 0 +myconn 0 connecting thr df1fe280 , thread 1455 , mypolls 0 +thr df1fe400 , status 1 +connecting thr df1fe400 , thread 1456 , mypolls 0 +myconn 0 connecting thr df1fe400 , thread 1456 , mypolls 0 +thr df1fe580 , status 1 +connecting thr df1fe580 , thread 1457 , mypolls 0 +myconn 0 connecting thr df1fe580 , thread 1457 , mypolls 0 +thr df1fe700 , status 1 +connecting thr df1fe700 , thread 1458 , mypolls 0 +myconn 0 connecting thr df1fe700 , thread 1458 , mypolls 0 +thr df1fe880 , status 1 +connecting thr df1fe880 , thread 1459 , mypolls 0 +myconn 0 connecting thr df1fe880 , thread 1459 , mypolls 0 +thr df1fea00 , status 1 +connecting thr df1fea00 , thread 1460 , mypolls 0 +myconn 0 connecting thr df1fea00 , thread 1460 , mypolls 0 +thr df1feb80 , status 1 +connecting thr df1feb80 , thread 1461 , mypolls 0 +myconn 0 connecting thr df1feb80 , thread 1461 , mypolls 0 +thr df1fed00 , status 1 +connecting thr df1fed00 , thread 1462 , mypolls 0 +myconn 0 connecting thr df1fed00 , thread 1462 , mypolls 0 +thr df1fee80 , status 1 +connecting thr df1fee80 , thread 1463 , mypolls 0 +myconn 0 connecting thr df1fee80 , thread 1463 , mypolls 0 +thr ded67000 , status 1 +connecting thr ded67000 , thread 1464 , mypolls 0 +myconn 0 connecting thr ded67000 , thread 1464 , mypolls 0 +thr ded67180 , status 1 +connecting thr ded67180 , thread 1465 , mypolls 0 +myconn 0 connecting thr ded67180 , thread 1465 , mypolls 0 +thr ded67300 , status 1 +connecting thr ded67300 , thread 1466 , mypolls 0 +myconn 0 connecting thr ded67300 , thread 1466 , mypolls 0 +thr ded67480 , status 1 +connecting thr ded67480 , thread 1467 , mypolls 0 +myconn 0 connecting thr ded67480 , thread 1467 , mypolls 0 +thr ded67600 , status 1 +connecting thr ded67600 , thread 1468 , mypolls 0 +myconn 0 connecting thr ded67600 , thread 1468 , mypolls 0 +thr ded67780 , status 1 +connecting thr ded67780 , thread 1469 , mypolls 0 +myconn 0 connecting thr ded67780 , thread 1469 , mypolls 0 +thr ded67900 , status 1 +connecting thr ded67900 , thread 1470 , mypolls 0 +myconn 0 connecting thr ded67900 , thread 1470 , mypolls 0 +thr ded67a80 , status 1 +connecting thr ded67a80 , thread 1471 , mypolls 0 +myconn 0 connecting thr ded67a80 , thread 1471 , mypolls 0 +thr ded67c00 , status 1 +connecting thr ded67c00 , thread 1472 , mypolls 0 +myconn 0 connecting thr ded67c00 , thread 1472 , mypolls 0 +thr ded67d80 , status 1 +connecting thr ded67d80 , thread 1473 , mypolls 0 +myconn 0 connecting thr ded67d80 , thread 1473 , mypolls 0 +thr ded67f00 , status 1 +connecting thr ded67f00 , thread 1474 , mypolls 0 +myconn 0 connecting thr ded67f00 , thread 1474 , mypolls 0 +thr ded68080 , status 1 +connecting thr ded68080 , thread 1475 , mypolls 0 +myconn 0 connecting thr ded68080 , thread 1475 , mypolls 0 +thr ded68200 , status 1 +connecting thr ded68200 , thread 1476 , mypolls 0 +myconn 0 connecting thr ded68200 , thread 1476 , mypolls 0 +thr ded68380 , status 1 +connecting thr ded68380 , thread 1477 , mypolls 0 +myconn 0 connecting thr ded68380 , thread 1477 , mypolls 0 +thr ded68500 , status 1 +connecting thr ded68500 , thread 1478 , mypolls 0 +myconn 0 connecting thr ded68500 , thread 1478 , mypolls 0 +thr ded68680 , status 1 +connecting thr ded68680 , thread 1479 , mypolls 0 +myconn 0 connecting thr ded68680 , thread 1479 , mypolls 0 +thr ded68800 , status 1 +connecting thr ded68800 , thread 1480 , mypolls 0 +myconn 0 connecting thr ded68800 , thread 1480 , mypolls 0 +thr ded68980 , status 1 +connecting thr ded68980 , thread 1481 , mypolls 0 +myconn 0 connecting thr ded68980 , thread 1481 , mypolls 0 +thr ded68b00 , status 1 +connecting thr ded68b00 , thread 1482 , mypolls 0 +myconn 0 connecting thr ded68b00 , thread 1482 , mypolls 0 +thr ded68c80 , status 1 +connecting thr ded68c80 , thread 1483 , mypolls 0 +myconn 0 connecting thr ded68c80 , thread 1483 , mypolls 0 +thr ded68e00 , status 1 +connecting thr ded68e00 , thread 1484 , mypolls 0 +myconn 0 connecting thr ded68e00 , thread 1484 , mypolls 0 +thr ded68f80 , status 1 +connecting thr ded68f80 , thread 1485 , mypolls 0 +myconn 0 connecting thr ded68f80 , thread 1485 , mypolls 0 +thr ded69100 , status 1 +connecting thr ded69100 , thread 1486 , mypolls 0 +myconn 0 connecting thr ded69100 , thread 1486 , mypolls 0 +thr ded69280 , status 1 +connecting thr ded69280 , thread 1487 , mypolls 0 +myconn 0 connecting thr ded69280 , thread 1487 , mypolls 0 +thr ded69400 , status 1 +connecting thr ded69400 , thread 1488 , mypolls 0 +myconn 0 connecting thr ded69400 , thread 1488 , mypolls 0 +thr ded69580 , status 1 +connecting thr ded69580 , thread 1489 , mypolls 0 +myconn 0 connecting thr ded69580 , thread 1489 , mypolls 0 +thr ded69700 , status 1 +connecting thr ded69700 , thread 1490 , mypolls 0 +myconn 0 connecting thr ded69700 , thread 1490 , mypolls 0 +thr ded69880 , status 1 +connecting thr ded69880 , thread 1491 , mypolls 0 +myconn 0 connecting thr ded69880 , thread 1491 , mypolls 0 +thr ded69a00 , status 1 +connecting thr ded69a00 , thread 1492 , mypolls 0 +myconn 0 connecting thr ded69a00 , thread 1492 , mypolls 0 +thr ded69b80 , status 1 +connecting thr ded69b80 , thread 1493 , mypolls 0 +myconn 0 connecting thr ded69b80 , thread 1493 , mypolls 0 +thr ded69d00 , status 1 +connecting thr ded69d00 , thread 1494 , mypolls 0 +myconn 0 connecting thr ded69d00 , thread 1494 , mypolls 0 +thr ded69e80 , status 1 +connecting thr ded69e80 , thread 1495 , mypolls 0 +myconn 0 connecting thr ded69e80 , thread 1495 , mypolls 0 +thr debc8000 , status 1 +connecting thr debc8000 , thread 1496 , mypolls 0 +myconn 0 connecting thr debc8000 , thread 1496 , mypolls 0 +thr debc8180 , status 1 +connecting thr debc8180 , thread 1497 , mypolls 0 +myconn 0 connecting thr debc8180 , thread 1497 , mypolls 0 +thr debc8300 , status 1 +connecting thr debc8300 , thread 1498 , mypolls 0 +myconn 0 connecting thr debc8300 , thread 1498 , mypolls 0 +thr debc8480 , status 1 +connecting thr debc8480 , thread 1499 , mypolls 0 +myconn 0 connecting thr debc8480 , thread 1499 , mypolls 0 +thr debc8600 , status 1 +connecting thr debc8600 , thread 1500 , mypolls 0 +myconn 0 connecting thr debc8600 , thread 1500 , mypolls 0 +thr debc8780 , status 1 +connecting thr debc8780 , thread 1501 , mypolls 0 +myconn 0 connecting thr debc8780 , thread 1501 , mypolls 0 +thr debc8900 , status 1 +connecting thr debc8900 , thread 1502 , mypolls 0 +myconn 0 connecting thr debc8900 , thread 1502 , mypolls 0 +thr debc8a80 , status 1 +connecting thr debc8a80 , thread 1503 , mypolls 0 +myconn 0 connecting thr debc8a80 , thread 1503 , mypolls 0 +thr debc8c00 , status 1 +connecting thr debc8c00 , thread 1504 , mypolls 0 +myconn 0 connecting thr debc8c00 , thread 1504 , mypolls 0 +thr debc8d80 , status 1 +connecting thr debc8d80 , thread 1505 , mypolls 0 +myconn 0 connecting thr debc8d80 , thread 1505 , mypolls 0 +thr debc8f00 , status 1 +connecting thr debc8f00 , thread 1506 , mypolls 0 +myconn 0 connecting thr debc8f00 , thread 1506 , mypolls 0 +thr debc9080 , status 1 +connecting thr debc9080 , thread 1507 , mypolls 0 +myconn 0 connecting thr debc9080 , thread 1507 , mypolls 0 +thr debc9200 , status 1 +connecting thr debc9200 , thread 1508 , mypolls 0 +myconn 0 connecting thr debc9200 , thread 1508 , mypolls 0 +thr debc9380 , status 1 +connecting thr debc9380 , thread 1509 , mypolls 0 +myconn 0 connecting thr debc9380 , thread 1509 , mypolls 0 +thr debc9500 , status 1 +connecting thr debc9500 , thread 1510 , mypolls 0 +myconn 0 connecting thr debc9500 , thread 1510 , mypolls 0 +thr debc9680 , status 1 +connecting thr debc9680 , thread 1511 , mypolls 0 +myconn 0 connecting thr debc9680 , thread 1511 , mypolls 0 +thr debc9800 , status 1 +connecting thr debc9800 , thread 1512 , mypolls 0 +myconn 0 connecting thr debc9800 , thread 1512 , mypolls 0 +thr debc9980 , status 1 +connecting thr debc9980 , thread 1513 , mypolls 0 +myconn 0 connecting thr debc9980 , thread 1513 , mypolls 0 +thr debc9b00 , status 1 +connecting thr debc9b00 , thread 1514 , mypolls 0 +myconn 0 connecting thr debc9b00 , thread 1514 , mypolls 0 +thr debc9c80 , status 1 +connecting thr debc9c80 , thread 1515 , mypolls 0 +myconn 0 connecting thr debc9c80 , thread 1515 , mypolls 0 +thr debc9e00 , status 1 +connecting thr debc9e00 , thread 1516 , mypolls 0 +myconn 0 connecting thr debc9e00 , thread 1516 , mypolls 0 +thr debc9f80 , status 1 +connecting thr debc9f80 , thread 1517 , mypolls 0 +myconn 0 connecting thr debc9f80 , thread 1517 , mypolls 0 +thr debca100 , status 1 +connecting thr debca100 , thread 1518 , mypolls 0 +myconn 0 connecting thr debca100 , thread 1518 , mypolls 0 +thr debca280 , status 1 +connecting thr debca280 , thread 1519 , mypolls 0 +myconn 0 connecting thr debca280 , thread 1519 , mypolls 0 +thr debca400 , status 1 +connecting thr debca400 , thread 1520 , mypolls 0 +myconn 0 connecting thr debca400 , thread 1520 , mypolls 0 +thr debca580 , status 1 +connecting thr debca580 , thread 1521 , mypolls 0 +myconn 0 connecting thr debca580 , thread 1521 , mypolls 0 +thr debca700 , status 1 +connecting thr debca700 , thread 1522 , mypolls 0 +myconn 0 connecting thr debca700 , thread 1522 , mypolls 0 +thr debca880 , status 1 +connecting thr debca880 , thread 1523 , mypolls 0 +myconn 0 connecting thr debca880 , thread 1523 , mypolls 0 +thr debcaa00 , status 1 +connecting thr debcaa00 , thread 1524 , mypolls 0 +myconn 0 connecting thr debcaa00 , thread 1524 , mypolls 0 +thr debcab80 , status 1 +connecting thr debcab80 , thread 1525 , mypolls 0 +myconn 0 connecting thr debcab80 , thread 1525 , mypolls 0 +thr debcad00 , status 1 +connecting thr debcad00 , thread 1526 , mypolls 0 +myconn 0 connecting thr debcad00 , thread 1526 , mypolls 0 +thr debcae80 , status 1 +connecting thr debcae80 , thread 1527 , mypolls 0 +myconn 0 connecting thr debcae80 , thread 1527 , mypolls 0 +thr de63a000 , status 1 +connecting thr de63a000 , thread 1528 , mypolls 0 +myconn 0 connecting thr de63a000 , thread 1528 , mypolls 0 +thr de63a180 , status 1 +connecting thr de63a180 , thread 1529 , mypolls 0 +myconn 0 connecting thr de63a180 , thread 1529 , mypolls 0 +thr de63a300 , status 1 +connecting thr de63a300 , thread 1530 , mypolls 0 +myconn 0 connecting thr de63a300 , thread 1530 , mypolls 0 +thr de63a480 , status 1 +connecting thr de63a480 , thread 1531 , mypolls 0 +myconn 0 connecting thr de63a480 , thread 1531 , mypolls 0 +thr de63a600 , status 1 +connecting thr de63a600 , thread 1532 , mypolls 0 +myconn 0 connecting thr de63a600 , thread 1532 , mypolls 0 +thr de63a780 , status 1 +connecting thr de63a780 , thread 1533 , mypolls 0 +myconn 0 connecting thr de63a780 , thread 1533 , mypolls 0 +thr de63a900 , status 1 +connecting thr de63a900 , thread 1534 , mypolls 0 +myconn 0 connecting thr de63a900 , thread 1534 , mypolls 0 +thr de63aa80 , status 1 +connecting thr de63aa80 , thread 1535 , mypolls 0 +myconn 0 connecting thr de63aa80 , thread 1535 , mypolls 0 +thr de63ac00 , status 1 +connecting thr de63ac00 , thread 1536 , mypolls 0 +myconn 0 connecting thr de63ac00 , thread 1536 , mypolls 0 +thr de63ad80 , status 1 +connecting thr de63ad80 , thread 1537 , mypolls 0 +myconn 0 connecting thr de63ad80 , thread 1537 , mypolls 0 +thr de63af00 , status 1 +connecting thr de63af00 , thread 1538 , mypolls 0 +myconn 0 connecting thr de63af00 , thread 1538 , mypolls 0 +thr de63b080 , status 1 +connecting thr de63b080 , thread 1539 , mypolls 0 +myconn 0 connecting thr de63b080 , thread 1539 , mypolls 0 +thr de63b200 , status 1 +connecting thr de63b200 , thread 1540 , mypolls 0 +myconn 0 connecting thr de63b200 , thread 1540 , mypolls 0 +thr de63b380 , status 1 +connecting thr de63b380 , thread 1541 , mypolls 0 +myconn 0 connecting thr de63b380 , thread 1541 , mypolls 0 +thr de63b500 , status 1 +connecting thr de63b500 , thread 1542 , mypolls 0 +myconn 0 connecting thr de63b500 , thread 1542 , mypolls 0 +thr de63b680 , status 1 +connecting thr de63b680 , thread 1543 , mypolls 0 +myconn 0 connecting thr de63b680 , thread 1543 , mypolls 0 +thr de63b800 , status 1 +connecting thr de63b800 , thread 1544 , mypolls 0 +myconn 0 connecting thr de63b800 , thread 1544 , mypolls 0 +thr de63b980 , status 1 +connecting thr de63b980 , thread 1545 , mypolls 0 +myconn 0 connecting thr de63b980 , thread 1545 , mypolls 0 +thr de63bb00 , status 1 +connecting thr de63bb00 , thread 1546 , mypolls 0 +myconn 0 connecting thr de63bb00 , thread 1546 , mypolls 0 +thr de63bc80 , status 1 +connecting thr de63bc80 , thread 1547 , mypolls 0 +myconn 0 connecting thr de63bc80 , thread 1547 , mypolls 0 +thr de63be00 , status 1 +connecting thr de63be00 , thread 1548 , mypolls 0 +myconn 0 connecting thr de63be00 , thread 1548 , mypolls 0 +thr de63bf80 , status 1 +connecting thr de63bf80 , thread 1549 , mypolls 0 +myconn 0 connecting thr de63bf80 , thread 1549 , mypolls 0 +thr de63c100 , status 1 +connecting thr de63c100 , thread 1550 , mypolls 0 +myconn 0 connecting thr de63c100 , thread 1550 , mypolls 0 +thr de63c280 , status 1 +connecting thr de63c280 , thread 1551 , mypolls 0 +myconn 0 connecting thr de63c280 , thread 1551 , mypolls 0 +thr de63c400 , status 1 +connecting thr de63c400 , thread 1552 , mypolls 0 +myconn 0 connecting thr de63c400 , thread 1552 , mypolls 0 +thr de63c580 , status 1 +connecting thr de63c580 , thread 1553 , mypolls 0 +myconn 0 connecting thr de63c580 , thread 1553 , mypolls 0 +thr de63c700 , status 1 +connecting thr de63c700 , thread 1554 , mypolls 0 +myconn 0 connecting thr de63c700 , thread 1554 , mypolls 0 +thr de63c880 , status 1 +connecting thr de63c880 , thread 1555 , mypolls 0 +myconn 0 connecting thr de63c880 , thread 1555 , mypolls 0 +thr de63ca00 , status 1 +connecting thr de63ca00 , thread 1556 , mypolls 0 +myconn 0 connecting thr de63ca00 , thread 1556 , mypolls 0 +thr de63cb80 , status 1 +connecting thr de63cb80 , thread 1557 , mypolls 0 +myconn 0 connecting thr de63cb80 , thread 1557 , mypolls 0 +thr de63cd00 , status 1 +connecting thr de63cd00 , thread 1558 , mypolls 0 +myconn 0 connecting thr de63cd00 , thread 1558 , mypolls 0 +thr de63ce80 , status 1 +connecting thr de63ce80 , thread 1559 , mypolls 0 +myconn 0 connecting thr de63ce80 , thread 1559 , mypolls 0 +thr de7fc000 , status 1 +connecting thr de7fc000 , thread 1560 , mypolls 0 +myconn 0 connecting thr de7fc000 , thread 1560 , mypolls 0 +thr de7fc180 , status 1 +connecting thr de7fc180 , thread 1561 , mypolls 0 +myconn 0 connecting thr de7fc180 , thread 1561 , mypolls 0 +thr de7fc300 , status 1 +connecting thr de7fc300 , thread 1562 , mypolls 0 +myconn 0 connecting thr de7fc300 , thread 1562 , mypolls 0 +thr de7fc480 , status 1 +connecting thr de7fc480 , thread 1563 , mypolls 0 +myconn 0 connecting thr de7fc480 , thread 1563 , mypolls 0 +thr de7fc600 , status 1 +connecting thr de7fc600 , thread 1564 , mypolls 0 +myconn 0 connecting thr de7fc600 , thread 1564 , mypolls 0 +thr de7fc780 , status 1 +connecting thr de7fc780 , thread 1565 , mypolls 0 +myconn 0 connecting thr de7fc780 , thread 1565 , mypolls 0 +thr de7fc900 , status 1 +connecting thr de7fc900 , thread 1566 , mypolls 0 +myconn 0 connecting thr de7fc900 , thread 1566 , mypolls 0 +thr de7fca80 , status 1 +connecting thr de7fca80 , thread 1567 , mypolls 0 +myconn 0 connecting thr de7fca80 , thread 1567 , mypolls 0 +thr de7fcc00 , status 1 +connecting thr de7fcc00 , thread 1568 , mypolls 0 +myconn 0 connecting thr de7fcc00 , thread 1568 , mypolls 0 +thr de7fcd80 , status 1 +connecting thr de7fcd80 , thread 1569 , mypolls 0 +myconn 0 connecting thr de7fcd80 , thread 1569 , mypolls 0 +thr de7fcf00 , status 1 +connecting thr de7fcf00 , thread 1570 , mypolls 0 +myconn 0 connecting thr de7fcf00 , thread 1570 , mypolls 0 +thr de7fd080 , status 1 +connecting thr de7fd080 , thread 1571 , mypolls 0 +myconn 0 connecting thr de7fd080 , thread 1571 , mypolls 0 +thr de7fd200 , status 1 +connecting thr de7fd200 , thread 1572 , mypolls 0 +myconn 0 connecting thr de7fd200 , thread 1572 , mypolls 0 +thr de7fd380 , status 1 +connecting thr de7fd380 , thread 1573 , mypolls 0 +myconn 0 connecting thr de7fd380 , thread 1573 , mypolls 0 +thr de7fd500 , status 1 +connecting thr de7fd500 , thread 1574 , mypolls 0 +myconn 0 connecting thr de7fd500 , thread 1574 , mypolls 0 +thr de7fd680 , status 1 +connecting thr de7fd680 , thread 1575 , mypolls 0 +myconn 0 connecting thr de7fd680 , thread 1575 , mypolls 0 +thr de7fd800 , status 1 +connecting thr de7fd800 , thread 1576 , mypolls 0 +myconn 0 connecting thr de7fd800 , thread 1576 , mypolls 0 +thr de7fd980 , status 1 +connecting thr de7fd980 , thread 1577 , mypolls 0 +myconn 0 connecting thr de7fd980 , thread 1577 , mypolls 0 +thr de7fdb00 , status 1 +connecting thr de7fdb00 , thread 1578 , mypolls 0 +myconn 0 connecting thr de7fdb00 , thread 1578 , mypolls 0 +thr de7fdc80 , status 1 +connecting thr de7fdc80 , thread 1579 , mypolls 0 +myconn 0 connecting thr de7fdc80 , thread 1579 , mypolls 0 +thr de7fde00 , status 1 +connecting thr de7fde00 , thread 1580 , mypolls 0 +myconn 0 connecting thr de7fde00 , thread 1580 , mypolls 0 +thr de7fdf80 , status 1 +connecting thr de7fdf80 , thread 1581 , mypolls 0 +myconn 0 connecting thr de7fdf80 , thread 1581 , mypolls 0 +thr de7fe100 , status 1 +connecting thr de7fe100 , thread 1582 , mypolls 0 +myconn 0 connecting thr de7fe100 , thread 1582 , mypolls 0 +thr de7fe280 , status 1 +connecting thr de7fe280 , thread 1583 , mypolls 0 +myconn 0 connecting thr de7fe280 , thread 1583 , mypolls 0 +thr de7fe400 , status 1 +connecting thr de7fe400 , thread 1584 , mypolls 0 +myconn 0 connecting thr de7fe400 , thread 1584 , mypolls 0 +thr de7fe580 , status 1 +connecting thr de7fe580 , thread 1585 , mypolls 0 +myconn 0 connecting thr de7fe580 , thread 1585 , mypolls 0 +thr de7fe700 , status 1 +connecting thr de7fe700 , thread 1586 , mypolls 0 +myconn 0 connecting thr de7fe700 , thread 1586 , mypolls 0 +thr de7fe880 , status 1 +connecting thr de7fe880 , thread 1587 , mypolls 0 +myconn 0 connecting thr de7fe880 , thread 1587 , mypolls 0 +thr de7fea00 , status 1 +connecting thr de7fea00 , thread 1588 , mypolls 0 +myconn 0 connecting thr de7fea00 , thread 1588 , mypolls 0 +thr de7feb80 , status 1 +connecting thr de7feb80 , thread 1589 , mypolls 0 +myconn 0 connecting thr de7feb80 , thread 1589 , mypolls 0 +thr de7fed00 , status 1 +connecting thr de7fed00 , thread 1590 , mypolls 0 +myconn 0 connecting thr de7fed00 , thread 1590 , mypolls 0 +thr de7fee80 , status 1 +connecting thr de7fee80 , thread 1591 , mypolls 0 +myconn 0 connecting thr de7fee80 , thread 1591 , mypolls 0 +thr de302000 , status 1 +connecting thr de302000 , thread 1592 , mypolls 0 +myconn 0 connecting thr de302000 , thread 1592 , mypolls 0 +thr de302180 , status 1 +connecting thr de302180 , thread 1593 , mypolls 0 +myconn 0 connecting thr de302180 , thread 1593 , mypolls 0 +thr de302300 , status 1 +connecting thr de302300 , thread 1594 , mypolls 0 +myconn 0 connecting thr de302300 , thread 1594 , mypolls 0 +thr de302480 , status 1 +connecting thr de302480 , thread 1595 , mypolls 0 +myconn 0 connecting thr de302480 , thread 1595 , mypolls 0 +thr de302600 , status 1 +connecting thr de302600 , thread 1596 , mypolls 0 +myconn 0 connecting thr de302600 , thread 1596 , mypolls 0 +thr de302780 , status 1 +connecting thr de302780 , thread 1597 , mypolls 0 +myconn 0 connecting thr de302780 , thread 1597 , mypolls 0 +thr de302900 , status 1 +connecting thr de302900 , thread 1598 , mypolls 0 +myconn 0 connecting thr de302900 , thread 1598 , mypolls 0 +thr de302a80 , status 1 +connecting thr de302a80 , thread 1599 , mypolls 0 +myconn 0 connecting thr de302a80 , thread 1599 , mypolls 0 +thr de302c00 , status 1 +connecting thr de302c00 , thread 1600 , mypolls 0 +myconn 0 connecting thr de302c00 , thread 1600 , mypolls 0 +thr de302d80 , status 1 +connecting thr de302d80 , thread 1601 , mypolls 0 +myconn 0 connecting thr de302d80 , thread 1601 , mypolls 0 +thr de302f00 , status 1 +connecting thr de302f00 , thread 1602 , mypolls 0 +myconn 0 connecting thr de302f00 , thread 1602 , mypolls 0 +thr de303080 , status 1 +connecting thr de303080 , thread 1603 , mypolls 0 +myconn 0 connecting thr de303080 , thread 1603 , mypolls 0 +thr de303200 , status 1 +connecting thr de303200 , thread 1604 , mypolls 0 +myconn 0 connecting thr de303200 , thread 1604 , mypolls 0 +thr de303380 , status 1 +connecting thr de303380 , thread 1605 , mypolls 0 +myconn 0 connecting thr de303380 , thread 1605 , mypolls 0 +thr de303500 , status 1 +connecting thr de303500 , thread 1606 , mypolls 0 +myconn 0 connecting thr de303500 , thread 1606 , mypolls 0 +thr de303680 , status 1 +connecting thr de303680 , thread 1607 , mypolls 0 +myconn 0 connecting thr de303680 , thread 1607 , mypolls 0 +thr de303800 , status 1 +connecting thr de303800 , thread 1608 , mypolls 0 +myconn 0 connecting thr de303800 , thread 1608 , mypolls 0 +thr de303980 , status 1 +connecting thr de303980 , thread 1609 , mypolls 0 +myconn 0 connecting thr de303980 , thread 1609 , mypolls 0 +thr de303b00 , status 1 +connecting thr de303b00 , thread 1610 , mypolls 0 +myconn 0 connecting thr de303b00 , thread 1610 , mypolls 0 +thr de303c80 , status 1 +connecting thr de303c80 , thread 1611 , mypolls 0 +myconn 0 connecting thr de303c80 , thread 1611 , mypolls 0 +thr de303e00 , status 1 +connecting thr de303e00 , thread 1612 , mypolls 0 +myconn 0 connecting thr de303e00 , thread 1612 , mypolls 0 +thr de303f80 , status 1 +connecting thr de303f80 , thread 1613 , mypolls 0 +myconn 0 connecting thr de303f80 , thread 1613 , mypolls 0 +thr de304100 , status 1 +connecting thr de304100 , thread 1614 , mypolls 0 +myconn 0 connecting thr de304100 , thread 1614 , mypolls 0 +thr de304280 , status 1 +connecting thr de304280 , thread 1615 , mypolls 0 +myconn 0 connecting thr de304280 , thread 1615 , mypolls 0 +thr de304400 , status 1 +connecting thr de304400 , thread 1616 , mypolls 0 +myconn 0 connecting thr de304400 , thread 1616 , mypolls 0 +thr de304580 , status 1 +connecting thr de304580 , thread 1617 , mypolls 0 +myconn 0 connecting thr de304580 , thread 1617 , mypolls 0 +thr de304700 , status 1 +connecting thr de304700 , thread 1618 , mypolls 0 +myconn 0 connecting thr de304700 , thread 1618 , mypolls 0 +thr de304880 , status 1 +connecting thr de304880 , thread 1619 , mypolls 0 +myconn 0 connecting thr de304880 , thread 1619 , mypolls 0 +thr de304a00 , status 1 +connecting thr de304a00 , thread 1620 , mypolls 0 +myconn 0 connecting thr de304a00 , thread 1620 , mypolls 0 +thr de304b80 , status 1 +connecting thr de304b80 , thread 1621 , mypolls 0 +myconn 0 connecting thr de304b80 , thread 1621 , mypolls 0 +thr de304d00 , status 1 +connecting thr de304d00 , thread 1622 , mypolls 0 +myconn 0 connecting thr de304d00 , thread 1622 , mypolls 0 +thr de304e80 , status 1 +connecting thr de304e80 , thread 1623 , mypolls 0 +myconn 0 connecting thr de304e80 , thread 1623 , mypolls 0 +thr de164000 , status 1 +connecting thr de164000 , thread 1624 , mypolls 0 +myconn 0 connecting thr de164000 , thread 1624 , mypolls 0 +thr de164180 , status 1 +connecting thr de164180 , thread 1625 , mypolls 0 +myconn 0 connecting thr de164180 , thread 1625 , mypolls 0 +thr de164300 , status 1 +connecting thr de164300 , thread 1626 , mypolls 0 +myconn 0 connecting thr de164300 , thread 1626 , mypolls 0 +thr de164480 , status 1 +connecting thr de164480 , thread 1627 , mypolls 0 +myconn 0 connecting thr de164480 , thread 1627 , mypolls 0 +thr de164600 , status 1 +connecting thr de164600 , thread 1628 , mypolls 0 +myconn 0 connecting thr de164600 , thread 1628 , mypolls 0 +thr de164780 , status 1 +connecting thr de164780 , thread 1629 , mypolls 0 +myconn 0 connecting thr de164780 , thread 1629 , mypolls 0 +thr de164900 , status 1 +connecting thr de164900 , thread 1630 , mypolls 0 +myconn 0 connecting thr de164900 , thread 1630 , mypolls 0 +thr de164a80 , status 1 +connecting thr de164a80 , thread 1631 , mypolls 0 +myconn 0 connecting thr de164a80 , thread 1631 , mypolls 0 +thr de164c00 , status 1 +connecting thr de164c00 , thread 1632 , mypolls 0 +myconn 0 connecting thr de164c00 , thread 1632 , mypolls 0 +thr de164d80 , status 1 +connecting thr de164d80 , thread 1633 , mypolls 0 +myconn 0 connecting thr de164d80 , thread 1633 , mypolls 0 +thr de164f00 , status 1 +connecting thr de164f00 , thread 1634 , mypolls 0 +myconn 0 connecting thr de164f00 , thread 1634 , mypolls 0 +thr de165080 , status 1 +connecting thr de165080 , thread 1635 , mypolls 0 +myconn 0 connecting thr de165080 , thread 1635 , mypolls 0 +thr de165200 , status 1 +connecting thr de165200 , thread 1636 , mypolls 0 +myconn 0 connecting thr de165200 , thread 1636 , mypolls 0 +thr de165380 , status 1 +connecting thr de165380 , thread 1637 , mypolls 0 +myconn 0 connecting thr de165380 , thread 1637 , mypolls 0 +thr de165500 , status 1 +connecting thr de165500 , thread 1638 , mypolls 0 +myconn 0 connecting thr de165500 , thread 1638 , mypolls 0 +thr de165680 , status 1 +connecting thr de165680 , thread 1639 , mypolls 0 +myconn 0 connecting thr de165680 , thread 1639 , mypolls 0 +thr de165800 , status 1 +connecting thr de165800 , thread 1640 , mypolls 0 +myconn 0 connecting thr de165800 , thread 1640 , mypolls 0 +thr de165980 , status 1 +connecting thr de165980 , thread 1641 , mypolls 0 +myconn 0 connecting thr de165980 , thread 1641 , mypolls 0 +thr de165b00 , status 1 +connecting thr de165b00 , thread 1642 , mypolls 0 +myconn 0 connecting thr de165b00 , thread 1642 , mypolls 0 +thr de165c80 , status 1 +connecting thr de165c80 , thread 1643 , mypolls 0 +myconn 0 connecting thr de165c80 , thread 1643 , mypolls 0 +thr de165e00 , status 1 +connecting thr de165e00 , thread 1644 , mypolls 0 +myconn 0 connecting thr de165e00 , thread 1644 , mypolls 0 +thr de165f80 , status 1 +connecting thr de165f80 , thread 1645 , mypolls 0 +myconn 0 connecting thr de165f80 , thread 1645 , mypolls 0 +thr de166100 , status 1 +connecting thr de166100 , thread 1646 , mypolls 0 +myconn 0 connecting thr de166100 , thread 1646 , mypolls 0 +thr de166280 , status 1 +connecting thr de166280 , thread 1647 , mypolls 0 +myconn 0 connecting thr de166280 , thread 1647 , mypolls 0 +thr de166400 , status 1 +connecting thr de166400 , thread 1648 , mypolls 0 +myconn 0 connecting thr de166400 , thread 1648 , mypolls 0 +thr de166580 , status 1 +connecting thr de166580 , thread 1649 , mypolls 0 +myconn 0 connecting thr de166580 , thread 1649 , mypolls 0 +thr de166700 , status 1 +connecting thr de166700 , thread 1650 , mypolls 0 +myconn 0 connecting thr de166700 , thread 1650 , mypolls 0 +thr de166880 , status 1 +connecting thr de166880 , thread 1651 , mypolls 0 +myconn 0 connecting thr de166880 , thread 1651 , mypolls 0 +thr de166a00 , status 1 +connecting thr de166a00 , thread 1652 , mypolls 0 +myconn 0 connecting thr de166a00 , thread 1652 , mypolls 0 +thr de166b80 , status 1 +connecting thr de166b80 , thread 1653 , mypolls 0 +myconn 0 connecting thr de166b80 , thread 1653 , mypolls 0 +thr de166d00 , status 1 +connecting thr de166d00 , thread 1654 , mypolls 0 +myconn 0 connecting thr de166d00 , thread 1654 , mypolls 0 +thr de166e80 , status 1 +connecting thr de166e80 , thread 1655 , mypolls 0 +myconn 0 connecting thr de166e80 , thread 1655 , mypolls 0 +thr ddfc4000 , status 1 +connecting thr ddfc4000 , thread 1656 , mypolls 0 +myconn 0 connecting thr ddfc4000 , thread 1656 , mypolls 0 +thr ddfc4180 , status 1 +connecting thr ddfc4180 , thread 1657 , mypolls 0 +myconn 0 connecting thr ddfc4180 , thread 1657 , mypolls 0 +thr ddfc4300 , status 1 +connecting thr ddfc4300 , thread 1658 , mypolls 0 +myconn 0 connecting thr ddfc4300 , thread 1658 , mypolls 0 +thr ddfc4480 , status 1 +connecting thr ddfc4480 , thread 1659 , mypolls 0 +myconn 0 connecting thr ddfc4480 , thread 1659 , mypolls 0 +thr ddfc4600 , status 1 +connecting thr ddfc4600 , thread 1660 , mypolls 0 +myconn 0 connecting thr ddfc4600 , thread 1660 , mypolls 0 +thr ddfc4780 , status 1 +connecting thr ddfc4780 , thread 1661 , mypolls 0 +myconn 0 connecting thr ddfc4780 , thread 1661 , mypolls 0 +thr ddfc4900 , status 1 +connecting thr ddfc4900 , thread 1662 , mypolls 0 +myconn 0 connecting thr ddfc4900 , thread 1662 , mypolls 0 +thr ddfc4a80 , status 1 +connecting thr ddfc4a80 , thread 1663 , mypolls 0 +myconn 0 connecting thr ddfc4a80 , thread 1663 , mypolls 0 +thr ddfc4c00 , status 1 +connecting thr ddfc4c00 , thread 1664 , mypolls 0 +myconn 0 connecting thr ddfc4c00 , thread 1664 , mypolls 0 +thr ddfc4d80 , status 1 +connecting thr ddfc4d80 , thread 1665 , mypolls 0 +myconn 0 connecting thr ddfc4d80 , thread 1665 , mypolls 0 +thr ddfc4f00 , status 1 +connecting thr ddfc4f00 , thread 1666 , mypolls 0 +myconn 0 connecting thr ddfc4f00 , thread 1666 , mypolls 0 +thr ddfc5080 , status 1 +connecting thr ddfc5080 , thread 1667 , mypolls 0 +myconn 0 connecting thr ddfc5080 , thread 1667 , mypolls 0 +thr ddfc5200 , status 1 +connecting thr ddfc5200 , thread 1668 , mypolls 0 +myconn 0 connecting thr ddfc5200 , thread 1668 , mypolls 0 +thr ddfc5380 , status 1 +connecting thr ddfc5380 , thread 1669 , mypolls 0 +myconn 0 connecting thr ddfc5380 , thread 1669 , mypolls 0 +thr ddfc5500 , status 1 +connecting thr ddfc5500 , thread 1670 , mypolls 0 +myconn 0 connecting thr ddfc5500 , thread 1670 , mypolls 0 +thr ddfc5680 , status 1 +connecting thr ddfc5680 , thread 1671 , mypolls 0 +myconn 0 connecting thr ddfc5680 , thread 1671 , mypolls 0 +thr ddfc5800 , status 1 +connecting thr ddfc5800 , thread 1672 , mypolls 0 +myconn 0 connecting thr ddfc5800 , thread 1672 , mypolls 0 +thr ddfc5980 , status 1 +connecting thr ddfc5980 , thread 1673 , mypolls 0 +myconn 0 connecting thr ddfc5980 , thread 1673 , mypolls 0 +thr ddfc5b00 , status 1 +connecting thr ddfc5b00 , thread 1674 , mypolls 0 +myconn 0 connecting thr ddfc5b00 , thread 1674 , mypolls 0 +thr ddfc5c80 , status 1 +connecting thr ddfc5c80 , thread 1675 , mypolls 0 +myconn 0 connecting thr ddfc5c80 , thread 1675 , mypolls 0 +thr ddfc5e00 , status 1 +connecting thr ddfc5e00 , thread 1676 , mypolls 0 +myconn 0 connecting thr ddfc5e00 , thread 1676 , mypolls 0 +thr ddfc5f80 , status 1 +connecting thr ddfc5f80 , thread 1677 , mypolls 0 +myconn 0 connecting thr ddfc5f80 , thread 1677 , mypolls 0 +thr ddfc6100 , status 1 +connecting thr ddfc6100 , thread 1678 , mypolls 0 +myconn 0 connecting thr ddfc6100 , thread 1678 , mypolls 0 +thr ddfc6280 , status 1 +connecting thr ddfc6280 , thread 1679 , mypolls 0 +myconn 0 connecting thr ddfc6280 , thread 1679 , mypolls 0 +thr ddfc6400 , status 1 +connecting thr ddfc6400 , thread 1680 , mypolls 0 +myconn 0 connecting thr ddfc6400 , thread 1680 , mypolls 0 +thr ddfc6580 , status 1 +connecting thr ddfc6580 , thread 1681 , mypolls 0 +myconn 0 connecting thr ddfc6580 , thread 1681 , mypolls 0 +thr ddfc6700 , status 1 +connecting thr ddfc6700 , thread 1682 , mypolls 0 +myconn 0 connecting thr ddfc6700 , thread 1682 , mypolls 0 +thr ddfc6880 , status 1 +connecting thr ddfc6880 , thread 1683 , mypolls 0 +myconn 0 connecting thr ddfc6880 , thread 1683 , mypolls 0 +thr ddfc6a00 , status 1 +connecting thr ddfc6a00 , thread 1684 , mypolls 0 +myconn 0 connecting thr ddfc6a00 , thread 1684 , mypolls 0 +thr ddfc6b80 , status 1 +connecting thr ddfc6b80 , thread 1685 , mypolls 0 +myconn 0 connecting thr ddfc6b80 , thread 1685 , mypolls 0 +thr ddfc6d00 , status 1 +connecting thr ddfc6d00 , thread 1686 , mypolls 0 +myconn 0 connecting thr ddfc6d00 , thread 1686 , mypolls 0 +thr ddfc6e80 , status 1 +connecting thr ddfc6e80 , thread 1687 , mypolls 0 +myconn 0 connecting thr ddfc6e80 , thread 1687 , mypolls 0 +thr dddf7000 , status 1 +connecting thr dddf7000 , thread 1688 , mypolls 0 +myconn 0 connecting thr dddf7000 , thread 1688 , mypolls 0 +thr dddf7180 , status 1 +connecting thr dddf7180 , thread 1689 , mypolls 0 +myconn 0 connecting thr dddf7180 , thread 1689 , mypolls 0 +thr dddf7300 , status 1 +connecting thr dddf7300 , thread 1690 , mypolls 0 +myconn 0 connecting thr dddf7300 , thread 1690 , mypolls 0 +thr dddf7480 , status 1 +connecting thr dddf7480 , thread 1691 , mypolls 0 +myconn 0 connecting thr dddf7480 , thread 1691 , mypolls 0 +thr dddf7600 , status 1 +connecting thr dddf7600 , thread 1692 , mypolls 0 +myconn 0 connecting thr dddf7600 , thread 1692 , mypolls 0 +thr dddf7780 , status 1 +connecting thr dddf7780 , thread 1693 , mypolls 0 +myconn 0 connecting thr dddf7780 , thread 1693 , mypolls 0 +thr dddf7900 , status 1 +connecting thr dddf7900 , thread 1694 , mypolls 0 +myconn 0 connecting thr dddf7900 , thread 1694 , mypolls 0 +thr dddf7a80 , status 1 +connecting thr dddf7a80 , thread 1695 , mypolls 0 +myconn 0 connecting thr dddf7a80 , thread 1695 , mypolls 0 +thr dddf7c00 , status 1 +connecting thr dddf7c00 , thread 1696 , mypolls 0 +myconn 0 connecting thr dddf7c00 , thread 1696 , mypolls 0 +thr dddf7d80 , status 1 +connecting thr dddf7d80 , thread 1697 , mypolls 0 +myconn 0 connecting thr dddf7d80 , thread 1697 , mypolls 0 +thr dddf7f00 , status 1 +connecting thr dddf7f00 , thread 1698 , mypolls 0 +myconn 0 connecting thr dddf7f00 , thread 1698 , mypolls 0 +thr dddf8080 , status 1 +connecting thr dddf8080 , thread 1699 , mypolls 0 +myconn 0 connecting thr dddf8080 , thread 1699 , mypolls 0 +thr dddf8200 , status 1 +connecting thr dddf8200 , thread 1700 , mypolls 0 +myconn 0 connecting thr dddf8200 , thread 1700 , mypolls 0 +thr dddf8380 , status 1 +connecting thr dddf8380 , thread 1701 , mypolls 0 +myconn 0 connecting thr dddf8380 , thread 1701 , mypolls 0 +thr dddf8500 , status 1 +connecting thr dddf8500 , thread 1702 , mypolls 0 +myconn 0 connecting thr dddf8500 , thread 1702 , mypolls 0 +thr dddf8680 , status 1 +connecting thr dddf8680 , thread 1703 , mypolls 0 +myconn 0 connecting thr dddf8680 , thread 1703 , mypolls 0 +thr dddf8800 , status 1 +connecting thr dddf8800 , thread 1704 , mypolls 0 +myconn 0 connecting thr dddf8800 , thread 1704 , mypolls 0 +thr dddf8980 , status 1 +connecting thr dddf8980 , thread 1705 , mypolls 0 +myconn 0 connecting thr dddf8980 , thread 1705 , mypolls 0 +thr dddf8b00 , status 1 +connecting thr dddf8b00 , thread 1706 , mypolls 0 +myconn 0 connecting thr dddf8b00 , thread 1706 , mypolls 0 +thr dddf8c80 , status 1 +connecting thr dddf8c80 , thread 1707 , mypolls 0 +myconn 0 connecting thr dddf8c80 , thread 1707 , mypolls 0 +thr dddf8e00 , status 1 +connecting thr dddf8e00 , thread 1708 , mypolls 0 +myconn 0 connecting thr dddf8e00 , thread 1708 , mypolls 0 +thr dddf8f80 , status 1 +connecting thr dddf8f80 , thread 1709 , mypolls 0 +myconn 0 connecting thr dddf8f80 , thread 1709 , mypolls 0 +thr dddf9100 , status 1 +connecting thr dddf9100 , thread 1710 , mypolls 0 +myconn 0 connecting thr dddf9100 , thread 1710 , mypolls 0 +thr dddf9280 , status 1 +connecting thr dddf9280 , thread 1711 , mypolls 0 +myconn 0 connecting thr dddf9280 , thread 1711 , mypolls 0 +thr dddf9400 , status 1 +connecting thr dddf9400 , thread 1712 , mypolls 0 +myconn 0 connecting thr dddf9400 , thread 1712 , mypolls 0 +thr dddf9580 , status 1 +connecting thr dddf9580 , thread 1713 , mypolls 0 +myconn 0 connecting thr dddf9580 , thread 1713 , mypolls 0 +thr dddf9700 , status 1 +connecting thr dddf9700 , thread 1714 , mypolls 0 +myconn 0 connecting thr dddf9700 , thread 1714 , mypolls 0 +thr dddf9880 , status 1 +connecting thr dddf9880 , thread 1715 , mypolls 0 +myconn 0 connecting thr dddf9880 , thread 1715 , mypolls 0 +thr dddf9a00 , status 1 +connecting thr dddf9a00 , thread 1716 , mypolls 0 +myconn 0 connecting thr dddf9a00 , thread 1716 , mypolls 0 +thr dddf9b80 , status 1 +connecting thr dddf9b80 , thread 1717 , mypolls 0 +myconn 0 connecting thr dddf9b80 , thread 1717 , mypolls 0 +thr dddf9d00 , status 1 +connecting thr dddf9d00 , thread 1718 , mypolls 0 +myconn 0 connecting thr dddf9d00 , thread 1718 , mypolls 0 +thr dddf9e80 , status 1 +connecting thr dddf9e80 , thread 1719 , mypolls 0 +myconn 0 connecting thr dddf9e80 , thread 1719 , mypolls 0 +thr dd895000 , status 1 +connecting thr dd895000 , thread 1720 , mypolls 0 +myconn 0 connecting thr dd895000 , thread 1720 , mypolls 0 +thr dd895180 , status 1 +connecting thr dd895180 , thread 1721 , mypolls 0 +myconn 0 connecting thr dd895180 , thread 1721 , mypolls 0 +thr dd895300 , status 1 +connecting thr dd895300 , thread 1722 , mypolls 0 +myconn 0 connecting thr dd895300 , thread 1722 , mypolls 0 +thr dd895480 , status 1 +connecting thr dd895480 , thread 1723 , mypolls 0 +myconn 0 connecting thr dd895480 , thread 1723 , mypolls 0 +thr dd895600 , status 1 +connecting thr dd895600 , thread 1724 , mypolls 0 +myconn 0 connecting thr dd895600 , thread 1724 , mypolls 0 +thr dd895780 , status 1 +connecting thr dd895780 , thread 1725 , mypolls 0 +myconn 0 connecting thr dd895780 , thread 1725 , mypolls 0 +thr dd895900 , status 1 +connecting thr dd895900 , thread 1726 , mypolls 0 +myconn 0 connecting thr dd895900 , thread 1726 , mypolls 0 +thr dd895a80 , status 1 +connecting thr dd895a80 , thread 1727 , mypolls 0 +myconn 0 connecting thr dd895a80 , thread 1727 , mypolls 0 +thr dd895c00 , status 1 +connecting thr dd895c00 , thread 1728 , mypolls 0 +myconn 0 connecting thr dd895c00 , thread 1728 , mypolls 0 +thr dd895d80 , status 1 +connecting thr dd895d80 , thread 1729 , mypolls 0 +myconn 0 connecting thr dd895d80 , thread 1729 , mypolls 0 +thr dd895f00 , status 1 +connecting thr dd895f00 , thread 1730 , mypolls 0 +myconn 0 connecting thr dd895f00 , thread 1730 , mypolls 0 +thr dd896080 , status 1 +connecting thr dd896080 , thread 1731 , mypolls 0 +myconn 0 connecting thr dd896080 , thread 1731 , mypolls 0 +thr dd896200 , status 1 +connecting thr dd896200 , thread 1732 , mypolls 0 +myconn 0 connecting thr dd896200 , thread 1732 , mypolls 0 +thr dd896380 , status 1 +connecting thr dd896380 , thread 1733 , mypolls 0 +myconn 0 connecting thr dd896380 , thread 1733 , mypolls 0 +thr dd896500 , status 1 +connecting thr dd896500 , thread 1734 , mypolls 0 +myconn 0 connecting thr dd896500 , thread 1734 , mypolls 0 +thr dd896680 , status 1 +connecting thr dd896680 , thread 1735 , mypolls 0 +myconn 0 connecting thr dd896680 , thread 1735 , mypolls 0 +thr dd896800 , status 1 +connecting thr dd896800 , thread 1736 , mypolls 0 +myconn 0 connecting thr dd896800 , thread 1736 , mypolls 0 +thr dd896980 , status 1 +connecting thr dd896980 , thread 1737 , mypolls 0 +myconn 0 connecting thr dd896980 , thread 1737 , mypolls 0 +thr dd896b00 , status 1 +connecting thr dd896b00 , thread 1738 , mypolls 0 +myconn 0 connecting thr dd896b00 , thread 1738 , mypolls 0 +thr dd896c80 , status 1 +connecting thr dd896c80 , thread 1739 , mypolls 0 +myconn 0 connecting thr dd896c80 , thread 1739 , mypolls 0 +thr dd896e00 , status 1 +connecting thr dd896e00 , thread 1740 , mypolls 0 +myconn 0 connecting thr dd896e00 , thread 1740 , mypolls 0 +thr dd896f80 , status 1 +connecting thr dd896f80 , thread 1741 , mypolls 0 +myconn 0 connecting thr dd896f80 , thread 1741 , mypolls 0 +thr dd897100 , status 1 +connecting thr dd897100 , thread 1742 , mypolls 0 +myconn 0 connecting thr dd897100 , thread 1742 , mypolls 0 +thr dd897280 , status 1 +connecting thr dd897280 , thread 1743 , mypolls 0 +myconn 0 connecting thr dd897280 , thread 1743 , mypolls 0 +thr dd897400 , status 1 +connecting thr dd897400 , thread 1744 , mypolls 0 +myconn 0 connecting thr dd897400 , thread 1744 , mypolls 0 +thr dd897580 , status 1 +connecting thr dd897580 , thread 1745 , mypolls 0 +myconn 0 connecting thr dd897580 , thread 1745 , mypolls 0 +thr dd897700 , status 1 +connecting thr dd897700 , thread 1746 , mypolls 0 +myconn 0 connecting thr dd897700 , thread 1746 , mypolls 0 +thr dd897880 , status 1 +connecting thr dd897880 , thread 1747 , mypolls 0 +myconn 0 connecting thr dd897880 , thread 1747 , mypolls 0 +thr dd897a00 , status 1 +connecting thr dd897a00 , thread 1748 , mypolls 0 +myconn 0 connecting thr dd897a00 , thread 1748 , mypolls 0 +thr dd897b80 , status 1 +connecting thr dd897b80 , thread 1749 , mypolls 0 +myconn 0 connecting thr dd897b80 , thread 1749 , mypolls 0 +thr dd897d00 , status 1 +connecting thr dd897d00 , thread 1750 , mypolls 0 +myconn 0 connecting thr dd897d00 , thread 1750 , mypolls 0 +thr dd897e80 , status 1 +connecting thr dd897e80 , thread 1751 , mypolls 0 +myconn 0 connecting thr dd897e80 , thread 1751 , mypolls 0 +thr dd6f7000 , status 1 +connecting thr dd6f7000 , thread 1752 , mypolls 0 +myconn 0 connecting thr dd6f7000 , thread 1752 , mypolls 0 +thr dd6f7180 , status 1 +connecting thr dd6f7180 , thread 1753 , mypolls 0 +myconn 0 connecting thr dd6f7180 , thread 1753 , mypolls 0 +thr dd6f7300 , status 1 +connecting thr dd6f7300 , thread 1754 , mypolls 0 +myconn 0 connecting thr dd6f7300 , thread 1754 , mypolls 0 +thr dd6f7480 , status 1 +connecting thr dd6f7480 , thread 1755 , mypolls 0 +myconn 0 connecting thr dd6f7480 , thread 1755 , mypolls 0 +thr dd6f7600 , status 1 +connecting thr dd6f7600 , thread 1756 , mypolls 0 +myconn 0 connecting thr dd6f7600 , thread 1756 , mypolls 0 +thr dd6f7780 , status 1 +connecting thr dd6f7780 , thread 1757 , mypolls 0 +myconn 0 connecting thr dd6f7780 , thread 1757 , mypolls 0 +thr dd6f7900 , status 1 +connecting thr dd6f7900 , thread 1758 , mypolls 0 +myconn 0 connecting thr dd6f7900 , thread 1758 , mypolls 0 +thr dd6f7a80 , status 1 +connecting thr dd6f7a80 , thread 1759 , mypolls 0 +myconn 0 connecting thr dd6f7a80 , thread 1759 , mypolls 0 +thr dd6f7c00 , status 1 +connecting thr dd6f7c00 , thread 1760 , mypolls 0 +myconn 0 connecting thr dd6f7c00 , thread 1760 , mypolls 0 +thr dd6f7d80 , status 1 +connecting thr dd6f7d80 , thread 1761 , mypolls 0 +myconn 0 connecting thr dd6f7d80 , thread 1761 , mypolls 0 +thr dd6f7f00 , status 1 +connecting thr dd6f7f00 , thread 1762 , mypolls 0 +myconn 0 connecting thr dd6f7f00 , thread 1762 , mypolls 0 +thr dd6f8080 , status 1 +connecting thr dd6f8080 , thread 1763 , mypolls 0 +myconn 0 connecting thr dd6f8080 , thread 1763 , mypolls 0 +thr dd6f8200 , status 1 +connecting thr dd6f8200 , thread 1764 , mypolls 0 +myconn 0 connecting thr dd6f8200 , thread 1764 , mypolls 0 +thr dd6f8380 , status 1 +connecting thr dd6f8380 , thread 1765 , mypolls 0 +myconn 0 connecting thr dd6f8380 , thread 1765 , mypolls 0 +thr dd6f8500 , status 1 +connecting thr dd6f8500 , thread 1766 , mypolls 0 +myconn 0 connecting thr dd6f8500 , thread 1766 , mypolls 0 +thr dd6f8680 , status 1 +connecting thr dd6f8680 , thread 1767 , mypolls 0 +myconn 0 connecting thr dd6f8680 , thread 1767 , mypolls 0 +thr dd6f8800 , status 1 +connecting thr dd6f8800 , thread 1768 , mypolls 0 +myconn 0 connecting thr dd6f8800 , thread 1768 , mypolls 0 +thr dd6f8980 , status 1 +connecting thr dd6f8980 , thread 1769 , mypolls 0 +myconn 0 connecting thr dd6f8980 , thread 1769 , mypolls 0 +thr dd6f8b00 , status 1 +connecting thr dd6f8b00 , thread 1770 , mypolls 0 +myconn 0 connecting thr dd6f8b00 , thread 1770 , mypolls 0 +thr dd6f8c80 , status 1 +connecting thr dd6f8c80 , thread 1771 , mypolls 0 +myconn 0 connecting thr dd6f8c80 , thread 1771 , mypolls 0 +thr dd6f8e00 , status 1 +connecting thr dd6f8e00 , thread 1772 , mypolls 0 +myconn 0 connecting thr dd6f8e00 , thread 1772 , mypolls 0 +thr dd6f8f80 , status 1 +connecting thr dd6f8f80 , thread 1773 , mypolls 0 +myconn 0 connecting thr dd6f8f80 , thread 1773 , mypolls 0 +thr dd6f9100 , status 1 +connecting thr dd6f9100 , thread 1774 , mypolls 0 +myconn 0 connecting thr dd6f9100 , thread 1774 , mypolls 0 +thr dd6f9280 , status 1 +connecting thr dd6f9280 , thread 1775 , mypolls 0 +myconn 0 connecting thr dd6f9280 , thread 1775 , mypolls 0 +thr dd6f9400 , status 1 +connecting thr dd6f9400 , thread 1776 , mypolls 0 +myconn 0 connecting thr dd6f9400 , thread 1776 , mypolls 0 +thr dd6f9580 , status 1 +connecting thr dd6f9580 , thread 1777 , mypolls 0 +myconn 0 connecting thr dd6f9580 , thread 1777 , mypolls 0 +thr dd6f9700 , status 1 +connecting thr dd6f9700 , thread 1778 , mypolls 0 +myconn 0 connecting thr dd6f9700 , thread 1778 , mypolls 0 +thr dd6f9880 , status 1 +connecting thr dd6f9880 , thread 1779 , mypolls 0 +myconn 0 connecting thr dd6f9880 , thread 1779 , mypolls 0 +thr dd6f9a00 , status 1 +connecting thr dd6f9a00 , thread 1780 , mypolls 0 +myconn 0 connecting thr dd6f9a00 , thread 1780 , mypolls 0 +thr dd6f9b80 , status 1 +connecting thr dd6f9b80 , thread 1781 , mypolls 0 +myconn 0 connecting thr dd6f9b80 , thread 1781 , mypolls 0 +thr dd6f9d00 , status 1 +connecting thr dd6f9d00 , thread 1782 , mypolls 0 +myconn 0 connecting thr dd6f9d00 , thread 1782 , mypolls 0 +thr dd6f9e80 , status 1 +connecting thr dd6f9e80 , thread 1783 , mypolls 0 +myconn 0 connecting thr dd6f9e80 , thread 1783 , mypolls 0 +thr dd561000 , status 1 +connecting thr dd561000 , thread 1784 , mypolls 0 +myconn 0 connecting thr dd561000 , thread 1784 , mypolls 0 +thr dd561180 , status 1 +connecting thr dd561180 , thread 1785 , mypolls 0 +myconn 0 connecting thr dd561180 , thread 1785 , mypolls 0 +thr dd561300 , status 1 +connecting thr dd561300 , thread 1786 , mypolls 0 +myconn 0 connecting thr dd561300 , thread 1786 , mypolls 0 +thr dd561480 , status 1 +connecting thr dd561480 , thread 1787 , mypolls 0 +myconn 0 connecting thr dd561480 , thread 1787 , mypolls 0 +thr dd561600 , status 1 +connecting thr dd561600 , thread 1788 , mypolls 0 +myconn 0 connecting thr dd561600 , thread 1788 , mypolls 0 +thr dd561780 , status 1 +connecting thr dd561780 , thread 1789 , mypolls 0 +myconn 0 connecting thr dd561780 , thread 1789 , mypolls 0 +thr dd561900 , status 1 +connecting thr dd561900 , thread 1790 , mypolls 0 +myconn 0 connecting thr dd561900 , thread 1790 , mypolls 0 +thr dd561a80 , status 1 +connecting thr dd561a80 , thread 1791 , mypolls 0 +myconn 0 connecting thr dd561a80 , thread 1791 , mypolls 0 +thr dd561c00 , status 1 +connecting thr dd561c00 , thread 1792 , mypolls 0 +myconn 0 connecting thr dd561c00 , thread 1792 , mypolls 0 +thr dd561d80 , status 1 +connecting thr dd561d80 , thread 1793 , mypolls 0 +myconn 0 connecting thr dd561d80 , thread 1793 , mypolls 0 +thr dd561f00 , status 1 +connecting thr dd561f00 , thread 1794 , mypolls 0 +myconn 0 connecting thr dd561f00 , thread 1794 , mypolls 0 +thr dd562080 , status 1 +connecting thr dd562080 , thread 1795 , mypolls 0 +myconn 0 connecting thr dd562080 , thread 1795 , mypolls 0 +thr dd562200 , status 1 +connecting thr dd562200 , thread 1796 , mypolls 0 +myconn 0 connecting thr dd562200 , thread 1796 , mypolls 0 +thr dd562380 , status 1 +connecting thr dd562380 , thread 1797 , mypolls 0 +myconn 0 connecting thr dd562380 , thread 1797 , mypolls 0 +thr dd562500 , status 1 +connecting thr dd562500 , thread 1798 , mypolls 0 +myconn 0 connecting thr dd562500 , thread 1798 , mypolls 0 +thr dd562680 , status 1 +connecting thr dd562680 , thread 1799 , mypolls 0 +myconn 0 connecting thr dd562680 , thread 1799 , mypolls 0 +thr dd562800 , status 1 +connecting thr dd562800 , thread 1800 , mypolls 0 +myconn 0 connecting thr dd562800 , thread 1800 , mypolls 0 +thr dd562980 , status 1 +connecting thr dd562980 , thread 1801 , mypolls 0 +myconn 0 connecting thr dd562980 , thread 1801 , mypolls 0 +thr dd562b00 , status 1 +connecting thr dd562b00 , thread 1802 , mypolls 0 +myconn 0 connecting thr dd562b00 , thread 1802 , mypolls 0 +thr dd562c80 , status 1 +connecting thr dd562c80 , thread 1803 , mypolls 0 +myconn 0 connecting thr dd562c80 , thread 1803 , mypolls 0 +thr dd562e00 , status 1 +connecting thr dd562e00 , thread 1804 , mypolls 0 +myconn 0 connecting thr dd562e00 , thread 1804 , mypolls 0 +thr dd562f80 , status 1 +connecting thr dd562f80 , thread 1805 , mypolls 0 +myconn 0 connecting thr dd562f80 , thread 1805 , mypolls 0 +thr dd563100 , status 1 +connecting thr dd563100 , thread 1806 , mypolls 0 +myconn 0 connecting thr dd563100 , thread 1806 , mypolls 0 +thr dd563280 , status 1 +connecting thr dd563280 , thread 1807 , mypolls 0 +myconn 0 connecting thr dd563280 , thread 1807 , mypolls 0 +thr dd563400 , status 1 +connecting thr dd563400 , thread 1808 , mypolls 0 +myconn 0 connecting thr dd563400 , thread 1808 , mypolls 0 +thr dd563580 , status 1 +connecting thr dd563580 , thread 1809 , mypolls 0 +myconn 0 connecting thr dd563580 , thread 1809 , mypolls 0 +thr dd563700 , status 1 +connecting thr dd563700 , thread 1810 , mypolls 0 +myconn 0 connecting thr dd563700 , thread 1810 , mypolls 0 +thr dd563880 , status 1 +connecting thr dd563880 , thread 1811 , mypolls 0 +myconn 0 connecting thr dd563880 , thread 1811 , mypolls 0 +thr dd563a00 , status 1 +connecting thr dd563a00 , thread 1812 , mypolls 0 +myconn 0 connecting thr dd563a00 , thread 1812 , mypolls 0 +thr dd563b80 , status 1 +connecting thr dd563b80 , thread 1813 , mypolls 0 +myconn 0 connecting thr dd563b80 , thread 1813 , mypolls 0 +thr dd563d00 , status 1 +connecting thr dd563d00 , thread 1814 , mypolls 0 +myconn 0 connecting thr dd563d00 , thread 1814 , mypolls 0 +thr dd563e80 , status 1 +connecting thr dd563e80 , thread 1815 , mypolls 0 +myconn 0 connecting thr dd563e80 , thread 1815 , mypolls 0 +thr dd3c1000 , status 1 +connecting thr dd3c1000 , thread 1816 , mypolls 0 +myconn 0 connecting thr dd3c1000 , thread 1816 , mypolls 0 +thr dd3c1180 , status 1 +connecting thr dd3c1180 , thread 1817 , mypolls 0 +myconn 0 connecting thr dd3c1180 , thread 1817 , mypolls 0 +thr dd3c1300 , status 1 +connecting thr dd3c1300 , thread 1818 , mypolls 0 +myconn 0 connecting thr dd3c1300 , thread 1818 , mypolls 0 +thr dd3c1480 , status 1 +connecting thr dd3c1480 , thread 1819 , mypolls 0 +myconn 0 connecting thr dd3c1480 , thread 1819 , mypolls 0 +thr dd3c1600 , status 1 +connecting thr dd3c1600 , thread 1820 , mypolls 0 +myconn 0 connecting thr dd3c1600 , thread 1820 , mypolls 0 +thr dd3c1780 , status 1 +connecting thr dd3c1780 , thread 1821 , mypolls 0 +myconn 0 connecting thr dd3c1780 , thread 1821 , mypolls 0 +thr dd3c1900 , status 1 +connecting thr dd3c1900 , thread 1822 , mypolls 0 +myconn 0 connecting thr dd3c1900 , thread 1822 , mypolls 0 +thr dd3c1a80 , status 1 +connecting thr dd3c1a80 , thread 1823 , mypolls 0 +myconn 0 connecting thr dd3c1a80 , thread 1823 , mypolls 0 +thr dd3c1c00 , status 1 +connecting thr dd3c1c00 , thread 1824 , mypolls 0 +myconn 0 connecting thr dd3c1c00 , thread 1824 , mypolls 0 +thr dd3c1d80 , status 1 +connecting thr dd3c1d80 , thread 1825 , mypolls 0 +myconn 0 connecting thr dd3c1d80 , thread 1825 , mypolls 0 +thr dd3c1f00 , status 1 +connecting thr dd3c1f00 , thread 1826 , mypolls 0 +myconn 0 connecting thr dd3c1f00 , thread 1826 , mypolls 0 +thr dd3c2080 , status 1 +connecting thr dd3c2080 , thread 1827 , mypolls 0 +myconn 0 connecting thr dd3c2080 , thread 1827 , mypolls 0 +thr dd3c2200 , status 1 +connecting thr dd3c2200 , thread 1828 , mypolls 0 +myconn 0 connecting thr dd3c2200 , thread 1828 , mypolls 0 +thr dd3c2380 , status 1 +connecting thr dd3c2380 , thread 1829 , mypolls 0 +myconn 0 connecting thr dd3c2380 , thread 1829 , mypolls 0 +thr dd3c2500 , status 1 +connecting thr dd3c2500 , thread 1830 , mypolls 0 +myconn 0 connecting thr dd3c2500 , thread 1830 , mypolls 0 +thr dd3c2680 , status 1 +connecting thr dd3c2680 , thread 1831 , mypolls 0 +myconn 0 connecting thr dd3c2680 , thread 1831 , mypolls 0 +thr dd3c2800 , status 1 +connecting thr dd3c2800 , thread 1832 , mypolls 0 +myconn 0 connecting thr dd3c2800 , thread 1832 , mypolls 0 +thr dd3c2980 , status 1 +connecting thr dd3c2980 , thread 1833 , mypolls 0 +myconn 0 connecting thr dd3c2980 , thread 1833 , mypolls 0 +thr dd3c2b00 , status 1 +connecting thr dd3c2b00 , thread 1834 , mypolls 0 +myconn 0 connecting thr dd3c2b00 , thread 1834 , mypolls 0 +thr dd3c2c80 , status 1 +connecting thr dd3c2c80 , thread 1835 , mypolls 0 +myconn 0 connecting thr dd3c2c80 , thread 1835 , mypolls 0 +thr dd3c2e00 , status 1 +connecting thr dd3c2e00 , thread 1836 , mypolls 0 +myconn 0 connecting thr dd3c2e00 , thread 1836 , mypolls 0 +thr dd3c2f80 , status 1 +connecting thr dd3c2f80 , thread 1837 , mypolls 0 +myconn 0 connecting thr dd3c2f80 , thread 1837 , mypolls 0 +thr dd3c3100 , status 1 +connecting thr dd3c3100 , thread 1838 , mypolls 0 +myconn 0 connecting thr dd3c3100 , thread 1838 , mypolls 0 +thr dd3c3280 , status 1 +connecting thr dd3c3280 , thread 1839 , mypolls 0 +myconn 0 connecting thr dd3c3280 , thread 1839 , mypolls 0 +thr dd3c3400 , status 1 +connecting thr dd3c3400 , thread 1840 , mypolls 0 +myconn 0 connecting thr dd3c3400 , thread 1840 , mypolls 0 +thr dd3c3580 , status 1 +connecting thr dd3c3580 , thread 1841 , mypolls 0 +myconn 0 connecting thr dd3c3580 , thread 1841 , mypolls 0 +thr dd3c3700 , status 1 +connecting thr dd3c3700 , thread 1842 , mypolls 0 +myconn 0 connecting thr dd3c3700 , thread 1842 , mypolls 0 +thr dd3c3880 , status 1 +connecting thr dd3c3880 , thread 1843 , mypolls 0 +myconn 0 connecting thr dd3c3880 , thread 1843 , mypolls 0 +thr dd3c3a00 , status 1 +connecting thr dd3c3a00 , thread 1844 , mypolls 0 +myconn 0 connecting thr dd3c3a00 , thread 1844 , mypolls 0 +thr dd3c3b80 , status 1 +connecting thr dd3c3b80 , thread 1845 , mypolls 0 +myconn 0 connecting thr dd3c3b80 , thread 1845 , mypolls 0 +thr dd3c3d00 , status 1 +connecting thr dd3c3d00 , thread 1846 , mypolls 0 +myconn 0 connecting thr dd3c3d00 , thread 1846 , mypolls 0 +thr dd3c3e80 , status 1 +connecting thr dd3c3e80 , thread 1847 , mypolls 0 +myconn 0 connecting thr dd3c3e80 , thread 1847 , mypolls 0 +thr dd1fd000 , status 1 +connecting thr dd1fd000 , thread 1848 , mypolls 0 +myconn 0 connecting thr dd1fd000 , thread 1848 , mypolls 0 +thr dd1fd180 , status 1 +connecting thr dd1fd180 , thread 1849 , mypolls 0 +myconn 0 connecting thr dd1fd180 , thread 1849 , mypolls 0 +thr dd1fd300 , status 1 +connecting thr dd1fd300 , thread 1850 , mypolls 0 +myconn 0 connecting thr dd1fd300 , thread 1850 , mypolls 0 +thr dd1fd480 , status 1 +connecting thr dd1fd480 , thread 1851 , mypolls 0 +myconn 0 connecting thr dd1fd480 , thread 1851 , mypolls 0 +thr dd1fd600 , status 1 +connecting thr dd1fd600 , thread 1852 , mypolls 0 +myconn 0 connecting thr dd1fd600 , thread 1852 , mypolls 0 +thr dd1fd780 , status 1 +connecting thr dd1fd780 , thread 1853 , mypolls 0 +myconn 0 connecting thr dd1fd780 , thread 1853 , mypolls 0 +thr dd1fd900 , status 1 +connecting thr dd1fd900 , thread 1854 , mypolls 0 +myconn 0 connecting thr dd1fd900 , thread 1854 , mypolls 0 +thr dd1fda80 , status 1 +connecting thr dd1fda80 , thread 1855 , mypolls 0 +myconn 0 connecting thr dd1fda80 , thread 1855 , mypolls 0 +thr dd1fdc00 , status 1 +connecting thr dd1fdc00 , thread 1856 , mypolls 0 +myconn 0 connecting thr dd1fdc00 , thread 1856 , mypolls 0 +thr dd1fdd80 , status 1 +connecting thr dd1fdd80 , thread 1857 , mypolls 0 +myconn 0 connecting thr dd1fdd80 , thread 1857 , mypolls 0 +thr dd1fdf00 , status 1 +connecting thr dd1fdf00 , thread 1858 , mypolls 0 +myconn 0 connecting thr dd1fdf00 , thread 1858 , mypolls 0 +thr dd1fe080 , status 1 +connecting thr dd1fe080 , thread 1859 , mypolls 0 +myconn 0 connecting thr dd1fe080 , thread 1859 , mypolls 0 +thr dd1fe200 , status 1 +connecting thr dd1fe200 , thread 1860 , mypolls 0 +myconn 0 connecting thr dd1fe200 , thread 1860 , mypolls 0 +thr dd1fe380 , status 1 +connecting thr dd1fe380 , thread 1861 , mypolls 0 +myconn 0 connecting thr dd1fe380 , thread 1861 , mypolls 0 +thr dd1fe500 , status 1 +connecting thr dd1fe500 , thread 1862 , mypolls 0 +myconn 0 connecting thr dd1fe500 , thread 1862 , mypolls 0 +thr dd1fe680 , status 1 +connecting thr dd1fe680 , thread 1863 , mypolls 0 +myconn 0 connecting thr dd1fe680 , thread 1863 , mypolls 0 +thr dd1fe800 , status 1 +connecting thr dd1fe800 , thread 1864 , mypolls 0 +myconn 0 connecting thr dd1fe800 , thread 1864 , mypolls 0 +thr dd1fe980 , status 1 +connecting thr dd1fe980 , thread 1865 , mypolls 0 +myconn 0 connecting thr dd1fe980 , thread 1865 , mypolls 0 +thr dd1feb00 , status 1 +connecting thr dd1feb00 , thread 1866 , mypolls 0 +myconn 0 connecting thr dd1feb00 , thread 1866 , mypolls 0 +thr dd1fec80 , status 1 +connecting thr dd1fec80 , thread 1867 , mypolls 0 +myconn 0 connecting thr dd1fec80 , thread 1867 , mypolls 0 +thr dd1fee00 , status 1 +connecting thr dd1fee00 , thread 1868 , mypolls 0 +myconn 0 connecting thr dd1fee00 , thread 1868 , mypolls 0 +thr dd1fef80 , status 1 +connecting thr dd1fef80 , thread 1869 , mypolls 0 +myconn 0 connecting thr dd1fef80 , thread 1869 , mypolls 0 +thr dd1ff100 , status 1 +connecting thr dd1ff100 , thread 1870 , mypolls 0 +myconn 0 connecting thr dd1ff100 , thread 1870 , mypolls 0 +thr dd1ff280 , status 1 +connecting thr dd1ff280 , thread 1871 , mypolls 0 +myconn 0 connecting thr dd1ff280 , thread 1871 , mypolls 0 +thr dd1ff400 , status 1 +connecting thr dd1ff400 , thread 1872 , mypolls 0 +myconn 0 connecting thr dd1ff400 , thread 1872 , mypolls 0 +thr dd1ff580 , status 1 +connecting thr dd1ff580 , thread 1873 , mypolls 0 +myconn 0 connecting thr dd1ff580 , thread 1873 , mypolls 0 +thr dd1ff700 , status 1 +connecting thr dd1ff700 , thread 1874 , mypolls 0 +myconn 0 connecting thr dd1ff700 , thread 1874 , mypolls 0 +thr dd1ff880 , status 1 +connecting thr dd1ff880 , thread 1875 , mypolls 0 +myconn 0 connecting thr dd1ff880 , thread 1875 , mypolls 0 +thr dd1ffa00 , status 1 +connecting thr dd1ffa00 , thread 1876 , mypolls 0 +myconn 0 connecting thr dd1ffa00 , thread 1876 , mypolls 0 +thr dd1ffb80 , status 1 +connecting thr dd1ffb80 , thread 1877 , mypolls 0 +myconn 0 connecting thr dd1ffb80 , thread 1877 , mypolls 0 +thr dd1ffd00 , status 1 +connecting thr dd1ffd00 , thread 1878 , mypolls 0 +myconn 0 connecting thr dd1ffd00 , thread 1878 , mypolls 0 +thr dd1ffe80 , status 1 +connecting thr dd1ffe80 , thread 1879 , mypolls 0 +myconn 0 connecting thr dd1ffe80 , thread 1879 , mypolls 0 +thr dcc94000 , status 1 +connecting thr dcc94000 , thread 1880 , mypolls 0 +myconn 0 connecting thr dcc94000 , thread 1880 , mypolls 0 +thr dcc94180 , status 1 +connecting thr dcc94180 , thread 1881 , mypolls 0 +myconn 0 connecting thr dcc94180 , thread 1881 , mypolls 0 +thr dcc94300 , status 1 +connecting thr dcc94300 , thread 1882 , mypolls 0 +myconn 0 connecting thr dcc94300 , thread 1882 , mypolls 0 +thr dcc94480 , status 1 +connecting thr dcc94480 , thread 1883 , mypolls 0 +myconn 0 connecting thr dcc94480 , thread 1883 , mypolls 0 +thr dcc94600 , status 1 +connecting thr dcc94600 , thread 1884 , mypolls 0 +myconn 0 connecting thr dcc94600 , thread 1884 , mypolls 0 +thr dcc94780 , status 1 +connecting thr dcc94780 , thread 1885 , mypolls 0 +myconn 0 connecting thr dcc94780 , thread 1885 , mypolls 0 +thr dcc94900 , status 1 +connecting thr dcc94900 , thread 1886 , mypolls 0 +myconn 0 connecting thr dcc94900 , thread 1886 , mypolls 0 +thr dcc94a80 , status 1 +connecting thr dcc94a80 , thread 1887 , mypolls 0 +myconn 0 connecting thr dcc94a80 , thread 1887 , mypolls 0 +thr dcc94c00 , status 1 +connecting thr dcc94c00 , thread 1888 , mypolls 0 +myconn 0 connecting thr dcc94c00 , thread 1888 , mypolls 0 +thr dcc94d80 , status 1 +connecting thr dcc94d80 , thread 1889 , mypolls 0 +myconn 0 connecting thr dcc94d80 , thread 1889 , mypolls 0 +thr dcc94f00 , status 1 +connecting thr dcc94f00 , thread 1890 , mypolls 0 +myconn 0 connecting thr dcc94f00 , thread 1890 , mypolls 0 +thr dcc95080 , status 1 +connecting thr dcc95080 , thread 1891 , mypolls 0 +myconn 0 connecting thr dcc95080 , thread 1891 , mypolls 0 +thr dcc95200 , status 1 +connecting thr dcc95200 , thread 1892 , mypolls 0 +myconn 0 connecting thr dcc95200 , thread 1892 , mypolls 0 +thr dcc95380 , status 1 +connecting thr dcc95380 , thread 1893 , mypolls 0 +myconn 0 connecting thr dcc95380 , thread 1893 , mypolls 0 +thr dcc95500 , status 1 +connecting thr dcc95500 , thread 1894 , mypolls 0 +myconn 0 connecting thr dcc95500 , thread 1894 , mypolls 0 +thr dcc95680 , status 1 +connecting thr dcc95680 , thread 1895 , mypolls 0 +myconn 0 connecting thr dcc95680 , thread 1895 , mypolls 0 +thr dcc95800 , status 1 +connecting thr dcc95800 , thread 1896 , mypolls 0 +myconn 0 connecting thr dcc95800 , thread 1896 , mypolls 0 +thr dcc95980 , status 1 +connecting thr dcc95980 , thread 1897 , mypolls 0 +myconn 0 connecting thr dcc95980 , thread 1897 , mypolls 0 +thr dcc95b00 , status 1 +connecting thr dcc95b00 , thread 1898 , mypolls 0 +myconn 0 connecting thr dcc95b00 , thread 1898 , mypolls 0 +thr dcc95c80 , status 1 +connecting thr dcc95c80 , thread 1899 , mypolls 0 +myconn 0 connecting thr dcc95c80 , thread 1899 , mypolls 0 +thr dcc95e00 , status 1 +connecting thr dcc95e00 , thread 1900 , mypolls 0 +myconn 0 connecting thr dcc95e00 , thread 1900 , mypolls 0 +thr dcc95f80 , status 1 +connecting thr dcc95f80 , thread 1901 , mypolls 0 +myconn 0 connecting thr dcc95f80 , thread 1901 , mypolls 0 +thr dcc96100 , status 1 +connecting thr dcc96100 , thread 1902 , mypolls 0 +myconn 0 connecting thr dcc96100 , thread 1902 , mypolls 0 +thr dcc96280 , status 1 +connecting thr dcc96280 , thread 1903 , mypolls 0 +myconn 0 connecting thr dcc96280 , thread 1903 , mypolls 0 +thr dcc96400 , status 1 +connecting thr dcc96400 , thread 1904 , mypolls 0 +myconn 0 connecting thr dcc96400 , thread 1904 , mypolls 0 +thr dcc96580 , status 1 +connecting thr dcc96580 , thread 1905 , mypolls 0 +myconn 0 connecting thr dcc96580 , thread 1905 , mypolls 0 +thr dcc96700 , status 1 +connecting thr dcc96700 , thread 1906 , mypolls 0 +myconn 0 connecting thr dcc96700 , thread 1906 , mypolls 0 +thr dcc96880 , status 1 +connecting thr dcc96880 , thread 1907 , mypolls 0 +myconn 0 connecting thr dcc96880 , thread 1907 , mypolls 0 +thr dcc96a00 , status 1 +connecting thr dcc96a00 , thread 1908 , mypolls 0 +myconn 0 connecting thr dcc96a00 , thread 1908 , mypolls 0 +thr dcc96b80 , status 1 +connecting thr dcc96b80 , thread 1909 , mypolls 0 +myconn 0 connecting thr dcc96b80 , thread 1909 , mypolls 0 +thr dcc96d00 , status 1 +connecting thr dcc96d00 , thread 1910 , mypolls 0 +myconn 0 connecting thr dcc96d00 , thread 1910 , mypolls 0 +thr dcc96e80 , status 1 +connecting thr dcc96e80 , thread 1911 , mypolls 0 +myconn 0 connecting thr dcc96e80 , thread 1911 , mypolls 0 +thr dcdfc000 , status 1 +connecting thr dcdfc000 , thread 1912 , mypolls 0 +myconn 0 connecting thr dcdfc000 , thread 1912 , mypolls 0 +thr dcdfc180 , status 1 +connecting thr dcdfc180 , thread 1913 , mypolls 0 +myconn 0 connecting thr dcdfc180 , thread 1913 , mypolls 0 +thr dcdfc300 , status 1 +connecting thr dcdfc300 , thread 1914 , mypolls 0 +myconn 0 connecting thr dcdfc300 , thread 1914 , mypolls 0 +thr dcdfc480 , status 1 +connecting thr dcdfc480 , thread 1915 , mypolls 0 +myconn 0 connecting thr dcdfc480 , thread 1915 , mypolls 0 +thr dcdfc600 , status 1 +connecting thr dcdfc600 , thread 1916 , mypolls 0 +myconn 0 connecting thr dcdfc600 , thread 1916 , mypolls 0 +thr dcdfc780 , status 1 +connecting thr dcdfc780 , thread 1917 , mypolls 0 +myconn 0 connecting thr dcdfc780 , thread 1917 , mypolls 0 +thr dcdfc900 , status 1 +connecting thr dcdfc900 , thread 1918 , mypolls 0 +myconn 0 connecting thr dcdfc900 , thread 1918 , mypolls 0 +thr dcdfca80 , status 1 +connecting thr dcdfca80 , thread 1919 , mypolls 0 +myconn 0 connecting thr dcdfca80 , thread 1919 , mypolls 0 +thr dcdfcc00 , status 1 +connecting thr dcdfcc00 , thread 1920 , mypolls 0 +myconn 0 connecting thr dcdfcc00 , thread 1920 , mypolls 0 +thr dcdfcd80 , status 1 +connecting thr dcdfcd80 , thread 1921 , mypolls 0 +myconn 0 connecting thr dcdfcd80 , thread 1921 , mypolls 0 +thr dcdfcf00 , status 1 +connecting thr dcdfcf00 , thread 1922 , mypolls 0 +myconn 0 connecting thr dcdfcf00 , thread 1922 , mypolls 0 +thr dcdfd080 , status 1 +connecting thr dcdfd080 , thread 1923 , mypolls 0 +myconn 0 connecting thr dcdfd080 , thread 1923 , mypolls 0 +thr dcdfd200 , status 1 +connecting thr dcdfd200 , thread 1924 , mypolls 0 +myconn 0 connecting thr dcdfd200 , thread 1924 , mypolls 0 +thr dcdfd380 , status 1 +connecting thr dcdfd380 , thread 1925 , mypolls 0 +myconn 0 connecting thr dcdfd380 , thread 1925 , mypolls 0 +thr dcdfd500 , status 1 +connecting thr dcdfd500 , thread 1926 , mypolls 0 +myconn 0 connecting thr dcdfd500 , thread 1926 , mypolls 0 +thr dcdfd680 , status 1 +connecting thr dcdfd680 , thread 1927 , mypolls 0 +myconn 0 connecting thr dcdfd680 , thread 1927 , mypolls 0 +thr dcdfd800 , status 1 +connecting thr dcdfd800 , thread 1928 , mypolls 0 +myconn 0 connecting thr dcdfd800 , thread 1928 , mypolls 0 +thr dcdfd980 , status 1 +connecting thr dcdfd980 , thread 1929 , mypolls 0 +myconn 0 connecting thr dcdfd980 , thread 1929 , mypolls 0 +thr dcdfdb00 , status 1 +connecting thr dcdfdb00 , thread 1930 , mypolls 0 +myconn 0 connecting thr dcdfdb00 , thread 1930 , mypolls 0 +thr dcdfdc80 , status 1 +connecting thr dcdfdc80 , thread 1931 , mypolls 0 +myconn 0 connecting thr dcdfdc80 , thread 1931 , mypolls 0 +thr dcdfde00 , status 1 +connecting thr dcdfde00 , thread 1932 , mypolls 0 +myconn 0 connecting thr dcdfde00 , thread 1932 , mypolls 0 +thr dcdfdf80 , status 1 +connecting thr dcdfdf80 , thread 1933 , mypolls 0 +myconn 0 connecting thr dcdfdf80 , thread 1933 , mypolls 0 +thr dcdfe100 , status 1 +connecting thr dcdfe100 , thread 1934 , mypolls 0 +myconn 0 connecting thr dcdfe100 , thread 1934 , mypolls 0 +thr dcdfe280 , status 1 +connecting thr dcdfe280 , thread 1935 , mypolls 0 +myconn 0 connecting thr dcdfe280 , thread 1935 , mypolls 0 +thr dcdfe400 , status 1 +connecting thr dcdfe400 , thread 1936 , mypolls 0 +myconn 0 connecting thr dcdfe400 , thread 1936 , mypolls 0 +thr dcdfe580 , status 1 +connecting thr dcdfe580 , thread 1937 , mypolls 0 +myconn 0 connecting thr dcdfe580 , thread 1937 , mypolls 0 +thr dcdfe700 , status 1 +connecting thr dcdfe700 , thread 1938 , mypolls 0 +myconn 0 connecting thr dcdfe700 , thread 1938 , mypolls 0 +thr dcdfe880 , status 1 +connecting thr dcdfe880 , thread 1939 , mypolls 0 +myconn 0 connecting thr dcdfe880 , thread 1939 , mypolls 0 +thr dcdfea00 , status 1 +connecting thr dcdfea00 , thread 1940 , mypolls 0 +myconn 0 connecting thr dcdfea00 , thread 1940 , mypolls 0 +thr dcdfeb80 , status 1 +connecting thr dcdfeb80 , thread 1941 , mypolls 0 +myconn 0 connecting thr dcdfeb80 , thread 1941 , mypolls 0 +thr dcdfed00 , status 1 +connecting thr dcdfed00 , thread 1942 , mypolls 0 +myconn 0 connecting thr dcdfed00 , thread 1942 , mypolls 0 +thr dcdfee80 , status 1 +connecting thr dcdfee80 , thread 1943 , mypolls 0 +myconn 0 connecting thr dcdfee80 , thread 1943 , mypolls 0 +thr dc958000 , status 1 +connecting thr dc958000 , thread 1944 , mypolls 0 +myconn 0 connecting thr dc958000 , thread 1944 , mypolls 0 +thr dc958180 , status 1 +connecting thr dc958180 , thread 1945 , mypolls 0 +myconn 0 connecting thr dc958180 , thread 1945 , mypolls 0 +thr dc958300 , status 1 +connecting thr dc958300 , thread 1946 , mypolls 0 +myconn 0 connecting thr dc958300 , thread 1946 , mypolls 0 +thr dc958480 , status 1 +connecting thr dc958480 , thread 1947 , mypolls 0 +myconn 0 connecting thr dc958480 , thread 1947 , mypolls 0 +thr dc958600 , status 1 +connecting thr dc958600 , thread 1948 , mypolls 0 +myconn 0 connecting thr dc958600 , thread 1948 , mypolls 0 +thr dc958780 , status 1 +connecting thr dc958780 , thread 1949 , mypolls 0 +myconn 0 connecting thr dc958780 , thread 1949 , mypolls 0 +thr dc958900 , status 1 +connecting thr dc958900 , thread 1950 , mypolls 0 +myconn 0 connecting thr dc958900 , thread 1950 , mypolls 0 +thr dc958a80 , status 1 +connecting thr dc958a80 , thread 1951 , mypolls 0 +myconn 0 connecting thr dc958a80 , thread 1951 , mypolls 0 +thr dc958c00 , status 1 +connecting thr dc958c00 , thread 1952 , mypolls 0 +myconn 0 connecting thr dc958c00 , thread 1952 , mypolls 0 +thr dc958d80 , status 1 +connecting thr dc958d80 , thread 1953 , mypolls 0 +myconn 0 connecting thr dc958d80 , thread 1953 , mypolls 0 +thr dc958f00 , status 1 +connecting thr dc958f00 , thread 1954 , mypolls 0 +myconn 0 connecting thr dc958f00 , thread 1954 , mypolls 0 +thr dc959080 , status 1 +connecting thr dc959080 , thread 1955 , mypolls 0 +myconn 0 connecting thr dc959080 , thread 1955 , mypolls 0 +thr dc959200 , status 1 +connecting thr dc959200 , thread 1956 , mypolls 0 +myconn 0 connecting thr dc959200 , thread 1956 , mypolls 0 +thr dc959380 , status 1 +connecting thr dc959380 , thread 1957 , mypolls 0 +myconn 0 connecting thr dc959380 , thread 1957 , mypolls 0 +thr dc959500 , status 1 +connecting thr dc959500 , thread 1958 , mypolls 0 +myconn 0 connecting thr dc959500 , thread 1958 , mypolls 0 +thr dc959680 , status 1 +connecting thr dc959680 , thread 1959 , mypolls 0 +myconn 0 connecting thr dc959680 , thread 1959 , mypolls 0 +thr dc959800 , status 1 +connecting thr dc959800 , thread 1960 , mypolls 0 +myconn 0 connecting thr dc959800 , thread 1960 , mypolls 0 +thr dc959980 , status 1 +connecting thr dc959980 , thread 1961 , mypolls 0 +myconn 0 connecting thr dc959980 , thread 1961 , mypolls 0 +thr dc959b00 , status 1 +connecting thr dc959b00 , thread 1962 , mypolls 0 +myconn 0 connecting thr dc959b00 , thread 1962 , mypolls 0 +thr dc959c80 , status 1 +connecting thr dc959c80 , thread 1963 , mypolls 0 +myconn 0 connecting thr dc959c80 , thread 1963 , mypolls 0 +thr dc959e00 , status 1 +connecting thr dc959e00 , thread 1964 , mypolls 0 +myconn 0 connecting thr dc959e00 , thread 1964 , mypolls 0 +thr dc959f80 , status 1 +connecting thr dc959f80 , thread 1965 , mypolls 0 +myconn 0 connecting thr dc959f80 , thread 1965 , mypolls 0 +thr dc95a100 , status 1 +connecting thr dc95a100 , thread 1966 , mypolls 0 +myconn 0 connecting thr dc95a100 , thread 1966 , mypolls 0 +thr dc95a280 , status 1 +connecting thr dc95a280 , thread 1967 , mypolls 0 +myconn 0 connecting thr dc95a280 , thread 1967 , mypolls 0 +thr dc95a400 , status 1 +connecting thr dc95a400 , thread 1968 , mypolls 0 +myconn 0 connecting thr dc95a400 , thread 1968 , mypolls 0 +thr dc95a580 , status 1 +connecting thr dc95a580 , thread 1969 , mypolls 0 +myconn 0 connecting thr dc95a580 , thread 1969 , mypolls 0 +thr dc95a700 , status 1 +connecting thr dc95a700 , thread 1970 , mypolls 0 +myconn 0 connecting thr dc95a700 , thread 1970 , mypolls 0 +thr dc95a880 , status 1 +connecting thr dc95a880 , thread 1971 , mypolls 0 +myconn 0 connecting thr dc95a880 , thread 1971 , mypolls 0 +thr dc95aa00 , status 1 +connecting thr dc95aa00 , thread 1972 , mypolls 0 +myconn 0 connecting thr dc95aa00 , thread 1972 , mypolls 0 +thr dc95ab80 , status 1 +connecting thr dc95ab80 , thread 1973 , mypolls 0 +myconn 0 connecting thr dc95ab80 , thread 1973 , mypolls 0 +thr dc95ad00 , status 1 +connecting thr dc95ad00 , thread 1974 , mypolls 0 +myconn 0 connecting thr dc95ad00 , thread 1974 , mypolls 0 +thr dc95ae80 , status 1 +connecting thr dc95ae80 , thread 1975 , mypolls 0 +myconn 0 connecting thr dc95ae80 , thread 1975 , mypolls 0 +thr dc7b7000 , status 1 +connecting thr dc7b7000 , thread 1976 , mypolls 0 +myconn 0 connecting thr dc7b7000 , thread 1976 , mypolls 0 +thr dc7b7180 , status 1 +connecting thr dc7b7180 , thread 1977 , mypolls 0 +myconn 0 connecting thr dc7b7180 , thread 1977 , mypolls 0 +thr dc7b7300 , status 1 +connecting thr dc7b7300 , thread 1978 , mypolls 0 +myconn 0 connecting thr dc7b7300 , thread 1978 , mypolls 0 +thr dc7b7480 , status 1 +connecting thr dc7b7480 , thread 1979 , mypolls 0 +myconn 0 connecting thr dc7b7480 , thread 1979 , mypolls 0 +thr dc7b7600 , status 1 +connecting thr dc7b7600 , thread 1980 , mypolls 0 +myconn 0 connecting thr dc7b7600 , thread 1980 , mypolls 0 +thr dc7b7780 , status 1 +connecting thr dc7b7780 , thread 1981 , mypolls 0 +myconn 0 connecting thr dc7b7780 , thread 1981 , mypolls 0 +thr dc7b7900 , status 1 +connecting thr dc7b7900 , thread 1982 , mypolls 0 +myconn 0 connecting thr dc7b7900 , thread 1982 , mypolls 0 +thr dc7b7a80 , status 1 +connecting thr dc7b7a80 , thread 1983 , mypolls 0 +myconn 0 connecting thr dc7b7a80 , thread 1983 , mypolls 0 +thr dc7b7c00 , status 1 +connecting thr dc7b7c00 , thread 1984 , mypolls 0 +myconn 0 connecting thr dc7b7c00 , thread 1984 , mypolls 0 +thr dc7b7d80 , status 1 +connecting thr dc7b7d80 , thread 1985 , mypolls 0 +myconn 0 connecting thr dc7b7d80 , thread 1985 , mypolls 0 +thr dc7b7f00 , status 1 +connecting thr dc7b7f00 , thread 1986 , mypolls 0 +myconn 0 connecting thr dc7b7f00 , thread 1986 , mypolls 0 +thr dc7b8080 , status 1 +connecting thr dc7b8080 , thread 1987 , mypolls 0 +myconn 0 connecting thr dc7b8080 , thread 1987 , mypolls 0 +thr dc7b8200 , status 1 +connecting thr dc7b8200 , thread 1988 , mypolls 0 +myconn 0 connecting thr dc7b8200 , thread 1988 , mypolls 0 +thr dc7b8380 , status 1 +connecting thr dc7b8380 , thread 1989 , mypolls 0 +myconn 0 connecting thr dc7b8380 , thread 1989 , mypolls 0 +thr dc7b8500 , status 1 +connecting thr dc7b8500 , thread 1990 , mypolls 0 +myconn 0 connecting thr dc7b8500 , thread 1990 , mypolls 0 +thr dc7b8680 , status 1 +connecting thr dc7b8680 , thread 1991 , mypolls 0 +myconn 0 connecting thr dc7b8680 , thread 1991 , mypolls 0 +thr dc7b8800 , status 1 +connecting thr dc7b8800 , thread 1992 , mypolls 0 +myconn 0 connecting thr dc7b8800 , thread 1992 , mypolls 0 +thr dc7b8980 , status 1 +connecting thr dc7b8980 , thread 1993 , mypolls 0 +myconn 0 connecting thr dc7b8980 , thread 1993 , mypolls 0 +thr dc7b8b00 , status 1 +connecting thr dc7b8b00 , thread 1994 , mypolls 0 +myconn 0 connecting thr dc7b8b00 , thread 1994 , mypolls 0 +thr dc7b8c80 , status 1 +connecting thr dc7b8c80 , thread 1995 , mypolls 0 +myconn 0 connecting thr dc7b8c80 , thread 1995 , mypolls 0 +thr dc7b8e00 , status 1 +connecting thr dc7b8e00 , thread 1996 , mypolls 0 +myconn 0 connecting thr dc7b8e00 , thread 1996 , mypolls 0 +thr dc7b8f80 , status 1 +connecting thr dc7b8f80 , thread 1997 , mypolls 0 +myconn 0 connecting thr dc7b8f80 , thread 1997 , mypolls 0 +thr dc7b9100 , status 1 +connecting thr dc7b9100 , thread 1998 , mypolls 0 +myconn 0 connecting thr dc7b9100 , thread 1998 , mypolls 0 +thr dc7b9280 , status 1 +connecting thr dc7b9280 , thread 1999 , mypolls 0 +myconn 0 connecting thr dc7b9280 , thread 1999 , mypolls 0 +thr dc7b9400 , status 1 +connecting thr dc7b9400 , thread 2000 , mypolls 0 +myconn 0 connecting thr dc7b9400 , thread 2000 , mypolls 0 +thr dc7b9580 , status 1 +connecting thr dc7b9580 , thread 2001 , mypolls 0 +myconn 0 connecting thr dc7b9580 , thread 2001 , mypolls 0 +thr dc7b9700 , status 1 +connecting thr dc7b9700 , thread 2002 , mypolls 0 +myconn 0 connecting thr dc7b9700 , thread 2002 , mypolls 0 +thr dc7b9880 , status 1 +connecting thr dc7b9880 , thread 2003 , mypolls 0 +myconn 0 connecting thr dc7b9880 , thread 2003 , mypolls 0 +thr dc7b9a00 , status 1 +connecting thr dc7b9a00 , thread 2004 , mypolls 0 +myconn 0 connecting thr dc7b9a00 , thread 2004 , mypolls 0 +thr dc7b9b80 , status 1 +connecting thr dc7b9b80 , thread 2005 , mypolls 0 +myconn 0 connecting thr dc7b9b80 , thread 2005 , mypolls 0 +thr dc7b9d00 , status 1 +connecting thr dc7b9d00 , thread 2006 , mypolls 0 +myconn 0 connecting thr dc7b9d00 , thread 2006 , mypolls 0 +thr dc7b9e80 , status 1 +connecting thr dc7b9e80 , thread 2007 , mypolls 0 +myconn 0 connecting thr dc7b9e80 , thread 2007 , mypolls 0 +thr dc228000 , status 1 +connecting thr dc228000 , thread 2008 , mypolls 0 +myconn 0 connecting thr dc228000 , thread 2008 , mypolls 0 +thr dc228180 , status 1 +connecting thr dc228180 , thread 2009 , mypolls 0 +myconn 0 connecting thr dc228180 , thread 2009 , mypolls 0 +thr dc228300 , status 1 +connecting thr dc228300 , thread 2010 , mypolls 0 +myconn 0 connecting thr dc228300 , thread 2010 , mypolls 0 +thr dc228480 , status 1 +connecting thr dc228480 , thread 2011 , mypolls 0 +myconn 0 connecting thr dc228480 , thread 2011 , mypolls 0 +thr dc228600 , status 1 +connecting thr dc228600 , thread 2012 , mypolls 0 +myconn 0 connecting thr dc228600 , thread 2012 , mypolls 0 +thr dc228780 , status 1 +connecting thr dc228780 , thread 2013 , mypolls 0 +myconn 0 connecting thr dc228780 , thread 2013 , mypolls 0 +thr dc228900 , status 1 +connecting thr dc228900 , thread 2014 , mypolls 0 +myconn 0 connecting thr dc228900 , thread 2014 , mypolls 0 +thr dc228a80 , status 1 +connecting thr dc228a80 , thread 2015 , mypolls 0 +myconn 0 connecting thr dc228a80 , thread 2015 , mypolls 0 +thr dc228c00 , status 1 +connecting thr dc228c00 , thread 2016 , mypolls 0 +myconn 0 connecting thr dc228c00 , thread 2016 , mypolls 0 +thr dc228d80 , status 1 +connecting thr dc228d80 , thread 2017 , mypolls 0 +myconn 0 connecting thr dc228d80 , thread 2017 , mypolls 0 +thr dc228f00 , status 1 +connecting thr dc228f00 , thread 2018 , mypolls 0 +myconn 0 connecting thr dc228f00 , thread 2018 , mypolls 0 +thr dc229080 , status 1 +connecting thr dc229080 , thread 2019 , mypolls 0 +myconn 0 connecting thr dc229080 , thread 2019 , mypolls 0 +thr dc229200 , status 1 +connecting thr dc229200 , thread 2020 , mypolls 0 +myconn 0 connecting thr dc229200 , thread 2020 , mypolls 0 +thr dc229380 , status 1 +connecting thr dc229380 , thread 2021 , mypolls 0 +myconn 0 connecting thr dc229380 , thread 2021 , mypolls 0 +thr dc229500 , status 1 +connecting thr dc229500 , thread 2022 , mypolls 0 +myconn 0 connecting thr dc229500 , thread 2022 , mypolls 0 +thr dc229680 , status 1 +connecting thr dc229680 , thread 2023 , mypolls 0 +myconn 0 connecting thr dc229680 , thread 2023 , mypolls 0 +thr dc229800 , status 1 +connecting thr dc229800 , thread 2024 , mypolls 0 +myconn 0 connecting thr dc229800 , thread 2024 , mypolls 0 +thr dc229980 , status 1 +connecting thr dc229980 , thread 2025 , mypolls 0 +myconn 0 connecting thr dc229980 , thread 2025 , mypolls 0 +thr dc229b00 , status 1 +connecting thr dc229b00 , thread 2026 , mypolls 0 +myconn 0 connecting thr dc229b00 , thread 2026 , mypolls 0 +thr dc229c80 , status 1 +connecting thr dc229c80 , thread 2027 , mypolls 0 +myconn 0 connecting thr dc229c80 , thread 2027 , mypolls 0 +thr dc229e00 , status 1 +connecting thr dc229e00 , thread 2028 , mypolls 0 +myconn 0 connecting thr dc229e00 , thread 2028 , mypolls 0 +thr dc229f80 , status 1 +connecting thr dc229f80 , thread 2029 , mypolls 0 +myconn 0 connecting thr dc229f80 , thread 2029 , mypolls 0 +thr dc22a100 , status 1 +connecting thr dc22a100 , thread 2030 , mypolls 0 +myconn 0 connecting thr dc22a100 , thread 2030 , mypolls 0 +thr dc22a280 , status 1 +connecting thr dc22a280 , thread 2031 , mypolls 0 +myconn 0 connecting thr dc22a280 , thread 2031 , mypolls 0 +thr dc22a400 , status 1 +connecting thr dc22a400 , thread 2032 , mypolls 0 +myconn 0 connecting thr dc22a400 , thread 2032 , mypolls 0 +thr dc22a580 , status 1 +connecting thr dc22a580 , thread 2033 , mypolls 0 +myconn 0 connecting thr dc22a580 , thread 2033 , mypolls 0 +thr dc22a700 , status 1 +connecting thr dc22a700 , thread 2034 , mypolls 0 +myconn 0 connecting thr dc22a700 , thread 2034 , mypolls 0 +thr dc22a880 , status 1 +connecting thr dc22a880 , thread 2035 , mypolls 0 +myconn 0 connecting thr dc22a880 , thread 2035 , mypolls 0 +thr dc22aa00 , status 1 +connecting thr dc22aa00 , thread 2036 , mypolls 0 +myconn 0 connecting thr dc22aa00 , thread 2036 , mypolls 0 +thr dc22ab80 , status 1 +connecting thr dc22ab80 , thread 2037 , mypolls 0 +myconn 0 connecting thr dc22ab80 , thread 2037 , mypolls 0 +thr dc22ad00 , status 1 +connecting thr dc22ad00 , thread 2038 , mypolls 0 +myconn 0 connecting thr dc22ad00 , thread 2038 , mypolls 0 +thr dc22ae80 , status 1 +connecting thr dc22ae80 , thread 2039 , mypolls 0 +myconn 0 connecting thr dc22ae80 , thread 2039 , mypolls 0 +thr dc08b000 , status 1 +connecting thr dc08b000 , thread 2040 , mypolls 0 +myconn 0 connecting thr dc08b000 , thread 2040 , mypolls 0 +thr dc08b180 , status 1 +connecting thr dc08b180 , thread 2041 , mypolls 0 +myconn 0 connecting thr dc08b180 , thread 2041 , mypolls 0 +thr dc08b300 , status 1 +connecting thr dc08b300 , thread 2042 , mypolls 0 +myconn 0 connecting thr dc08b300 , thread 2042 , mypolls 0 +thr dc08b480 , status 1 +connecting thr dc08b480 , thread 2043 , mypolls 0 +myconn 0 connecting thr dc08b480 , thread 2043 , mypolls 0 +thr dc08b600 , status 1 +connecting thr dc08b600 , thread 2044 , mypolls 0 +myconn 0 connecting thr dc08b600 , thread 2044 , mypolls 0 +thr dc08b780 , status 1 +connecting thr dc08b780 , thread 2045 , mypolls 0 +myconn 0 connecting thr dc08b780 , thread 2045 , mypolls 0 +thr dc08b900 , status 1 +connecting thr dc08b900 , thread 2046 , mypolls 0 +myconn 0 connecting thr dc08b900 , thread 2046 , mypolls 0 +thr dc08ba80 , status 1 +connecting thr dc08ba80 , thread 2047 , mypolls 0 +myconn 0 connecting thr dc08ba80 , thread 2047 , mypolls 0 +thr dc08bc00 , status 1 +connecting thr dc08bc00 , thread 2048 , mypolls 0 +myconn 0 connecting thr dc08bc00 , thread 2048 , mypolls 0 +thr dc08bd80 , status 1 +connecting thr dc08bd80 , thread 2049 , mypolls 0 +myconn 0 connecting thr dc08bd80 , thread 2049 , mypolls 0 +thr dc08bf00 , status 1 +connecting thr dc08bf00 , thread 2050 , mypolls 0 +myconn 0 connecting thr dc08bf00 , thread 2050 , mypolls 0 +thr dc08c080 , status 1 +connecting thr dc08c080 , thread 2051 , mypolls 0 +myconn 0 connecting thr dc08c080 , thread 2051 , mypolls 0 +thr dc08c200 , status 1 +connecting thr dc08c200 , thread 2052 , mypolls 0 +myconn 0 connecting thr dc08c200 , thread 2052 , mypolls 0 +thr dc08c380 , status 1 +connecting thr dc08c380 , thread 2053 , mypolls 0 +myconn 0 connecting thr dc08c380 , thread 2053 , mypolls 0 +thr dc08c500 , status 1 +connecting thr dc08c500 , thread 2054 , mypolls 0 +myconn 0 connecting thr dc08c500 , thread 2054 , mypolls 0 +thr dc08c680 , status 1 +connecting thr dc08c680 , thread 2055 , mypolls 0 +myconn 0 connecting thr dc08c680 , thread 2055 , mypolls 0 +thr dc08c800 , status 1 +connecting thr dc08c800 , thread 2056 , mypolls 0 +myconn 0 connecting thr dc08c800 , thread 2056 , mypolls 0 +thr dc08c980 , status 1 +connecting thr dc08c980 , thread 2057 , mypolls 0 +myconn 0 connecting thr dc08c980 , thread 2057 , mypolls 0 +thr dc08cb00 , status 1 +connecting thr dc08cb00 , thread 2058 , mypolls 0 +myconn 0 connecting thr dc08cb00 , thread 2058 , mypolls 0 +thr dc08cc80 , status 1 +connecting thr dc08cc80 , thread 2059 , mypolls 0 +myconn 0 connecting thr dc08cc80 , thread 2059 , mypolls 0 +thr dc08ce00 , status 1 +connecting thr dc08ce00 , thread 2060 , mypolls 0 +myconn 0 connecting thr dc08ce00 , thread 2060 , mypolls 0 +thr dc08cf80 , status 1 +connecting thr dc08cf80 , thread 2061 , mypolls 0 +myconn 0 connecting thr dc08cf80 , thread 2061 , mypolls 0 +thr dc08d100 , status 1 +connecting thr dc08d100 , thread 2062 , mypolls 0 +myconn 0 connecting thr dc08d100 , thread 2062 , mypolls 0 +thr dc08d280 , status 1 +connecting thr dc08d280 , thread 2063 , mypolls 0 +myconn 0 connecting thr dc08d280 , thread 2063 , mypolls 0 +thr dc08d400 , status 1 +connecting thr dc08d400 , thread 2064 , mypolls 0 +myconn 0 connecting thr dc08d400 , thread 2064 , mypolls 0 +thr dc08d580 , status 1 +connecting thr dc08d580 , thread 2065 , mypolls 0 +myconn 0 connecting thr dc08d580 , thread 2065 , mypolls 0 +thr dc08d700 , status 1 +connecting thr dc08d700 , thread 2066 , mypolls 0 +myconn 0 connecting thr dc08d700 , thread 2066 , mypolls 0 +thr dc08d880 , status 1 +connecting thr dc08d880 , thread 2067 , mypolls 0 +myconn 0 connecting thr dc08d880 , thread 2067 , mypolls 0 +thr dc08da00 , status 1 +connecting thr dc08da00 , thread 2068 , mypolls 0 +myconn 0 connecting thr dc08da00 , thread 2068 , mypolls 0 +thr dc08db80 , status 1 +connecting thr dc08db80 , thread 2069 , mypolls 0 +myconn 0 connecting thr dc08db80 , thread 2069 , mypolls 0 +thr dc08dd00 , status 1 +connecting thr dc08dd00 , thread 2070 , mypolls 0 +myconn 0 connecting thr dc08dd00 , thread 2070 , mypolls 0 +thr dc08de80 , status 1 +connecting thr dc08de80 , thread 2071 , mypolls 0 +myconn 0 connecting thr dc08de80 , thread 2071 , mypolls 0 +thr dc1fc000 , status 1 +connecting thr dc1fc000 , thread 2072 , mypolls 0 +myconn 0 connecting thr dc1fc000 , thread 2072 , mypolls 0 +thr dc1fc180 , status 1 +connecting thr dc1fc180 , thread 2073 , mypolls 0 +myconn 0 connecting thr dc1fc180 , thread 2073 , mypolls 0 +thr dc1fc300 , status 1 +connecting thr dc1fc300 , thread 2074 , mypolls 0 +myconn 0 connecting thr dc1fc300 , thread 2074 , mypolls 0 +thr dc1fc480 , status 1 +connecting thr dc1fc480 , thread 2075 , mypolls 0 +myconn 0 connecting thr dc1fc480 , thread 2075 , mypolls 0 +thr dc1fc600 , status 1 +connecting thr dc1fc600 , thread 2076 , mypolls 0 +myconn 0 connecting thr dc1fc600 , thread 2076 , mypolls 0 +thr dc1fc780 , status 1 +connecting thr dc1fc780 , thread 2077 , mypolls 0 +myconn 0 connecting thr dc1fc780 , thread 2077 , mypolls 0 +thr dc1fc900 , status 1 +connecting thr dc1fc900 , thread 2078 , mypolls 0 +myconn 0 connecting thr dc1fc900 , thread 2078 , mypolls 0 +thr dc1fca80 , status 1 +connecting thr dc1fca80 , thread 2079 , mypolls 0 +myconn 0 connecting thr dc1fca80 , thread 2079 , mypolls 0 +thr dc1fcc00 , status 1 +connecting thr dc1fcc00 , thread 2080 , mypolls 0 +myconn 0 connecting thr dc1fcc00 , thread 2080 , mypolls 0 +thr dc1fcd80 , status 1 +connecting thr dc1fcd80 , thread 2081 , mypolls 0 +myconn 0 connecting thr dc1fcd80 , thread 2081 , mypolls 0 +thr dc1fcf00 , status 1 +connecting thr dc1fcf00 , thread 2082 , mypolls 0 +myconn 0 connecting thr dc1fcf00 , thread 2082 , mypolls 0 +thr dc1fd080 , status 1 +connecting thr dc1fd080 , thread 2083 , mypolls 0 +myconn 0 connecting thr dc1fd080 , thread 2083 , mypolls 0 +thr dc1fd200 , status 1 +connecting thr dc1fd200 , thread 2084 , mypolls 0 +myconn 0 connecting thr dc1fd200 , thread 2084 , mypolls 0 +thr dc1fd380 , status 1 +connecting thr dc1fd380 , thread 2085 , mypolls 0 +myconn 0 connecting thr dc1fd380 , thread 2085 , mypolls 0 +thr dc1fd500 , status 1 +connecting thr dc1fd500 , thread 2086 , mypolls 0 +myconn 0 connecting thr dc1fd500 , thread 2086 , mypolls 0 +thr dc1fd680 , status 1 +connecting thr dc1fd680 , thread 2087 , mypolls 0 +myconn 0 connecting thr dc1fd680 , thread 2087 , mypolls 0 +thr dc1fd800 , status 1 +connecting thr dc1fd800 , thread 2088 , mypolls 0 +myconn 0 connecting thr dc1fd800 , thread 2088 , mypolls 0 +thr dc1fd980 , status 1 +connecting thr dc1fd980 , thread 2089 , mypolls 0 +myconn 0 connecting thr dc1fd980 , thread 2089 , mypolls 0 +thr dc1fdb00 , status 1 +connecting thr dc1fdb00 , thread 2090 , mypolls 0 +myconn 0 connecting thr dc1fdb00 , thread 2090 , mypolls 0 +thr dc1fdc80 , status 1 +connecting thr dc1fdc80 , thread 2091 , mypolls 0 +myconn 0 connecting thr dc1fdc80 , thread 2091 , mypolls 0 +thr dc1fde00 , status 1 +connecting thr dc1fde00 , thread 2092 , mypolls 0 +myconn 0 connecting thr dc1fde00 , thread 2092 , mypolls 0 +thr dc1fdf80 , status 1 +connecting thr dc1fdf80 , thread 2093 , mypolls 0 +myconn 0 connecting thr dc1fdf80 , thread 2093 , mypolls 0 +thr dc1fe100 , status 1 +connecting thr dc1fe100 , thread 2094 , mypolls 0 +myconn 0 connecting thr dc1fe100 , thread 2094 , mypolls 0 +thr dc1fe280 , status 1 +connecting thr dc1fe280 , thread 2095 , mypolls 0 +myconn 0 connecting thr dc1fe280 , thread 2095 , mypolls 0 +thr dc1fe400 , status 1 +connecting thr dc1fe400 , thread 2096 , mypolls 0 +myconn 0 connecting thr dc1fe400 , thread 2096 , mypolls 0 +thr dc1fe580 , status 1 +connecting thr dc1fe580 , thread 2097 , mypolls 0 +myconn 0 connecting thr dc1fe580 , thread 2097 , mypolls 0 +thr dc1fe700 , status 1 +connecting thr dc1fe700 , thread 2098 , mypolls 0 +myconn 0 connecting thr dc1fe700 , thread 2098 , mypolls 0 +thr dc1fe880 , status 1 +connecting thr dc1fe880 , thread 2099 , mypolls 0 +myconn 0 connecting thr dc1fe880 , thread 2099 , mypolls 0 +thr dc1fea00 , status 1 +connecting thr dc1fea00 , thread 2100 , mypolls 0 +myconn 0 connecting thr dc1fea00 , thread 2100 , mypolls 0 +thr dc1feb80 , status 1 +connecting thr dc1feb80 , thread 2101 , mypolls 0 +myconn 0 connecting thr dc1feb80 , thread 2101 , mypolls 0 +thr dc1fed00 , status 1 +connecting thr dc1fed00 , thread 2102 , mypolls 0 +myconn 0 connecting thr dc1fed00 , thread 2102 , mypolls 0 +thr dc1fee80 , status 1 +connecting thr dc1fee80 , thread 2103 , mypolls 0 +myconn 0 connecting thr dc1fee80 , thread 2103 , mypolls 0 +thr dbd5b000 , status 1 +connecting thr dbd5b000 , thread 2104 , mypolls 0 +myconn 0 connecting thr dbd5b000 , thread 2104 , mypolls 0 +thr dbd5b180 , status 1 +connecting thr dbd5b180 , thread 2105 , mypolls 0 +myconn 0 connecting thr dbd5b180 , thread 2105 , mypolls 0 +thr dbd5b300 , status 1 +connecting thr dbd5b300 , thread 2106 , mypolls 0 +myconn 0 connecting thr dbd5b300 , thread 2106 , mypolls 0 +thr dbd5b480 , status 1 +connecting thr dbd5b480 , thread 2107 , mypolls 0 +myconn 0 connecting thr dbd5b480 , thread 2107 , mypolls 0 +thr dbd5b600 , status 1 +connecting thr dbd5b600 , thread 2108 , mypolls 0 +myconn 0 connecting thr dbd5b600 , thread 2108 , mypolls 0 +thr dbd5b780 , status 1 +connecting thr dbd5b780 , thread 2109 , mypolls 0 +myconn 0 connecting thr dbd5b780 , thread 2109 , mypolls 0 +thr dbd5b900 , status 1 +connecting thr dbd5b900 , thread 2110 , mypolls 0 +myconn 0 connecting thr dbd5b900 , thread 2110 , mypolls 0 +thr dbd5ba80 , status 1 +connecting thr dbd5ba80 , thread 2111 , mypolls 0 +myconn 0 connecting thr dbd5ba80 , thread 2111 , mypolls 0 +thr dbd5bc00 , status 1 +connecting thr dbd5bc00 , thread 2112 , mypolls 0 +myconn 0 connecting thr dbd5bc00 , thread 2112 , mypolls 0 +thr dbd5bd80 , status 1 +connecting thr dbd5bd80 , thread 2113 , mypolls 0 +myconn 0 connecting thr dbd5bd80 , thread 2113 , mypolls 0 +thr dbd5bf00 , status 1 +connecting thr dbd5bf00 , thread 2114 , mypolls 0 +myconn 0 connecting thr dbd5bf00 , thread 2114 , mypolls 0 +thr dbd5c080 , status 1 +connecting thr dbd5c080 , thread 2115 , mypolls 0 +myconn 0 connecting thr dbd5c080 , thread 2115 , mypolls 0 +thr dbd5c200 , status 1 +connecting thr dbd5c200 , thread 2116 , mypolls 0 +myconn 0 connecting thr dbd5c200 , thread 2116 , mypolls 0 +thr dbd5c380 , status 1 +connecting thr dbd5c380 , thread 2117 , mypolls 0 +myconn 0 connecting thr dbd5c380 , thread 2117 , mypolls 0 +thr dbd5c500 , status 1 +connecting thr dbd5c500 , thread 2118 , mypolls 0 +myconn 0 connecting thr dbd5c500 , thread 2118 , mypolls 0 +thr dbd5c680 , status 1 +connecting thr dbd5c680 , thread 2119 , mypolls 0 +myconn 0 connecting thr dbd5c680 , thread 2119 , mypolls 0 +thr dbd5c800 , status 1 +connecting thr dbd5c800 , thread 2120 , mypolls 0 +myconn 0 connecting thr dbd5c800 , thread 2120 , mypolls 0 +thr dbd5c980 , status 1 +connecting thr dbd5c980 , thread 2121 , mypolls 0 +myconn 0 connecting thr dbd5c980 , thread 2121 , mypolls 0 +thr dbd5cb00 , status 1 +connecting thr dbd5cb00 , thread 2122 , mypolls 0 +myconn 0 connecting thr dbd5cb00 , thread 2122 , mypolls 0 +thr dbd5cc80 , status 1 +connecting thr dbd5cc80 , thread 2123 , mypolls 0 +myconn 0 connecting thr dbd5cc80 , thread 2123 , mypolls 0 +thr dbd5ce00 , status 1 +connecting thr dbd5ce00 , thread 2124 , mypolls 0 +myconn 0 connecting thr dbd5ce00 , thread 2124 , mypolls 0 +thr dbd5cf80 , status 1 +connecting thr dbd5cf80 , thread 2125 , mypolls 0 +myconn 0 connecting thr dbd5cf80 , thread 2125 , mypolls 0 +thr dbd5d100 , status 1 +connecting thr dbd5d100 , thread 2126 , mypolls 0 +myconn 0 connecting thr dbd5d100 , thread 2126 , mypolls 0 +thr dbd5d280 , status 1 +connecting thr dbd5d280 , thread 2127 , mypolls 0 +myconn 0 connecting thr dbd5d280 , thread 2127 , mypolls 0 +thr dbd5d400 , status 1 +connecting thr dbd5d400 , thread 2128 , mypolls 0 +myconn 0 connecting thr dbd5d400 , thread 2128 , mypolls 0 +thr dbd5d580 , status 1 +connecting thr dbd5d580 , thread 2129 , mypolls 0 +myconn 0 connecting thr dbd5d580 , thread 2129 , mypolls 0 +thr dbd5d700 , status 1 +connecting thr dbd5d700 , thread 2130 , mypolls 0 +myconn 0 connecting thr dbd5d700 , thread 2130 , mypolls 0 +thr dbd5d880 , status 1 +connecting thr dbd5d880 , thread 2131 , mypolls 0 +myconn 0 connecting thr dbd5d880 , thread 2131 , mypolls 0 +thr dbd5da00 , status 1 +connecting thr dbd5da00 , thread 2132 , mypolls 0 +myconn 0 connecting thr dbd5da00 , thread 2132 , mypolls 0 +thr dbd5db80 , status 1 +connecting thr dbd5db80 , thread 2133 , mypolls 0 +myconn 0 connecting thr dbd5db80 , thread 2133 , mypolls 0 +thr dbd5dd00 , status 1 +connecting thr dbd5dd00 , thread 2134 , mypolls 0 +myconn 0 connecting thr dbd5dd00 , thread 2134 , mypolls 0 +thr dbd5de80 , status 1 +connecting thr dbd5de80 , thread 2135 , mypolls 0 +myconn 0 connecting thr dbd5de80 , thread 2135 , mypolls 0 +thr dbbbc000 , status 1 +connecting thr dbbbc000 , thread 2136 , mypolls 0 +myconn 0 connecting thr dbbbc000 , thread 2136 , mypolls 0 +thr dbbbc180 , status 1 +connecting thr dbbbc180 , thread 2137 , mypolls 0 +myconn 0 connecting thr dbbbc180 , thread 2137 , mypolls 0 +thr dbbbc300 , status 1 +connecting thr dbbbc300 , thread 2138 , mypolls 0 +myconn 0 connecting thr dbbbc300 , thread 2138 , mypolls 0 +thr dbbbc480 , status 1 +connecting thr dbbbc480 , thread 2139 , mypolls 0 +myconn 0 connecting thr dbbbc480 , thread 2139 , mypolls 0 +thr dbbbc600 , status 1 +connecting thr dbbbc600 , thread 2140 , mypolls 0 +myconn 0 connecting thr dbbbc600 , thread 2140 , mypolls 0 +thr dbbbc780 , status 1 +connecting thr dbbbc780 , thread 2141 , mypolls 0 +myconn 0 connecting thr dbbbc780 , thread 2141 , mypolls 0 +thr dbbbc900 , status 1 +connecting thr dbbbc900 , thread 2142 , mypolls 0 +myconn 0 connecting thr dbbbc900 , thread 2142 , mypolls 0 +thr dbbbca80 , status 1 +connecting thr dbbbca80 , thread 2143 , mypolls 0 +myconn 0 connecting thr dbbbca80 , thread 2143 , mypolls 0 +thr dbbbcc00 , status 1 +connecting thr dbbbcc00 , thread 2144 , mypolls 0 +myconn 0 connecting thr dbbbcc00 , thread 2144 , mypolls 0 +thr dbbbcd80 , status 1 +connecting thr dbbbcd80 , thread 2145 , mypolls 0 +myconn 0 connecting thr dbbbcd80 , thread 2145 , mypolls 0 +thr dbbbcf00 , status 1 +connecting thr dbbbcf00 , thread 2146 , mypolls 0 +myconn 0 connecting thr dbbbcf00 , thread 2146 , mypolls 0 +thr dbbbd080 , status 1 +connecting thr dbbbd080 , thread 2147 , mypolls 0 +myconn 0 connecting thr dbbbd080 , thread 2147 , mypolls 0 +thr dbbbd200 , status 1 +connecting thr dbbbd200 , thread 2148 , mypolls 0 +myconn 0 connecting thr dbbbd200 , thread 2148 , mypolls 0 +thr dbbbd380 , status 1 +connecting thr dbbbd380 , thread 2149 , mypolls 0 +myconn 0 connecting thr dbbbd380 , thread 2149 , mypolls 0 +thr dbbbd500 , status 1 +connecting thr dbbbd500 , thread 2150 , mypolls 0 +myconn 0 connecting thr dbbbd500 , thread 2150 , mypolls 0 +thr dbbbd680 , status 1 +connecting thr dbbbd680 , thread 2151 , mypolls 0 +myconn 0 connecting thr dbbbd680 , thread 2151 , mypolls 0 +thr dbbbd800 , status 1 +connecting thr dbbbd800 , thread 2152 , mypolls 0 +myconn 0 connecting thr dbbbd800 , thread 2152 , mypolls 0 +thr dbbbd980 , status 1 +connecting thr dbbbd980 , thread 2153 , mypolls 0 +myconn 0 connecting thr dbbbd980 , thread 2153 , mypolls 0 +thr dbbbdb00 , status 1 +connecting thr dbbbdb00 , thread 2154 , mypolls 0 +myconn 0 connecting thr dbbbdb00 , thread 2154 , mypolls 0 +thr dbbbdc80 , status 1 +connecting thr dbbbdc80 , thread 2155 , mypolls 0 +myconn 0 connecting thr dbbbdc80 , thread 2155 , mypolls 0 +thr dbbbde00 , status 1 +connecting thr dbbbde00 , thread 2156 , mypolls 0 +myconn 0 connecting thr dbbbde00 , thread 2156 , mypolls 0 +thr dbbbdf80 , status 1 +connecting thr dbbbdf80 , thread 2157 , mypolls 0 +myconn 0 connecting thr dbbbdf80 , thread 2157 , mypolls 0 +thr dbbbe100 , status 1 +connecting thr dbbbe100 , thread 2158 , mypolls 0 +myconn 0 connecting thr dbbbe100 , thread 2158 , mypolls 0 +thr dbbbe280 , status 1 +connecting thr dbbbe280 , thread 2159 , mypolls 0 +myconn 0 connecting thr dbbbe280 , thread 2159 , mypolls 0 +thr dbbbe400 , status 1 +connecting thr dbbbe400 , thread 2160 , mypolls 0 +myconn 0 connecting thr dbbbe400 , thread 2160 , mypolls 0 +thr dbbbe580 , status 1 +connecting thr dbbbe580 , thread 2161 , mypolls 0 +myconn 0 connecting thr dbbbe580 , thread 2161 , mypolls 0 +thr dbbbe700 , status 1 +connecting thr dbbbe700 , thread 2162 , mypolls 0 +myconn 0 connecting thr dbbbe700 , thread 2162 , mypolls 0 +thr dbbbe880 , status 1 +connecting thr dbbbe880 , thread 2163 , mypolls 0 +myconn 0 connecting thr dbbbe880 , thread 2163 , mypolls 0 +thr dbbbea00 , status 1 +connecting thr dbbbea00 , thread 2164 , mypolls 0 +myconn 0 connecting thr dbbbea00 , thread 2164 , mypolls 0 +thr dbbbeb80 , status 1 +connecting thr dbbbeb80 , thread 2165 , mypolls 0 +myconn 0 connecting thr dbbbeb80 , thread 2165 , mypolls 0 +thr dbbbed00 , status 1 +connecting thr dbbbed00 , thread 2166 , mypolls 0 +myconn 0 connecting thr dbbbed00 , thread 2166 , mypolls 0 +thr dbbbee80 , status 1 +connecting thr dbbbee80 , thread 2167 , mypolls 0 +myconn 0 connecting thr dbbbee80 , thread 2167 , mypolls 0 +thr db9f9000 , status 1 +connecting thr db9f9000 , thread 2168 , mypolls 0 +myconn 0 connecting thr db9f9000 , thread 2168 , mypolls 0 +thr db9f9180 , status 1 +connecting thr db9f9180 , thread 2169 , mypolls 0 +myconn 0 connecting thr db9f9180 , thread 2169 , mypolls 0 +thr db9f9300 , status 1 +connecting thr db9f9300 , thread 2170 , mypolls 0 +myconn 0 connecting thr db9f9300 , thread 2170 , mypolls 0 +thr db9f9480 , status 1 +connecting thr db9f9480 , thread 2171 , mypolls 0 +myconn 0 connecting thr db9f9480 , thread 2171 , mypolls 0 +thr db9f9600 , status 1 +connecting thr db9f9600 , thread 2172 , mypolls 0 +myconn 0 connecting thr db9f9600 , thread 2172 , mypolls 0 +thr db9f9780 , status 1 +connecting thr db9f9780 , thread 2173 , mypolls 0 +myconn 0 connecting thr db9f9780 , thread 2173 , mypolls 0 +thr db9f9900 , status 1 +connecting thr db9f9900 , thread 2174 , mypolls 0 +myconn 0 connecting thr db9f9900 , thread 2174 , mypolls 0 +thr db9f9a80 , status 1 +connecting thr db9f9a80 , thread 2175 , mypolls 0 +myconn 0 connecting thr db9f9a80 , thread 2175 , mypolls 0 +thr db9f9c00 , status 1 +connecting thr db9f9c00 , thread 2176 , mypolls 0 +myconn 0 connecting thr db9f9c00 , thread 2176 , mypolls 0 +thr db9f9d80 , status 1 +connecting thr db9f9d80 , thread 2177 , mypolls 0 +myconn 0 connecting thr db9f9d80 , thread 2177 , mypolls 0 +thr db9f9f00 , status 1 +connecting thr db9f9f00 , thread 2178 , mypolls 0 +myconn 0 connecting thr db9f9f00 , thread 2178 , mypolls 0 +thr db9fa080 , status 1 +connecting thr db9fa080 , thread 2179 , mypolls 0 +myconn 0 connecting thr db9fa080 , thread 2179 , mypolls 0 +thr db9fa200 , status 1 +connecting thr db9fa200 , thread 2180 , mypolls 0 +myconn 0 connecting thr db9fa200 , thread 2180 , mypolls 0 +thr db9fa380 , status 1 +connecting thr db9fa380 , thread 2181 , mypolls 0 +myconn 0 connecting thr db9fa380 , thread 2181 , mypolls 0 +thr db9fa500 , status 1 +connecting thr db9fa500 , thread 2182 , mypolls 0 +myconn 0 connecting thr db9fa500 , thread 2182 , mypolls 0 +thr db9fa680 , status 1 +connecting thr db9fa680 , thread 2183 , mypolls 0 +myconn 0 connecting thr db9fa680 , thread 2183 , mypolls 0 +thr db9fa800 , status 1 +connecting thr db9fa800 , thread 2184 , mypolls 0 +myconn 0 connecting thr db9fa800 , thread 2184 , mypolls 0 +thr db9fa980 , status 1 +connecting thr db9fa980 , thread 2185 , mypolls 0 +myconn 0 connecting thr db9fa980 , thread 2185 , mypolls 0 +thr db9fab00 , status 1 +connecting thr db9fab00 , thread 2186 , mypolls 0 +myconn 0 connecting thr db9fab00 , thread 2186 , mypolls 0 +thr db9fac80 , status 1 +connecting thr db9fac80 , thread 2187 , mypolls 0 +myconn 0 connecting thr db9fac80 , thread 2187 , mypolls 0 +thr db9fae00 , status 1 +connecting thr db9fae00 , thread 2188 , mypolls 0 +myconn 0 connecting thr db9fae00 , thread 2188 , mypolls 0 +thr db9faf80 , status 1 +connecting thr db9faf80 , thread 2189 , mypolls 0 +myconn 0 connecting thr db9faf80 , thread 2189 , mypolls 0 +thr db9fb100 , status 1 +connecting thr db9fb100 , thread 2190 , mypolls 0 +myconn 0 connecting thr db9fb100 , thread 2190 , mypolls 0 +thr db9fb280 , status 1 +connecting thr db9fb280 , thread 2191 , mypolls 0 +myconn 0 connecting thr db9fb280 , thread 2191 , mypolls 0 +thr db9fb400 , status 1 +connecting thr db9fb400 , thread 2192 , mypolls 0 +myconn 0 connecting thr db9fb400 , thread 2192 , mypolls 0 +thr db9fb580 , status 1 +connecting thr db9fb580 , thread 2193 , mypolls 0 +myconn 0 connecting thr db9fb580 , thread 2193 , mypolls 0 +thr db9fb700 , status 1 +connecting thr db9fb700 , thread 2194 , mypolls 0 +myconn 0 connecting thr db9fb700 , thread 2194 , mypolls 0 +thr db9fb880 , status 1 +connecting thr db9fb880 , thread 2195 , mypolls 0 +myconn 0 connecting thr db9fb880 , thread 2195 , mypolls 0 +thr db9fba00 , status 1 +connecting thr db9fba00 , thread 2196 , mypolls 0 +myconn 0 connecting thr db9fba00 , thread 2196 , mypolls 0 +thr db9fbb80 , status 1 +connecting thr db9fbb80 , thread 2197 , mypolls 0 +myconn 0 connecting thr db9fbb80 , thread 2197 , mypolls 0 +thr db9fbd00 , status 1 +connecting thr db9fbd00 , thread 2198 , mypolls 0 +myconn 0 connecting thr db9fbd00 , thread 2198 , mypolls 0 +thr db9fbe80 , status 1 +connecting thr db9fbe80 , thread 2199 , mypolls 0 +myconn 0 connecting thr db9fbe80 , thread 2199 , mypolls 0 +thr db7fa000 , status 1 +connecting thr db7fa000 , thread 2200 , mypolls 0 +myconn 0 connecting thr db7fa000 , thread 2200 , mypolls 0 +thr db7fa180 , status 1 +connecting thr db7fa180 , thread 2201 , mypolls 0 +myconn 0 connecting thr db7fa180 , thread 2201 , mypolls 0 +thr db7fa300 , status 1 +connecting thr db7fa300 , thread 2202 , mypolls 0 +myconn 0 connecting thr db7fa300 , thread 2202 , mypolls 0 +thr db7fa480 , status 1 +connecting thr db7fa480 , thread 2203 , mypolls 0 +myconn 0 connecting thr db7fa480 , thread 2203 , mypolls 0 +thr db7fa600 , status 1 +connecting thr db7fa600 , thread 2204 , mypolls 0 +myconn 0 connecting thr db7fa600 , thread 2204 , mypolls 0 +thr db7fa780 , status 1 +connecting thr db7fa780 , thread 2205 , mypolls 0 +myconn 0 connecting thr db7fa780 , thread 2205 , mypolls 0 +thr db7fa900 , status 1 +connecting thr db7fa900 , thread 2206 , mypolls 0 +myconn 0 connecting thr db7fa900 , thread 2206 , mypolls 0 +thr db7faa80 , status 1 +connecting thr db7faa80 , thread 2207 , mypolls 0 +myconn 0 connecting thr db7faa80 , thread 2207 , mypolls 0 +thr db7fac00 , status 1 +connecting thr db7fac00 , thread 2208 , mypolls 0 +myconn 0 connecting thr db7fac00 , thread 2208 , mypolls 0 +thr db7fad80 , status 1 +connecting thr db7fad80 , thread 2209 , mypolls 0 +myconn 0 connecting thr db7fad80 , thread 2209 , mypolls 0 +thr db7faf00 , status 1 +connecting thr db7faf00 , thread 2210 , mypolls 0 +myconn 0 connecting thr db7faf00 , thread 2210 , mypolls 0 +thr db7fb080 , status 1 +connecting thr db7fb080 , thread 2211 , mypolls 0 +myconn 0 connecting thr db7fb080 , thread 2211 , mypolls 0 +thr db7fb200 , status 1 +connecting thr db7fb200 , thread 2212 , mypolls 0 +myconn 0 connecting thr db7fb200 , thread 2212 , mypolls 0 +thr db7fb380 , status 1 +connecting thr db7fb380 , thread 2213 , mypolls 0 +myconn 0 connecting thr db7fb380 , thread 2213 , mypolls 0 +thr db7fb500 , status 1 +connecting thr db7fb500 , thread 2214 , mypolls 0 +myconn 0 connecting thr db7fb500 , thread 2214 , mypolls 0 +thr db7fb680 , status 1 +connecting thr db7fb680 , thread 2215 , mypolls 0 +myconn 0 connecting thr db7fb680 , thread 2215 , mypolls 0 +thr db7fb800 , status 1 +connecting thr db7fb800 , thread 2216 , mypolls 0 +myconn 0 connecting thr db7fb800 , thread 2216 , mypolls 0 +thr db7fb980 , status 1 +connecting thr db7fb980 , thread 2217 , mypolls 0 +myconn 0 connecting thr db7fb980 , thread 2217 , mypolls 0 +thr db7fbb00 , status 1 +connecting thr db7fbb00 , thread 2218 , mypolls 0 +myconn 0 connecting thr db7fbb00 , thread 2218 , mypolls 0 +thr db7fbc80 , status 1 +connecting thr db7fbc80 , thread 2219 , mypolls 0 +myconn 0 connecting thr db7fbc80 , thread 2219 , mypolls 0 +thr db7fbe00 , status 1 +connecting thr db7fbe00 , thread 2220 , mypolls 0 +myconn 0 connecting thr db7fbe00 , thread 2220 , mypolls 0 +thr db7fbf80 , status 1 +connecting thr db7fbf80 , thread 2221 , mypolls 0 +myconn 0 connecting thr db7fbf80 , thread 2221 , mypolls 0 +thr db7fc100 , status 1 +connecting thr db7fc100 , thread 2222 , mypolls 0 +myconn 0 connecting thr db7fc100 , thread 2222 , mypolls 0 +thr db7fc280 , status 1 +connecting thr db7fc280 , thread 2223 , mypolls 0 +myconn 0 connecting thr db7fc280 , thread 2223 , mypolls 0 +thr db7fc400 , status 1 +connecting thr db7fc400 , thread 2224 , mypolls 0 +myconn 0 connecting thr db7fc400 , thread 2224 , mypolls 0 +thr db7fc580 , status 1 +connecting thr db7fc580 , thread 2225 , mypolls 0 +myconn 0 connecting thr db7fc580 , thread 2225 , mypolls 0 +thr db7fc700 , status 1 +connecting thr db7fc700 , thread 2226 , mypolls 0 +myconn 0 connecting thr db7fc700 , thread 2226 , mypolls 0 +thr db7fc880 , status 1 +connecting thr db7fc880 , thread 2227 , mypolls 0 +myconn 0 connecting thr db7fc880 , thread 2227 , mypolls 0 +thr db7fca00 , status 1 +connecting thr db7fca00 , thread 2228 , mypolls 0 +myconn 0 connecting thr db7fca00 , thread 2228 , mypolls 0 +thr db7fcb80 , status 1 +connecting thr db7fcb80 , thread 2229 , mypolls 0 +myconn 0 connecting thr db7fcb80 , thread 2229 , mypolls 0 +thr db7fcd00 , status 1 +connecting thr db7fcd00 , thread 2230 , mypolls 0 +myconn 0 connecting thr db7fcd00 , thread 2230 , mypolls 0 +thr db7fce80 , status 1 +connecting thr db7fce80 , thread 2231 , mypolls 0 +myconn 0 connecting thr db7fce80 , thread 2231 , mypolls 0 +thr db2ef000 , status 1 +connecting thr db2ef000 , thread 2232 , mypolls 0 +myconn 0 connecting thr db2ef000 , thread 2232 , mypolls 0 +thr db2ef180 , status 1 +connecting thr db2ef180 , thread 2233 , mypolls 0 +myconn 0 connecting thr db2ef180 , thread 2233 , mypolls 0 +thr db2ef300 , status 1 +connecting thr db2ef300 , thread 2234 , mypolls 0 +myconn 0 connecting thr db2ef300 , thread 2234 , mypolls 0 +thr db2ef480 , status 1 +connecting thr db2ef480 , thread 2235 , mypolls 0 +myconn 0 connecting thr db2ef480 , thread 2235 , mypolls 0 +thr db2ef600 , status 1 +connecting thr db2ef600 , thread 2236 , mypolls 0 +myconn 0 connecting thr db2ef600 , thread 2236 , mypolls 0 +thr db2ef780 , status 1 +connecting thr db2ef780 , thread 2237 , mypolls 0 +myconn 0 connecting thr db2ef780 , thread 2237 , mypolls 0 +thr db2ef900 , status 1 +connecting thr db2ef900 , thread 2238 , mypolls 0 +myconn 0 connecting thr db2ef900 , thread 2238 , mypolls 0 +thr db2efa80 , status 1 +connecting thr db2efa80 , thread 2239 , mypolls 0 +myconn 0 connecting thr db2efa80 , thread 2239 , mypolls 0 +thr db2efc00 , status 1 +connecting thr db2efc00 , thread 2240 , mypolls 0 +myconn 0 connecting thr db2efc00 , thread 2240 , mypolls 0 +thr db2efd80 , status 1 +connecting thr db2efd80 , thread 2241 , mypolls 0 +myconn 0 connecting thr db2efd80 , thread 2241 , mypolls 0 +thr db2eff00 , status 1 +connecting thr db2eff00 , thread 2242 , mypolls 0 +myconn 0 connecting thr db2eff00 , thread 2242 , mypolls 0 +thr db2f0080 , status 1 +connecting thr db2f0080 , thread 2243 , mypolls 0 +myconn 0 connecting thr db2f0080 , thread 2243 , mypolls 0 +thr db2f0200 , status 1 +connecting thr db2f0200 , thread 2244 , mypolls 0 +myconn 0 connecting thr db2f0200 , thread 2244 , mypolls 0 +thr db2f0380 , status 1 +connecting thr db2f0380 , thread 2245 , mypolls 0 +myconn 0 connecting thr db2f0380 , thread 2245 , mypolls 0 +thr db2f0500 , status 1 +connecting thr db2f0500 , thread 2246 , mypolls 0 +myconn 0 connecting thr db2f0500 , thread 2246 , mypolls 0 +thr db2f0680 , status 1 +connecting thr db2f0680 , thread 2247 , mypolls 0 +myconn 0 connecting thr db2f0680 , thread 2247 , mypolls 0 +thr db2f0800 , status 1 +connecting thr db2f0800 , thread 2248 , mypolls 0 +myconn 0 connecting thr db2f0800 , thread 2248 , mypolls 0 +thr db2f0980 , status 1 +connecting thr db2f0980 , thread 2249 , mypolls 0 +myconn 0 connecting thr db2f0980 , thread 2249 , mypolls 0 +thr db2f0b00 , status 1 +connecting thr db2f0b00 , thread 2250 , mypolls 0 +myconn 0 connecting thr db2f0b00 , thread 2250 , mypolls 0 +thr db2f0c80 , status 1 +connecting thr db2f0c80 , thread 2251 , mypolls 0 +myconn 0 connecting thr db2f0c80 , thread 2251 , mypolls 0 +thr db2f0e00 , status 1 +connecting thr db2f0e00 , thread 2252 , mypolls 0 +myconn 0 connecting thr db2f0e00 , thread 2252 , mypolls 0 +thr db2f0f80 , status 1 +connecting thr db2f0f80 , thread 2253 , mypolls 0 +myconn 0 connecting thr db2f0f80 , thread 2253 , mypolls 0 +thr db2f1100 , status 1 +connecting thr db2f1100 , thread 2254 , mypolls 0 +myconn 0 connecting thr db2f1100 , thread 2254 , mypolls 0 +thr db2f1280 , status 1 +connecting thr db2f1280 , thread 2255 , mypolls 0 +myconn 0 connecting thr db2f1280 , thread 2255 , mypolls 0 +thr db2f1400 , status 1 +connecting thr db2f1400 , thread 2256 , mypolls 0 +myconn 0 connecting thr db2f1400 , thread 2256 , mypolls 0 +thr db2f1580 , status 1 +connecting thr db2f1580 , thread 2257 , mypolls 0 +myconn 0 connecting thr db2f1580 , thread 2257 , mypolls 0 +thr db2f1700 , status 1 +connecting thr db2f1700 , thread 2258 , mypolls 0 +myconn 0 connecting thr db2f1700 , thread 2258 , mypolls 0 +thr db2f1880 , status 1 +connecting thr db2f1880 , thread 2259 , mypolls 0 +myconn 0 connecting thr db2f1880 , thread 2259 , mypolls 0 +thr db2f1a00 , status 1 +connecting thr db2f1a00 , thread 2260 , mypolls 0 +myconn 0 connecting thr db2f1a00 , thread 2260 , mypolls 0 +thr db2f1b80 , status 1 +connecting thr db2f1b80 , thread 2261 , mypolls 0 +myconn 0 connecting thr db2f1b80 , thread 2261 , mypolls 0 +thr db2f1d00 , status 1 +connecting thr db2f1d00 , thread 2262 , mypolls 0 +myconn 0 connecting thr db2f1d00 , thread 2262 , mypolls 0 +thr db2f1e80 , status 1 +connecting thr db2f1e80 , thread 2263 , mypolls 0 +myconn 0 connecting thr db2f1e80 , thread 2263 , mypolls 0 +thr db151000 , status 1 +connecting thr db151000 , thread 2264 , mypolls 0 +myconn 0 connecting thr db151000 , thread 2264 , mypolls 0 +thr db151180 , status 1 +connecting thr db151180 , thread 2265 , mypolls 0 +myconn 0 connecting thr db151180 , thread 2265 , mypolls 0 +thr db151300 , status 1 +connecting thr db151300 , thread 2266 , mypolls 0 +myconn 0 connecting thr db151300 , thread 2266 , mypolls 0 +thr db151480 , status 1 +connecting thr db151480 , thread 2267 , mypolls 0 +myconn 0 connecting thr db151480 , thread 2267 , mypolls 0 +thr db151600 , status 1 +connecting thr db151600 , thread 2268 , mypolls 0 +myconn 0 connecting thr db151600 , thread 2268 , mypolls 0 +thr db151780 , status 1 +connecting thr db151780 , thread 2269 , mypolls 0 +myconn 0 connecting thr db151780 , thread 2269 , mypolls 0 +thr db151900 , status 1 +connecting thr db151900 , thread 2270 , mypolls 0 +myconn 0 connecting thr db151900 , thread 2270 , mypolls 0 +thr db151a80 , status 1 +connecting thr db151a80 , thread 2271 , mypolls 0 +myconn 0 connecting thr db151a80 , thread 2271 , mypolls 0 +thr db151c00 , status 1 +connecting thr db151c00 , thread 2272 , mypolls 0 +myconn 0 connecting thr db151c00 , thread 2272 , mypolls 0 +thr db151d80 , status 1 +connecting thr db151d80 , thread 2273 , mypolls 0 +myconn 0 connecting thr db151d80 , thread 2273 , mypolls 0 +thr db151f00 , status 1 +connecting thr db151f00 , thread 2274 , mypolls 0 +myconn 0 connecting thr db151f00 , thread 2274 , mypolls 0 +thr db152080 , status 1 +connecting thr db152080 , thread 2275 , mypolls 0 +myconn 0 connecting thr db152080 , thread 2275 , mypolls 0 +thr db152200 , status 1 +connecting thr db152200 , thread 2276 , mypolls 0 +myconn 0 connecting thr db152200 , thread 2276 , mypolls 0 +thr db152380 , status 1 +connecting thr db152380 , thread 2277 , mypolls 0 +myconn 0 connecting thr db152380 , thread 2277 , mypolls 0 +thr db152500 , status 1 +connecting thr db152500 , thread 2278 , mypolls 0 +myconn 0 connecting thr db152500 , thread 2278 , mypolls 0 +thr db152680 , status 1 +connecting thr db152680 , thread 2279 , mypolls 0 +myconn 0 connecting thr db152680 , thread 2279 , mypolls 0 +thr db152800 , status 1 +connecting thr db152800 , thread 2280 , mypolls 0 +myconn 0 connecting thr db152800 , thread 2280 , mypolls 0 +thr db152980 , status 1 +connecting thr db152980 , thread 2281 , mypolls 0 +myconn 0 connecting thr db152980 , thread 2281 , mypolls 0 +thr db152b00 , status 1 +connecting thr db152b00 , thread 2282 , mypolls 0 +myconn 0 connecting thr db152b00 , thread 2282 , mypolls 0 +thr db152c80 , status 1 +connecting thr db152c80 , thread 2283 , mypolls 0 +myconn 0 connecting thr db152c80 , thread 2283 , mypolls 0 +thr db152e00 , status 1 +connecting thr db152e00 , thread 2284 , mypolls 0 +myconn 0 connecting thr db152e00 , thread 2284 , mypolls 0 +thr db152f80 , status 1 +connecting thr db152f80 , thread 2285 , mypolls 0 +myconn 0 connecting thr db152f80 , thread 2285 , mypolls 0 +thr db153100 , status 1 +connecting thr db153100 , thread 2286 , mypolls 0 +myconn 0 connecting thr db153100 , thread 2286 , mypolls 0 +thr db153280 , status 1 +connecting thr db153280 , thread 2287 , mypolls 0 +myconn 0 connecting thr db153280 , thread 2287 , mypolls 0 +thr db153400 , status 1 +connecting thr db153400 , thread 2288 , mypolls 0 +myconn 0 connecting thr db153400 , thread 2288 , mypolls 0 +thr db153580 , status 1 +connecting thr db153580 , thread 2289 , mypolls 0 +myconn 0 connecting thr db153580 , thread 2289 , mypolls 0 +thr db153700 , status 1 +connecting thr db153700 , thread 2290 , mypolls 0 +myconn 0 connecting thr db153700 , thread 2290 , mypolls 0 +thr db153880 , status 1 +connecting thr db153880 , thread 2291 , mypolls 0 +myconn 0 connecting thr db153880 , thread 2291 , mypolls 0 +thr db153a00 , status 1 +connecting thr db153a00 , thread 2292 , mypolls 0 +myconn 0 connecting thr db153a00 , thread 2292 , mypolls 0 +thr db153b80 , status 1 +connecting thr db153b80 , thread 2293 , mypolls 0 +myconn 0 connecting thr db153b80 , thread 2293 , mypolls 0 +thr db153d00 , status 1 +connecting thr db153d00 , thread 2294 , mypolls 0 +myconn 0 connecting thr db153d00 , thread 2294 , mypolls 0 +thr db153e80 , status 1 +connecting thr db153e80 , thread 2295 , mypolls 0 +myconn 0 connecting thr db153e80 , thread 2295 , mypolls 0 +thr dafb4000 , status 1 +connecting thr dafb4000 , thread 2296 , mypolls 0 +myconn 0 connecting thr dafb4000 , thread 2296 , mypolls 0 +thr dafb4180 , status 1 +connecting thr dafb4180 , thread 2297 , mypolls 0 +myconn 0 connecting thr dafb4180 , thread 2297 , mypolls 0 +thr dafb4300 , status 1 +connecting thr dafb4300 , thread 2298 , mypolls 0 +myconn 0 connecting thr dafb4300 , thread 2298 , mypolls 0 +thr dafb4480 , status 1 +connecting thr dafb4480 , thread 2299 , mypolls 0 +myconn 0 connecting thr dafb4480 , thread 2299 , mypolls 0 +thr dafb4600 , status 1 +connecting thr dafb4600 , thread 2300 , mypolls 0 +myconn 0 connecting thr dafb4600 , thread 2300 , mypolls 0 +thr dafb4780 , status 1 +connecting thr dafb4780 , thread 2301 , mypolls 0 +myconn 0 connecting thr dafb4780 , thread 2301 , mypolls 0 +thr dafb4900 , status 1 +connecting thr dafb4900 , thread 2302 , mypolls 0 +myconn 0 connecting thr dafb4900 , thread 2302 , mypolls 0 +thr dafb4a80 , status 1 +connecting thr dafb4a80 , thread 2303 , mypolls 0 +myconn 0 connecting thr dafb4a80 , thread 2303 , mypolls 0 +thr dafb4c00 , status 1 +connecting thr dafb4c00 , thread 2304 , mypolls 0 +myconn 0 connecting thr dafb4c00 , thread 2304 , mypolls 0 +thr dafb4d80 , status 1 +connecting thr dafb4d80 , thread 2305 , mypolls 0 +myconn 0 connecting thr dafb4d80 , thread 2305 , mypolls 0 +thr dafb4f00 , status 1 +connecting thr dafb4f00 , thread 2306 , mypolls 0 +myconn 0 connecting thr dafb4f00 , thread 2306 , mypolls 0 +thr dafb5080 , status 1 +connecting thr dafb5080 , thread 2307 , mypolls 0 +myconn 0 connecting thr dafb5080 , thread 2307 , mypolls 0 +thr dafb5200 , status 1 +connecting thr dafb5200 , thread 2308 , mypolls 0 +myconn 0 connecting thr dafb5200 , thread 2308 , mypolls 0 +thr dafb5380 , status 1 +connecting thr dafb5380 , thread 2309 , mypolls 0 +myconn 0 connecting thr dafb5380 , thread 2309 , mypolls 0 +thr dafb5500 , status 1 +connecting thr dafb5500 , thread 2310 , mypolls 0 +myconn 0 connecting thr dafb5500 , thread 2310 , mypolls 0 +thr dafb5680 , status 1 +connecting thr dafb5680 , thread 2311 , mypolls 0 +myconn 0 connecting thr dafb5680 , thread 2311 , mypolls 0 +thr dafb5800 , status 1 +connecting thr dafb5800 , thread 2312 , mypolls 0 +myconn 0 connecting thr dafb5800 , thread 2312 , mypolls 0 +thr dafb5980 , status 1 +connecting thr dafb5980 , thread 2313 , mypolls 0 +myconn 0 connecting thr dafb5980 , thread 2313 , mypolls 0 +thr dafb5b00 , status 1 +connecting thr dafb5b00 , thread 2314 , mypolls 0 +myconn 0 connecting thr dafb5b00 , thread 2314 , mypolls 0 +thr dafb5c80 , status 1 +connecting thr dafb5c80 , thread 2315 , mypolls 0 +myconn 0 connecting thr dafb5c80 , thread 2315 , mypolls 0 +thr dafb5e00 , status 1 +connecting thr dafb5e00 , thread 2316 , mypolls 0 +myconn 0 connecting thr dafb5e00 , thread 2316 , mypolls 0 +thr dafb5f80 , status 1 +connecting thr dafb5f80 , thread 2317 , mypolls 0 +myconn 0 connecting thr dafb5f80 , thread 2317 , mypolls 0 +thr dafb6100 , status 1 +connecting thr dafb6100 , thread 2318 , mypolls 0 +myconn 0 connecting thr dafb6100 , thread 2318 , mypolls 0 +thr dafb6280 , status 1 +connecting thr dafb6280 , thread 2319 , mypolls 0 +myconn 0 connecting thr dafb6280 , thread 2319 , mypolls 0 +thr dafb6400 , status 1 +connecting thr dafb6400 , thread 2320 , mypolls 0 +myconn 0 connecting thr dafb6400 , thread 2320 , mypolls 0 +thr dafb6580 , status 1 +connecting thr dafb6580 , thread 2321 , mypolls 0 +myconn 0 connecting thr dafb6580 , thread 2321 , mypolls 0 +thr dafb6700 , status 1 +connecting thr dafb6700 , thread 2322 , mypolls 0 +myconn 0 connecting thr dafb6700 , thread 2322 , mypolls 0 +thr dafb6880 , status 1 +connecting thr dafb6880 , thread 2323 , mypolls 0 +myconn 0 connecting thr dafb6880 , thread 2323 , mypolls 0 +thr dafb6a00 , status 1 +connecting thr dafb6a00 , thread 2324 , mypolls 0 +myconn 0 connecting thr dafb6a00 , thread 2324 , mypolls 0 +thr dafb6b80 , status 1 +connecting thr dafb6b80 , thread 2325 , mypolls 0 +myconn 0 connecting thr dafb6b80 , thread 2325 , mypolls 0 +thr dafb6d00 , status 1 +connecting thr dafb6d00 , thread 2326 , mypolls 0 +myconn 0 connecting thr dafb6d00 , thread 2326 , mypolls 0 +thr dafb6e80 , status 1 +connecting thr dafb6e80 , thread 2327 , mypolls 0 +myconn 0 connecting thr dafb6e80 , thread 2327 , mypolls 0 +thr dadfb000 , status 1 +connecting thr dadfb000 , thread 2328 , mypolls 0 +myconn 0 connecting thr dadfb000 , thread 2328 , mypolls 0 +thr dadfb180 , status 1 +connecting thr dadfb180 , thread 2329 , mypolls 0 +myconn 0 connecting thr dadfb180 , thread 2329 , mypolls 0 +thr dadfb300 , status 1 +connecting thr dadfb300 , thread 2330 , mypolls 0 +myconn 0 connecting thr dadfb300 , thread 2330 , mypolls 0 +thr dadfb480 , status 1 +connecting thr dadfb480 , thread 2331 , mypolls 0 +myconn 0 connecting thr dadfb480 , thread 2331 , mypolls 0 +thr dadfb600 , status 1 +connecting thr dadfb600 , thread 2332 , mypolls 0 +myconn 0 connecting thr dadfb600 , thread 2332 , mypolls 0 +thr dadfb780 , status 1 +connecting thr dadfb780 , thread 2333 , mypolls 0 +myconn 0 connecting thr dadfb780 , thread 2333 , mypolls 0 +thr dadfb900 , status 1 +connecting thr dadfb900 , thread 2334 , mypolls 0 +myconn 0 connecting thr dadfb900 , thread 2334 , mypolls 0 +thr dadfba80 , status 1 +connecting thr dadfba80 , thread 2335 , mypolls 0 +myconn 0 connecting thr dadfba80 , thread 2335 , mypolls 0 +thr dadfbc00 , status 1 +connecting thr dadfbc00 , thread 2336 , mypolls 0 +myconn 0 connecting thr dadfbc00 , thread 2336 , mypolls 0 +thr dadfbd80 , status 1 +connecting thr dadfbd80 , thread 2337 , mypolls 0 +myconn 0 connecting thr dadfbd80 , thread 2337 , mypolls 0 +thr dadfbf00 , status 1 +connecting thr dadfbf00 , thread 2338 , mypolls 0 +myconn 0 connecting thr dadfbf00 , thread 2338 , mypolls 0 +thr dadfc080 , status 1 +connecting thr dadfc080 , thread 2339 , mypolls 0 +myconn 0 connecting thr dadfc080 , thread 2339 , mypolls 0 +thr dadfc200 , status 1 +connecting thr dadfc200 , thread 2340 , mypolls 0 +myconn 0 connecting thr dadfc200 , thread 2340 , mypolls 0 +thr dadfc380 , status 1 +connecting thr dadfc380 , thread 2341 , mypolls 0 +myconn 0 connecting thr dadfc380 , thread 2341 , mypolls 0 +thr dadfc500 , status 1 +connecting thr dadfc500 , thread 2342 , mypolls 0 +myconn 0 connecting thr dadfc500 , thread 2342 , mypolls 0 +thr dadfc680 , status 1 +connecting thr dadfc680 , thread 2343 , mypolls 0 +myconn 0 connecting thr dadfc680 , thread 2343 , mypolls 0 +thr dadfc800 , status 1 +connecting thr dadfc800 , thread 2344 , mypolls 0 +myconn 0 connecting thr dadfc800 , thread 2344 , mypolls 0 +thr dadfc980 , status 1 +connecting thr dadfc980 , thread 2345 , mypolls 0 +myconn 0 connecting thr dadfc980 , thread 2345 , mypolls 0 +thr dadfcb00 , status 1 +connecting thr dadfcb00 , thread 2346 , mypolls 0 +myconn 0 connecting thr dadfcb00 , thread 2346 , mypolls 0 +thr dadfcc80 , status 1 +connecting thr dadfcc80 , thread 2347 , mypolls 0 +myconn 0 connecting thr dadfcc80 , thread 2347 , mypolls 0 +thr dadfce00 , status 1 +connecting thr dadfce00 , thread 2348 , mypolls 0 +myconn 0 connecting thr dadfce00 , thread 2348 , mypolls 0 +thr dadfcf80 , status 1 +connecting thr dadfcf80 , thread 2349 , mypolls 0 +myconn 0 connecting thr dadfcf80 , thread 2349 , mypolls 0 +thr dadfd100 , status 1 +connecting thr dadfd100 , thread 2350 , mypolls 0 +myconn 0 connecting thr dadfd100 , thread 2350 , mypolls 0 +thr dadfd280 , status 1 +connecting thr dadfd280 , thread 2351 , mypolls 0 +myconn 0 connecting thr dadfd280 , thread 2351 , mypolls 0 +thr dadfd400 , status 1 +connecting thr dadfd400 , thread 2352 , mypolls 0 +myconn 0 connecting thr dadfd400 , thread 2352 , mypolls 0 +thr dadfd580 , status 1 +connecting thr dadfd580 , thread 2353 , mypolls 0 +myconn 0 connecting thr dadfd580 , thread 2353 , mypolls 0 +thr dadfd700 , status 1 +connecting thr dadfd700 , thread 2354 , mypolls 0 +myconn 0 connecting thr dadfd700 , thread 2354 , mypolls 0 +thr dadfd880 , status 1 +connecting thr dadfd880 , thread 2355 , mypolls 0 +myconn 0 connecting thr dadfd880 , thread 2355 , mypolls 0 +thr dadfda00 , status 1 +connecting thr dadfda00 , thread 2356 , mypolls 0 +myconn 0 connecting thr dadfda00 , thread 2356 , mypolls 0 +thr dadfdb80 , status 1 +connecting thr dadfdb80 , thread 2357 , mypolls 0 +myconn 0 connecting thr dadfdb80 , thread 2357 , mypolls 0 +thr dadfdd00 , status 1 +connecting thr dadfdd00 , thread 2358 , mypolls 0 +myconn 0 connecting thr dadfdd00 , thread 2358 , mypolls 0 +thr dadfde80 , status 1 +connecting thr dadfde80 , thread 2359 , mypolls 0 +myconn 0 connecting thr dadfde80 , thread 2359 , mypolls 0 +thr dabfb000 , status 1 +connecting thr dabfb000 , thread 2360 , mypolls 0 +myconn 0 connecting thr dabfb000 , thread 2360 , mypolls 0 +thr dabfb180 , status 1 +connecting thr dabfb180 , thread 2361 , mypolls 0 +myconn 0 connecting thr dabfb180 , thread 2361 , mypolls 0 +thr dabfb300 , status 1 +connecting thr dabfb300 , thread 2362 , mypolls 0 +myconn 0 connecting thr dabfb300 , thread 2362 , mypolls 0 +thr dabfb480 , status 1 +connecting thr dabfb480 , thread 2363 , mypolls 0 +myconn 0 connecting thr dabfb480 , thread 2363 , mypolls 0 +thr dabfb600 , status 1 +connecting thr dabfb600 , thread 2364 , mypolls 0 +myconn 0 connecting thr dabfb600 , thread 2364 , mypolls 0 +thr dabfb780 , status 1 +connecting thr dabfb780 , thread 2365 , mypolls 0 +myconn 0 connecting thr dabfb780 , thread 2365 , mypolls 0 +thr dabfb900 , status 1 +connecting thr dabfb900 , thread 2366 , mypolls 0 +myconn 0 connecting thr dabfb900 , thread 2366 , mypolls 0 +thr dabfba80 , status 1 +connecting thr dabfba80 , thread 2367 , mypolls 0 +myconn 0 connecting thr dabfba80 , thread 2367 , mypolls 0 +thr dabfbc00 , status 1 +connecting thr dabfbc00 , thread 2368 , mypolls 0 +myconn 0 connecting thr dabfbc00 , thread 2368 , mypolls 0 +thr dabfbd80 , status 1 +connecting thr dabfbd80 , thread 2369 , mypolls 0 +myconn 0 connecting thr dabfbd80 , thread 2369 , mypolls 0 +thr dabfbf00 , status 1 +connecting thr dabfbf00 , thread 2370 , mypolls 0 +myconn 0 connecting thr dabfbf00 , thread 2370 , mypolls 0 +thr dabfc080 , status 1 +connecting thr dabfc080 , thread 2371 , mypolls 0 +myconn 0 connecting thr dabfc080 , thread 2371 , mypolls 0 +thr dabfc200 , status 1 +connecting thr dabfc200 , thread 2372 , mypolls 0 +myconn 0 connecting thr dabfc200 , thread 2372 , mypolls 0 +thr dabfc380 , status 1 +connecting thr dabfc380 , thread 2373 , mypolls 0 +myconn 0 connecting thr dabfc380 , thread 2373 , mypolls 0 +thr dabfc500 , status 1 +connecting thr dabfc500 , thread 2374 , mypolls 0 +myconn 0 connecting thr dabfc500 , thread 2374 , mypolls 0 +thr dabfc680 , status 1 +connecting thr dabfc680 , thread 2375 , mypolls 0 +myconn 0 connecting thr dabfc680 , thread 2375 , mypolls 0 +thr dabfc800 , status 1 +connecting thr dabfc800 , thread 2376 , mypolls 0 +myconn 0 connecting thr dabfc800 , thread 2376 , mypolls 0 +thr dabfc980 , status 1 +connecting thr dabfc980 , thread 2377 , mypolls 0 +myconn 0 connecting thr dabfc980 , thread 2377 , mypolls 0 +thr dabfcb00 , status 1 +connecting thr dabfcb00 , thread 2378 , mypolls 0 +myconn 0 connecting thr dabfcb00 , thread 2378 , mypolls 0 +thr dabfcc80 , status 1 +connecting thr dabfcc80 , thread 2379 , mypolls 0 +myconn 0 connecting thr dabfcc80 , thread 2379 , mypolls 0 +thr dabfce00 , status 1 +connecting thr dabfce00 , thread 2380 , mypolls 0 +myconn 0 connecting thr dabfce00 , thread 2380 , mypolls 0 +thr dabfcf80 , status 1 +connecting thr dabfcf80 , thread 2381 , mypolls 0 +myconn 0 connecting thr dabfcf80 , thread 2381 , mypolls 0 +thr dabfd100 , status 1 +connecting thr dabfd100 , thread 2382 , mypolls 0 +myconn 0 connecting thr dabfd100 , thread 2382 , mypolls 0 +thr dabfd280 , status 1 +connecting thr dabfd280 , thread 2383 , mypolls 0 +myconn 0 connecting thr dabfd280 , thread 2383 , mypolls 0 +thr dabfd400 , status 1 +connecting thr dabfd400 , thread 2384 , mypolls 0 +myconn 0 connecting thr dabfd400 , thread 2384 , mypolls 0 +thr dabfd580 , status 1 +connecting thr dabfd580 , thread 2385 , mypolls 0 +myconn 0 connecting thr dabfd580 , thread 2385 , mypolls 0 +thr dabfd700 , status 1 +connecting thr dabfd700 , thread 2386 , mypolls 0 +myconn 0 connecting thr dabfd700 , thread 2386 , mypolls 0 +thr dabfd880 , status 1 +connecting thr dabfd880 , thread 2387 , mypolls 0 +myconn 0 connecting thr dabfd880 , thread 2387 , mypolls 0 +thr dabfda00 , status 1 +connecting thr dabfda00 , thread 2388 , mypolls 0 +myconn 0 connecting thr dabfda00 , thread 2388 , mypolls 0 +thr dabfdb80 , status 1 +connecting thr dabfdb80 , thread 2389 , mypolls 0 +myconn 0 connecting thr dabfdb80 , thread 2389 , mypolls 0 +thr dabfdd00 , status 1 +connecting thr dabfdd00 , thread 2390 , mypolls 0 +myconn 0 connecting thr dabfdd00 , thread 2390 , mypolls 0 +thr dabfde80 , status 1 +connecting thr dabfde80 , thread 2391 , mypolls 0 +myconn 0 connecting thr dabfde80 , thread 2391 , mypolls 0 +thr da751000 , status 1 +connecting thr da751000 , thread 2392 , mypolls 0 +myconn 0 connecting thr da751000 , thread 2392 , mypolls 0 +thr da751180 , status 1 +connecting thr da751180 , thread 2393 , mypolls 0 +myconn 0 connecting thr da751180 , thread 2393 , mypolls 0 +thr da751300 , status 1 +connecting thr da751300 , thread 2394 , mypolls 0 +myconn 0 connecting thr da751300 , thread 2394 , mypolls 0 +thr da751480 , status 1 +connecting thr da751480 , thread 2395 , mypolls 0 +myconn 0 connecting thr da751480 , thread 2395 , mypolls 0 +thr da751600 , status 1 +connecting thr da751600 , thread 2396 , mypolls 0 +myconn 0 connecting thr da751600 , thread 2396 , mypolls 0 +thr da751780 , status 1 +connecting thr da751780 , thread 2397 , mypolls 0 +myconn 0 connecting thr da751780 , thread 2397 , mypolls 0 +thr da751900 , status 1 +connecting thr da751900 , thread 2398 , mypolls 0 +myconn 0 connecting thr da751900 , thread 2398 , mypolls 0 +thr da751a80 , status 1 +connecting thr da751a80 , thread 2399 , mypolls 0 +myconn 0 connecting thr da751a80 , thread 2399 , mypolls 0 +thr da751c00 , status 1 +connecting thr da751c00 , thread 2400 , mypolls 0 +myconn 0 connecting thr da751c00 , thread 2400 , mypolls 0 +thr da751d80 , status 1 +connecting thr da751d80 , thread 2401 , mypolls 0 +myconn 0 connecting thr da751d80 , thread 2401 , mypolls 0 +thr da751f00 , status 1 +connecting thr da751f00 , thread 2402 , mypolls 0 +myconn 0 connecting thr da751f00 , thread 2402 , mypolls 0 +thr da752080 , status 1 +connecting thr da752080 , thread 2403 , mypolls 0 +myconn 0 connecting thr da752080 , thread 2403 , mypolls 0 +thr da752200 , status 1 +connecting thr da752200 , thread 2404 , mypolls 0 +myconn 0 connecting thr da752200 , thread 2404 , mypolls 0 +thr da752380 , status 1 +connecting thr da752380 , thread 2405 , mypolls 0 +myconn 0 connecting thr da752380 , thread 2405 , mypolls 0 +thr da752500 , status 1 +connecting thr da752500 , thread 2406 , mypolls 0 +myconn 0 connecting thr da752500 , thread 2406 , mypolls 0 +thr da752680 , status 1 +connecting thr da752680 , thread 2407 , mypolls 0 +myconn 0 connecting thr da752680 , thread 2407 , mypolls 0 +thr da752800 , status 1 +connecting thr da752800 , thread 2408 , mypolls 0 +myconn 0 connecting thr da752800 , thread 2408 , mypolls 0 +thr da752980 , status 1 +connecting thr da752980 , thread 2409 , mypolls 0 +myconn 0 connecting thr da752980 , thread 2409 , mypolls 0 +thr da752b00 , status 1 +connecting thr da752b00 , thread 2410 , mypolls 0 +myconn 0 connecting thr da752b00 , thread 2410 , mypolls 0 +thr da752c80 , status 1 +connecting thr da752c80 , thread 2411 , mypolls 0 +myconn 0 connecting thr da752c80 , thread 2411 , mypolls 0 +thr da752e00 , status 1 +connecting thr da752e00 , thread 2412 , mypolls 0 +myconn 0 connecting thr da752e00 , thread 2412 , mypolls 0 +thr da752f80 , status 1 +connecting thr da752f80 , thread 2413 , mypolls 0 +myconn 0 connecting thr da752f80 , thread 2413 , mypolls 0 +thr da753100 , status 1 +connecting thr da753100 , thread 2414 , mypolls 0 +myconn 0 connecting thr da753100 , thread 2414 , mypolls 0 +thr da753280 , status 1 +connecting thr da753280 , thread 2415 , mypolls 0 +myconn 0 connecting thr da753280 , thread 2415 , mypolls 0 +thr da753400 , status 1 +connecting thr da753400 , thread 2416 , mypolls 0 +myconn 0 connecting thr da753400 , thread 2416 , mypolls 0 +thr da753580 , status 1 +connecting thr da753580 , thread 2417 , mypolls 0 +myconn 0 connecting thr da753580 , thread 2417 , mypolls 0 +thr da753700 , status 1 +connecting thr da753700 , thread 2418 , mypolls 0 +myconn 0 connecting thr da753700 , thread 2418 , mypolls 0 +thr da753880 , status 1 +connecting thr da753880 , thread 2419 , mypolls 0 +myconn 0 connecting thr da753880 , thread 2419 , mypolls 0 +thr da753a00 , status 1 +connecting thr da753a00 , thread 2420 , mypolls 0 +myconn 0 connecting thr da753a00 , thread 2420 , mypolls 0 +thr da753b80 , status 1 +connecting thr da753b80 , thread 2421 , mypolls 0 +myconn 0 connecting thr da753b80 , thread 2421 , mypolls 0 +thr da753d00 , status 1 +connecting thr da753d00 , thread 2422 , mypolls 0 +myconn 0 connecting thr da753d00 , thread 2422 , mypolls 0 +thr da753e80 , status 1 +connecting thr da753e80 , thread 2423 , mypolls 0 +myconn 0 connecting thr da753e80 , thread 2423 , mypolls 0 +thr da5b2000 , status 1 +connecting thr da5b2000 , thread 2424 , mypolls 0 +myconn 0 connecting thr da5b2000 , thread 2424 , mypolls 0 +thr da5b2180 , status 1 +connecting thr da5b2180 , thread 2425 , mypolls 0 +myconn 0 connecting thr da5b2180 , thread 2425 , mypolls 0 +thr da5b2300 , status 1 +connecting thr da5b2300 , thread 2426 , mypolls 0 +myconn 0 connecting thr da5b2300 , thread 2426 , mypolls 0 +thr da5b2480 , status 1 +connecting thr da5b2480 , thread 2427 , mypolls 0 +myconn 0 connecting thr da5b2480 , thread 2427 , mypolls 0 +thr da5b2600 , status 1 +connecting thr da5b2600 , thread 2428 , mypolls 0 +myconn 0 connecting thr da5b2600 , thread 2428 , mypolls 0 +thr da5b2780 , status 1 +connecting thr da5b2780 , thread 2429 , mypolls 0 +myconn 0 connecting thr da5b2780 , thread 2429 , mypolls 0 +thr da5b2900 , status 1 +connecting thr da5b2900 , thread 2430 , mypolls 0 +myconn 0 connecting thr da5b2900 , thread 2430 , mypolls 0 +thr da5b2a80 , status 1 +connecting thr da5b2a80 , thread 2431 , mypolls 0 +myconn 0 connecting thr da5b2a80 , thread 2431 , mypolls 0 +thr da5b2c00 , status 1 +connecting thr da5b2c00 , thread 2432 , mypolls 0 +myconn 0 connecting thr da5b2c00 , thread 2432 , mypolls 0 +thr da5b2d80 , status 1 +connecting thr da5b2d80 , thread 2433 , mypolls 0 +myconn 0 connecting thr da5b2d80 , thread 2433 , mypolls 0 +thr da5b2f00 , status 1 +connecting thr da5b2f00 , thread 2434 , mypolls 0 +myconn 0 connecting thr da5b2f00 , thread 2434 , mypolls 0 +thr da5b3080 , status 1 +connecting thr da5b3080 , thread 2435 , mypolls 0 +myconn 0 connecting thr da5b3080 , thread 2435 , mypolls 0 +thr da5b3200 , status 1 +connecting thr da5b3200 , thread 2436 , mypolls 0 +myconn 0 connecting thr da5b3200 , thread 2436 , mypolls 0 +thr da5b3380 , status 1 +connecting thr da5b3380 , thread 2437 , mypolls 0 +myconn 0 connecting thr da5b3380 , thread 2437 , mypolls 0 +thr da5b3500 , status 1 +connecting thr da5b3500 , thread 2438 , mypolls 0 +myconn 0 connecting thr da5b3500 , thread 2438 , mypolls 0 +thr da5b3680 , status 1 +connecting thr da5b3680 , thread 2439 , mypolls 0 +myconn 0 connecting thr da5b3680 , thread 2439 , mypolls 0 +thr da5b3800 , status 1 +connecting thr da5b3800 , thread 2440 , mypolls 0 +myconn 0 connecting thr da5b3800 , thread 2440 , mypolls 0 +thr da5b3980 , status 1 +connecting thr da5b3980 , thread 2441 , mypolls 0 +myconn 0 connecting thr da5b3980 , thread 2441 , mypolls 0 +thr da5b3b00 , status 1 +connecting thr da5b3b00 , thread 2442 , mypolls 0 +myconn 0 connecting thr da5b3b00 , thread 2442 , mypolls 0 +thr da5b3c80 , status 1 +connecting thr da5b3c80 , thread 2443 , mypolls 0 +myconn 0 connecting thr da5b3c80 , thread 2443 , mypolls 0 +thr da5b3e00 , status 1 +connecting thr da5b3e00 , thread 2444 , mypolls 0 +myconn 0 connecting thr da5b3e00 , thread 2444 , mypolls 0 +thr da5b3f80 , status 1 +connecting thr da5b3f80 , thread 2445 , mypolls 0 +myconn 0 connecting thr da5b3f80 , thread 2445 , mypolls 0 +thr da5b4100 , status 1 +connecting thr da5b4100 , thread 2446 , mypolls 0 +myconn 0 connecting thr da5b4100 , thread 2446 , mypolls 0 +thr da5b4280 , status 1 +connecting thr da5b4280 , thread 2447 , mypolls 0 +myconn 0 connecting thr da5b4280 , thread 2447 , mypolls 0 +thr da5b4400 , status 1 +connecting thr da5b4400 , thread 2448 , mypolls 0 +myconn 0 connecting thr da5b4400 , thread 2448 , mypolls 0 +thr da5b4580 , status 1 +connecting thr da5b4580 , thread 2449 , mypolls 0 +myconn 0 connecting thr da5b4580 , thread 2449 , mypolls 0 +thr da5b4700 , status 1 +connecting thr da5b4700 , thread 2450 , mypolls 0 +myconn 0 connecting thr da5b4700 , thread 2450 , mypolls 0 +thr da5b4880 , status 1 +connecting thr da5b4880 , thread 2451 , mypolls 0 +myconn 0 connecting thr da5b4880 , thread 2451 , mypolls 0 +thr da5b4a00 , status 1 +connecting thr da5b4a00 , thread 2452 , mypolls 0 +myconn 0 connecting thr da5b4a00 , thread 2452 , mypolls 0 +thr da5b4b80 , status 1 +connecting thr da5b4b80 , thread 2453 , mypolls 0 +myconn 0 connecting thr da5b4b80 , thread 2453 , mypolls 0 +thr da5b4d00 , status 1 +connecting thr da5b4d00 , thread 2454 , mypolls 0 +myconn 0 connecting thr da5b4d00 , thread 2454 , mypolls 0 +thr da5b4e80 , status 1 +connecting thr da5b4e80 , thread 2455 , mypolls 0 +myconn 0 connecting thr da5b4e80 , thread 2455 , mypolls 0 +thr da3f9000 , status 1 +connecting thr da3f9000 , thread 2456 , mypolls 0 +myconn 0 connecting thr da3f9000 , thread 2456 , mypolls 0 +thr da3f9180 , status 1 +connecting thr da3f9180 , thread 2457 , mypolls 0 +myconn 0 connecting thr da3f9180 , thread 2457 , mypolls 0 +thr da3f9300 , status 1 +connecting thr da3f9300 , thread 2458 , mypolls 0 +myconn 0 connecting thr da3f9300 , thread 2458 , mypolls 0 +thr da3f9480 , status 1 +connecting thr da3f9480 , thread 2459 , mypolls 0 +myconn 0 connecting thr da3f9480 , thread 2459 , mypolls 0 +thr da3f9600 , status 1 +connecting thr da3f9600 , thread 2460 , mypolls 0 +myconn 0 connecting thr da3f9600 , thread 2460 , mypolls 0 +thr da3f9780 , status 1 +connecting thr da3f9780 , thread 2461 , mypolls 0 +myconn 0 connecting thr da3f9780 , thread 2461 , mypolls 0 +thr da3f9900 , status 1 +connecting thr da3f9900 , thread 2462 , mypolls 0 +myconn 0 connecting thr da3f9900 , thread 2462 , mypolls 0 +thr da3f9a80 , status 1 +connecting thr da3f9a80 , thread 2463 , mypolls 0 +myconn 0 connecting thr da3f9a80 , thread 2463 , mypolls 0 +thr da3f9c00 , status 1 +connecting thr da3f9c00 , thread 2464 , mypolls 0 +myconn 0 connecting thr da3f9c00 , thread 2464 , mypolls 0 +thr da3f9d80 , status 1 +connecting thr da3f9d80 , thread 2465 , mypolls 0 +myconn 0 connecting thr da3f9d80 , thread 2465 , mypolls 0 +thr da3f9f00 , status 1 +connecting thr da3f9f00 , thread 2466 , mypolls 0 +myconn 0 connecting thr da3f9f00 , thread 2466 , mypolls 0 +thr da3fa080 , status 1 +connecting thr da3fa080 , thread 2467 , mypolls 0 +myconn 0 connecting thr da3fa080 , thread 2467 , mypolls 0 +thr da3fa200 , status 1 +connecting thr da3fa200 , thread 2468 , mypolls 0 +myconn 0 connecting thr da3fa200 , thread 2468 , mypolls 0 +thr da3fa380 , status 1 +connecting thr da3fa380 , thread 2469 , mypolls 0 +myconn 0 connecting thr da3fa380 , thread 2469 , mypolls 0 +thr da3fa500 , status 1 +connecting thr da3fa500 , thread 2470 , mypolls 0 +myconn 0 connecting thr da3fa500 , thread 2470 , mypolls 0 +thr da3fa680 , status 1 +connecting thr da3fa680 , thread 2471 , mypolls 0 +myconn 0 connecting thr da3fa680 , thread 2471 , mypolls 0 +thr da3fa800 , status 1 +connecting thr da3fa800 , thread 2472 , mypolls 0 +myconn 0 connecting thr da3fa800 , thread 2472 , mypolls 0 +thr da3fa980 , status 1 +connecting thr da3fa980 , thread 2473 , mypolls 0 +myconn 0 connecting thr da3fa980 , thread 2473 , mypolls 0 +thr da3fab00 , status 1 +connecting thr da3fab00 , thread 2474 , mypolls 0 +myconn 0 connecting thr da3fab00 , thread 2474 , mypolls 0 +thr da3fac80 , status 1 +connecting thr da3fac80 , thread 2475 , mypolls 0 +myconn 0 connecting thr da3fac80 , thread 2475 , mypolls 0 +thr da3fae00 , status 1 +connecting thr da3fae00 , thread 2476 , mypolls 0 +myconn 0 connecting thr da3fae00 , thread 2476 , mypolls 0 +thr da3faf80 , status 1 +connecting thr da3faf80 , thread 2477 , mypolls 0 +myconn 0 connecting thr da3faf80 , thread 2477 , mypolls 0 +thr da3fb100 , status 1 +connecting thr da3fb100 , thread 2478 , mypolls 0 +myconn 0 connecting thr da3fb100 , thread 2478 , mypolls 0 +thr da3fb280 , status 1 +connecting thr da3fb280 , thread 2479 , mypolls 0 +myconn 0 connecting thr da3fb280 , thread 2479 , mypolls 0 +thr da3fb400 , status 1 +connecting thr da3fb400 , thread 2480 , mypolls 0 +myconn 0 connecting thr da3fb400 , thread 2480 , mypolls 0 +thr da3fb580 , status 1 +connecting thr da3fb580 , thread 2481 , mypolls 0 +myconn 0 connecting thr da3fb580 , thread 2481 , mypolls 0 +thr da3fb700 , status 1 +connecting thr da3fb700 , thread 2482 , mypolls 0 +myconn 0 connecting thr da3fb700 , thread 2482 , mypolls 0 +thr da3fb880 , status 1 +connecting thr da3fb880 , thread 2483 , mypolls 0 +myconn 0 connecting thr da3fb880 , thread 2483 , mypolls 0 +thr da3fba00 , status 1 +connecting thr da3fba00 , thread 2484 , mypolls 0 +myconn 0 connecting thr da3fba00 , thread 2484 , mypolls 0 +thr da3fbb80 , status 1 +connecting thr da3fbb80 , thread 2485 , mypolls 0 +myconn 0 connecting thr da3fbb80 , thread 2485 , mypolls 0 +thr da3fbd00 , status 1 +connecting thr da3fbd00 , thread 2486 , mypolls 0 +myconn 0 connecting thr da3fbd00 , thread 2486 , mypolls 0 +thr da3fbe80 , status 1 +connecting thr da3fbe80 , thread 2487 , mypolls 0 +myconn 0 connecting thr da3fbe80 , thread 2487 , mypolls 0 +thr d9e82000 , status 1 +connecting thr d9e82000 , thread 2488 , mypolls 0 +myconn 0 connecting thr d9e82000 , thread 2488 , mypolls 0 +thr d9e82180 , status 1 +connecting thr d9e82180 , thread 2489 , mypolls 0 +myconn 0 connecting thr d9e82180 , thread 2489 , mypolls 0 +thr d9e82300 , status 1 +connecting thr d9e82300 , thread 2490 , mypolls 0 +myconn 0 connecting thr d9e82300 , thread 2490 , mypolls 0 +thr d9e82480 , status 1 +connecting thr d9e82480 , thread 2491 , mypolls 0 +myconn 0 connecting thr d9e82480 , thread 2491 , mypolls 0 +thr d9e82600 , status 1 +connecting thr d9e82600 , thread 2492 , mypolls 0 +myconn 0 connecting thr d9e82600 , thread 2492 , mypolls 0 +thr d9e82780 , status 1 +connecting thr d9e82780 , thread 2493 , mypolls 0 +myconn 0 connecting thr d9e82780 , thread 2493 , mypolls 0 +thr d9e82900 , status 1 +connecting thr d9e82900 , thread 2494 , mypolls 0 +myconn 0 connecting thr d9e82900 , thread 2494 , mypolls 0 +thr d9e82a80 , status 1 +connecting thr d9e82a80 , thread 2495 , mypolls 0 +myconn 0 connecting thr d9e82a80 , thread 2495 , mypolls 0 +thr d9e82c00 , status 1 +connecting thr d9e82c00 , thread 2496 , mypolls 0 +myconn 0 connecting thr d9e82c00 , thread 2496 , mypolls 0 +thr d9e82d80 , status 1 +connecting thr d9e82d80 , thread 2497 , mypolls 0 +myconn 0 connecting thr d9e82d80 , thread 2497 , mypolls 0 +thr d9e82f00 , status 1 +connecting thr d9e82f00 , thread 2498 , mypolls 0 +myconn 0 connecting thr d9e82f00 , thread 2498 , mypolls 0 +thr d9e83080 , status 1 +connecting thr d9e83080 , thread 2499 , mypolls 0 +myconn 0 connecting thr d9e83080 , thread 2499 , mypolls 0 +thr d9e83200 , status 1 +connecting thr d9e83200 , thread 2500 , mypolls 0 +myconn 0 connecting thr d9e83200 , thread 2500 , mypolls 0 +thr d9e83380 , status 1 +connecting thr d9e83380 , thread 2501 , mypolls 0 +myconn 0 connecting thr d9e83380 , thread 2501 , mypolls 0 +thr d9e83500 , status 1 +connecting thr d9e83500 , thread 2502 , mypolls 0 +myconn 0 connecting thr d9e83500 , thread 2502 , mypolls 0 +thr d9e83680 , status 1 +connecting thr d9e83680 , thread 2503 , mypolls 0 +myconn 0 connecting thr d9e83680 , thread 2503 , mypolls 0 +thr d9e83800 , status 1 +connecting thr d9e83800 , thread 2504 , mypolls 0 +myconn 0 connecting thr d9e83800 , thread 2504 , mypolls 0 +thr d9e83980 , status 1 +connecting thr d9e83980 , thread 2505 , mypolls 0 +myconn 0 connecting thr d9e83980 , thread 2505 , mypolls 0 +thr d9e83b00 , status 1 +connecting thr d9e83b00 , thread 2506 , mypolls 0 +myconn 0 connecting thr d9e83b00 , thread 2506 , mypolls 0 +thr d9e83c80 , status 1 +connecting thr d9e83c80 , thread 2507 , mypolls 0 +myconn 0 connecting thr d9e83c80 , thread 2507 , mypolls 0 +thr d9e83e00 , status 1 +connecting thr d9e83e00 , thread 2508 , mypolls 0 +myconn 0 connecting thr d9e83e00 , thread 2508 , mypolls 0 +thr d9e83f80 , status 1 +connecting thr d9e83f80 , thread 2509 , mypolls 0 +myconn 0 connecting thr d9e83f80 , thread 2509 , mypolls 0 +thr d9e84100 , status 1 +connecting thr d9e84100 , thread 2510 , mypolls 0 +myconn 0 connecting thr d9e84100 , thread 2510 , mypolls 0 +thr d9e84280 , status 1 +connecting thr d9e84280 , thread 2511 , mypolls 0 +myconn 0 connecting thr d9e84280 , thread 2511 , mypolls 0 +thr d9e84400 , status 1 +connecting thr d9e84400 , thread 2512 , mypolls 0 +myconn 0 connecting thr d9e84400 , thread 2512 , mypolls 0 +thr d9e84580 , status 1 +connecting thr d9e84580 , thread 2513 , mypolls 0 +myconn 0 connecting thr d9e84580 , thread 2513 , mypolls 0 +thr d9e84700 , status 1 +connecting thr d9e84700 , thread 2514 , mypolls 0 +myconn 0 connecting thr d9e84700 , thread 2514 , mypolls 0 +thr d9e84880 , status 1 +connecting thr d9e84880 , thread 2515 , mypolls 0 +myconn 0 connecting thr d9e84880 , thread 2515 , mypolls 0 +thr d9e84a00 , status 1 +connecting thr d9e84a00 , thread 2516 , mypolls 0 +myconn 0 connecting thr d9e84a00 , thread 2516 , mypolls 0 +thr d9e84b80 , status 1 +connecting thr d9e84b80 , thread 2517 , mypolls 0 +myconn 0 connecting thr d9e84b80 , thread 2517 , mypolls 0 +thr d9e84d00 , status 1 +connecting thr d9e84d00 , thread 2518 , mypolls 0 +myconn 0 connecting thr d9e84d00 , thread 2518 , mypolls 0 +thr d9e84e80 , status 1 +connecting thr d9e84e80 , thread 2519 , mypolls 0 +myconn 0 connecting thr d9e84e80 , thread 2519 , mypolls 0 +thr d9ce6000 , status 1 +connecting thr d9ce6000 , thread 2520 , mypolls 0 +myconn 0 connecting thr d9ce6000 , thread 2520 , mypolls 0 +thr d9ce6180 , status 1 +connecting thr d9ce6180 , thread 2521 , mypolls 0 +myconn 0 connecting thr d9ce6180 , thread 2521 , mypolls 0 +thr d9ce6300 , status 1 +connecting thr d9ce6300 , thread 2522 , mypolls 0 +myconn 0 connecting thr d9ce6300 , thread 2522 , mypolls 0 +thr d9ce6480 , status 1 +connecting thr d9ce6480 , thread 2523 , mypolls 0 +myconn 0 connecting thr d9ce6480 , thread 2523 , mypolls 0 +thr d9ce6600 , status 1 +connecting thr d9ce6600 , thread 2524 , mypolls 0 +myconn 0 connecting thr d9ce6600 , thread 2524 , mypolls 0 +thr d9ce6780 , status 1 +connecting thr d9ce6780 , thread 2525 , mypolls 0 +myconn 0 connecting thr d9ce6780 , thread 2525 , mypolls 0 +thr d9ce6900 , status 1 +connecting thr d9ce6900 , thread 2526 , mypolls 0 +myconn 0 connecting thr d9ce6900 , thread 2526 , mypolls 0 +thr d9ce6a80 , status 1 +connecting thr d9ce6a80 , thread 2527 , mypolls 0 +myconn 0 connecting thr d9ce6a80 , thread 2527 , mypolls 0 +thr d9ce6c00 , status 1 +connecting thr d9ce6c00 , thread 2528 , mypolls 0 +myconn 0 connecting thr d9ce6c00 , thread 2528 , mypolls 0 +thr d9ce6d80 , status 1 +connecting thr d9ce6d80 , thread 2529 , mypolls 0 +myconn 0 connecting thr d9ce6d80 , thread 2529 , mypolls 0 +thr d9ce6f00 , status 1 +connecting thr d9ce6f00 , thread 2530 , mypolls 0 +myconn 0 connecting thr d9ce6f00 , thread 2530 , mypolls 0 +thr d9ce7080 , status 1 +connecting thr d9ce7080 , thread 2531 , mypolls 0 +myconn 0 connecting thr d9ce7080 , thread 2531 , mypolls 0 +thr d9ce7200 , status 1 +connecting thr d9ce7200 , thread 2532 , mypolls 0 +myconn 0 connecting thr d9ce7200 , thread 2532 , mypolls 0 +thr d9ce7380 , status 1 +connecting thr d9ce7380 , thread 2533 , mypolls 0 +myconn 0 connecting thr d9ce7380 , thread 2533 , mypolls 0 +thr d9ce7500 , status 1 +connecting thr d9ce7500 , thread 2534 , mypolls 0 +myconn 0 connecting thr d9ce7500 , thread 2534 , mypolls 0 +thr d9ce7680 , status 1 +connecting thr d9ce7680 , thread 2535 , mypolls 0 +myconn 0 connecting thr d9ce7680 , thread 2535 , mypolls 0 +thr d9ce7800 , status 1 +connecting thr d9ce7800 , thread 2536 , mypolls 0 +myconn 0 connecting thr d9ce7800 , thread 2536 , mypolls 0 +thr d9ce7980 , status 1 +connecting thr d9ce7980 , thread 2537 , mypolls 0 +myconn 0 connecting thr d9ce7980 , thread 2537 , mypolls 0 +thr d9ce7b00 , status 1 +connecting thr d9ce7b00 , thread 2538 , mypolls 0 +myconn 0 connecting thr d9ce7b00 , thread 2538 , mypolls 0 +thr d9ce7c80 , status 1 +connecting thr d9ce7c80 , thread 2539 , mypolls 0 +myconn 0 connecting thr d9ce7c80 , thread 2539 , mypolls 0 +thr d9ce7e00 , status 1 +connecting thr d9ce7e00 , thread 2540 , mypolls 0 +myconn 0 connecting thr d9ce7e00 , thread 2540 , mypolls 0 +thr d9ce7f80 , status 1 +connecting thr d9ce7f80 , thread 2541 , mypolls 0 +myconn 0 connecting thr d9ce7f80 , thread 2541 , mypolls 0 +thr d9ce8100 , status 1 +connecting thr d9ce8100 , thread 2542 , mypolls 0 +myconn 0 connecting thr d9ce8100 , thread 2542 , mypolls 0 +thr d9ce8280 , status 1 +connecting thr d9ce8280 , thread 2543 , mypolls 0 +myconn 0 connecting thr d9ce8280 , thread 2543 , mypolls 0 +thr d9ce8400 , status 1 +connecting thr d9ce8400 , thread 2544 , mypolls 0 +myconn 0 connecting thr d9ce8400 , thread 2544 , mypolls 0 +thr d9ce8580 , status 1 +connecting thr d9ce8580 , thread 2545 , mypolls 0 +myconn 0 connecting thr d9ce8580 , thread 2545 , mypolls 0 +thr d9ce8700 , status 1 +connecting thr d9ce8700 , thread 2546 , mypolls 0 +myconn 0 connecting thr d9ce8700 , thread 2546 , mypolls 0 +thr d9ce8880 , status 1 +connecting thr d9ce8880 , thread 2547 , mypolls 0 +myconn 0 connecting thr d9ce8880 , thread 2547 , mypolls 0 +thr d9ce8a00 , status 1 +connecting thr d9ce8a00 , thread 2548 , mypolls 0 +myconn 0 connecting thr d9ce8a00 , thread 2548 , mypolls 0 +thr d9ce8b80 , status 1 +connecting thr d9ce8b80 , thread 2549 , mypolls 0 +myconn 0 connecting thr d9ce8b80 , thread 2549 , mypolls 0 +thr d9ce8d00 , status 1 +connecting thr d9ce8d00 , thread 2550 , mypolls 0 +myconn 0 connecting thr d9ce8d00 , thread 2550 , mypolls 0 +thr d9ce8e80 , status 1 +connecting thr d9ce8e80 , thread 2551 , mypolls 0 +myconn 0 connecting thr d9ce8e80 , thread 2551 , mypolls 0 +thr d9b49000 , status 1 +connecting thr d9b49000 , thread 2552 , mypolls 0 +myconn 0 connecting thr d9b49000 , thread 2552 , mypolls 0 +thr d9b49180 , status 1 +connecting thr d9b49180 , thread 2553 , mypolls 0 +myconn 0 connecting thr d9b49180 , thread 2553 , mypolls 0 +thr d9b49300 , status 1 +connecting thr d9b49300 , thread 2554 , mypolls 0 +myconn 0 connecting thr d9b49300 , thread 2554 , mypolls 0 +thr d9b49480 , status 1 +connecting thr d9b49480 , thread 2555 , mypolls 0 +myconn 0 connecting thr d9b49480 , thread 2555 , mypolls 0 +thr d9b49600 , status 1 +connecting thr d9b49600 , thread 2556 , mypolls 0 +myconn 0 connecting thr d9b49600 , thread 2556 , mypolls 0 +thr d9b49780 , status 1 +connecting thr d9b49780 , thread 2557 , mypolls 0 +myconn 0 connecting thr d9b49780 , thread 2557 , mypolls 0 +thr d9b49900 , status 1 +connecting thr d9b49900 , thread 2558 , mypolls 0 +myconn 0 connecting thr d9b49900 , thread 2558 , mypolls 0 +thr d9b49a80 , status 1 +connecting thr d9b49a80 , thread 2559 , mypolls 0 +myconn 0 connecting thr d9b49a80 , thread 2559 , mypolls 0 +thr d9b49c00 , status 1 +connecting thr d9b49c00 , thread 2560 , mypolls 0 +myconn 0 connecting thr d9b49c00 , thread 2560 , mypolls 0 +thr d9b49d80 , status 1 +connecting thr d9b49d80 , thread 2561 , mypolls 0 +myconn 0 connecting thr d9b49d80 , thread 2561 , mypolls 0 +thr d9b49f00 , status 1 +connecting thr d9b49f00 , thread 2562 , mypolls 0 +myconn 0 connecting thr d9b49f00 , thread 2562 , mypolls 0 +thr d9b4a080 , status 1 +connecting thr d9b4a080 , thread 2563 , mypolls 0 +myconn 0 connecting thr d9b4a080 , thread 2563 , mypolls 0 +thr d9b4a200 , status 1 +connecting thr d9b4a200 , thread 2564 , mypolls 0 +myconn 0 connecting thr d9b4a200 , thread 2564 , mypolls 0 +thr d9b4a380 , status 1 +connecting thr d9b4a380 , thread 2565 , mypolls 0 +myconn 0 connecting thr d9b4a380 , thread 2565 , mypolls 0 +thr d9b4a500 , status 1 +connecting thr d9b4a500 , thread 2566 , mypolls 0 +myconn 0 connecting thr d9b4a500 , thread 2566 , mypolls 0 +thr d9b4a680 , status 1 +connecting thr d9b4a680 , thread 2567 , mypolls 0 +myconn 0 connecting thr d9b4a680 , thread 2567 , mypolls 0 +thr d9b4a800 , status 1 +connecting thr d9b4a800 , thread 2568 , mypolls 0 +myconn 0 connecting thr d9b4a800 , thread 2568 , mypolls 0 +thr d9b4a980 , status 1 +connecting thr d9b4a980 , thread 2569 , mypolls 0 +myconn 0 connecting thr d9b4a980 , thread 2569 , mypolls 0 +thr d9b4ab00 , status 1 +connecting thr d9b4ab00 , thread 2570 , mypolls 0 +myconn 0 connecting thr d9b4ab00 , thread 2570 , mypolls 0 +thr d9b4ac80 , status 1 +connecting thr d9b4ac80 , thread 2571 , mypolls 0 +myconn 0 connecting thr d9b4ac80 , thread 2571 , mypolls 0 +thr d9b4ae00 , status 1 +connecting thr d9b4ae00 , thread 2572 , mypolls 0 +myconn 0 connecting thr d9b4ae00 , thread 2572 , mypolls 0 +thr d9b4af80 , status 1 +connecting thr d9b4af80 , thread 2573 , mypolls 0 +myconn 0 connecting thr d9b4af80 , thread 2573 , mypolls 0 +thr d9b4b100 , status 1 +connecting thr d9b4b100 , thread 2574 , mypolls 0 +myconn 0 connecting thr d9b4b100 , thread 2574 , mypolls 0 +thr d9b4b280 , status 1 +connecting thr d9b4b280 , thread 2575 , mypolls 0 +myconn 0 connecting thr d9b4b280 , thread 2575 , mypolls 0 +thr d9b4b400 , status 1 +connecting thr d9b4b400 , thread 2576 , mypolls 0 +myconn 0 connecting thr d9b4b400 , thread 2576 , mypolls 0 +thr d9b4b580 , status 1 +connecting thr d9b4b580 , thread 2577 , mypolls 0 +myconn 0 connecting thr d9b4b580 , thread 2577 , mypolls 0 +thr d9b4b700 , status 1 +connecting thr d9b4b700 , thread 2578 , mypolls 0 +myconn 0 connecting thr d9b4b700 , thread 2578 , mypolls 0 +thr d9b4b880 , status 1 +connecting thr d9b4b880 , thread 2579 , mypolls 0 +myconn 0 connecting thr d9b4b880 , thread 2579 , mypolls 0 +thr d9b4ba00 , status 1 +connecting thr d9b4ba00 , thread 2580 , mypolls 0 +myconn 0 connecting thr d9b4ba00 , thread 2580 , mypolls 0 +thr d9b4bb80 , status 1 +connecting thr d9b4bb80 , thread 2581 , mypolls 0 +myconn 0 connecting thr d9b4bb80 , thread 2581 , mypolls 0 +thr d9b4bd00 , status 1 +connecting thr d9b4bd00 , thread 2582 , mypolls 0 +myconn 0 connecting thr d9b4bd00 , thread 2582 , mypolls 0 +thr d9b4be80 , status 1 +connecting thr d9b4be80 , thread 2583 , mypolls 0 +myconn 0 connecting thr d9b4be80 , thread 2583 , mypolls 0 +thr d99a9000 , status 1 +connecting thr d99a9000 , thread 2584 , mypolls 0 +myconn 0 connecting thr d99a9000 , thread 2584 , mypolls 0 +thr d99a9180 , status 1 +connecting thr d99a9180 , thread 2585 , mypolls 0 +myconn 0 connecting thr d99a9180 , thread 2585 , mypolls 0 +thr d99a9300 , status 1 +connecting thr d99a9300 , thread 2586 , mypolls 0 +myconn 0 connecting thr d99a9300 , thread 2586 , mypolls 0 +thr d99a9480 , status 1 +connecting thr d99a9480 , thread 2587 , mypolls 0 +myconn 0 connecting thr d99a9480 , thread 2587 , mypolls 0 +thr d99a9600 , status 1 +connecting thr d99a9600 , thread 2588 , mypolls 0 +myconn 0 connecting thr d99a9600 , thread 2588 , mypolls 0 +thr d99a9780 , status 1 +connecting thr d99a9780 , thread 2589 , mypolls 0 +myconn 0 connecting thr d99a9780 , thread 2589 , mypolls 0 +thr d99a9900 , status 1 +connecting thr d99a9900 , thread 2590 , mypolls 0 +myconn 0 connecting thr d99a9900 , thread 2590 , mypolls 0 +thr d99a9a80 , status 1 +connecting thr d99a9a80 , thread 2591 , mypolls 0 +myconn 0 connecting thr d99a9a80 , thread 2591 , mypolls 0 +thr d99a9c00 , status 1 +connecting thr d99a9c00 , thread 2592 , mypolls 0 +myconn 0 connecting thr d99a9c00 , thread 2592 , mypolls 0 +thr d99a9d80 , status 1 +connecting thr d99a9d80 , thread 2593 , mypolls 0 +myconn 0 connecting thr d99a9d80 , thread 2593 , mypolls 0 +thr d99a9f00 , status 1 +connecting thr d99a9f00 , thread 2594 , mypolls 0 +myconn 0 connecting thr d99a9f00 , thread 2594 , mypolls 0 +thr d99aa080 , status 1 +connecting thr d99aa080 , thread 2595 , mypolls 0 +myconn 0 connecting thr d99aa080 , thread 2595 , mypolls 0 +thr d99aa200 , status 1 +connecting thr d99aa200 , thread 2596 , mypolls 0 +myconn 0 connecting thr d99aa200 , thread 2596 , mypolls 0 +thr d99aa380 , status 1 +connecting thr d99aa380 , thread 2597 , mypolls 0 +myconn 0 connecting thr d99aa380 , thread 2597 , mypolls 0 +thr d99aa500 , status 1 +connecting thr d99aa500 , thread 2598 , mypolls 0 +myconn 0 connecting thr d99aa500 , thread 2598 , mypolls 0 +thr d99aa680 , status 1 +connecting thr d99aa680 , thread 2599 , mypolls 0 +myconn 0 connecting thr d99aa680 , thread 2599 , mypolls 0 +thr d99aa800 , status 1 +connecting thr d99aa800 , thread 2600 , mypolls 0 +myconn 0 connecting thr d99aa800 , thread 2600 , mypolls 0 +thr d99aa980 , status 1 +connecting thr d99aa980 , thread 2601 , mypolls 0 +myconn 0 connecting thr d99aa980 , thread 2601 , mypolls 0 +thr d99aab00 , status 1 +connecting thr d99aab00 , thread 2602 , mypolls 0 +myconn 0 connecting thr d99aab00 , thread 2602 , mypolls 0 +thr d99aac80 , status 1 +connecting thr d99aac80 , thread 2603 , mypolls 0 +myconn 0 connecting thr d99aac80 , thread 2603 , mypolls 0 +thr d99aae00 , status 1 +connecting thr d99aae00 , thread 2604 , mypolls 0 +myconn 0 connecting thr d99aae00 , thread 2604 , mypolls 0 +thr d99aaf80 , status 1 +connecting thr d99aaf80 , thread 2605 , mypolls 0 +myconn 0 connecting thr d99aaf80 , thread 2605 , mypolls 0 +thr d99ab100 , status 1 +connecting thr d99ab100 , thread 2606 , mypolls 0 +myconn 0 connecting thr d99ab100 , thread 2606 , mypolls 0 +thr d99ab280 , status 1 +connecting thr d99ab280 , thread 2607 , mypolls 0 +myconn 0 connecting thr d99ab280 , thread 2607 , mypolls 0 +thr d99ab400 , status 1 +connecting thr d99ab400 , thread 2608 , mypolls 0 +myconn 0 connecting thr d99ab400 , thread 2608 , mypolls 0 +thr d99ab580 , status 1 +connecting thr d99ab580 , thread 2609 , mypolls 0 +myconn 0 connecting thr d99ab580 , thread 2609 , mypolls 0 +thr d99ab700 , status 1 +connecting thr d99ab700 , thread 2610 , mypolls 0 +myconn 0 connecting thr d99ab700 , thread 2610 , mypolls 0 +thr d99ab880 , status 1 +connecting thr d99ab880 , thread 2611 , mypolls 0 +myconn 0 connecting thr d99ab880 , thread 2611 , mypolls 0 +thr d99aba00 , status 1 +connecting thr d99aba00 , thread 2612 , mypolls 0 +myconn 0 connecting thr d99aba00 , thread 2612 , mypolls 0 +thr d99abb80 , status 1 +connecting thr d99abb80 , thread 2613 , mypolls 0 +myconn 0 connecting thr d99abb80 , thread 2613 , mypolls 0 +thr d99abd00 , status 1 +connecting thr d99abd00 , thread 2614 , mypolls 0 +myconn 0 connecting thr d99abd00 , thread 2614 , mypolls 0 +thr d99abe80 , status 1 +connecting thr d99abe80 , thread 2615 , mypolls 0 +myconn 0 connecting thr d99abe80 , thread 2615 , mypolls 0 +thr d97f7000 , status 1 +connecting thr d97f7000 , thread 2616 , mypolls 0 +myconn 0 connecting thr d97f7000 , thread 2616 , mypolls 0 +thr d97f7180 , status 1 +connecting thr d97f7180 , thread 2617 , mypolls 0 +myconn 0 connecting thr d97f7180 , thread 2617 , mypolls 0 +thr d97f7300 , status 1 +connecting thr d97f7300 , thread 2618 , mypolls 0 +myconn 0 connecting thr d97f7300 , thread 2618 , mypolls 0 +thr d97f7480 , status 1 +connecting thr d97f7480 , thread 2619 , mypolls 0 +myconn 0 connecting thr d97f7480 , thread 2619 , mypolls 0 +thr d97f7600 , status 1 +connecting thr d97f7600 , thread 2620 , mypolls 0 +myconn 0 connecting thr d97f7600 , thread 2620 , mypolls 0 +thr d97f7780 , status 1 +connecting thr d97f7780 , thread 2621 , mypolls 0 +myconn 0 connecting thr d97f7780 , thread 2621 , mypolls 0 +thr d97f7900 , status 1 +connecting thr d97f7900 , thread 2622 , mypolls 0 +myconn 0 connecting thr d97f7900 , thread 2622 , mypolls 0 +thr d97f7a80 , status 1 +connecting thr d97f7a80 , thread 2623 , mypolls 0 +myconn 0 connecting thr d97f7a80 , thread 2623 , mypolls 0 +thr d97f7c00 , status 1 +connecting thr d97f7c00 , thread 2624 , mypolls 0 +myconn 0 connecting thr d97f7c00 , thread 2624 , mypolls 0 +thr d97f7d80 , status 1 +connecting thr d97f7d80 , thread 2625 , mypolls 0 +myconn 0 connecting thr d97f7d80 , thread 2625 , mypolls 0 +thr d97f7f00 , status 1 +connecting thr d97f7f00 , thread 2626 , mypolls 0 +myconn 0 connecting thr d97f7f00 , thread 2626 , mypolls 0 +thr d97f8080 , status 1 +connecting thr d97f8080 , thread 2627 , mypolls 0 +myconn 0 connecting thr d97f8080 , thread 2627 , mypolls 0 +thr d97f8200 , status 1 +connecting thr d97f8200 , thread 2628 , mypolls 0 +myconn 0 connecting thr d97f8200 , thread 2628 , mypolls 0 +thr d97f8380 , status 1 +connecting thr d97f8380 , thread 2629 , mypolls 0 +myconn 0 connecting thr d97f8380 , thread 2629 , mypolls 0 +thr d97f8500 , status 1 +connecting thr d97f8500 , thread 2630 , mypolls 0 +myconn 0 connecting thr d97f8500 , thread 2630 , mypolls 0 +thr d97f8680 , status 1 +connecting thr d97f8680 , thread 2631 , mypolls 0 +myconn 0 connecting thr d97f8680 , thread 2631 , mypolls 0 +thr d97f8800 , status 1 +connecting thr d97f8800 , thread 2632 , mypolls 0 +myconn 0 connecting thr d97f8800 , thread 2632 , mypolls 0 +thr d97f8980 , status 1 +connecting thr d97f8980 , thread 2633 , mypolls 0 +myconn 0 connecting thr d97f8980 , thread 2633 , mypolls 0 +thr d97f8b00 , status 1 +connecting thr d97f8b00 , thread 2634 , mypolls 0 +myconn 0 connecting thr d97f8b00 , thread 2634 , mypolls 0 +thr d97f8c80 , status 1 +connecting thr d97f8c80 , thread 2635 , mypolls 0 +myconn 0 connecting thr d97f8c80 , thread 2635 , mypolls 0 +thr d97f8e00 , status 1 +connecting thr d97f8e00 , thread 2636 , mypolls 0 +myconn 0 connecting thr d97f8e00 , thread 2636 , mypolls 0 +thr d97f8f80 , status 1 +connecting thr d97f8f80 , thread 2637 , mypolls 0 +myconn 0 connecting thr d97f8f80 , thread 2637 , mypolls 0 +thr d97f9100 , status 1 +connecting thr d97f9100 , thread 2638 , mypolls 0 +myconn 0 connecting thr d97f9100 , thread 2638 , mypolls 0 +thr d97f9280 , status 1 +connecting thr d97f9280 , thread 2639 , mypolls 0 +myconn 0 connecting thr d97f9280 , thread 2639 , mypolls 0 +thr d97f9400 , status 1 +connecting thr d97f9400 , thread 2640 , mypolls 0 +myconn 0 connecting thr d97f9400 , thread 2640 , mypolls 0 +thr d97f9580 , status 1 +connecting thr d97f9580 , thread 2641 , mypolls 0 +myconn 0 connecting thr d97f9580 , thread 2641 , mypolls 0 +thr d97f9700 , status 1 +connecting thr d97f9700 , thread 2642 , mypolls 0 +myconn 0 connecting thr d97f9700 , thread 2642 , mypolls 0 +thr d97f9880 , status 1 +connecting thr d97f9880 , thread 2643 , mypolls 0 +myconn 0 connecting thr d97f9880 , thread 2643 , mypolls 0 +thr d97f9a00 , status 1 +connecting thr d97f9a00 , thread 2644 , mypolls 0 +myconn 0 connecting thr d97f9a00 , thread 2644 , mypolls 0 +thr d97f9b80 , status 1 +connecting thr d97f9b80 , thread 2645 , mypolls 0 +myconn 0 connecting thr d97f9b80 , thread 2645 , mypolls 0 +thr d97f9d00 , status 1 +connecting thr d97f9d00 , thread 2646 , mypolls 0 +myconn 0 connecting thr d97f9d00 , thread 2646 , mypolls 0 +thr d97f9e80 , status 1 +connecting thr d97f9e80 , thread 2647 , mypolls 0 +myconn 0 connecting thr d97f9e80 , thread 2647 , mypolls 0 +thr d95fd000 , status 1 +connecting thr d95fd000 , thread 2648 , mypolls 0 +myconn 0 connecting thr d95fd000 , thread 2648 , mypolls 0 +thr d95fd180 , status 1 +connecting thr d95fd180 , thread 2649 , mypolls 0 +myconn 0 connecting thr d95fd180 , thread 2649 , mypolls 0 +thr d95fd300 , status 1 +connecting thr d95fd300 , thread 2650 , mypolls 0 +myconn 0 connecting thr d95fd300 , thread 2650 , mypolls 0 +thr d95fd480 , status 1 +connecting thr d95fd480 , thread 2651 , mypolls 0 +myconn 0 connecting thr d95fd480 , thread 2651 , mypolls 0 +thr d95fd600 , status 1 +connecting thr d95fd600 , thread 2652 , mypolls 0 +myconn 0 connecting thr d95fd600 , thread 2652 , mypolls 0 +thr d95fd780 , status 1 +connecting thr d95fd780 , thread 2653 , mypolls 0 +myconn 0 connecting thr d95fd780 , thread 2653 , mypolls 0 +thr d95fd900 , status 1 +connecting thr d95fd900 , thread 2654 , mypolls 0 +myconn 0 connecting thr d95fd900 , thread 2654 , mypolls 0 +thr d95fda80 , status 1 +connecting thr d95fda80 , thread 2655 , mypolls 0 +myconn 0 connecting thr d95fda80 , thread 2655 , mypolls 0 +thr d95fdc00 , status 1 +connecting thr d95fdc00 , thread 2656 , mypolls 0 +myconn 0 connecting thr d95fdc00 , thread 2656 , mypolls 0 +thr d95fdd80 , status 1 +connecting thr d95fdd80 , thread 2657 , mypolls 0 +myconn 0 connecting thr d95fdd80 , thread 2657 , mypolls 0 +thr d95fdf00 , status 1 +connecting thr d95fdf00 , thread 2658 , mypolls 0 +myconn 0 connecting thr d95fdf00 , thread 2658 , mypolls 0 +thr d95fe080 , status 1 +connecting thr d95fe080 , thread 2659 , mypolls 0 +myconn 0 connecting thr d95fe080 , thread 2659 , mypolls 0 +thr d95fe200 , status 1 +connecting thr d95fe200 , thread 2660 , mypolls 0 +myconn 0 connecting thr d95fe200 , thread 2660 , mypolls 0 +thr d95fe380 , status 1 +connecting thr d95fe380 , thread 2661 , mypolls 0 +myconn 0 connecting thr d95fe380 , thread 2661 , mypolls 0 +thr d95fe500 , status 1 +connecting thr d95fe500 , thread 2662 , mypolls 0 +myconn 0 connecting thr d95fe500 , thread 2662 , mypolls 0 +thr d95fe680 , status 1 +connecting thr d95fe680 , thread 2663 , mypolls 0 +myconn 0 connecting thr d95fe680 , thread 2663 , mypolls 0 +thr d95fe800 , status 1 +connecting thr d95fe800 , thread 2664 , mypolls 0 +myconn 0 connecting thr d95fe800 , thread 2664 , mypolls 0 +thr d95fe980 , status 1 +connecting thr d95fe980 , thread 2665 , mypolls 0 +myconn 0 connecting thr d95fe980 , thread 2665 , mypolls 0 +thr d95feb00 , status 1 +connecting thr d95feb00 , thread 2666 , mypolls 0 +myconn 0 connecting thr d95feb00 , thread 2666 , mypolls 0 +thr d95fec80 , status 1 +connecting thr d95fec80 , thread 2667 , mypolls 0 +myconn 0 connecting thr d95fec80 , thread 2667 , mypolls 0 +thr d95fee00 , status 1 +connecting thr d95fee00 , thread 2668 , mypolls 0 +myconn 0 connecting thr d95fee00 , thread 2668 , mypolls 0 +thr d95fef80 , status 1 +connecting thr d95fef80 , thread 2669 , mypolls 0 +myconn 0 connecting thr d95fef80 , thread 2669 , mypolls 0 +thr d95ff100 , status 1 +connecting thr d95ff100 , thread 2670 , mypolls 0 +myconn 0 connecting thr d95ff100 , thread 2670 , mypolls 0 +thr d95ff280 , status 1 +connecting thr d95ff280 , thread 2671 , mypolls 0 +myconn 0 connecting thr d95ff280 , thread 2671 , mypolls 0 +thr d95ff400 , status 1 +connecting thr d95ff400 , thread 2672 , mypolls 0 +myconn 0 connecting thr d95ff400 , thread 2672 , mypolls 0 +thr d95ff580 , status 1 +connecting thr d95ff580 , thread 2673 , mypolls 0 +myconn 0 connecting thr d95ff580 , thread 2673 , mypolls 0 +thr d95ff700 , status 1 +connecting thr d95ff700 , thread 2674 , mypolls 0 +myconn 0 connecting thr d95ff700 , thread 2674 , mypolls 0 +thr d95ff880 , status 1 +connecting thr d95ff880 , thread 2675 , mypolls 0 +myconn 0 connecting thr d95ff880 , thread 2675 , mypolls 0 +thr d95ffa00 , status 1 +connecting thr d95ffa00 , thread 2676 , mypolls 0 +myconn 0 connecting thr d95ffa00 , thread 2676 , mypolls 0 +thr d95ffb80 , status 1 +connecting thr d95ffb80 , thread 2677 , mypolls 0 +myconn 0 connecting thr d95ffb80 , thread 2677 , mypolls 0 +thr d95ffd00 , status 1 +connecting thr d95ffd00 , thread 2678 , mypolls 0 +myconn 0 connecting thr d95ffd00 , thread 2678 , mypolls 0 +thr d95ffe80 , status 1 +connecting thr d95ffe80 , thread 2679 , mypolls 0 +myconn 0 connecting thr d95ffe80 , thread 2679 , mypolls 0 +thr d93fb000 , status 1 +connecting thr d93fb000 , thread 2680 , mypolls 0 +myconn 0 connecting thr d93fb000 , thread 2680 , mypolls 0 +thr d93fb180 , status 1 +connecting thr d93fb180 , thread 2681 , mypolls 0 +myconn 0 connecting thr d93fb180 , thread 2681 , mypolls 0 +thr d93fb300 , status 1 +connecting thr d93fb300 , thread 2682 , mypolls 0 +myconn 0 connecting thr d93fb300 , thread 2682 , mypolls 0 +thr d93fb480 , status 1 +connecting thr d93fb480 , thread 2683 , mypolls 0 +myconn 0 connecting thr d93fb480 , thread 2683 , mypolls 0 +thr d93fb600 , status 1 +connecting thr d93fb600 , thread 2684 , mypolls 0 +myconn 0 connecting thr d93fb600 , thread 2684 , mypolls 0 +thr d93fb780 , status 1 +connecting thr d93fb780 , thread 2685 , mypolls 0 +myconn 0 connecting thr d93fb780 , thread 2685 , mypolls 0 +thr d93fb900 , status 1 +connecting thr d93fb900 , thread 2686 , mypolls 0 +myconn 0 connecting thr d93fb900 , thread 2686 , mypolls 0 +thr d93fba80 , status 1 +connecting thr d93fba80 , thread 2687 , mypolls 0 +myconn 0 connecting thr d93fba80 , thread 2687 , mypolls 0 +thr d93fbc00 , status 1 +connecting thr d93fbc00 , thread 2688 , mypolls 0 +myconn 0 connecting thr d93fbc00 , thread 2688 , mypolls 0 +thr d93fbd80 , status 1 +connecting thr d93fbd80 , thread 2689 , mypolls 0 +myconn 0 connecting thr d93fbd80 , thread 2689 , mypolls 0 +thr d93fbf00 , status 1 +connecting thr d93fbf00 , thread 2690 , mypolls 0 +myconn 0 connecting thr d93fbf00 , thread 2690 , mypolls 0 +thr d93fc080 , status 1 +connecting thr d93fc080 , thread 2691 , mypolls 0 +myconn 0 connecting thr d93fc080 , thread 2691 , mypolls 0 +thr d93fc200 , status 1 +connecting thr d93fc200 , thread 2692 , mypolls 0 +myconn 0 connecting thr d93fc200 , thread 2692 , mypolls 0 +thr d93fc380 , status 1 +connecting thr d93fc380 , thread 2693 , mypolls 0 +myconn 0 connecting thr d93fc380 , thread 2693 , mypolls 0 +thr d93fc500 , status 1 +connecting thr d93fc500 , thread 2694 , mypolls 0 +myconn 0 connecting thr d93fc500 , thread 2694 , mypolls 0 +thr d93fc680 , status 1 +connecting thr d93fc680 , thread 2695 , mypolls 0 +myconn 0 connecting thr d93fc680 , thread 2695 , mypolls 0 +thr d93fc800 , status 1 +connecting thr d93fc800 , thread 2696 , mypolls 0 +myconn 0 connecting thr d93fc800 , thread 2696 , mypolls 0 +thr d93fc980 , status 1 +connecting thr d93fc980 , thread 2697 , mypolls 0 +myconn 0 connecting thr d93fc980 , thread 2697 , mypolls 0 +thr d93fcb00 , status 1 +connecting thr d93fcb00 , thread 2698 , mypolls 0 +myconn 0 connecting thr d93fcb00 , thread 2698 , mypolls 0 +thr d93fcc80 , status 1 +connecting thr d93fcc80 , thread 2699 , mypolls 0 +myconn 0 connecting thr d93fcc80 , thread 2699 , mypolls 0 +thr d93fce00 , status 1 +connecting thr d93fce00 , thread 2700 , mypolls 0 +myconn 0 connecting thr d93fce00 , thread 2700 , mypolls 0 +thr d93fcf80 , status 1 +connecting thr d93fcf80 , thread 2701 , mypolls 0 +myconn 0 connecting thr d93fcf80 , thread 2701 , mypolls 0 +thr d93fd100 , status 1 +connecting thr d93fd100 , thread 2702 , mypolls 0 +myconn 0 connecting thr d93fd100 , thread 2702 , mypolls 0 +thr d93fd280 , status 1 +connecting thr d93fd280 , thread 2703 , mypolls 0 +myconn 0 connecting thr d93fd280 , thread 2703 , mypolls 0 +thr d93fd400 , status 1 +connecting thr d93fd400 , thread 2704 , mypolls 0 +myconn 0 connecting thr d93fd400 , thread 2704 , mypolls 0 +thr d93fd580 , status 1 +connecting thr d93fd580 , thread 2705 , mypolls 0 +myconn 0 connecting thr d93fd580 , thread 2705 , mypolls 0 +thr d93fd700 , status 1 +connecting thr d93fd700 , thread 2706 , mypolls 0 +myconn 0 connecting thr d93fd700 , thread 2706 , mypolls 0 +thr d93fd880 , status 1 +connecting thr d93fd880 , thread 2707 , mypolls 0 +myconn 0 connecting thr d93fd880 , thread 2707 , mypolls 0 +thr d93fda00 , status 1 +connecting thr d93fda00 , thread 2708 , mypolls 0 +myconn 0 connecting thr d93fda00 , thread 2708 , mypolls 0 +thr d93fdb80 , status 1 +connecting thr d93fdb80 , thread 2709 , mypolls 0 +myconn 0 connecting thr d93fdb80 , thread 2709 , mypolls 0 +thr d93fdd00 , status 1 +connecting thr d93fdd00 , thread 2710 , mypolls 0 +myconn 0 connecting thr d93fdd00 , thread 2710 , mypolls 0 +thr d93fde80 , status 1 +connecting thr d93fde80 , thread 2711 , mypolls 0 +myconn 0 connecting thr d93fde80 , thread 2711 , mypolls 0 +thr d8f44000 , status 1 +connecting thr d8f44000 , thread 2712 , mypolls 0 +myconn 0 connecting thr d8f44000 , thread 2712 , mypolls 0 +thr d8f44180 , status 1 +connecting thr d8f44180 , thread 2713 , mypolls 0 +myconn 0 connecting thr d8f44180 , thread 2713 , mypolls 0 +thr d8f44300 , status 1 +connecting thr d8f44300 , thread 2714 , mypolls 0 +myconn 0 connecting thr d8f44300 , thread 2714 , mypolls 0 +thr d8f44480 , status 1 +connecting thr d8f44480 , thread 2715 , mypolls 0 +myconn 0 connecting thr d8f44480 , thread 2715 , mypolls 0 +thr d8f44600 , status 1 +connecting thr d8f44600 , thread 2716 , mypolls 0 +myconn 0 connecting thr d8f44600 , thread 2716 , mypolls 0 +thr d8f44780 , status 1 +connecting thr d8f44780 , thread 2717 , mypolls 0 +myconn 0 connecting thr d8f44780 , thread 2717 , mypolls 0 +thr d8f44900 , status 1 +connecting thr d8f44900 , thread 2718 , mypolls 0 +myconn 0 connecting thr d8f44900 , thread 2718 , mypolls 0 +thr d8f44a80 , status 1 +connecting thr d8f44a80 , thread 2719 , mypolls 0 +myconn 0 connecting thr d8f44a80 , thread 2719 , mypolls 0 +thr d8f44c00 , status 1 +connecting thr d8f44c00 , thread 2720 , mypolls 0 +myconn 0 connecting thr d8f44c00 , thread 2720 , mypolls 0 +thr d8f44d80 , status 1 +connecting thr d8f44d80 , thread 2721 , mypolls 0 +myconn 0 connecting thr d8f44d80 , thread 2721 , mypolls 0 +thr d8f44f00 , status 1 +connecting thr d8f44f00 , thread 2722 , mypolls 0 +myconn 0 connecting thr d8f44f00 , thread 2722 , mypolls 0 +thr d8f45080 , status 1 +connecting thr d8f45080 , thread 2723 , mypolls 0 +myconn 0 connecting thr d8f45080 , thread 2723 , mypolls 0 +thr d8f45200 , status 1 +connecting thr d8f45200 , thread 2724 , mypolls 0 +myconn 0 connecting thr d8f45200 , thread 2724 , mypolls 0 +thr d8f45380 , status 1 +connecting thr d8f45380 , thread 2725 , mypolls 0 +myconn 0 connecting thr d8f45380 , thread 2725 , mypolls 0 +thr d8f45500 , status 1 +connecting thr d8f45500 , thread 2726 , mypolls 0 +myconn 0 connecting thr d8f45500 , thread 2726 , mypolls 0 +thr d8f45680 , status 1 +connecting thr d8f45680 , thread 2727 , mypolls 0 +myconn 0 connecting thr d8f45680 , thread 2727 , mypolls 0 +thr d8f45800 , status 1 +connecting thr d8f45800 , thread 2728 , mypolls 0 +myconn 0 connecting thr d8f45800 , thread 2728 , mypolls 0 +thr d8f45980 , status 1 +connecting thr d8f45980 , thread 2729 , mypolls 0 +myconn 0 connecting thr d8f45980 , thread 2729 , mypolls 0 +thr d8f45b00 , status 1 +connecting thr d8f45b00 , thread 2730 , mypolls 0 +myconn 0 connecting thr d8f45b00 , thread 2730 , mypolls 0 +thr d8f45c80 , status 1 +connecting thr d8f45c80 , thread 2731 , mypolls 0 +myconn 0 connecting thr d8f45c80 , thread 2731 , mypolls 0 +thr d8f45e00 , status 1 +connecting thr d8f45e00 , thread 2732 , mypolls 0 +myconn 0 connecting thr d8f45e00 , thread 2732 , mypolls 0 +thr d8f45f80 , status 1 +connecting thr d8f45f80 , thread 2733 , mypolls 0 +myconn 0 connecting thr d8f45f80 , thread 2733 , mypolls 0 +thr d8f46100 , status 1 +connecting thr d8f46100 , thread 2734 , mypolls 0 +myconn 0 connecting thr d8f46100 , thread 2734 , mypolls 0 +thr d8f46280 , status 1 +connecting thr d8f46280 , thread 2735 , mypolls 0 +myconn 0 connecting thr d8f46280 , thread 2735 , mypolls 0 +thr d8f46400 , status 1 +connecting thr d8f46400 , thread 2736 , mypolls 0 +myconn 0 connecting thr d8f46400 , thread 2736 , mypolls 0 +thr d8f46580 , status 1 +connecting thr d8f46580 , thread 2737 , mypolls 0 +myconn 0 connecting thr d8f46580 , thread 2737 , mypolls 0 +thr d8f46700 , status 1 +connecting thr d8f46700 , thread 2738 , mypolls 0 +myconn 0 connecting thr d8f46700 , thread 2738 , mypolls 0 +thr d8f46880 , status 1 +connecting thr d8f46880 , thread 2739 , mypolls 0 +myconn 0 connecting thr d8f46880 , thread 2739 , mypolls 0 +thr d8f46a00 , status 1 +connecting thr d8f46a00 , thread 2740 , mypolls 0 +myconn 0 connecting thr d8f46a00 , thread 2740 , mypolls 0 +thr d8f46b80 , status 1 +connecting thr d8f46b80 , thread 2741 , mypolls 0 +myconn 0 connecting thr d8f46b80 , thread 2741 , mypolls 0 +thr d8f46d00 , status 1 +connecting thr d8f46d00 , thread 2742 , mypolls 0 +myconn 0 connecting thr d8f46d00 , thread 2742 , mypolls 0 +thr d8f46e80 , status 1 +connecting thr d8f46e80 , thread 2743 , mypolls 0 +myconn 0 connecting thr d8f46e80 , thread 2743 , mypolls 0 +thr d8da5000 , status 1 +connecting thr d8da5000 , thread 2744 , mypolls 0 +myconn 0 connecting thr d8da5000 , thread 2744 , mypolls 0 +thr d8da5180 , status 1 +connecting thr d8da5180 , thread 2745 , mypolls 0 +myconn 0 connecting thr d8da5180 , thread 2745 , mypolls 0 +thr d8da5300 , status 1 +connecting thr d8da5300 , thread 2746 , mypolls 0 +myconn 0 connecting thr d8da5300 , thread 2746 , mypolls 0 +thr d8da5480 , status 1 +connecting thr d8da5480 , thread 2747 , mypolls 0 +myconn 0 connecting thr d8da5480 , thread 2747 , mypolls 0 +thr d8da5600 , status 1 +connecting thr d8da5600 , thread 2748 , mypolls 0 +myconn 0 connecting thr d8da5600 , thread 2748 , mypolls 0 +thr d8da5780 , status 1 +connecting thr d8da5780 , thread 2749 , mypolls 0 +myconn 0 connecting thr d8da5780 , thread 2749 , mypolls 0 +thr d8da5900 , status 1 +connecting thr d8da5900 , thread 2750 , mypolls 0 +myconn 0 connecting thr d8da5900 , thread 2750 , mypolls 0 +thr d8da5a80 , status 1 +connecting thr d8da5a80 , thread 2751 , mypolls 0 +myconn 0 connecting thr d8da5a80 , thread 2751 , mypolls 0 +thr d8da5c00 , status 1 +connecting thr d8da5c00 , thread 2752 , mypolls 0 +myconn 0 connecting thr d8da5c00 , thread 2752 , mypolls 0 +thr d8da5d80 , status 1 +connecting thr d8da5d80 , thread 2753 , mypolls 0 +myconn 0 connecting thr d8da5d80 , thread 2753 , mypolls 0 +thr d8da5f00 , status 1 +connecting thr d8da5f00 , thread 2754 , mypolls 0 +myconn 0 connecting thr d8da5f00 , thread 2754 , mypolls 0 +thr d8da6080 , status 1 +connecting thr d8da6080 , thread 2755 , mypolls 0 +myconn 0 connecting thr d8da6080 , thread 2755 , mypolls 0 +thr d8da6200 , status 1 +connecting thr d8da6200 , thread 2756 , mypolls 0 +myconn 0 connecting thr d8da6200 , thread 2756 , mypolls 0 +thr d8da6380 , status 1 +connecting thr d8da6380 , thread 2757 , mypolls 0 +myconn 0 connecting thr d8da6380 , thread 2757 , mypolls 0 +thr d8da6500 , status 1 +connecting thr d8da6500 , thread 2758 , mypolls 0 +myconn 0 connecting thr d8da6500 , thread 2758 , mypolls 0 +thr d8da6680 , status 1 +connecting thr d8da6680 , thread 2759 , mypolls 0 +myconn 0 connecting thr d8da6680 , thread 2759 , mypolls 0 +thr d8da6800 , status 1 +connecting thr d8da6800 , thread 2760 , mypolls 0 +myconn 0 connecting thr d8da6800 , thread 2760 , mypolls 0 +thr d8da6980 , status 1 +connecting thr d8da6980 , thread 2761 , mypolls 0 +myconn 0 connecting thr d8da6980 , thread 2761 , mypolls 0 +thr d8da6b00 , status 1 +connecting thr d8da6b00 , thread 2762 , mypolls 0 +myconn 0 connecting thr d8da6b00 , thread 2762 , mypolls 0 +thr d8da6c80 , status 1 +connecting thr d8da6c80 , thread 2763 , mypolls 0 +myconn 0 connecting thr d8da6c80 , thread 2763 , mypolls 0 +thr d8da6e00 , status 1 +connecting thr d8da6e00 , thread 2764 , mypolls 0 +myconn 0 connecting thr d8da6e00 , thread 2764 , mypolls 0 +thr d8da6f80 , status 1 +connecting thr d8da6f80 , thread 2765 , mypolls 0 +myconn 0 connecting thr d8da6f80 , thread 2765 , mypolls 0 +thr d8da7100 , status 1 +connecting thr d8da7100 , thread 2766 , mypolls 0 +myconn 0 connecting thr d8da7100 , thread 2766 , mypolls 0 +thr d8da7280 , status 1 +connecting thr d8da7280 , thread 2767 , mypolls 0 +myconn 0 connecting thr d8da7280 , thread 2767 , mypolls 0 +thr d8da7400 , status 1 +connecting thr d8da7400 , thread 2768 , mypolls 0 +myconn 0 connecting thr d8da7400 , thread 2768 , mypolls 0 +thr d8da7580 , status 1 +connecting thr d8da7580 , thread 2769 , mypolls 0 +myconn 0 connecting thr d8da7580 , thread 2769 , mypolls 0 +thr d8da7700 , status 1 +connecting thr d8da7700 , thread 2770 , mypolls 0 +myconn 0 connecting thr d8da7700 , thread 2770 , mypolls 0 +thr d8da7880 , status 1 +connecting thr d8da7880 , thread 2771 , mypolls 0 +myconn 0 connecting thr d8da7880 , thread 2771 , mypolls 0 +thr d8da7a00 , status 1 +connecting thr d8da7a00 , thread 2772 , mypolls 0 +myconn 0 connecting thr d8da7a00 , thread 2772 , mypolls 0 +thr d8da7b80 , status 1 +connecting thr d8da7b80 , thread 2773 , mypolls 0 +myconn 0 connecting thr d8da7b80 , thread 2773 , mypolls 0 +thr d8da7d00 , status 1 +connecting thr d8da7d00 , thread 2774 , mypolls 0 +myconn 0 connecting thr d8da7d00 , thread 2774 , mypolls 0 +thr d8da7e80 , status 1 +connecting thr d8da7e80 , thread 2775 , mypolls 0 +myconn 0 connecting thr d8da7e80 , thread 2775 , mypolls 0 +thr d8bfd000 , status 1 +connecting thr d8bfd000 , thread 2776 , mypolls 0 +myconn 0 connecting thr d8bfd000 , thread 2776 , mypolls 0 +thr d8bfd180 , status 1 +connecting thr d8bfd180 , thread 2777 , mypolls 0 +myconn 0 connecting thr d8bfd180 , thread 2777 , mypolls 0 +thr d8bfd300 , status 1 +connecting thr d8bfd300 , thread 2778 , mypolls 0 +myconn 0 connecting thr d8bfd300 , thread 2778 , mypolls 0 +thr d8bfd480 , status 1 +connecting thr d8bfd480 , thread 2779 , mypolls 0 +myconn 0 connecting thr d8bfd480 , thread 2779 , mypolls 0 +thr d8bfd600 , status 1 +connecting thr d8bfd600 , thread 2780 , mypolls 0 +myconn 0 connecting thr d8bfd600 , thread 2780 , mypolls 0 +thr d8bfd780 , status 1 +connecting thr d8bfd780 , thread 2781 , mypolls 0 +myconn 0 connecting thr d8bfd780 , thread 2781 , mypolls 0 +thr d8bfd900 , status 1 +connecting thr d8bfd900 , thread 2782 , mypolls 0 +myconn 0 connecting thr d8bfd900 , thread 2782 , mypolls 0 +thr d8bfda80 , status 1 +connecting thr d8bfda80 , thread 2783 , mypolls 0 +myconn 0 connecting thr d8bfda80 , thread 2783 , mypolls 0 +thr d8bfdc00 , status 1 +connecting thr d8bfdc00 , thread 2784 , mypolls 0 +myconn 0 connecting thr d8bfdc00 , thread 2784 , mypolls 0 +thr d8bfdd80 , status 1 +connecting thr d8bfdd80 , thread 2785 , mypolls 0 +myconn 0 connecting thr d8bfdd80 , thread 2785 , mypolls 0 +thr d8bfdf00 , status 1 +connecting thr d8bfdf00 , thread 2786 , mypolls 0 +myconn 0 connecting thr d8bfdf00 , thread 2786 , mypolls 0 +thr d8bfe080 , status 1 +connecting thr d8bfe080 , thread 2787 , mypolls 0 +myconn 0 connecting thr d8bfe080 , thread 2787 , mypolls 0 +thr d8bfe200 , status 1 +connecting thr d8bfe200 , thread 2788 , mypolls 0 +myconn 0 connecting thr d8bfe200 , thread 2788 , mypolls 0 +thr d8bfe380 , status 1 +connecting thr d8bfe380 , thread 2789 , mypolls 0 +myconn 0 connecting thr d8bfe380 , thread 2789 , mypolls 0 +thr d8bfe500 , status 1 +connecting thr d8bfe500 , thread 2790 , mypolls 0 +myconn 0 connecting thr d8bfe500 , thread 2790 , mypolls 0 +thr d8bfe680 , status 1 +connecting thr d8bfe680 , thread 2791 , mypolls 0 +myconn 0 connecting thr d8bfe680 , thread 2791 , mypolls 0 +thr d8bfe800 , status 1 +connecting thr d8bfe800 , thread 2792 , mypolls 0 +myconn 0 connecting thr d8bfe800 , thread 2792 , mypolls 0 +thr d8bfe980 , status 1 +connecting thr d8bfe980 , thread 2793 , mypolls 0 +myconn 0 connecting thr d8bfe980 , thread 2793 , mypolls 0 +thr d8bfeb00 , status 1 +connecting thr d8bfeb00 , thread 2794 , mypolls 0 +myconn 0 connecting thr d8bfeb00 , thread 2794 , mypolls 0 +thr d8bfec80 , status 1 +connecting thr d8bfec80 , thread 2795 , mypolls 0 +myconn 0 connecting thr d8bfec80 , thread 2795 , mypolls 0 +thr d8bfee00 , status 1 +connecting thr d8bfee00 , thread 2796 , mypolls 0 +myconn 0 connecting thr d8bfee00 , thread 2796 , mypolls 0 +thr d8bfef80 , status 1 +connecting thr d8bfef80 , thread 2797 , mypolls 0 +myconn 0 connecting thr d8bfef80 , thread 2797 , mypolls 0 +thr d8bff100 , status 1 +connecting thr d8bff100 , thread 2798 , mypolls 0 +myconn 0 connecting thr d8bff100 , thread 2798 , mypolls 0 +thr d8bff280 , status 1 +connecting thr d8bff280 , thread 2799 , mypolls 0 +myconn 0 connecting thr d8bff280 , thread 2799 , mypolls 0 +thr d8bff400 , status 1 +connecting thr d8bff400 , thread 2800 , mypolls 0 +myconn 0 connecting thr d8bff400 , thread 2800 , mypolls 0 +thr d8bff580 , status 1 +connecting thr d8bff580 , thread 2801 , mypolls 0 +myconn 0 connecting thr d8bff580 , thread 2801 , mypolls 0 +thr d8bff700 , status 1 +connecting thr d8bff700 , thread 2802 , mypolls 0 +myconn 0 connecting thr d8bff700 , thread 2802 , mypolls 0 +thr d8bff880 , status 1 +connecting thr d8bff880 , thread 2803 , mypolls 0 +myconn 0 connecting thr d8bff880 , thread 2803 , mypolls 0 +thr d8bffa00 , status 1 +connecting thr d8bffa00 , thread 2804 , mypolls 0 +myconn 0 connecting thr d8bffa00 , thread 2804 , mypolls 0 +thr d8bffb80 , status 1 +connecting thr d8bffb80 , thread 2805 , mypolls 0 +myconn 0 connecting thr d8bffb80 , thread 2805 , mypolls 0 +thr d8bffd00 , status 1 +connecting thr d8bffd00 , thread 2806 , mypolls 0 +myconn 0 connecting thr d8bffd00 , thread 2806 , mypolls 0 +thr d8bffe80 , status 1 +connecting thr d8bffe80 , thread 2807 , mypolls 0 +myconn 0 connecting thr d8bffe80 , thread 2807 , mypolls 0 +thr d89fa000 , status 1 +connecting thr d89fa000 , thread 2808 , mypolls 0 +myconn 0 connecting thr d89fa000 , thread 2808 , mypolls 0 +thr d89fa180 , status 1 +connecting thr d89fa180 , thread 2809 , mypolls 0 +myconn 0 connecting thr d89fa180 , thread 2809 , mypolls 0 +thr d89fa300 , status 1 +connecting thr d89fa300 , thread 2810 , mypolls 0 +myconn 0 connecting thr d89fa300 , thread 2810 , mypolls 0 +thr d89fa480 , status 1 +connecting thr d89fa480 , thread 2811 , mypolls 0 +myconn 0 connecting thr d89fa480 , thread 2811 , mypolls 0 +thr d89fa600 , status 1 +connecting thr d89fa600 , thread 2812 , mypolls 0 +myconn 0 connecting thr d89fa600 , thread 2812 , mypolls 0 +thr d89fa780 , status 1 +connecting thr d89fa780 , thread 2813 , mypolls 0 +myconn 0 connecting thr d89fa780 , thread 2813 , mypolls 0 +thr d89fa900 , status 1 +connecting thr d89fa900 , thread 2814 , mypolls 0 +myconn 0 connecting thr d89fa900 , thread 2814 , mypolls 0 +thr d89faa80 , status 1 +connecting thr d89faa80 , thread 2815 , mypolls 0 +myconn 0 connecting thr d89faa80 , thread 2815 , mypolls 0 +thr d89fac00 , status 1 +connecting thr d89fac00 , thread 2816 , mypolls 0 +myconn 0 connecting thr d89fac00 , thread 2816 , mypolls 0 +thr d89fad80 , status 1 +connecting thr d89fad80 , thread 2817 , mypolls 0 +myconn 0 connecting thr d89fad80 , thread 2817 , mypolls 0 +thr d89faf00 , status 1 +connecting thr d89faf00 , thread 2818 , mypolls 0 +myconn 0 connecting thr d89faf00 , thread 2818 , mypolls 0 +thr d89fb080 , status 1 +connecting thr d89fb080 , thread 2819 , mypolls 0 +myconn 0 connecting thr d89fb080 , thread 2819 , mypolls 0 +thr d89fb200 , status 1 +connecting thr d89fb200 , thread 2820 , mypolls 0 +myconn 0 connecting thr d89fb200 , thread 2820 , mypolls 0 +thr d89fb380 , status 1 +connecting thr d89fb380 , thread 2821 , mypolls 0 +myconn 0 connecting thr d89fb380 , thread 2821 , mypolls 0 +thr d89fb500 , status 1 +connecting thr d89fb500 , thread 2822 , mypolls 0 +myconn 0 connecting thr d89fb500 , thread 2822 , mypolls 0 +thr d89fb680 , status 1 +connecting thr d89fb680 , thread 2823 , mypolls 0 +myconn 0 connecting thr d89fb680 , thread 2823 , mypolls 0 +thr d89fb800 , status 1 +connecting thr d89fb800 , thread 2824 , mypolls 0 +myconn 0 connecting thr d89fb800 , thread 2824 , mypolls 0 +thr d89fb980 , status 1 +connecting thr d89fb980 , thread 2825 , mypolls 0 +myconn 0 connecting thr d89fb980 , thread 2825 , mypolls 0 +thr d89fbb00 , status 1 +connecting thr d89fbb00 , thread 2826 , mypolls 0 +myconn 0 connecting thr d89fbb00 , thread 2826 , mypolls 0 +thr d89fbc80 , status 1 +connecting thr d89fbc80 , thread 2827 , mypolls 0 +myconn 0 connecting thr d89fbc80 , thread 2827 , mypolls 0 +thr d89fbe00 , status 1 +connecting thr d89fbe00 , thread 2828 , mypolls 0 +myconn 0 connecting thr d89fbe00 , thread 2828 , mypolls 0 +thr d89fbf80 , status 1 +connecting thr d89fbf80 , thread 2829 , mypolls 0 +myconn 0 connecting thr d89fbf80 , thread 2829 , mypolls 0 +thr d89fc100 , status 1 +connecting thr d89fc100 , thread 2830 , mypolls 0 +myconn 0 connecting thr d89fc100 , thread 2830 , mypolls 0 +thr d89fc280 , status 1 +connecting thr d89fc280 , thread 2831 , mypolls 0 +myconn 0 connecting thr d89fc280 , thread 2831 , mypolls 0 +thr d89fc400 , status 1 +connecting thr d89fc400 , thread 2832 , mypolls 0 +myconn 0 connecting thr d89fc400 , thread 2832 , mypolls 0 +thr d89fc580 , status 1 +connecting thr d89fc580 , thread 2833 , mypolls 0 +myconn 0 connecting thr d89fc580 , thread 2833 , mypolls 0 +thr d89fc700 , status 1 +connecting thr d89fc700 , thread 2834 , mypolls 0 +myconn 0 connecting thr d89fc700 , thread 2834 , mypolls 0 +thr d89fc880 , status 1 +connecting thr d89fc880 , thread 2835 , mypolls 0 +myconn 0 connecting thr d89fc880 , thread 2835 , mypolls 0 +thr d89fca00 , status 1 +connecting thr d89fca00 , thread 2836 , mypolls 0 +myconn 0 connecting thr d89fca00 , thread 2836 , mypolls 0 +thr d89fcb80 , status 1 +connecting thr d89fcb80 , thread 2837 , mypolls 0 +myconn 0 connecting thr d89fcb80 , thread 2837 , mypolls 0 +thr d89fcd00 , status 1 +connecting thr d89fcd00 , thread 2838 , mypolls 0 +myconn 0 connecting thr d89fcd00 , thread 2838 , mypolls 0 +thr d89fce80 , status 1 +connecting thr d89fce80 , thread 2839 , mypolls 0 +myconn 0 connecting thr d89fce80 , thread 2839 , mypolls 0 +thr d84de000 , status 1 +connecting thr d84de000 , thread 2840 , mypolls 0 +myconn 0 connecting thr d84de000 , thread 2840 , mypolls 0 +thr d84de180 , status 1 +connecting thr d84de180 , thread 2841 , mypolls 0 +myconn 0 connecting thr d84de180 , thread 2841 , mypolls 0 +thr d84de300 , status 1 +connecting thr d84de300 , thread 2842 , mypolls 0 +myconn 0 connecting thr d84de300 , thread 2842 , mypolls 0 +thr d84de480 , status 1 +connecting thr d84de480 , thread 2843 , mypolls 0 +myconn 0 connecting thr d84de480 , thread 2843 , mypolls 0 +thr d84de600 , status 1 +connecting thr d84de600 , thread 2844 , mypolls 0 +myconn 0 connecting thr d84de600 , thread 2844 , mypolls 0 +thr d84de780 , status 1 +connecting thr d84de780 , thread 2845 , mypolls 0 +myconn 0 connecting thr d84de780 , thread 2845 , mypolls 0 +thr d84de900 , status 1 +connecting thr d84de900 , thread 2846 , mypolls 0 +myconn 0 connecting thr d84de900 , thread 2846 , mypolls 0 +thr d84dea80 , status 1 +connecting thr d84dea80 , thread 2847 , mypolls 0 +myconn 0 connecting thr d84dea80 , thread 2847 , mypolls 0 +thr d84dec00 , status 1 +connecting thr d84dec00 , thread 2848 , mypolls 0 +myconn 0 connecting thr d84dec00 , thread 2848 , mypolls 0 +thr d84ded80 , status 1 +connecting thr d84ded80 , thread 2849 , mypolls 0 +myconn 0 connecting thr d84ded80 , thread 2849 , mypolls 0 +thr d84def00 , status 1 +connecting thr d84def00 , thread 2850 , mypolls 0 +myconn 0 connecting thr d84def00 , thread 2850 , mypolls 0 +thr d84df080 , status 1 +connecting thr d84df080 , thread 2851 , mypolls 0 +myconn 0 connecting thr d84df080 , thread 2851 , mypolls 0 +thr d84df200 , status 1 +connecting thr d84df200 , thread 2852 , mypolls 0 +myconn 0 connecting thr d84df200 , thread 2852 , mypolls 0 +thr d84df380 , status 1 +connecting thr d84df380 , thread 2853 , mypolls 0 +myconn 0 connecting thr d84df380 , thread 2853 , mypolls 0 +thr d84df500 , status 1 +connecting thr d84df500 , thread 2854 , mypolls 0 +myconn 0 connecting thr d84df500 , thread 2854 , mypolls 0 +thr d84df680 , status 1 +connecting thr d84df680 , thread 2855 , mypolls 0 +myconn 0 connecting thr d84df680 , thread 2855 , mypolls 0 +thr d84df800 , status 1 +connecting thr d84df800 , thread 2856 , mypolls 0 +myconn 0 connecting thr d84df800 , thread 2856 , mypolls 0 +thr d84df980 , status 1 +connecting thr d84df980 , thread 2857 , mypolls 0 +myconn 0 connecting thr d84df980 , thread 2857 , mypolls 0 +thr d84dfb00 , status 1 +connecting thr d84dfb00 , thread 2858 , mypolls 0 +myconn 0 connecting thr d84dfb00 , thread 2858 , mypolls 0 +thr d84dfc80 , status 1 +connecting thr d84dfc80 , thread 2859 , mypolls 0 +myconn 0 connecting thr d84dfc80 , thread 2859 , mypolls 0 +thr d84dfe00 , status 1 +connecting thr d84dfe00 , thread 2860 , mypolls 0 +myconn 0 connecting thr d84dfe00 , thread 2860 , mypolls 0 +thr d84dff80 , status 1 +connecting thr d84dff80 , thread 2861 , mypolls 0 +myconn 0 connecting thr d84dff80 , thread 2861 , mypolls 0 +thr d84e0100 , status 1 +connecting thr d84e0100 , thread 2862 , mypolls 0 +myconn 0 connecting thr d84e0100 , thread 2862 , mypolls 0 +thr d84e0280 , status 1 +connecting thr d84e0280 , thread 2863 , mypolls 0 +myconn 0 connecting thr d84e0280 , thread 2863 , mypolls 0 +thr d84e0400 , status 1 +connecting thr d84e0400 , thread 2864 , mypolls 0 +myconn 0 connecting thr d84e0400 , thread 2864 , mypolls 0 +thr d84e0580 , status 1 +connecting thr d84e0580 , thread 2865 , mypolls 0 +myconn 0 connecting thr d84e0580 , thread 2865 , mypolls 0 +thr d84e0700 , status 1 +connecting thr d84e0700 , thread 2866 , mypolls 0 +myconn 0 connecting thr d84e0700 , thread 2866 , mypolls 0 +thr d84e0880 , status 1 +connecting thr d84e0880 , thread 2867 , mypolls 0 +myconn 0 connecting thr d84e0880 , thread 2867 , mypolls 0 +thr d84e0a00 , status 1 +connecting thr d84e0a00 , thread 2868 , mypolls 0 +myconn 0 connecting thr d84e0a00 , thread 2868 , mypolls 0 +thr d84e0b80 , status 1 +connecting thr d84e0b80 , thread 2869 , mypolls 0 +myconn 0 connecting thr d84e0b80 , thread 2869 , mypolls 0 +thr d84e0d00 , status 1 +connecting thr d84e0d00 , thread 2870 , mypolls 0 +myconn 0 connecting thr d84e0d00 , thread 2870 , mypolls 0 +thr d84e0e80 , status 1 +connecting thr d84e0e80 , thread 2871 , mypolls 0 +myconn 0 connecting thr d84e0e80 , thread 2871 , mypolls 0 +thr d833f000 , status 1 +connecting thr d833f000 , thread 2872 , mypolls 0 +myconn 0 connecting thr d833f000 , thread 2872 , mypolls 0 +thr d833f180 , status 1 +connecting thr d833f180 , thread 2873 , mypolls 0 +myconn 0 connecting thr d833f180 , thread 2873 , mypolls 0 +thr d833f300 , status 1 +connecting thr d833f300 , thread 2874 , mypolls 0 +myconn 0 connecting thr d833f300 , thread 2874 , mypolls 0 +thr d833f480 , status 1 +connecting thr d833f480 , thread 2875 , mypolls 0 +myconn 0 connecting thr d833f480 , thread 2875 , mypolls 0 +thr d833f600 , status 1 +connecting thr d833f600 , thread 2876 , mypolls 0 +myconn 0 connecting thr d833f600 , thread 2876 , mypolls 0 +thr d833f780 , status 1 +connecting thr d833f780 , thread 2877 , mypolls 0 +myconn 0 connecting thr d833f780 , thread 2877 , mypolls 0 +thr d833f900 , status 1 +connecting thr d833f900 , thread 2878 , mypolls 0 +myconn 0 connecting thr d833f900 , thread 2878 , mypolls 0 +thr d833fa80 , status 1 +connecting thr d833fa80 , thread 2879 , mypolls 0 +myconn 0 connecting thr d833fa80 , thread 2879 , mypolls 0 +thr d833fc00 , status 1 +connecting thr d833fc00 , thread 2880 , mypolls 0 +myconn 0 connecting thr d833fc00 , thread 2880 , mypolls 0 +thr d833fd80 , status 1 +connecting thr d833fd80 , thread 2881 , mypolls 0 +myconn 0 connecting thr d833fd80 , thread 2881 , mypolls 0 +thr d833ff00 , status 1 +connecting thr d833ff00 , thread 2882 , mypolls 0 +myconn 0 connecting thr d833ff00 , thread 2882 , mypolls 0 +thr d8340080 , status 1 +connecting thr d8340080 , thread 2883 , mypolls 0 +myconn 0 connecting thr d8340080 , thread 2883 , mypolls 0 +thr d8340200 , status 1 +connecting thr d8340200 , thread 2884 , mypolls 0 +myconn 0 connecting thr d8340200 , thread 2884 , mypolls 0 +thr d8340380 , status 1 +connecting thr d8340380 , thread 2885 , mypolls 0 +myconn 0 connecting thr d8340380 , thread 2885 , mypolls 0 +thr d8340500 , status 1 +connecting thr d8340500 , thread 2886 , mypolls 0 +myconn 0 connecting thr d8340500 , thread 2886 , mypolls 0 +thr d8340680 , status 1 +connecting thr d8340680 , thread 2887 , mypolls 0 +myconn 0 connecting thr d8340680 , thread 2887 , mypolls 0 +thr d8340800 , status 1 +connecting thr d8340800 , thread 2888 , mypolls 0 +myconn 0 connecting thr d8340800 , thread 2888 , mypolls 0 +thr d8340980 , status 1 +connecting thr d8340980 , thread 2889 , mypolls 0 +myconn 0 connecting thr d8340980 , thread 2889 , mypolls 0 +thr d8340b00 , status 1 +connecting thr d8340b00 , thread 2890 , mypolls 0 +myconn 0 connecting thr d8340b00 , thread 2890 , mypolls 0 +thr d8340c80 , status 1 +connecting thr d8340c80 , thread 2891 , mypolls 0 +myconn 0 connecting thr d8340c80 , thread 2891 , mypolls 0 +thr d8340e00 , status 1 +connecting thr d8340e00 , thread 2892 , mypolls 0 +myconn 0 connecting thr d8340e00 , thread 2892 , mypolls 0 +thr d8340f80 , status 1 +connecting thr d8340f80 , thread 2893 , mypolls 0 +myconn 0 connecting thr d8340f80 , thread 2893 , mypolls 0 +thr d8341100 , status 1 +connecting thr d8341100 , thread 2894 , mypolls 0 +myconn 0 connecting thr d8341100 , thread 2894 , mypolls 0 +thr d8341280 , status 1 +connecting thr d8341280 , thread 2895 , mypolls 0 +myconn 0 connecting thr d8341280 , thread 2895 , mypolls 0 +thr d8341400 , status 1 +connecting thr d8341400 , thread 2896 , mypolls 0 +myconn 0 connecting thr d8341400 , thread 2896 , mypolls 0 +thr d8341580 , status 1 +connecting thr d8341580 , thread 2897 , mypolls 0 +myconn 0 connecting thr d8341580 , thread 2897 , mypolls 0 +thr d8341700 , status 1 +connecting thr d8341700 , thread 2898 , mypolls 0 +myconn 0 connecting thr d8341700 , thread 2898 , mypolls 0 +thr d8341880 , status 1 +connecting thr d8341880 , thread 2899 , mypolls 0 +myconn 0 connecting thr d8341880 , thread 2899 , mypolls 0 +thr d8341a00 , status 1 +connecting thr d8341a00 , thread 2900 , mypolls 0 +myconn 0 connecting thr d8341a00 , thread 2900 , mypolls 0 +thr d8341b80 , status 1 +connecting thr d8341b80 , thread 2901 , mypolls 0 +myconn 0 connecting thr d8341b80 , thread 2901 , mypolls 0 +thr d8341d00 , status 1 +connecting thr d8341d00 , thread 2902 , mypolls 0 +myconn 0 connecting thr d8341d00 , thread 2902 , mypolls 0 +thr d8341e80 , status 1 +connecting thr d8341e80 , thread 2903 , mypolls 0 +myconn 0 connecting thr d8341e80 , thread 2903 , mypolls 0 +thr d81a3000 , status 1 +connecting thr d81a3000 , thread 2904 , mypolls 0 +myconn 0 connecting thr d81a3000 , thread 2904 , mypolls 0 +thr d81a3180 , status 1 +connecting thr d81a3180 , thread 2905 , mypolls 0 +myconn 0 connecting thr d81a3180 , thread 2905 , mypolls 0 +thr d81a3300 , status 1 +connecting thr d81a3300 , thread 2906 , mypolls 0 +myconn 0 connecting thr d81a3300 , thread 2906 , mypolls 0 +thr d81a3480 , status 1 +connecting thr d81a3480 , thread 2907 , mypolls 0 +myconn 0 connecting thr d81a3480 , thread 2907 , mypolls 0 +thr d81a3600 , status 1 +connecting thr d81a3600 , thread 2908 , mypolls 0 +myconn 0 connecting thr d81a3600 , thread 2908 , mypolls 0 +thr d81a3780 , status 1 +connecting thr d81a3780 , thread 2909 , mypolls 0 +myconn 0 connecting thr d81a3780 , thread 2909 , mypolls 0 +thr d81a3900 , status 1 +connecting thr d81a3900 , thread 2910 , mypolls 0 +myconn 0 connecting thr d81a3900 , thread 2910 , mypolls 0 +thr d81a3a80 , status 1 +connecting thr d81a3a80 , thread 2911 , mypolls 0 +myconn 0 connecting thr d81a3a80 , thread 2911 , mypolls 0 +thr d81a3c00 , status 1 +connecting thr d81a3c00 , thread 2912 , mypolls 0 +myconn 0 connecting thr d81a3c00 , thread 2912 , mypolls 0 +thr d81a3d80 , status 1 +connecting thr d81a3d80 , thread 2913 , mypolls 0 +myconn 0 connecting thr d81a3d80 , thread 2913 , mypolls 0 +thr d81a3f00 , status 1 +connecting thr d81a3f00 , thread 2914 , mypolls 0 +myconn 0 connecting thr d81a3f00 , thread 2914 , mypolls 0 +thr d81a4080 , status 1 +connecting thr d81a4080 , thread 2915 , mypolls 0 +myconn 0 connecting thr d81a4080 , thread 2915 , mypolls 0 +thr d81a4200 , status 1 +connecting thr d81a4200 , thread 2916 , mypolls 0 +myconn 0 connecting thr d81a4200 , thread 2916 , mypolls 0 +thr d81a4380 , status 1 +connecting thr d81a4380 , thread 2917 , mypolls 0 +myconn 0 connecting thr d81a4380 , thread 2917 , mypolls 0 +thr d81a4500 , status 1 +connecting thr d81a4500 , thread 2918 , mypolls 0 +myconn 0 connecting thr d81a4500 , thread 2918 , mypolls 0 +thr d81a4680 , status 1 +connecting thr d81a4680 , thread 2919 , mypolls 0 +myconn 0 connecting thr d81a4680 , thread 2919 , mypolls 0 +thr d81a4800 , status 1 +connecting thr d81a4800 , thread 2920 , mypolls 0 +myconn 0 connecting thr d81a4800 , thread 2920 , mypolls 0 +thr d81a4980 , status 1 +connecting thr d81a4980 , thread 2921 , mypolls 0 +myconn 0 connecting thr d81a4980 , thread 2921 , mypolls 0 +thr d81a4b00 , status 1 +connecting thr d81a4b00 , thread 2922 , mypolls 0 +myconn 0 connecting thr d81a4b00 , thread 2922 , mypolls 0 +thr d81a4c80 , status 1 +connecting thr d81a4c80 , thread 2923 , mypolls 0 +myconn 0 connecting thr d81a4c80 , thread 2923 , mypolls 0 +thr d81a4e00 , status 1 +connecting thr d81a4e00 , thread 2924 , mypolls 0 +myconn 0 connecting thr d81a4e00 , thread 2924 , mypolls 0 +thr d81a4f80 , status 1 +connecting thr d81a4f80 , thread 2925 , mypolls 0 +myconn 0 connecting thr d81a4f80 , thread 2925 , mypolls 0 +thr d81a5100 , status 1 +connecting thr d81a5100 , thread 2926 , mypolls 0 +myconn 0 connecting thr d81a5100 , thread 2926 , mypolls 0 +thr d81a5280 , status 1 +connecting thr d81a5280 , thread 2927 , mypolls 0 +myconn 0 connecting thr d81a5280 , thread 2927 , mypolls 0 +thr d81a5400 , status 1 +connecting thr d81a5400 , thread 2928 , mypolls 0 +myconn 0 connecting thr d81a5400 , thread 2928 , mypolls 0 +thr d81a5580 , status 1 +connecting thr d81a5580 , thread 2929 , mypolls 0 +myconn 0 connecting thr d81a5580 , thread 2929 , mypolls 0 +thr d81a5700 , status 1 +connecting thr d81a5700 , thread 2930 , mypolls 0 +myconn 0 connecting thr d81a5700 , thread 2930 , mypolls 0 +thr d81a5880 , status 1 +connecting thr d81a5880 , thread 2931 , mypolls 0 +myconn 0 connecting thr d81a5880 , thread 2931 , mypolls 0 +thr d81a5a00 , status 1 +connecting thr d81a5a00 , thread 2932 , mypolls 0 +myconn 0 connecting thr d81a5a00 , thread 2932 , mypolls 0 +thr d81a5b80 , status 1 +connecting thr d81a5b80 , thread 2933 , mypolls 0 +myconn 0 connecting thr d81a5b80 , thread 2933 , mypolls 0 +thr d81a5d00 , status 1 +connecting thr d81a5d00 , thread 2934 , mypolls 0 +myconn 0 connecting thr d81a5d00 , thread 2934 , mypolls 0 +thr d81a5e80 , status 1 +connecting thr d81a5e80 , thread 2935 , mypolls 0 +myconn 0 connecting thr d81a5e80 , thread 2935 , mypolls 0 +thr d7ff9000 , status 1 +connecting thr d7ff9000 , thread 2936 , mypolls 0 +myconn 0 connecting thr d7ff9000 , thread 2936 , mypolls 0 +thr d7ff9180 , status 1 +connecting thr d7ff9180 , thread 2937 , mypolls 0 +myconn 0 connecting thr d7ff9180 , thread 2937 , mypolls 0 +thr d7ff9300 , status 1 +connecting thr d7ff9300 , thread 2938 , mypolls 0 +myconn 0 connecting thr d7ff9300 , thread 2938 , mypolls 0 +thr d7ff9480 , status 1 +connecting thr d7ff9480 , thread 2939 , mypolls 0 +myconn 0 connecting thr d7ff9480 , thread 2939 , mypolls 0 +thr d7ff9600 , status 1 +connecting thr d7ff9600 , thread 2940 , mypolls 0 +myconn 0 connecting thr d7ff9600 , thread 2940 , mypolls 0 +thr d7ff9780 , status 1 +connecting thr d7ff9780 , thread 2941 , mypolls 0 +myconn 0 connecting thr d7ff9780 , thread 2941 , mypolls 0 +thr d7ff9900 , status 1 +connecting thr d7ff9900 , thread 2942 , mypolls 0 +myconn 0 connecting thr d7ff9900 , thread 2942 , mypolls 0 +thr d7ff9a80 , status 1 +connecting thr d7ff9a80 , thread 2943 , mypolls 0 +myconn 0 connecting thr d7ff9a80 , thread 2943 , mypolls 0 +thr d7ff9c00 , status 1 +connecting thr d7ff9c00 , thread 2944 , mypolls 0 +myconn 0 connecting thr d7ff9c00 , thread 2944 , mypolls 0 +thr d7ff9d80 , status 1 +connecting thr d7ff9d80 , thread 2945 , mypolls 0 +myconn 0 connecting thr d7ff9d80 , thread 2945 , mypolls 0 +thr d7ff9f00 , status 1 +connecting thr d7ff9f00 , thread 2946 , mypolls 0 +myconn 0 connecting thr d7ff9f00 , thread 2946 , mypolls 0 +thr d7ffa080 , status 1 +connecting thr d7ffa080 , thread 2947 , mypolls 0 +myconn 0 connecting thr d7ffa080 , thread 2947 , mypolls 0 +thr d7ffa200 , status 1 +connecting thr d7ffa200 , thread 2948 , mypolls 0 +myconn 0 connecting thr d7ffa200 , thread 2948 , mypolls 0 +thr d7ffa380 , status 1 +connecting thr d7ffa380 , thread 2949 , mypolls 0 +myconn 0 connecting thr d7ffa380 , thread 2949 , mypolls 0 +thr d7ffa500 , status 1 +connecting thr d7ffa500 , thread 2950 , mypolls 0 +myconn 0 connecting thr d7ffa500 , thread 2950 , mypolls 0 +thr d7ffa680 , status 1 +connecting thr d7ffa680 , thread 2951 , mypolls 0 +myconn 0 connecting thr d7ffa680 , thread 2951 , mypolls 0 +thr d7ffa800 , status 1 +connecting thr d7ffa800 , thread 2952 , mypolls 0 +myconn 0 connecting thr d7ffa800 , thread 2952 , mypolls 0 +thr d7ffa980 , status 1 +connecting thr d7ffa980 , thread 2953 , mypolls 0 +myconn 0 connecting thr d7ffa980 , thread 2953 , mypolls 0 +thr d7ffab00 , status 1 +connecting thr d7ffab00 , thread 2954 , mypolls 0 +myconn 0 connecting thr d7ffab00 , thread 2954 , mypolls 0 +thr d7ffac80 , status 1 +connecting thr d7ffac80 , thread 2955 , mypolls 0 +myconn 0 connecting thr d7ffac80 , thread 2955 , mypolls 0 +thr d7ffae00 , status 1 +connecting thr d7ffae00 , thread 2956 , mypolls 0 +myconn 0 connecting thr d7ffae00 , thread 2956 , mypolls 0 +thr d7ffaf80 , status 1 +connecting thr d7ffaf80 , thread 2957 , mypolls 0 +myconn 0 connecting thr d7ffaf80 , thread 2957 , mypolls 0 +thr d7ffb100 , status 1 +connecting thr d7ffb100 , thread 2958 , mypolls 0 +myconn 0 connecting thr d7ffb100 , thread 2958 , mypolls 0 +thr d7ffb280 , status 1 +connecting thr d7ffb280 , thread 2959 , mypolls 0 +myconn 0 connecting thr d7ffb280 , thread 2959 , mypolls 0 +thr d7ffb400 , status 1 +connecting thr d7ffb400 , thread 2960 , mypolls 0 +myconn 0 connecting thr d7ffb400 , thread 2960 , mypolls 0 +thr d7ffb580 , status 1 +connecting thr d7ffb580 , thread 2961 , mypolls 0 +myconn 0 connecting thr d7ffb580 , thread 2961 , mypolls 0 +thr d7ffb700 , status 1 +connecting thr d7ffb700 , thread 2962 , mypolls 0 +myconn 0 connecting thr d7ffb700 , thread 2962 , mypolls 0 +thr d7ffb880 , status 1 +connecting thr d7ffb880 , thread 2963 , mypolls 0 +myconn 0 connecting thr d7ffb880 , thread 2963 , mypolls 0 +thr d7ffba00 , status 1 +connecting thr d7ffba00 , thread 2964 , mypolls 0 +myconn 0 connecting thr d7ffba00 , thread 2964 , mypolls 0 +thr d7ffbb80 , status 1 +connecting thr d7ffbb80 , thread 2965 , mypolls 0 +myconn 0 connecting thr d7ffbb80 , thread 2965 , mypolls 0 +thr d7ffbd00 , status 1 +connecting thr d7ffbd00 , thread 2966 , mypolls 0 +myconn 0 connecting thr d7ffbd00 , thread 2966 , mypolls 0 +thr d7ffbe80 , status 1 +connecting thr d7ffbe80 , thread 2967 , mypolls 0 +myconn 0 connecting thr d7ffbe80 , thread 2967 , mypolls 0 +thr d7df9000 , status 1 +connecting thr d7df9000 , thread 2968 , mypolls 0 +myconn 0 connecting thr d7df9000 , thread 2968 , mypolls 0 +thr d7df9180 , status 1 +connecting thr d7df9180 , thread 2969 , mypolls 0 +myconn 0 connecting thr d7df9180 , thread 2969 , mypolls 0 +thr d7df9300 , status 1 +connecting thr d7df9300 , thread 2970 , mypolls 0 +myconn 0 connecting thr d7df9300 , thread 2970 , mypolls 0 +thr d7df9480 , status 1 +connecting thr d7df9480 , thread 2971 , mypolls 0 +myconn 0 connecting thr d7df9480 , thread 2971 , mypolls 0 +thr d7df9600 , status 1 +connecting thr d7df9600 , thread 2972 , mypolls 0 +myconn 0 connecting thr d7df9600 , thread 2972 , mypolls 0 +thr d7df9780 , status 1 +connecting thr d7df9780 , thread 2973 , mypolls 0 +myconn 0 connecting thr d7df9780 , thread 2973 , mypolls 0 +thr d7df9900 , status 1 +connecting thr d7df9900 , thread 2974 , mypolls 0 +myconn 0 connecting thr d7df9900 , thread 2974 , mypolls 0 +thr d7df9a80 , status 1 +connecting thr d7df9a80 , thread 2975 , mypolls 0 +myconn 0 connecting thr d7df9a80 , thread 2975 , mypolls 0 +thr d7df9c00 , status 1 +connecting thr d7df9c00 , thread 2976 , mypolls 0 +myconn 0 connecting thr d7df9c00 , thread 2976 , mypolls 0 +thr d7df9d80 , status 1 +connecting thr d7df9d80 , thread 2977 , mypolls 0 +myconn 0 connecting thr d7df9d80 , thread 2977 , mypolls 0 +thr d7df9f00 , status 1 +connecting thr d7df9f00 , thread 2978 , mypolls 0 +myconn 0 connecting thr d7df9f00 , thread 2978 , mypolls 0 +thr d7dfa080 , status 1 +connecting thr d7dfa080 , thread 2979 , mypolls 0 +myconn 0 connecting thr d7dfa080 , thread 2979 , mypolls 0 +thr d7dfa200 , status 1 +connecting thr d7dfa200 , thread 2980 , mypolls 0 +myconn 0 connecting thr d7dfa200 , thread 2980 , mypolls 0 +thr d7dfa380 , status 1 +connecting thr d7dfa380 , thread 2981 , mypolls 0 +myconn 0 connecting thr d7dfa380 , thread 2981 , mypolls 0 +thr d7dfa500 , status 1 +connecting thr d7dfa500 , thread 2982 , mypolls 0 +myconn 0 connecting thr d7dfa500 , thread 2982 , mypolls 0 +thr d7dfa680 , status 1 +connecting thr d7dfa680 , thread 2983 , mypolls 0 +myconn 0 connecting thr d7dfa680 , thread 2983 , mypolls 0 +thr d7dfa800 , status 1 +connecting thr d7dfa800 , thread 2984 , mypolls 0 +myconn 0 connecting thr d7dfa800 , thread 2984 , mypolls 0 +thr d7dfa980 , status 1 +connecting thr d7dfa980 , thread 2985 , mypolls 0 +myconn 0 connecting thr d7dfa980 , thread 2985 , mypolls 0 +thr d7dfab00 , status 1 +connecting thr d7dfab00 , thread 2986 , mypolls 0 +myconn 0 connecting thr d7dfab00 , thread 2986 , mypolls 0 +thr d7dfac80 , status 1 +connecting thr d7dfac80 , thread 2987 , mypolls 0 +myconn 0 connecting thr d7dfac80 , thread 2987 , mypolls 0 +thr d7dfae00 , status 1 +connecting thr d7dfae00 , thread 2988 , mypolls 0 +myconn 0 connecting thr d7dfae00 , thread 2988 , mypolls 0 +thr d7dfaf80 , status 1 +connecting thr d7dfaf80 , thread 2989 , mypolls 0 +myconn 0 connecting thr d7dfaf80 , thread 2989 , mypolls 0 +thr d7dfb100 , status 1 +connecting thr d7dfb100 , thread 2990 , mypolls 0 +myconn 0 connecting thr d7dfb100 , thread 2990 , mypolls 0 +thr d7dfb280 , status 1 +connecting thr d7dfb280 , thread 2991 , mypolls 0 +myconn 0 connecting thr d7dfb280 , thread 2991 , mypolls 0 +thr d7dfb400 , status 1 +connecting thr d7dfb400 , thread 2992 , mypolls 0 +myconn 0 connecting thr d7dfb400 , thread 2992 , mypolls 0 +thr d7dfb580 , status 1 +connecting thr d7dfb580 , thread 2993 , mypolls 0 +myconn 0 connecting thr d7dfb580 , thread 2993 , mypolls 0 +thr d7dfb700 , status 1 +connecting thr d7dfb700 , thread 2994 , mypolls 0 +myconn 0 connecting thr d7dfb700 , thread 2994 , mypolls 0 +thr d7dfb880 , status 1 +connecting thr d7dfb880 , thread 2995 , mypolls 0 +myconn 0 connecting thr d7dfb880 , thread 2995 , mypolls 0 +thr d7dfba00 , status 1 +connecting thr d7dfba00 , thread 2996 , mypolls 0 +myconn 0 connecting thr d7dfba00 , thread 2996 , mypolls 0 +thr d7dfbb80 , status 1 +connecting thr d7dfbb80 , thread 2997 , mypolls 0 +myconn 0 connecting thr d7dfbb80 , thread 2997 , mypolls 0 +thr d7dfbd00 , status 1 +connecting thr d7dfbd00 , thread 2998 , mypolls 0 +myconn 0 connecting thr d7dfbd00 , thread 2998 , mypolls 0 +thr d7dfbe80 , status 1 +connecting thr d7dfbe80 , thread 2999 , mypolls 0 +myconn 0 connecting thr d7dfbe80 , thread 2999 , mypolls 0 +thr d78d4000 , status 1 +connecting thr d78d4000 , thread 3000 , mypolls 0 +myconn 0 connecting thr d78d4000 , thread 3000 , mypolls 0 +thr d78d4180 , status 1 +connecting thr d78d4180 , thread 3001 , mypolls 0 +myconn 0 connecting thr d78d4180 , thread 3001 , mypolls 0 +thr d78d4300 , status 1 +connecting thr d78d4300 , thread 3002 , mypolls 0 +myconn 0 connecting thr d78d4300 , thread 3002 , mypolls 0 +thr d78d4480 , status 1 +connecting thr d78d4480 , thread 3003 , mypolls 0 +myconn 0 connecting thr d78d4480 , thread 3003 , mypolls 0 +thr d78d4600 , status 1 +connecting thr d78d4600 , thread 3004 , mypolls 0 +myconn 0 connecting thr d78d4600 , thread 3004 , mypolls 0 +thr d78d4780 , status 1 +connecting thr d78d4780 , thread 3005 , mypolls 0 +myconn 0 connecting thr d78d4780 , thread 3005 , mypolls 0 +thr d78d4900 , status 1 +connecting thr d78d4900 , thread 3006 , mypolls 0 +myconn 0 connecting thr d78d4900 , thread 3006 , mypolls 0 +thr d78d4a80 , status 1 +connecting thr d78d4a80 , thread 3007 , mypolls 0 +myconn 0 connecting thr d78d4a80 , thread 3007 , mypolls 0 +thr d78d4c00 , status 1 +connecting thr d78d4c00 , thread 3008 , mypolls 0 +myconn 0 connecting thr d78d4c00 , thread 3008 , mypolls 0 +thr d78d4d80 , status 1 +connecting thr d78d4d80 , thread 3009 , mypolls 0 +myconn 0 connecting thr d78d4d80 , thread 3009 , mypolls 0 +thr d78d4f00 , status 1 +connecting thr d78d4f00 , thread 3010 , mypolls 0 +myconn 0 connecting thr d78d4f00 , thread 3010 , mypolls 0 +thr d78d5080 , status 1 +connecting thr d78d5080 , thread 3011 , mypolls 0 +myconn 0 connecting thr d78d5080 , thread 3011 , mypolls 0 +thr d78d5200 , status 1 +connecting thr d78d5200 , thread 3012 , mypolls 0 +myconn 0 connecting thr d78d5200 , thread 3012 , mypolls 0 +thr d78d5380 , status 1 +connecting thr d78d5380 , thread 3013 , mypolls 0 +myconn 0 connecting thr d78d5380 , thread 3013 , mypolls 0 +thr d78d5500 , status 1 +connecting thr d78d5500 , thread 3014 , mypolls 0 +myconn 0 connecting thr d78d5500 , thread 3014 , mypolls 0 +thr d78d5680 , status 1 +connecting thr d78d5680 , thread 3015 , mypolls 0 +myconn 0 connecting thr d78d5680 , thread 3015 , mypolls 0 +thr d78d5800 , status 1 +connecting thr d78d5800 , thread 3016 , mypolls 0 +myconn 0 connecting thr d78d5800 , thread 3016 , mypolls 0 +thr d78d5980 , status 1 +connecting thr d78d5980 , thread 3017 , mypolls 0 +myconn 0 connecting thr d78d5980 , thread 3017 , mypolls 0 +thr d78d5b00 , status 1 +connecting thr d78d5b00 , thread 3018 , mypolls 0 +myconn 0 connecting thr d78d5b00 , thread 3018 , mypolls 0 +thr d78d5c80 , status 1 +connecting thr d78d5c80 , thread 3019 , mypolls 0 +myconn 0 connecting thr d78d5c80 , thread 3019 , mypolls 0 +thr d78d5e00 , status 1 +connecting thr d78d5e00 , thread 3020 , mypolls 0 +myconn 0 connecting thr d78d5e00 , thread 3020 , mypolls 0 +thr d78d5f80 , status 1 +connecting thr d78d5f80 , thread 3021 , mypolls 0 +myconn 0 connecting thr d78d5f80 , thread 3021 , mypolls 0 +thr d78d6100 , status 1 +connecting thr d78d6100 , thread 3022 , mypolls 0 +myconn 0 connecting thr d78d6100 , thread 3022 , mypolls 0 +thr d78d6280 , status 1 +connecting thr d78d6280 , thread 3023 , mypolls 0 +myconn 0 connecting thr d78d6280 , thread 3023 , mypolls 0 +thr d78d6400 , status 1 +connecting thr d78d6400 , thread 3024 , mypolls 0 +myconn 0 connecting thr d78d6400 , thread 3024 , mypolls 0 +thr d78d6580 , status 1 +connecting thr d78d6580 , thread 3025 , mypolls 0 +myconn 0 connecting thr d78d6580 , thread 3025 , mypolls 0 +thr d78d6700 , status 1 +connecting thr d78d6700 , thread 3026 , mypolls 0 +myconn 0 connecting thr d78d6700 , thread 3026 , mypolls 0 +thr d78d6880 , status 1 +connecting thr d78d6880 , thread 3027 , mypolls 0 +myconn 0 connecting thr d78d6880 , thread 3027 , mypolls 0 +thr d78d6a00 , status 1 +connecting thr d78d6a00 , thread 3028 , mypolls 0 +myconn 0 connecting thr d78d6a00 , thread 3028 , mypolls 0 +thr d78d6b80 , status 1 +connecting thr d78d6b80 , thread 3029 , mypolls 0 +myconn 0 connecting thr d78d6b80 , thread 3029 , mypolls 0 +thr d78d6d00 , status 1 +connecting thr d78d6d00 , thread 3030 , mypolls 0 +myconn 0 connecting thr d78d6d00 , thread 3030 , mypolls 0 +thr d78d6e80 , status 1 +connecting thr d78d6e80 , thread 3031 , mypolls 0 +myconn 0 connecting thr d78d6e80 , thread 3031 , mypolls 0 +thr d7736000 , status 1 +connecting thr d7736000 , thread 3032 , mypolls 0 +myconn 0 connecting thr d7736000 , thread 3032 , mypolls 0 +thr d7736180 , status 1 +connecting thr d7736180 , thread 3033 , mypolls 0 +myconn 0 connecting thr d7736180 , thread 3033 , mypolls 0 +thr d7736300 , status 1 +connecting thr d7736300 , thread 3034 , mypolls 0 +myconn 0 connecting thr d7736300 , thread 3034 , mypolls 0 +thr d7736480 , status 1 +connecting thr d7736480 , thread 3035 , mypolls 0 +myconn 0 connecting thr d7736480 , thread 3035 , mypolls 0 +thr d7736600 , status 1 +connecting thr d7736600 , thread 3036 , mypolls 0 +myconn 0 connecting thr d7736600 , thread 3036 , mypolls 0 +thr d7736780 , status 1 +connecting thr d7736780 , thread 3037 , mypolls 0 +myconn 0 connecting thr d7736780 , thread 3037 , mypolls 0 +thr d7736900 , status 1 +connecting thr d7736900 , thread 3038 , mypolls 0 +myconn 0 connecting thr d7736900 , thread 3038 , mypolls 0 +thr d7736a80 , status 1 +connecting thr d7736a80 , thread 3039 , mypolls 0 +myconn 0 connecting thr d7736a80 , thread 3039 , mypolls 0 +thr d7736c00 , status 1 +connecting thr d7736c00 , thread 3040 , mypolls 0 +myconn 0 connecting thr d7736c00 , thread 3040 , mypolls 0 +thr d7736d80 , status 1 +connecting thr d7736d80 , thread 3041 , mypolls 0 +myconn 0 connecting thr d7736d80 , thread 3041 , mypolls 0 +thr d7736f00 , status 1 +connecting thr d7736f00 , thread 3042 , mypolls 0 +myconn 0 connecting thr d7736f00 , thread 3042 , mypolls 0 +thr d7737080 , status 1 +connecting thr d7737080 , thread 3043 , mypolls 0 +myconn 0 connecting thr d7737080 , thread 3043 , mypolls 0 +thr d7737200 , status 1 +connecting thr d7737200 , thread 3044 , mypolls 0 +myconn 0 connecting thr d7737200 , thread 3044 , mypolls 0 +thr d7737380 , status 1 +connecting thr d7737380 , thread 3045 , mypolls 0 +myconn 0 connecting thr d7737380 , thread 3045 , mypolls 0 +thr d7737500 , status 1 +connecting thr d7737500 , thread 3046 , mypolls 0 +myconn 0 connecting thr d7737500 , thread 3046 , mypolls 0 +thr d7737680 , status 1 +connecting thr d7737680 , thread 3047 , mypolls 0 +myconn 0 connecting thr d7737680 , thread 3047 , mypolls 0 +thr d7737800 , status 1 +connecting thr d7737800 , thread 3048 , mypolls 0 +myconn 0 connecting thr d7737800 , thread 3048 , mypolls 0 +thr d7737980 , status 1 +connecting thr d7737980 , thread 3049 , mypolls 0 +myconn 0 connecting thr d7737980 , thread 3049 , mypolls 0 +thr d7737b00 , status 1 +connecting thr d7737b00 , thread 3050 , mypolls 0 +myconn 0 connecting thr d7737b00 , thread 3050 , mypolls 0 +thr d7737c80 , status 1 +connecting thr d7737c80 , thread 3051 , mypolls 0 +myconn 0 connecting thr d7737c80 , thread 3051 , mypolls 0 +thr d7737e00 , status 1 +connecting thr d7737e00 , thread 3052 , mypolls 0 +myconn 0 connecting thr d7737e00 , thread 3052 , mypolls 0 +thr d7737f80 , status 1 +connecting thr d7737f80 , thread 3053 , mypolls 0 +myconn 0 connecting thr d7737f80 , thread 3053 , mypolls 0 +thr d7738100 , status 1 +connecting thr d7738100 , thread 3054 , mypolls 0 +myconn 0 connecting thr d7738100 , thread 3054 , mypolls 0 +thr d7738280 , status 1 +connecting thr d7738280 , thread 3055 , mypolls 0 +myconn 0 connecting thr d7738280 , thread 3055 , mypolls 0 +thr d7738400 , status 1 +connecting thr d7738400 , thread 3056 , mypolls 0 +myconn 0 connecting thr d7738400 , thread 3056 , mypolls 0 +thr d7738580 , status 1 +connecting thr d7738580 , thread 3057 , mypolls 0 +myconn 0 connecting thr d7738580 , thread 3057 , mypolls 0 +thr d7738700 , status 1 +connecting thr d7738700 , thread 3058 , mypolls 0 +myconn 0 connecting thr d7738700 , thread 3058 , mypolls 0 +thr d7738880 , status 1 +connecting thr d7738880 , thread 3059 , mypolls 0 +myconn 0 connecting thr d7738880 , thread 3059 , mypolls 0 +thr d7738a00 , status 1 +connecting thr d7738a00 , thread 3060 , mypolls 0 +myconn 0 connecting thr d7738a00 , thread 3060 , mypolls 0 +thr d7738b80 , status 1 +connecting thr d7738b80 , thread 3061 , mypolls 0 +myconn 0 connecting thr d7738b80 , thread 3061 , mypolls 0 +thr d7738d00 , status 1 +connecting thr d7738d00 , thread 3062 , mypolls 0 +myconn 0 connecting thr d7738d00 , thread 3062 , mypolls 0 +thr d7738e80 , status 1 +connecting thr d7738e80 , thread 3063 , mypolls 0 +myconn 0 connecting thr d7738e80 , thread 3063 , mypolls 0 +thr d7599000 , status 1 +connecting thr d7599000 , thread 3064 , mypolls 0 +myconn 0 connecting thr d7599000 , thread 3064 , mypolls 0 +thr d7599180 , status 1 +connecting thr d7599180 , thread 3065 , mypolls 0 +myconn 0 connecting thr d7599180 , thread 3065 , mypolls 0 +thr d7599300 , status 1 +connecting thr d7599300 , thread 3066 , mypolls 0 +myconn 0 connecting thr d7599300 , thread 3066 , mypolls 0 +thr d7599480 , status 1 +connecting thr d7599480 , thread 3067 , mypolls 0 +myconn 0 connecting thr d7599480 , thread 3067 , mypolls 0 +thr d7599600 , status 1 +connecting thr d7599600 , thread 3068 , mypolls 0 +myconn 0 connecting thr d7599600 , thread 3068 , mypolls 0 +thr d7599780 , status 1 +connecting thr d7599780 , thread 3069 , mypolls 0 +myconn 0 connecting thr d7599780 , thread 3069 , mypolls 0 +thr d7599900 , status 1 +connecting thr d7599900 , thread 3070 , mypolls 0 +myconn 0 connecting thr d7599900 , thread 3070 , mypolls 0 +thr d7599a80 , status 1 +connecting thr d7599a80 , thread 3071 , mypolls 0 +myconn 0 connecting thr d7599a80 , thread 3071 , mypolls 0 +thr d7599c00 , status 1 +connecting thr d7599c00 , thread 3072 , mypolls 0 +myconn 0 connecting thr d7599c00 , thread 3072 , mypolls 0 +thr d7599d80 , status 1 +connecting thr d7599d80 , thread 3073 , mypolls 0 +myconn 0 connecting thr d7599d80 , thread 3073 , mypolls 0 +thr d7599f00 , status 1 +connecting thr d7599f00 , thread 3074 , mypolls 0 +myconn 0 connecting thr d7599f00 , thread 3074 , mypolls 0 +thr d759a080 , status 1 +connecting thr d759a080 , thread 3075 , mypolls 0 +myconn 0 connecting thr d759a080 , thread 3075 , mypolls 0 +thr d759a200 , status 1 +connecting thr d759a200 , thread 3076 , mypolls 0 +myconn 0 connecting thr d759a200 , thread 3076 , mypolls 0 +thr d759a380 , status 1 +connecting thr d759a380 , thread 3077 , mypolls 0 +myconn 0 connecting thr d759a380 , thread 3077 , mypolls 0 +thr d759a500 , status 1 +connecting thr d759a500 , thread 3078 , mypolls 0 +myconn 0 connecting thr d759a500 , thread 3078 , mypolls 0 +thr d759a680 , status 1 +connecting thr d759a680 , thread 3079 , mypolls 0 +myconn 0 connecting thr d759a680 , thread 3079 , mypolls 0 +thr d759a800 , status 1 +connecting thr d759a800 , thread 3080 , mypolls 0 +myconn 0 connecting thr d759a800 , thread 3080 , mypolls 0 +thr d759a980 , status 1 +connecting thr d759a980 , thread 3081 , mypolls 0 +myconn 0 connecting thr d759a980 , thread 3081 , mypolls 0 +thr d759ab00 , status 1 +connecting thr d759ab00 , thread 3082 , mypolls 0 +myconn 0 connecting thr d759ab00 , thread 3082 , mypolls 0 +thr d759ac80 , status 1 +connecting thr d759ac80 , thread 3083 , mypolls 0 +myconn 0 connecting thr d759ac80 , thread 3083 , mypolls 0 +thr d759ae00 , status 1 +connecting thr d759ae00 , thread 3084 , mypolls 0 +myconn 0 connecting thr d759ae00 , thread 3084 , mypolls 0 +thr d759af80 , status 1 +connecting thr d759af80 , thread 3085 , mypolls 0 +myconn 0 connecting thr d759af80 , thread 3085 , mypolls 0 +thr d759b100 , status 1 +connecting thr d759b100 , thread 3086 , mypolls 0 +myconn 0 connecting thr d759b100 , thread 3086 , mypolls 0 +thr d759b280 , status 1 +connecting thr d759b280 , thread 3087 , mypolls 0 +myconn 0 connecting thr d759b280 , thread 3087 , mypolls 0 +thr d759b400 , status 1 +connecting thr d759b400 , thread 3088 , mypolls 0 +myconn 0 connecting thr d759b400 , thread 3088 , mypolls 0 +thr d759b580 , status 1 +connecting thr d759b580 , thread 3089 , mypolls 0 +myconn 0 connecting thr d759b580 , thread 3089 , mypolls 0 +thr d759b700 , status 1 +connecting thr d759b700 , thread 3090 , mypolls 0 +myconn 0 connecting thr d759b700 , thread 3090 , mypolls 0 +thr d759b880 , status 1 +connecting thr d759b880 , thread 3091 , mypolls 0 +myconn 0 connecting thr d759b880 , thread 3091 , mypolls 0 +thr d759ba00 , status 1 +connecting thr d759ba00 , thread 3092 , mypolls 0 +myconn 0 connecting thr d759ba00 , thread 3092 , mypolls 0 +thr d759bb80 , status 1 +connecting thr d759bb80 , thread 3093 , mypolls 0 +myconn 0 connecting thr d759bb80 , thread 3093 , mypolls 0 +thr d759bd00 , status 1 +connecting thr d759bd00 , thread 3094 , mypolls 0 +myconn 0 connecting thr d759bd00 , thread 3094 , mypolls 0 +thr d759be80 , status 1 +connecting thr d759be80 , thread 3095 , mypolls 0 +myconn 0 connecting thr d759be80 , thread 3095 , mypolls 0 +thr d700d000 , status 1 +connecting thr d700d000 , thread 3096 , mypolls 0 +myconn 0 connecting thr d700d000 , thread 3096 , mypolls 0 +thr d700d180 , status 1 +connecting thr d700d180 , thread 3097 , mypolls 0 +myconn 0 connecting thr d700d180 , thread 3097 , mypolls 0 +thr d700d300 , status 1 +connecting thr d700d300 , thread 3098 , mypolls 0 +myconn 0 connecting thr d700d300 , thread 3098 , mypolls 0 +thr d700d480 , status 1 +connecting thr d700d480 , thread 3099 , mypolls 0 +myconn 0 connecting thr d700d480 , thread 3099 , mypolls 0 +thr d700d600 , status 1 +connecting thr d700d600 , thread 3100 , mypolls 0 +myconn 0 connecting thr d700d600 , thread 3100 , mypolls 0 +thr d700d780 , status 1 +connecting thr d700d780 , thread 3101 , mypolls 0 +myconn 0 connecting thr d700d780 , thread 3101 , mypolls 0 +thr d700d900 , status 1 +connecting thr d700d900 , thread 3102 , mypolls 0 +myconn 0 connecting thr d700d900 , thread 3102 , mypolls 0 +thr d700da80 , status 1 +connecting thr d700da80 , thread 3103 , mypolls 0 +myconn 0 connecting thr d700da80 , thread 3103 , mypolls 0 +thr d700dc00 , status 1 +connecting thr d700dc00 , thread 3104 , mypolls 0 +myconn 0 connecting thr d700dc00 , thread 3104 , mypolls 0 +thr d700dd80 , status 1 +connecting thr d700dd80 , thread 3105 , mypolls 0 +myconn 0 connecting thr d700dd80 , thread 3105 , mypolls 0 +thr d700df00 , status 1 +connecting thr d700df00 , thread 3106 , mypolls 0 +myconn 0 connecting thr d700df00 , thread 3106 , mypolls 0 +thr d700e080 , status 1 +connecting thr d700e080 , thread 3107 , mypolls 0 +myconn 0 connecting thr d700e080 , thread 3107 , mypolls 0 +thr d700e200 , status 1 +connecting thr d700e200 , thread 3108 , mypolls 0 +myconn 0 connecting thr d700e200 , thread 3108 , mypolls 0 +thr d700e380 , status 1 +connecting thr d700e380 , thread 3109 , mypolls 0 +myconn 0 connecting thr d700e380 , thread 3109 , mypolls 0 +thr d700e500 , status 1 +connecting thr d700e500 , thread 3110 , mypolls 0 +myconn 0 connecting thr d700e500 , thread 3110 , mypolls 0 +thr d700e680 , status 1 +connecting thr d700e680 , thread 3111 , mypolls 0 +myconn 0 connecting thr d700e680 , thread 3111 , mypolls 0 +thr d700e800 , status 1 +connecting thr d700e800 , thread 3112 , mypolls 0 +myconn 0 connecting thr d700e800 , thread 3112 , mypolls 0 +thr d700e980 , status 1 +connecting thr d700e980 , thread 3113 , mypolls 0 +myconn 0 connecting thr d700e980 , thread 3113 , mypolls 0 +thr d700eb00 , status 1 +connecting thr d700eb00 , thread 3114 , mypolls 0 +myconn 0 connecting thr d700eb00 , thread 3114 , mypolls 0 +thr d700ec80 , status 1 +connecting thr d700ec80 , thread 3115 , mypolls 0 +myconn 0 connecting thr d700ec80 , thread 3115 , mypolls 0 +thr d700ee00 , status 1 +connecting thr d700ee00 , thread 3116 , mypolls 0 +myconn 0 connecting thr d700ee00 , thread 3116 , mypolls 0 +thr d700ef80 , status 1 +connecting thr d700ef80 , thread 3117 , mypolls 0 +myconn 0 connecting thr d700ef80 , thread 3117 , mypolls 0 +thr d700f100 , status 1 +connecting thr d700f100 , thread 3118 , mypolls 0 +myconn 0 connecting thr d700f100 , thread 3118 , mypolls 0 +thr d700f280 , status 1 +connecting thr d700f280 , thread 3119 , mypolls 0 +myconn 0 connecting thr d700f280 , thread 3119 , mypolls 0 +thr d700f400 , status 1 +connecting thr d700f400 , thread 3120 , mypolls 0 +myconn 0 connecting thr d700f400 , thread 3120 , mypolls 0 +thr d700f580 , status 1 +connecting thr d700f580 , thread 3121 , mypolls 0 +myconn 0 connecting thr d700f580 , thread 3121 , mypolls 0 +thr d700f700 , status 1 +connecting thr d700f700 , thread 3122 , mypolls 0 +myconn 0 connecting thr d700f700 , thread 3122 , mypolls 0 +thr d700f880 , status 1 +connecting thr d700f880 , thread 3123 , mypolls 0 +myconn 0 connecting thr d700f880 , thread 3123 , mypolls 0 +thr d700fa00 , status 1 +connecting thr d700fa00 , thread 3124 , mypolls 0 +myconn 0 connecting thr d700fa00 , thread 3124 , mypolls 0 +thr d700fb80 , status 1 +connecting thr d700fb80 , thread 3125 , mypolls 0 +myconn 0 connecting thr d700fb80 , thread 3125 , mypolls 0 +thr d700fd00 , status 1 +connecting thr d700fd00 , thread 3126 , mypolls 0 +myconn 0 connecting thr d700fd00 , thread 3126 , mypolls 0 +thr d700fe80 , status 1 +connecting thr d700fe80 , thread 3127 , mypolls 0 +myconn 0 connecting thr d700fe80 , thread 3127 , mypolls 0 +thr d6e70000 , status 1 +connecting thr d6e70000 , thread 3128 , mypolls 0 +myconn 0 connecting thr d6e70000 , thread 3128 , mypolls 0 +thr d6e70180 , status 1 +connecting thr d6e70180 , thread 3129 , mypolls 0 +myconn 0 connecting thr d6e70180 , thread 3129 , mypolls 0 +thr d6e70300 , status 1 +connecting thr d6e70300 , thread 3130 , mypolls 0 +myconn 0 connecting thr d6e70300 , thread 3130 , mypolls 0 +thr d6e70480 , status 1 +connecting thr d6e70480 , thread 3131 , mypolls 0 +myconn 0 connecting thr d6e70480 , thread 3131 , mypolls 0 +thr d6e70600 , status 1 +connecting thr d6e70600 , thread 3132 , mypolls 0 +myconn 0 connecting thr d6e70600 , thread 3132 , mypolls 0 +thr d6e70780 , status 1 +connecting thr d6e70780 , thread 3133 , mypolls 0 +myconn 0 connecting thr d6e70780 , thread 3133 , mypolls 0 +thr d6e70900 , status 1 +connecting thr d6e70900 , thread 3134 , mypolls 0 +myconn 0 connecting thr d6e70900 , thread 3134 , mypolls 0 +thr d6e70a80 , status 1 +connecting thr d6e70a80 , thread 3135 , mypolls 0 +myconn 0 connecting thr d6e70a80 , thread 3135 , mypolls 0 +thr d6e70c00 , status 1 +connecting thr d6e70c00 , thread 3136 , mypolls 0 +myconn 0 connecting thr d6e70c00 , thread 3136 , mypolls 0 +thr d6e70d80 , status 1 +connecting thr d6e70d80 , thread 3137 , mypolls 0 +myconn 0 connecting thr d6e70d80 , thread 3137 , mypolls 0 +thr d6e70f00 , status 1 +connecting thr d6e70f00 , thread 3138 , mypolls 0 +myconn 0 connecting thr d6e70f00 , thread 3138 , mypolls 0 +thr d6e71080 , status 1 +connecting thr d6e71080 , thread 3139 , mypolls 0 +myconn 0 connecting thr d6e71080 , thread 3139 , mypolls 0 +thr d6e71200 , status 1 +connecting thr d6e71200 , thread 3140 , mypolls 0 +myconn 0 connecting thr d6e71200 , thread 3140 , mypolls 0 +thr d6e71380 , status 1 +connecting thr d6e71380 , thread 3141 , mypolls 0 +myconn 0 connecting thr d6e71380 , thread 3141 , mypolls 0 +thr d6e71500 , status 1 +connecting thr d6e71500 , thread 3142 , mypolls 0 +myconn 0 connecting thr d6e71500 , thread 3142 , mypolls 0 +thr d6e71680 , status 1 +connecting thr d6e71680 , thread 3143 , mypolls 0 +myconn 0 connecting thr d6e71680 , thread 3143 , mypolls 0 +thr d6e71800 , status 1 +connecting thr d6e71800 , thread 3144 , mypolls 0 +myconn 0 connecting thr d6e71800 , thread 3144 , mypolls 0 +thr d6e71980 , status 1 +connecting thr d6e71980 , thread 3145 , mypolls 0 +myconn 0 connecting thr d6e71980 , thread 3145 , mypolls 0 +thr d6e71b00 , status 1 +connecting thr d6e71b00 , thread 3146 , mypolls 0 +myconn 0 connecting thr d6e71b00 , thread 3146 , mypolls 0 +thr d6e71c80 , status 1 +connecting thr d6e71c80 , thread 3147 , mypolls 0 +myconn 0 connecting thr d6e71c80 , thread 3147 , mypolls 0 +thr d6e71e00 , status 1 +connecting thr d6e71e00 , thread 3148 , mypolls 0 +myconn 0 connecting thr d6e71e00 , thread 3148 , mypolls 0 +thr d6e71f80 , status 1 +connecting thr d6e71f80 , thread 3149 , mypolls 0 +myconn 0 connecting thr d6e71f80 , thread 3149 , mypolls 0 +thr d6e72100 , status 1 +connecting thr d6e72100 , thread 3150 , mypolls 0 +myconn 0 connecting thr d6e72100 , thread 3150 , mypolls 0 +thr d6e72280 , status 1 +connecting thr d6e72280 , thread 3151 , mypolls 0 +myconn 0 connecting thr d6e72280 , thread 3151 , mypolls 0 +thr d6e72400 , status 1 +connecting thr d6e72400 , thread 3152 , mypolls 0 +myconn 0 connecting thr d6e72400 , thread 3152 , mypolls 0 +thr d6e72580 , status 1 +connecting thr d6e72580 , thread 3153 , mypolls 0 +myconn 0 connecting thr d6e72580 , thread 3153 , mypolls 0 +thr d6e72700 , status 1 +connecting thr d6e72700 , thread 3154 , mypolls 0 +myconn 0 connecting thr d6e72700 , thread 3154 , mypolls 0 +thr d6e72880 , status 1 +connecting thr d6e72880 , thread 3155 , mypolls 0 +myconn 0 connecting thr d6e72880 , thread 3155 , mypolls 0 +thr d6e72a00 , status 1 +connecting thr d6e72a00 , thread 3156 , mypolls 0 +myconn 0 connecting thr d6e72a00 , thread 3156 , mypolls 0 +thr d6e72b80 , status 1 +connecting thr d6e72b80 , thread 3157 , mypolls 0 +myconn 0 connecting thr d6e72b80 , thread 3157 , mypolls 0 +thr d6e72d00 , status 1 +connecting thr d6e72d00 , thread 3158 , mypolls 0 +myconn 0 connecting thr d6e72d00 , thread 3158 , mypolls 0 +thr d6e72e80 , status 1 +connecting thr d6e72e80 , thread 3159 , mypolls 0 +myconn 0 connecting thr d6e72e80 , thread 3159 , mypolls 0 +thr d6ffd000 , status 1 +connecting thr d6ffd000 , thread 3160 , mypolls 0 +myconn 0 connecting thr d6ffd000 , thread 3160 , mypolls 0 +thr d6ffd180 , status 1 +connecting thr d6ffd180 , thread 3161 , mypolls 0 +myconn 0 connecting thr d6ffd180 , thread 3161 , mypolls 0 +thr d6ffd300 , status 1 +connecting thr d6ffd300 , thread 3162 , mypolls 0 +myconn 0 connecting thr d6ffd300 , thread 3162 , mypolls 0 +thr d6ffd480 , status 1 +connecting thr d6ffd480 , thread 3163 , mypolls 0 +myconn 0 connecting thr d6ffd480 , thread 3163 , mypolls 0 +thr d6ffd600 , status 1 +connecting thr d6ffd600 , thread 3164 , mypolls 0 +myconn 0 connecting thr d6ffd600 , thread 3164 , mypolls 0 +thr d6ffd780 , status 1 +connecting thr d6ffd780 , thread 3165 , mypolls 0 +myconn 0 connecting thr d6ffd780 , thread 3165 , mypolls 0 +thr d6ffd900 , status 1 +connecting thr d6ffd900 , thread 3166 , mypolls 0 +myconn 0 connecting thr d6ffd900 , thread 3166 , mypolls 0 +thr d6ffda80 , status 1 +connecting thr d6ffda80 , thread 3167 , mypolls 0 +myconn 0 connecting thr d6ffda80 , thread 3167 , mypolls 0 +thr d6ffdc00 , status 1 +connecting thr d6ffdc00 , thread 3168 , mypolls 0 +myconn 0 connecting thr d6ffdc00 , thread 3168 , mypolls 0 +thr d6ffdd80 , status 1 +connecting thr d6ffdd80 , thread 3169 , mypolls 0 +myconn 0 connecting thr d6ffdd80 , thread 3169 , mypolls 0 +thr d6ffdf00 , status 1 +connecting thr d6ffdf00 , thread 3170 , mypolls 0 +myconn 0 connecting thr d6ffdf00 , thread 3170 , mypolls 0 +thr d6ffe080 , status 1 +connecting thr d6ffe080 , thread 3171 , mypolls 0 +myconn 0 connecting thr d6ffe080 , thread 3171 , mypolls 0 +thr d6ffe200 , status 1 +connecting thr d6ffe200 , thread 3172 , mypolls 0 +myconn 0 connecting thr d6ffe200 , thread 3172 , mypolls 0 +thr d6ffe380 , status 1 +connecting thr d6ffe380 , thread 3173 , mypolls 0 +myconn 0 connecting thr d6ffe380 , thread 3173 , mypolls 0 +thr d6ffe500 , status 1 +connecting thr d6ffe500 , thread 3174 , mypolls 0 +myconn 0 connecting thr d6ffe500 , thread 3174 , mypolls 0 +thr d6ffe680 , status 1 +connecting thr d6ffe680 , thread 3175 , mypolls 0 +myconn 0 connecting thr d6ffe680 , thread 3175 , mypolls 0 +thr d6ffe800 , status 1 +connecting thr d6ffe800 , thread 3176 , mypolls 0 +myconn 0 connecting thr d6ffe800 , thread 3176 , mypolls 0 +thr d6ffe980 , status 1 +connecting thr d6ffe980 , thread 3177 , mypolls 0 +myconn 0 connecting thr d6ffe980 , thread 3177 , mypolls 0 +thr d6ffeb00 , status 1 +connecting thr d6ffeb00 , thread 3178 , mypolls 0 +myconn 0 connecting thr d6ffeb00 , thread 3178 , mypolls 0 +thr d6ffec80 , status 1 +connecting thr d6ffec80 , thread 3179 , mypolls 0 +myconn 0 connecting thr d6ffec80 , thread 3179 , mypolls 0 +thr d6ffee00 , status 1 +connecting thr d6ffee00 , thread 3180 , mypolls 0 +myconn 0 connecting thr d6ffee00 , thread 3180 , mypolls 0 +thr d6ffef80 , status 1 +connecting thr d6ffef80 , thread 3181 , mypolls 0 +myconn 0 connecting thr d6ffef80 , thread 3181 , mypolls 0 +thr d6fff100 , status 1 +connecting thr d6fff100 , thread 3182 , mypolls 0 +myconn 0 connecting thr d6fff100 , thread 3182 , mypolls 0 +thr d6fff280 , status 1 +connecting thr d6fff280 , thread 3183 , mypolls 0 +myconn 0 connecting thr d6fff280 , thread 3183 , mypolls 0 +thr d6fff400 , status 1 +connecting thr d6fff400 , thread 3184 , mypolls 0 +myconn 0 connecting thr d6fff400 , thread 3184 , mypolls 0 +thr d6fff580 , status 1 +connecting thr d6fff580 , thread 3185 , mypolls 0 +myconn 0 connecting thr d6fff580 , thread 3185 , mypolls 0 +thr d6fff700 , status 1 +connecting thr d6fff700 , thread 3186 , mypolls 0 +myconn 0 connecting thr d6fff700 , thread 3186 , mypolls 0 +thr d6fff880 , status 1 +connecting thr d6fff880 , thread 3187 , mypolls 0 +myconn 0 connecting thr d6fff880 , thread 3187 , mypolls 0 +thr d6fffa00 , status 1 +connecting thr d6fffa00 , thread 3188 , mypolls 0 +myconn 0 connecting thr d6fffa00 , thread 3188 , mypolls 0 +thr d6fffb80 , status 1 +connecting thr d6fffb80 , thread 3189 , mypolls 0 +myconn 0 connecting thr d6fffb80 , thread 3189 , mypolls 0 +thr d6fffd00 , status 1 +connecting thr d6fffd00 , thread 3190 , mypolls 0 +myconn 0 connecting thr d6fffd00 , thread 3190 , mypolls 0 +thr d6fffe80 , status 1 +connecting thr d6fffe80 , thread 3191 , mypolls 0 +myconn 0 connecting thr d6fffe80 , thread 3191 , mypolls 0 +thr d6b30000 , status 1 +connecting thr d6b30000 , thread 3192 , mypolls 0 +myconn 0 connecting thr d6b30000 , thread 3192 , mypolls 0 +thr d6b30180 , status 1 +connecting thr d6b30180 , thread 3193 , mypolls 0 +myconn 0 connecting thr d6b30180 , thread 3193 , mypolls 0 +thr d6b30300 , status 1 +connecting thr d6b30300 , thread 3194 , mypolls 0 +myconn 0 connecting thr d6b30300 , thread 3194 , mypolls 0 +thr d6b30480 , status 1 +connecting thr d6b30480 , thread 3195 , mypolls 0 +myconn 0 connecting thr d6b30480 , thread 3195 , mypolls 0 +thr d6b30600 , status 1 +connecting thr d6b30600 , thread 3196 , mypolls 0 +myconn 0 connecting thr d6b30600 , thread 3196 , mypolls 0 +thr d6b30780 , status 1 +connecting thr d6b30780 , thread 3197 , mypolls 0 +myconn 0 connecting thr d6b30780 , thread 3197 , mypolls 0 +thr d6b30900 , status 1 +connecting thr d6b30900 , thread 3198 , mypolls 0 +myconn 0 connecting thr d6b30900 , thread 3198 , mypolls 0 +thr d6b30a80 , status 1 +connecting thr d6b30a80 , thread 3199 , mypolls 0 +myconn 0 connecting thr d6b30a80 , thread 3199 , mypolls 0 +thr d6b30c00 , status 1 +connecting thr d6b30c00 , thread 3200 , mypolls 0 +myconn 0 connecting thr d6b30c00 , thread 3200 , mypolls 0 +thr d6b30d80 , status 1 +connecting thr d6b30d80 , thread 3201 , mypolls 0 +myconn 0 connecting thr d6b30d80 , thread 3201 , mypolls 0 +thr d6b30f00 , status 1 +connecting thr d6b30f00 , thread 3202 , mypolls 0 +myconn 0 connecting thr d6b30f00 , thread 3202 , mypolls 0 +thr d6b31080 , status 1 +connecting thr d6b31080 , thread 3203 , mypolls 0 +myconn 0 connecting thr d6b31080 , thread 3203 , mypolls 0 +thr d6b31200 , status 1 +connecting thr d6b31200 , thread 3204 , mypolls 0 +myconn 0 connecting thr d6b31200 , thread 3204 , mypolls 0 +thr d6b31380 , status 1 +connecting thr d6b31380 , thread 3205 , mypolls 0 +myconn 0 connecting thr d6b31380 , thread 3205 , mypolls 0 +thr d6b31500 , status 1 +connecting thr d6b31500 , thread 3206 , mypolls 0 +myconn 0 connecting thr d6b31500 , thread 3206 , mypolls 0 +thr d6b31680 , status 1 +connecting thr d6b31680 , thread 3207 , mypolls 0 +myconn 0 connecting thr d6b31680 , thread 3207 , mypolls 0 +thr d6b31800 , status 1 +connecting thr d6b31800 , thread 3208 , mypolls 0 +myconn 0 connecting thr d6b31800 , thread 3208 , mypolls 0 +thr d6b31980 , status 1 +connecting thr d6b31980 , thread 3209 , mypolls 0 +myconn 0 connecting thr d6b31980 , thread 3209 , mypolls 0 +thr d6b31b00 , status 1 +connecting thr d6b31b00 , thread 3210 , mypolls 0 +myconn 0 connecting thr d6b31b00 , thread 3210 , mypolls 0 +thr d6b31c80 , status 1 +connecting thr d6b31c80 , thread 3211 , mypolls 0 +myconn 0 connecting thr d6b31c80 , thread 3211 , mypolls 0 +thr d6b31e00 , status 1 +connecting thr d6b31e00 , thread 3212 , mypolls 0 +myconn 0 connecting thr d6b31e00 , thread 3212 , mypolls 0 +thr d6b31f80 , status 1 +connecting thr d6b31f80 , thread 3213 , mypolls 0 +myconn 0 connecting thr d6b31f80 , thread 3213 , mypolls 0 +thr d6b32100 , status 1 +connecting thr d6b32100 , thread 3214 , mypolls 0 +myconn 0 connecting thr d6b32100 , thread 3214 , mypolls 0 +thr d6b32280 , status 1 +connecting thr d6b32280 , thread 3215 , mypolls 0 +myconn 0 connecting thr d6b32280 , thread 3215 , mypolls 0 +thr d6b32400 , status 1 +connecting thr d6b32400 , thread 3216 , mypolls 0 +myconn 0 connecting thr d6b32400 , thread 3216 , mypolls 0 +thr d6b32580 , status 1 +connecting thr d6b32580 , thread 3217 , mypolls 0 +myconn 0 connecting thr d6b32580 , thread 3217 , mypolls 0 +thr d6b32700 , status 1 +connecting thr d6b32700 , thread 3218 , mypolls 0 +myconn 0 connecting thr d6b32700 , thread 3218 , mypolls 0 +thr d6b32880 , status 1 +connecting thr d6b32880 , thread 3219 , mypolls 0 +myconn 0 connecting thr d6b32880 , thread 3219 , mypolls 0 +thr d6b32a00 , status 1 +connecting thr d6b32a00 , thread 3220 , mypolls 0 +myconn 0 connecting thr d6b32a00 , thread 3220 , mypolls 0 +thr d6b32b80 , status 1 +connecting thr d6b32b80 , thread 3221 , mypolls 0 +myconn 0 connecting thr d6b32b80 , thread 3221 , mypolls 0 +thr d6b32d00 , status 1 +connecting thr d6b32d00 , thread 3222 , mypolls 0 +myconn 0 connecting thr d6b32d00 , thread 3222 , mypolls 0 +thr d6b32e80 , status 1 +connecting thr d6b32e80 , thread 3223 , mypolls 0 +myconn 0 connecting thr d6b32e80 , thread 3223 , mypolls 0 +thr d6995000 , status 1 +connecting thr d6995000 , thread 3224 , mypolls 0 +myconn 0 connecting thr d6995000 , thread 3224 , mypolls 0 +thr d6995180 , status 1 +connecting thr d6995180 , thread 3225 , mypolls 0 +myconn 0 connecting thr d6995180 , thread 3225 , mypolls 0 +thr d6995300 , status 1 +connecting thr d6995300 , thread 3226 , mypolls 0 +myconn 0 connecting thr d6995300 , thread 3226 , mypolls 0 +thr d6995480 , status 1 +connecting thr d6995480 , thread 3227 , mypolls 0 +myconn 0 connecting thr d6995480 , thread 3227 , mypolls 0 +thr d6995600 , status 1 +connecting thr d6995600 , thread 3228 , mypolls 0 +myconn 0 connecting thr d6995600 , thread 3228 , mypolls 0 +thr d6995780 , status 1 +connecting thr d6995780 , thread 3229 , mypolls 0 +myconn 0 connecting thr d6995780 , thread 3229 , mypolls 0 +thr d6995900 , status 1 +connecting thr d6995900 , thread 3230 , mypolls 0 +myconn 0 connecting thr d6995900 , thread 3230 , mypolls 0 +thr d6995a80 , status 1 +connecting thr d6995a80 , thread 3231 , mypolls 0 +myconn 0 connecting thr d6995a80 , thread 3231 , mypolls 0 +thr d6995c00 , status 1 +connecting thr d6995c00 , thread 3232 , mypolls 0 +myconn 0 connecting thr d6995c00 , thread 3232 , mypolls 0 +thr d6995d80 , status 1 +connecting thr d6995d80 , thread 3233 , mypolls 0 +myconn 0 connecting thr d6995d80 , thread 3233 , mypolls 0 +thr d6995f00 , status 1 +connecting thr d6995f00 , thread 3234 , mypolls 0 +myconn 0 connecting thr d6995f00 , thread 3234 , mypolls 0 +thr d6996080 , status 1 +connecting thr d6996080 , thread 3235 , mypolls 0 +myconn 0 connecting thr d6996080 , thread 3235 , mypolls 0 +thr d6996200 , status 1 +connecting thr d6996200 , thread 3236 , mypolls 0 +myconn 0 connecting thr d6996200 , thread 3236 , mypolls 0 +thr d6996380 , status 1 +connecting thr d6996380 , thread 3237 , mypolls 0 +myconn 0 connecting thr d6996380 , thread 3237 , mypolls 0 +thr d6996500 , status 1 +connecting thr d6996500 , thread 3238 , mypolls 0 +myconn 0 connecting thr d6996500 , thread 3238 , mypolls 0 +thr d6996680 , status 1 +connecting thr d6996680 , thread 3239 , mypolls 0 +myconn 0 connecting thr d6996680 , thread 3239 , mypolls 0 +thr d6996800 , status 1 +connecting thr d6996800 , thread 3240 , mypolls 0 +myconn 0 connecting thr d6996800 , thread 3240 , mypolls 0 +thr d6996980 , status 1 +connecting thr d6996980 , thread 3241 , mypolls 0 +myconn 0 connecting thr d6996980 , thread 3241 , mypolls 0 +thr d6996b00 , status 1 +connecting thr d6996b00 , thread 3242 , mypolls 0 +myconn 0 connecting thr d6996b00 , thread 3242 , mypolls 0 +thr d6996c80 , status 1 +connecting thr d6996c80 , thread 3243 , mypolls 0 +myconn 0 connecting thr d6996c80 , thread 3243 , mypolls 0 +thr d6996e00 , status 1 +connecting thr d6996e00 , thread 3244 , mypolls 0 +myconn 0 connecting thr d6996e00 , thread 3244 , mypolls 0 +thr d6996f80 , status 1 +connecting thr d6996f80 , thread 3245 , mypolls 0 +myconn 0 connecting thr d6996f80 , thread 3245 , mypolls 0 +thr d6997100 , status 1 +connecting thr d6997100 , thread 3246 , mypolls 0 +myconn 0 connecting thr d6997100 , thread 3246 , mypolls 0 +thr d6997280 , status 1 +connecting thr d6997280 , thread 3247 , mypolls 0 +myconn 0 connecting thr d6997280 , thread 3247 , mypolls 0 +thr d6997400 , status 1 +connecting thr d6997400 , thread 3248 , mypolls 0 +myconn 0 connecting thr d6997400 , thread 3248 , mypolls 0 +thr d6997580 , status 1 +connecting thr d6997580 , thread 3249 , mypolls 0 +myconn 0 connecting thr d6997580 , thread 3249 , mypolls 0 +thr d6997700 , status 1 +connecting thr d6997700 , thread 3250 , mypolls 0 +myconn 0 connecting thr d6997700 , thread 3250 , mypolls 0 +thr d6997880 , status 1 +connecting thr d6997880 , thread 3251 , mypolls 0 +myconn 0 connecting thr d6997880 , thread 3251 , mypolls 0 +thr d6997a00 , status 1 +connecting thr d6997a00 , thread 3252 , mypolls 0 +myconn 0 connecting thr d6997a00 , thread 3252 , mypolls 0 +thr d6997b80 , status 1 +connecting thr d6997b80 , thread 3253 , mypolls 0 +myconn 0 connecting thr d6997b80 , thread 3253 , mypolls 0 +thr d6997d00 , status 1 +connecting thr d6997d00 , thread 3254 , mypolls 0 +myconn 0 connecting thr d6997d00 , thread 3254 , mypolls 0 +thr d6997e80 , status 1 +connecting thr d6997e80 , thread 3255 , mypolls 0 +myconn 0 connecting thr d6997e80 , thread 3255 , mypolls 0 +thr d67f5000 , status 1 +connecting thr d67f5000 , thread 3256 , mypolls 0 +myconn 0 connecting thr d67f5000 , thread 3256 , mypolls 0 +thr d67f5180 , status 1 +connecting thr d67f5180 , thread 3257 , mypolls 0 +myconn 0 connecting thr d67f5180 , thread 3257 , mypolls 0 +thr d67f5300 , status 1 +connecting thr d67f5300 , thread 3258 , mypolls 0 +myconn 0 connecting thr d67f5300 , thread 3258 , mypolls 0 +thr d67f5480 , status 1 +connecting thr d67f5480 , thread 3259 , mypolls 0 +myconn 0 connecting thr d67f5480 , thread 3259 , mypolls 0 +thr d67f5600 , status 1 +connecting thr d67f5600 , thread 3260 , mypolls 0 +myconn 0 connecting thr d67f5600 , thread 3260 , mypolls 0 +thr d67f5780 , status 1 +connecting thr d67f5780 , thread 3261 , mypolls 0 +myconn 0 connecting thr d67f5780 , thread 3261 , mypolls 0 +thr d67f5900 , status 1 +connecting thr d67f5900 , thread 3262 , mypolls 0 +myconn 0 connecting thr d67f5900 , thread 3262 , mypolls 0 +thr d67f5a80 , status 1 +connecting thr d67f5a80 , thread 3263 , mypolls 0 +myconn 0 connecting thr d67f5a80 , thread 3263 , mypolls 0 +thr d67f5c00 , status 1 +connecting thr d67f5c00 , thread 3264 , mypolls 0 +myconn 0 connecting thr d67f5c00 , thread 3264 , mypolls 0 +thr d67f5d80 , status 1 +connecting thr d67f5d80 , thread 3265 , mypolls 0 +myconn 0 connecting thr d67f5d80 , thread 3265 , mypolls 0 +thr d67f5f00 , status 1 +connecting thr d67f5f00 , thread 3266 , mypolls 0 +myconn 0 connecting thr d67f5f00 , thread 3266 , mypolls 0 +thr d67f6080 , status 1 +connecting thr d67f6080 , thread 3267 , mypolls 0 +myconn 0 connecting thr d67f6080 , thread 3267 , mypolls 0 +thr d67f6200 , status 1 +connecting thr d67f6200 , thread 3268 , mypolls 0 +myconn 0 connecting thr d67f6200 , thread 3268 , mypolls 0 +thr d67f6380 , status 1 +connecting thr d67f6380 , thread 3269 , mypolls 0 +myconn 0 connecting thr d67f6380 , thread 3269 , mypolls 0 +thr d67f6500 , status 1 +connecting thr d67f6500 , thread 3270 , mypolls 0 +myconn 0 connecting thr d67f6500 , thread 3270 , mypolls 0 +thr d67f6680 , status 1 +connecting thr d67f6680 , thread 3271 , mypolls 0 +myconn 0 connecting thr d67f6680 , thread 3271 , mypolls 0 +thr d67f6800 , status 1 +connecting thr d67f6800 , thread 3272 , mypolls 0 +myconn 0 connecting thr d67f6800 , thread 3272 , mypolls 0 +thr d67f6980 , status 1 +connecting thr d67f6980 , thread 3273 , mypolls 0 +myconn 0 connecting thr d67f6980 , thread 3273 , mypolls 0 +thr d67f6b00 , status 1 +connecting thr d67f6b00 , thread 3274 , mypolls 0 +myconn 0 connecting thr d67f6b00 , thread 3274 , mypolls 0 +thr d67f6c80 , status 1 +connecting thr d67f6c80 , thread 3275 , mypolls 0 +myconn 0 connecting thr d67f6c80 , thread 3275 , mypolls 0 +thr d67f6e00 , status 1 +connecting thr d67f6e00 , thread 3276 , mypolls 0 +myconn 0 connecting thr d67f6e00 , thread 3276 , mypolls 0 +thr d67f6f80 , status 1 +connecting thr d67f6f80 , thread 3277 , mypolls 0 +myconn 0 connecting thr d67f6f80 , thread 3277 , mypolls 0 +thr d67f7100 , status 1 +connecting thr d67f7100 , thread 3278 , mypolls 0 +myconn 0 connecting thr d67f7100 , thread 3278 , mypolls 0 +thr d67f7280 , status 1 +connecting thr d67f7280 , thread 3279 , mypolls 0 +myconn 0 connecting thr d67f7280 , thread 3279 , mypolls 0 +thr d67f7400 , status 1 +connecting thr d67f7400 , thread 3280 , mypolls 0 +myconn 0 connecting thr d67f7400 , thread 3280 , mypolls 0 +thr d67f7580 , status 1 +connecting thr d67f7580 , thread 3281 , mypolls 0 +myconn 0 connecting thr d67f7580 , thread 3281 , mypolls 0 +thr d67f7700 , status 1 +connecting thr d67f7700 , thread 3282 , mypolls 0 +myconn 0 connecting thr d67f7700 , thread 3282 , mypolls 0 +thr d67f7880 , status 1 +connecting thr d67f7880 , thread 3283 , mypolls 0 +myconn 0 connecting thr d67f7880 , thread 3283 , mypolls 0 +thr d67f7a00 , status 1 +connecting thr d67f7a00 , thread 3284 , mypolls 0 +myconn 0 connecting thr d67f7a00 , thread 3284 , mypolls 0 +thr d67f7b80 , status 1 +connecting thr d67f7b80 , thread 3285 , mypolls 0 +myconn 0 connecting thr d67f7b80 , thread 3285 , mypolls 0 +thr d67f7d00 , status 1 +connecting thr d67f7d00 , thread 3286 , mypolls 0 +myconn 0 connecting thr d67f7d00 , thread 3286 , mypolls 0 +thr d67f7e80 , status 1 +connecting thr d67f7e80 , thread 3287 , mypolls 0 +myconn 0 connecting thr d67f7e80 , thread 3287 , mypolls 0 +thr d626c000 , status 1 +connecting thr d626c000 , thread 3288 , mypolls 0 +myconn 0 connecting thr d626c000 , thread 3288 , mypolls 0 +thr d626c180 , status 1 +connecting thr d626c180 , thread 3289 , mypolls 0 +myconn 0 connecting thr d626c180 , thread 3289 , mypolls 0 +thr d626c300 , status 1 +connecting thr d626c300 , thread 3290 , mypolls 0 +myconn 0 connecting thr d626c300 , thread 3290 , mypolls 0 +thr d626c480 , status 1 +connecting thr d626c480 , thread 3291 , mypolls 0 +myconn 0 connecting thr d626c480 , thread 3291 , mypolls 0 +thr d626c600 , status 1 +connecting thr d626c600 , thread 3292 , mypolls 0 +myconn 0 connecting thr d626c600 , thread 3292 , mypolls 0 +thr d626c780 , status 1 +connecting thr d626c780 , thread 3293 , mypolls 0 +myconn 0 connecting thr d626c780 , thread 3293 , mypolls 0 +thr d626c900 , status 1 +connecting thr d626c900 , thread 3294 , mypolls 0 +myconn 0 connecting thr d626c900 , thread 3294 , mypolls 0 +thr d626ca80 , status 1 +connecting thr d626ca80 , thread 3295 , mypolls 0 +myconn 0 connecting thr d626ca80 , thread 3295 , mypolls 0 +thr d626cc00 , status 1 +connecting thr d626cc00 , thread 3296 , mypolls 0 +myconn 0 connecting thr d626cc00 , thread 3296 , mypolls 0 +thr d626cd80 , status 1 +connecting thr d626cd80 , thread 3297 , mypolls 0 +myconn 0 connecting thr d626cd80 , thread 3297 , mypolls 0 +thr d626cf00 , status 1 +connecting thr d626cf00 , thread 3298 , mypolls 0 +myconn 0 connecting thr d626cf00 , thread 3298 , mypolls 0 +thr d626d080 , status 1 +connecting thr d626d080 , thread 3299 , mypolls 0 +myconn 0 connecting thr d626d080 , thread 3299 , mypolls 0 +thr d626d200 , status 1 +connecting thr d626d200 , thread 3300 , mypolls 0 +myconn 0 connecting thr d626d200 , thread 3300 , mypolls 0 +thr d626d380 , status 1 +connecting thr d626d380 , thread 3301 , mypolls 0 +myconn 0 connecting thr d626d380 , thread 3301 , mypolls 0 +thr d626d500 , status 1 +connecting thr d626d500 , thread 3302 , mypolls 0 +myconn 0 connecting thr d626d500 , thread 3302 , mypolls 0 +thr d626d680 , status 1 +connecting thr d626d680 , thread 3303 , mypolls 0 +myconn 0 connecting thr d626d680 , thread 3303 , mypolls 0 +thr d626d800 , status 1 +connecting thr d626d800 , thread 3304 , mypolls 0 +myconn 0 connecting thr d626d800 , thread 3304 , mypolls 0 +thr d626d980 , status 1 +connecting thr d626d980 , thread 3305 , mypolls 0 +myconn 0 connecting thr d626d980 , thread 3305 , mypolls 0 +thr d626db00 , status 1 +connecting thr d626db00 , thread 3306 , mypolls 0 +myconn 0 connecting thr d626db00 , thread 3306 , mypolls 0 +thr d626dc80 , status 1 +connecting thr d626dc80 , thread 3307 , mypolls 0 +myconn 0 connecting thr d626dc80 , thread 3307 , mypolls 0 +thr d626de00 , status 1 +connecting thr d626de00 , thread 3308 , mypolls 0 +myconn 0 connecting thr d626de00 , thread 3308 , mypolls 0 +thr d626df80 , status 1 +connecting thr d626df80 , thread 3309 , mypolls 0 +myconn 0 connecting thr d626df80 , thread 3309 , mypolls 0 +thr d626e100 , status 1 +connecting thr d626e100 , thread 3310 , mypolls 0 +myconn 0 connecting thr d626e100 , thread 3310 , mypolls 0 +thr d626e280 , status 1 +connecting thr d626e280 , thread 3311 , mypolls 0 +myconn 0 connecting thr d626e280 , thread 3311 , mypolls 0 +thr d626e400 , status 1 +connecting thr d626e400 , thread 3312 , mypolls 0 +myconn 0 connecting thr d626e400 , thread 3312 , mypolls 0 +thr d626e580 , status 1 +connecting thr d626e580 , thread 3313 , mypolls 0 +myconn 0 connecting thr d626e580 , thread 3313 , mypolls 0 +thr d626e700 , status 1 +connecting thr d626e700 , thread 3314 , mypolls 0 +myconn 0 connecting thr d626e700 , thread 3314 , mypolls 0 +thr d626e880 , status 1 +connecting thr d626e880 , thread 3315 , mypolls 0 +myconn 0 connecting thr d626e880 , thread 3315 , mypolls 0 +thr d626ea00 , status 1 +connecting thr d626ea00 , thread 3316 , mypolls 0 +myconn 0 connecting thr d626ea00 , thread 3316 , mypolls 0 +thr d626eb80 , status 1 +connecting thr d626eb80 , thread 3317 , mypolls 0 +myconn 0 connecting thr d626eb80 , thread 3317 , mypolls 0 +thr d626ed00 , status 1 +connecting thr d626ed00 , thread 3318 , mypolls 0 +myconn 0 connecting thr d626ed00 , thread 3318 , mypolls 0 +thr d626ee80 , status 1 +connecting thr d626ee80 , thread 3319 , mypolls 0 +myconn 0 connecting thr d626ee80 , thread 3319 , mypolls 0 +thr d60cd000 , status 1 +connecting thr d60cd000 , thread 3320 , mypolls 0 +myconn 0 connecting thr d60cd000 , thread 3320 , mypolls 0 +thr d60cd180 , status 1 +connecting thr d60cd180 , thread 3321 , mypolls 0 +myconn 0 connecting thr d60cd180 , thread 3321 , mypolls 0 +thr d60cd300 , status 1 +connecting thr d60cd300 , thread 3322 , mypolls 0 +myconn 0 connecting thr d60cd300 , thread 3322 , mypolls 0 +thr d60cd480 , status 1 +connecting thr d60cd480 , thread 3323 , mypolls 0 +myconn 0 connecting thr d60cd480 , thread 3323 , mypolls 0 +thr d60cd600 , status 1 +connecting thr d60cd600 , thread 3324 , mypolls 0 +myconn 0 connecting thr d60cd600 , thread 3324 , mypolls 0 +thr d60cd780 , status 1 +connecting thr d60cd780 , thread 3325 , mypolls 0 +myconn 0 connecting thr d60cd780 , thread 3325 , mypolls 0 +thr d60cd900 , status 1 +connecting thr d60cd900 , thread 3326 , mypolls 0 +myconn 0 connecting thr d60cd900 , thread 3326 , mypolls 0 +thr d60cda80 , status 1 +connecting thr d60cda80 , thread 3327 , mypolls 0 +myconn 0 connecting thr d60cda80 , thread 3327 , mypolls 0 +thr d60cdc00 , status 1 +connecting thr d60cdc00 , thread 3328 , mypolls 0 +myconn 0 connecting thr d60cdc00 , thread 3328 , mypolls 0 +thr d60cdd80 , status 1 +connecting thr d60cdd80 , thread 3329 , mypolls 0 +myconn 0 connecting thr d60cdd80 , thread 3329 , mypolls 0 +thr d60cdf00 , status 1 +connecting thr d60cdf00 , thread 3330 , mypolls 0 +myconn 0 connecting thr d60cdf00 , thread 3330 , mypolls 0 +thr d60ce080 , status 1 +connecting thr d60ce080 , thread 3331 , mypolls 0 +myconn 0 connecting thr d60ce080 , thread 3331 , mypolls 0 +thr d60ce200 , status 1 +connecting thr d60ce200 , thread 3332 , mypolls 0 +myconn 0 connecting thr d60ce200 , thread 3332 , mypolls 0 +thr d60ce380 , status 1 +connecting thr d60ce380 , thread 3333 , mypolls 0 +myconn 0 connecting thr d60ce380 , thread 3333 , mypolls 0 +thr d60ce500 , status 1 +connecting thr d60ce500 , thread 3334 , mypolls 0 +myconn 0 connecting thr d60ce500 , thread 3334 , mypolls 0 +thr d60ce680 , status 1 +connecting thr d60ce680 , thread 3335 , mypolls 0 +myconn 0 connecting thr d60ce680 , thread 3335 , mypolls 0 +thr d60ce800 , status 1 +connecting thr d60ce800 , thread 3336 , mypolls 0 +myconn 0 connecting thr d60ce800 , thread 3336 , mypolls 0 +thr d60ce980 , status 1 +connecting thr d60ce980 , thread 3337 , mypolls 0 +myconn 0 connecting thr d60ce980 , thread 3337 , mypolls 0 +thr d60ceb00 , status 1 +connecting thr d60ceb00 , thread 3338 , mypolls 0 +myconn 0 connecting thr d60ceb00 , thread 3338 , mypolls 0 +thr d60cec80 , status 1 +connecting thr d60cec80 , thread 3339 , mypolls 0 +myconn 0 connecting thr d60cec80 , thread 3339 , mypolls 0 +thr d60cee00 , status 1 +connecting thr d60cee00 , thread 3340 , mypolls 0 +myconn 0 connecting thr d60cee00 , thread 3340 , mypolls 0 +thr d60cef80 , status 1 +connecting thr d60cef80 , thread 3341 , mypolls 0 +myconn 0 connecting thr d60cef80 , thread 3341 , mypolls 0 +thr d60cf100 , status 1 +connecting thr d60cf100 , thread 3342 , mypolls 0 +myconn 0 connecting thr d60cf100 , thread 3342 , mypolls 0 +thr d60cf280 , status 1 +connecting thr d60cf280 , thread 3343 , mypolls 0 +myconn 0 connecting thr d60cf280 , thread 3343 , mypolls 0 +thr d60cf400 , status 1 +connecting thr d60cf400 , thread 3344 , mypolls 0 +myconn 0 connecting thr d60cf400 , thread 3344 , mypolls 0 +thr d60cf580 , status 1 +connecting thr d60cf580 , thread 3345 , mypolls 0 +myconn 0 connecting thr d60cf580 , thread 3345 , mypolls 0 +thr d60cf700 , status 1 +connecting thr d60cf700 , thread 3346 , mypolls 0 +myconn 0 connecting thr d60cf700 , thread 3346 , mypolls 0 +thr d60cf880 , status 1 +connecting thr d60cf880 , thread 3347 , mypolls 0 +myconn 0 connecting thr d60cf880 , thread 3347 , mypolls 0 +thr d60cfa00 , status 1 +connecting thr d60cfa00 , thread 3348 , mypolls 0 +myconn 0 connecting thr d60cfa00 , thread 3348 , mypolls 0 +thr d60cfb80 , status 1 +connecting thr d60cfb80 , thread 3349 , mypolls 0 +myconn 0 connecting thr d60cfb80 , thread 3349 , mypolls 0 +thr d60cfd00 , status 1 +connecting thr d60cfd00 , thread 3350 , mypolls 0 +myconn 0 connecting thr d60cfd00 , thread 3350 , mypolls 0 +thr d60cfe80 , status 1 +connecting thr d60cfe80 , thread 3351 , mypolls 0 +myconn 0 connecting thr d60cfe80 , thread 3351 , mypolls 0 +thr d5f2e000 , status 1 +connecting thr d5f2e000 , thread 3352 , mypolls 0 +myconn 0 connecting thr d5f2e000 , thread 3352 , mypolls 0 +thr d5f2e180 , status 1 +connecting thr d5f2e180 , thread 3353 , mypolls 0 +myconn 0 connecting thr d5f2e180 , thread 3353 , mypolls 0 +thr d5f2e300 , status 1 +connecting thr d5f2e300 , thread 3354 , mypolls 0 +myconn 0 connecting thr d5f2e300 , thread 3354 , mypolls 0 +thr d5f2e480 , status 1 +connecting thr d5f2e480 , thread 3355 , mypolls 0 +myconn 0 connecting thr d5f2e480 , thread 3355 , mypolls 0 +thr d5f2e600 , status 1 +connecting thr d5f2e600 , thread 3356 , mypolls 0 +myconn 0 connecting thr d5f2e600 , thread 3356 , mypolls 0 +thr d5f2e780 , status 1 +connecting thr d5f2e780 , thread 3357 , mypolls 0 +myconn 0 connecting thr d5f2e780 , thread 3357 , mypolls 0 +thr d5f2e900 , status 1 +connecting thr d5f2e900 , thread 3358 , mypolls 0 +myconn 0 connecting thr d5f2e900 , thread 3358 , mypolls 0 +thr d5f2ea80 , status 1 +connecting thr d5f2ea80 , thread 3359 , mypolls 0 +myconn 0 connecting thr d5f2ea80 , thread 3359 , mypolls 0 +thr d5f2ec00 , status 1 +connecting thr d5f2ec00 , thread 3360 , mypolls 0 +myconn 0 connecting thr d5f2ec00 , thread 3360 , mypolls 0 +thr d5f2ed80 , status 1 +connecting thr d5f2ed80 , thread 3361 , mypolls 0 +myconn 0 connecting thr d5f2ed80 , thread 3361 , mypolls 0 +thr d5f2ef00 , status 1 +connecting thr d5f2ef00 , thread 3362 , mypolls 0 +myconn 0 connecting thr d5f2ef00 , thread 3362 , mypolls 0 +thr d5f2f080 , status 1 +connecting thr d5f2f080 , thread 3363 , mypolls 0 +myconn 0 connecting thr d5f2f080 , thread 3363 , mypolls 0 +thr d5f2f200 , status 1 +connecting thr d5f2f200 , thread 3364 , mypolls 0 +myconn 0 connecting thr d5f2f200 , thread 3364 , mypolls 0 +thr d5f2f380 , status 1 +connecting thr d5f2f380 , thread 3365 , mypolls 0 +myconn 0 connecting thr d5f2f380 , thread 3365 , mypolls 0 +thr d5f2f500 , status 1 +connecting thr d5f2f500 , thread 3366 , mypolls 0 +myconn 0 connecting thr d5f2f500 , thread 3366 , mypolls 0 +thr d5f2f680 , status 1 +connecting thr d5f2f680 , thread 3367 , mypolls 0 +myconn 0 connecting thr d5f2f680 , thread 3367 , mypolls 0 +thr d5f2f800 , status 1 +connecting thr d5f2f800 , thread 3368 , mypolls 0 +myconn 0 connecting thr d5f2f800 , thread 3368 , mypolls 0 +thr d5f2f980 , status 1 +connecting thr d5f2f980 , thread 3369 , mypolls 0 +myconn 0 connecting thr d5f2f980 , thread 3369 , mypolls 0 +thr d5f2fb00 , status 1 +connecting thr d5f2fb00 , thread 3370 , mypolls 0 +myconn 0 connecting thr d5f2fb00 , thread 3370 , mypolls 0 +thr d5f2fc80 , status 1 +connecting thr d5f2fc80 , thread 3371 , mypolls 0 +myconn 0 connecting thr d5f2fc80 , thread 3371 , mypolls 0 +thr d5f2fe00 , status 1 +connecting thr d5f2fe00 , thread 3372 , mypolls 0 +myconn 0 connecting thr d5f2fe00 , thread 3372 , mypolls 0 +thr d5f2ff80 , status 1 +connecting thr d5f2ff80 , thread 3373 , mypolls 0 +myconn 0 connecting thr d5f2ff80 , thread 3373 , mypolls 0 +thr d5f30100 , status 1 +connecting thr d5f30100 , thread 3374 , mypolls 0 +myconn 0 connecting thr d5f30100 , thread 3374 , mypolls 0 +thr d5f30280 , status 1 +connecting thr d5f30280 , thread 3375 , mypolls 0 +myconn 0 connecting thr d5f30280 , thread 3375 , mypolls 0 +thr d5f30400 , status 1 +connecting thr d5f30400 , thread 3376 , mypolls 0 +myconn 0 connecting thr d5f30400 , thread 3376 , mypolls 0 +thr d5f30580 , status 1 +connecting thr d5f30580 , thread 3377 , mypolls 0 +myconn 0 connecting thr d5f30580 , thread 3377 , mypolls 0 +thr d5f30700 , status 1 +connecting thr d5f30700 , thread 3378 , mypolls 0 +myconn 0 connecting thr d5f30700 , thread 3378 , mypolls 0 +thr d5f30880 , status 1 +connecting thr d5f30880 , thread 3379 , mypolls 0 +myconn 0 connecting thr d5f30880 , thread 3379 , mypolls 0 +thr d5f30a00 , status 1 +connecting thr d5f30a00 , thread 3380 , mypolls 0 +myconn 0 connecting thr d5f30a00 , thread 3380 , mypolls 0 +thr d5f30b80 , status 1 +connecting thr d5f30b80 , thread 3381 , mypolls 0 +myconn 0 connecting thr d5f30b80 , thread 3381 , mypolls 0 +thr d5f30d00 , status 1 +connecting thr d5f30d00 , thread 3382 , mypolls 0 +myconn 0 connecting thr d5f30d00 , thread 3382 , mypolls 0 +thr d5f30e80 , status 1 +connecting thr d5f30e80 , thread 3383 , mypolls 0 +myconn 0 connecting thr d5f30e80 , thread 3383 , mypolls 0 +thr d5d92000 , status 1 +connecting thr d5d92000 , thread 3384 , mypolls 0 +myconn 0 connecting thr d5d92000 , thread 3384 , mypolls 0 +thr d5d92180 , status 1 +connecting thr d5d92180 , thread 3385 , mypolls 0 +myconn 0 connecting thr d5d92180 , thread 3385 , mypolls 0 +thr d5d92300 , status 1 +connecting thr d5d92300 , thread 3386 , mypolls 0 +myconn 0 connecting thr d5d92300 , thread 3386 , mypolls 0 +thr d5d92480 , status 1 +connecting thr d5d92480 , thread 3387 , mypolls 0 +myconn 0 connecting thr d5d92480 , thread 3387 , mypolls 0 +thr d5d92600 , status 1 +connecting thr d5d92600 , thread 3388 , mypolls 0 +myconn 0 connecting thr d5d92600 , thread 3388 , mypolls 0 +thr d5d92780 , status 1 +connecting thr d5d92780 , thread 3389 , mypolls 0 +myconn 0 connecting thr d5d92780 , thread 3389 , mypolls 0 +thr d5d92900 , status 1 +connecting thr d5d92900 , thread 3390 , mypolls 0 +myconn 0 connecting thr d5d92900 , thread 3390 , mypolls 0 +thr d5d92a80 , status 1 +connecting thr d5d92a80 , thread 3391 , mypolls 0 +myconn 0 connecting thr d5d92a80 , thread 3391 , mypolls 0 +thr d5d92c00 , status 1 +connecting thr d5d92c00 , thread 3392 , mypolls 0 +myconn 0 connecting thr d5d92c00 , thread 3392 , mypolls 0 +thr d5d92d80 , status 1 +connecting thr d5d92d80 , thread 3393 , mypolls 0 +myconn 0 connecting thr d5d92d80 , thread 3393 , mypolls 0 +thr d5d92f00 , status 1 +connecting thr d5d92f00 , thread 3394 , mypolls 0 +myconn 0 connecting thr d5d92f00 , thread 3394 , mypolls 0 +thr d5d93080 , status 1 +connecting thr d5d93080 , thread 3395 , mypolls 0 +myconn 0 connecting thr d5d93080 , thread 3395 , mypolls 0 +thr d5d93200 , status 1 +connecting thr d5d93200 , thread 3396 , mypolls 0 +myconn 0 connecting thr d5d93200 , thread 3396 , mypolls 0 +thr d5d93380 , status 1 +connecting thr d5d93380 , thread 3397 , mypolls 0 +myconn 0 connecting thr d5d93380 , thread 3397 , mypolls 0 +thr d5d93500 , status 1 +connecting thr d5d93500 , thread 3398 , mypolls 0 +myconn 0 connecting thr d5d93500 , thread 3398 , mypolls 0 +thr d5d93680 , status 1 +connecting thr d5d93680 , thread 3399 , mypolls 0 +myconn 0 connecting thr d5d93680 , thread 3399 , mypolls 0 +thr d5d93800 , status 1 +connecting thr d5d93800 , thread 3400 , mypolls 0 +myconn 0 connecting thr d5d93800 , thread 3400 , mypolls 0 +thr d5d93980 , status 1 +connecting thr d5d93980 , thread 3401 , mypolls 0 +myconn 0 connecting thr d5d93980 , thread 3401 , mypolls 0 +thr d5d93b00 , status 1 +connecting thr d5d93b00 , thread 3402 , mypolls 0 +myconn 0 connecting thr d5d93b00 , thread 3402 , mypolls 0 +thr d5d93c80 , status 1 +connecting thr d5d93c80 , thread 3403 , mypolls 0 +myconn 0 connecting thr d5d93c80 , thread 3403 , mypolls 0 +thr d5d93e00 , status 1 +connecting thr d5d93e00 , thread 3404 , mypolls 0 +myconn 0 connecting thr d5d93e00 , thread 3404 , mypolls 0 +thr d5d93f80 , status 1 +connecting thr d5d93f80 , thread 3405 , mypolls 0 +myconn 0 connecting thr d5d93f80 , thread 3405 , mypolls 0 +thr d5d94100 , status 1 +connecting thr d5d94100 , thread 3406 , mypolls 0 +myconn 0 connecting thr d5d94100 , thread 3406 , mypolls 0 +thr d5d94280 , status 1 +connecting thr d5d94280 , thread 3407 , mypolls 0 +myconn 0 connecting thr d5d94280 , thread 3407 , mypolls 0 +thr d5d94400 , status 1 +connecting thr d5d94400 , thread 3408 , mypolls 0 +myconn 0 connecting thr d5d94400 , thread 3408 , mypolls 0 +thr d5d94580 , status 1 +connecting thr d5d94580 , thread 3409 , mypolls 0 +myconn 0 connecting thr d5d94580 , thread 3409 , mypolls 0 +thr d5d94700 , status 1 +connecting thr d5d94700 , thread 3410 , mypolls 0 +myconn 0 connecting thr d5d94700 , thread 3410 , mypolls 0 +thr d5d94880 , status 1 +connecting thr d5d94880 , thread 3411 , mypolls 0 +myconn 0 connecting thr d5d94880 , thread 3411 , mypolls 0 +thr d5d94a00 , status 1 +connecting thr d5d94a00 , thread 3412 , mypolls 0 +myconn 0 connecting thr d5d94a00 , thread 3412 , mypolls 0 +thr d5d94b80 , status 1 +connecting thr d5d94b80 , thread 3413 , mypolls 0 +myconn 0 connecting thr d5d94b80 , thread 3413 , mypolls 0 +thr d5d94d00 , status 1 +connecting thr d5d94d00 , thread 3414 , mypolls 0 +myconn 0 connecting thr d5d94d00 , thread 3414 , mypolls 0 +thr d5d94e80 , status 1 +connecting thr d5d94e80 , thread 3415 , mypolls 0 +myconn 0 connecting thr d5d94e80 , thread 3415 , mypolls 0 +thr d5bf3000 , status 1 +connecting thr d5bf3000 , thread 3416 , mypolls 0 +myconn 0 connecting thr d5bf3000 , thread 3416 , mypolls 0 +thr d5bf3180 , status 1 +connecting thr d5bf3180 , thread 3417 , mypolls 0 +myconn 0 connecting thr d5bf3180 , thread 3417 , mypolls 0 +thr d5bf3300 , status 1 +connecting thr d5bf3300 , thread 3418 , mypolls 0 +myconn 0 connecting thr d5bf3300 , thread 3418 , mypolls 0 +thr d5bf3480 , status 1 +connecting thr d5bf3480 , thread 3419 , mypolls 0 +myconn 0 connecting thr d5bf3480 , thread 3419 , mypolls 0 +thr d5bf3600 , status 1 +connecting thr d5bf3600 , thread 3420 , mypolls 0 +myconn 0 connecting thr d5bf3600 , thread 3420 , mypolls 0 +thr d5bf3780 , status 1 +connecting thr d5bf3780 , thread 3421 , mypolls 0 +myconn 0 connecting thr d5bf3780 , thread 3421 , mypolls 0 +thr d5bf3900 , status 1 +connecting thr d5bf3900 , thread 3422 , mypolls 0 +myconn 0 connecting thr d5bf3900 , thread 3422 , mypolls 0 +thr d5bf3a80 , status 1 +connecting thr d5bf3a80 , thread 3423 , mypolls 0 +myconn 0 connecting thr d5bf3a80 , thread 3423 , mypolls 0 +thr d5bf3c00 , status 1 +connecting thr d5bf3c00 , thread 3424 , mypolls 0 +myconn 0 connecting thr d5bf3c00 , thread 3424 , mypolls 0 +thr d5bf3d80 , status 1 +connecting thr d5bf3d80 , thread 3425 , mypolls 0 +myconn 0 connecting thr d5bf3d80 , thread 3425 , mypolls 0 +thr d5bf3f00 , status 1 +connecting thr d5bf3f00 , thread 3426 , mypolls 0 +myconn 0 connecting thr d5bf3f00 , thread 3426 , mypolls 0 +thr d5bf4080 , status 1 +connecting thr d5bf4080 , thread 3427 , mypolls 0 +myconn 0 connecting thr d5bf4080 , thread 3427 , mypolls 0 +thr d5bf4200 , status 1 +connecting thr d5bf4200 , thread 3428 , mypolls 0 +myconn 0 connecting thr d5bf4200 , thread 3428 , mypolls 0 +thr d5bf4380 , status 1 +connecting thr d5bf4380 , thread 3429 , mypolls 0 +myconn 0 connecting thr d5bf4380 , thread 3429 , mypolls 0 +thr d5bf4500 , status 1 +connecting thr d5bf4500 , thread 3430 , mypolls 0 +myconn 0 connecting thr d5bf4500 , thread 3430 , mypolls 0 +thr d5bf4680 , status 1 +connecting thr d5bf4680 , thread 3431 , mypolls 0 +myconn 0 connecting thr d5bf4680 , thread 3431 , mypolls 0 +thr d5bf4800 , status 1 +connecting thr d5bf4800 , thread 3432 , mypolls 0 +myconn 0 connecting thr d5bf4800 , thread 3432 , mypolls 0 +thr d5bf4980 , status 1 +connecting thr d5bf4980 , thread 3433 , mypolls 0 +myconn 0 connecting thr d5bf4980 , thread 3433 , mypolls 0 +thr d5bf4b00 , status 1 +connecting thr d5bf4b00 , thread 3434 , mypolls 0 +myconn 0 connecting thr d5bf4b00 , thread 3434 , mypolls 0 +thr d5bf4c80 , status 1 +connecting thr d5bf4c80 , thread 3435 , mypolls 0 +myconn 0 connecting thr d5bf4c80 , thread 3435 , mypolls 0 +thr d5bf4e00 , status 1 +connecting thr d5bf4e00 , thread 3436 , mypolls 0 +myconn 0 connecting thr d5bf4e00 , thread 3436 , mypolls 0 +thr d5bf4f80 , status 1 +connecting thr d5bf4f80 , thread 3437 , mypolls 0 +myconn 0 connecting thr d5bf4f80 , thread 3437 , mypolls 0 +thr d5bf5100 , status 1 +connecting thr d5bf5100 , thread 3438 , mypolls 0 +myconn 0 connecting thr d5bf5100 , thread 3438 , mypolls 0 +thr d5bf5280 , status 1 +connecting thr d5bf5280 , thread 3439 , mypolls 0 +myconn 0 connecting thr d5bf5280 , thread 3439 , mypolls 0 +thr d5bf5400 , status 1 +connecting thr d5bf5400 , thread 3440 , mypolls 0 +myconn 0 connecting thr d5bf5400 , thread 3440 , mypolls 0 +thr d5bf5580 , status 1 +connecting thr d5bf5580 , thread 3441 , mypolls 0 +myconn 0 connecting thr d5bf5580 , thread 3441 , mypolls 0 +thr d5bf5700 , status 1 +connecting thr d5bf5700 , thread 3442 , mypolls 0 +myconn 0 connecting thr d5bf5700 , thread 3442 , mypolls 0 +thr d5bf5880 , status 1 +connecting thr d5bf5880 , thread 3443 , mypolls 0 +myconn 0 connecting thr d5bf5880 , thread 3443 , mypolls 0 +thr d5bf5a00 , status 1 +connecting thr d5bf5a00 , thread 3444 , mypolls 0 +myconn 0 connecting thr d5bf5a00 , thread 3444 , mypolls 0 +thr d5bf5b80 , status 1 +connecting thr d5bf5b80 , thread 3445 , mypolls 0 +myconn 0 connecting thr d5bf5b80 , thread 3445 , mypolls 0 +thr d5bf5d00 , status 1 +connecting thr d5bf5d00 , thread 3446 , mypolls 0 +myconn 0 connecting thr d5bf5d00 , thread 3446 , mypolls 0 +thr d5bf5e80 , status 1 +connecting thr d5bf5e80 , thread 3447 , mypolls 0 +myconn 0 connecting thr d5bf5e80 , thread 3447 , mypolls 0 +thr d59f9000 , status 1 +connecting thr d59f9000 , thread 3448 , mypolls 0 +myconn 0 connecting thr d59f9000 , thread 3448 , mypolls 0 +thr d59f9180 , status 1 +connecting thr d59f9180 , thread 3449 , mypolls 0 +myconn 0 connecting thr d59f9180 , thread 3449 , mypolls 0 +thr d59f9300 , status 1 +connecting thr d59f9300 , thread 3450 , mypolls 0 +myconn 0 connecting thr d59f9300 , thread 3450 , mypolls 0 +thr d59f9480 , status 1 +connecting thr d59f9480 , thread 3451 , mypolls 0 +myconn 0 connecting thr d59f9480 , thread 3451 , mypolls 0 +thr d59f9600 , status 1 +connecting thr d59f9600 , thread 3452 , mypolls 0 +myconn 0 connecting thr d59f9600 , thread 3452 , mypolls 0 +thr d59f9780 , status 1 +connecting thr d59f9780 , thread 3453 , mypolls 0 +myconn 0 connecting thr d59f9780 , thread 3453 , mypolls 0 +thr d59f9900 , status 1 +connecting thr d59f9900 , thread 3454 , mypolls 0 +myconn 0 connecting thr d59f9900 , thread 3454 , mypolls 0 +thr d59f9a80 , status 1 +connecting thr d59f9a80 , thread 3455 , mypolls 0 +myconn 0 connecting thr d59f9a80 , thread 3455 , mypolls 0 +thr d59f9c00 , status 1 +connecting thr d59f9c00 , thread 3456 , mypolls 0 +myconn 0 connecting thr d59f9c00 , thread 3456 , mypolls 0 +thr d59f9d80 , status 1 +connecting thr d59f9d80 , thread 3457 , mypolls 0 +myconn 0 connecting thr d59f9d80 , thread 3457 , mypolls 0 +thr d59f9f00 , status 1 +connecting thr d59f9f00 , thread 3458 , mypolls 0 +myconn 0 connecting thr d59f9f00 , thread 3458 , mypolls 0 +thr d59fa080 , status 1 +connecting thr d59fa080 , thread 3459 , mypolls 0 +myconn 0 connecting thr d59fa080 , thread 3459 , mypolls 0 +thr d59fa200 , status 1 +connecting thr d59fa200 , thread 3460 , mypolls 0 +myconn 0 connecting thr d59fa200 , thread 3460 , mypolls 0 +thr d59fa380 , status 1 +connecting thr d59fa380 , thread 3461 , mypolls 0 +myconn 0 connecting thr d59fa380 , thread 3461 , mypolls 0 +thr d59fa500 , status 1 +connecting thr d59fa500 , thread 3462 , mypolls 0 +myconn 0 connecting thr d59fa500 , thread 3462 , mypolls 0 +thr d59fa680 , status 1 +connecting thr d59fa680 , thread 3463 , mypolls 0 +myconn 0 connecting thr d59fa680 , thread 3463 , mypolls 0 +thr d59fa800 , status 1 +connecting thr d59fa800 , thread 3464 , mypolls 0 +myconn 0 connecting thr d59fa800 , thread 3464 , mypolls 0 +thr d59fa980 , status 1 +connecting thr d59fa980 , thread 3465 , mypolls 0 +myconn 0 connecting thr d59fa980 , thread 3465 , mypolls 0 +thr d59fab00 , status 1 +connecting thr d59fab00 , thread 3466 , mypolls 0 +myconn 0 connecting thr d59fab00 , thread 3466 , mypolls 0 +thr d59fac80 , status 1 +connecting thr d59fac80 , thread 3467 , mypolls 0 +myconn 0 connecting thr d59fac80 , thread 3467 , mypolls 0 +thr d59fae00 , status 1 +connecting thr d59fae00 , thread 3468 , mypolls 0 +myconn 0 connecting thr d59fae00 , thread 3468 , mypolls 0 +thr d59faf80 , status 1 +connecting thr d59faf80 , thread 3469 , mypolls 0 +myconn 0 connecting thr d59faf80 , thread 3469 , mypolls 0 +thr d59fb100 , status 1 +connecting thr d59fb100 , thread 3470 , mypolls 0 +myconn 0 connecting thr d59fb100 , thread 3470 , mypolls 0 +thr d59fb280 , status 1 +connecting thr d59fb280 , thread 3471 , mypolls 0 +myconn 0 connecting thr d59fb280 , thread 3471 , mypolls 0 +thr d59fb400 , status 1 +connecting thr d59fb400 , thread 3472 , mypolls 0 +myconn 0 connecting thr d59fb400 , thread 3472 , mypolls 0 +thr d59fb580 , status 1 +connecting thr d59fb580 , thread 3473 , mypolls 0 +myconn 0 connecting thr d59fb580 , thread 3473 , mypolls 0 +thr d59fb700 , status 1 +connecting thr d59fb700 , thread 3474 , mypolls 0 +myconn 0 connecting thr d59fb700 , thread 3474 , mypolls 0 +thr d59fb880 , status 1 +connecting thr d59fb880 , thread 3475 , mypolls 0 +myconn 0 connecting thr d59fb880 , thread 3475 , mypolls 0 +thr d59fba00 , status 1 +connecting thr d59fba00 , thread 3476 , mypolls 0 +myconn 0 connecting thr d59fba00 , thread 3476 , mypolls 0 +thr d59fbb80 , status 1 +connecting thr d59fbb80 , thread 3477 , mypolls 0 +myconn 0 connecting thr d59fbb80 , thread 3477 , mypolls 0 +thr d59fbd00 , status 1 +connecting thr d59fbd00 , thread 3478 , mypolls 0 +myconn 0 connecting thr d59fbd00 , thread 3478 , mypolls 0 +thr d59fbe80 , status 1 +connecting thr d59fbe80 , thread 3479 , mypolls 0 +myconn 0 connecting thr d59fbe80 , thread 3479 , mypolls 0 +thr d54c4000 , status 1 +connecting thr d54c4000 , thread 3480 , mypolls 0 +myconn 0 connecting thr d54c4000 , thread 3480 , mypolls 0 +thr d54c4180 , status 1 +connecting thr d54c4180 , thread 3481 , mypolls 0 +myconn 0 connecting thr d54c4180 , thread 3481 , mypolls 0 +thr d54c4300 , status 1 +connecting thr d54c4300 , thread 3482 , mypolls 0 +myconn 0 connecting thr d54c4300 , thread 3482 , mypolls 0 +thr d54c4480 , status 1 +connecting thr d54c4480 , thread 3483 , mypolls 0 +myconn 0 connecting thr d54c4480 , thread 3483 , mypolls 0 +thr d54c4600 , status 1 +connecting thr d54c4600 , thread 3484 , mypolls 0 +myconn 0 connecting thr d54c4600 , thread 3484 , mypolls 0 +thr d54c4780 , status 1 +connecting thr d54c4780 , thread 3485 , mypolls 0 +myconn 0 connecting thr d54c4780 , thread 3485 , mypolls 0 +thr d54c4900 , status 1 +connecting thr d54c4900 , thread 3486 , mypolls 0 +myconn 0 connecting thr d54c4900 , thread 3486 , mypolls 0 +thr d54c4a80 , status 1 +connecting thr d54c4a80 , thread 3487 , mypolls 0 +myconn 0 connecting thr d54c4a80 , thread 3487 , mypolls 0 +thr d54c4c00 , status 1 +connecting thr d54c4c00 , thread 3488 , mypolls 0 +myconn 0 connecting thr d54c4c00 , thread 3488 , mypolls 0 +thr d54c4d80 , status 1 +connecting thr d54c4d80 , thread 3489 , mypolls 0 +myconn 0 connecting thr d54c4d80 , thread 3489 , mypolls 0 +thr d54c4f00 , status 1 +connecting thr d54c4f00 , thread 3490 , mypolls 0 +myconn 0 connecting thr d54c4f00 , thread 3490 , mypolls 0 +thr d54c5080 , status 1 +connecting thr d54c5080 , thread 3491 , mypolls 0 +myconn 0 connecting thr d54c5080 , thread 3491 , mypolls 0 +thr d54c5200 , status 1 +connecting thr d54c5200 , thread 3492 , mypolls 0 +myconn 0 connecting thr d54c5200 , thread 3492 , mypolls 0 +thr d54c5380 , status 1 +connecting thr d54c5380 , thread 3493 , mypolls 0 +myconn 0 connecting thr d54c5380 , thread 3493 , mypolls 0 +thr d54c5500 , status 1 +connecting thr d54c5500 , thread 3494 , mypolls 0 +myconn 0 connecting thr d54c5500 , thread 3494 , mypolls 0 +thr d54c5680 , status 1 +connecting thr d54c5680 , thread 3495 , mypolls 0 +myconn 0 connecting thr d54c5680 , thread 3495 , mypolls 0 +thr d54c5800 , status 1 +connecting thr d54c5800 , thread 3496 , mypolls 0 +myconn 0 connecting thr d54c5800 , thread 3496 , mypolls 0 +thr d54c5980 , status 1 +connecting thr d54c5980 , thread 3497 , mypolls 0 +myconn 0 connecting thr d54c5980 , thread 3497 , mypolls 0 +thr d54c5b00 , status 1 +connecting thr d54c5b00 , thread 3498 , mypolls 0 +myconn 0 connecting thr d54c5b00 , thread 3498 , mypolls 0 +thr d54c5c80 , status 1 +connecting thr d54c5c80 , thread 3499 , mypolls 0 +myconn 0 connecting thr d54c5c80 , thread 3499 , mypolls 0 +thr d54c5e00 , status 1 +connecting thr d54c5e00 , thread 3500 , mypolls 0 +myconn 0 connecting thr d54c5e00 , thread 3500 , mypolls 0 +thr d54c5f80 , status 1 +connecting thr d54c5f80 , thread 3501 , mypolls 0 +myconn 0 connecting thr d54c5f80 , thread 3501 , mypolls 0 +thr d54c6100 , status 1 +connecting thr d54c6100 , thread 3502 , mypolls 0 +myconn 0 connecting thr d54c6100 , thread 3502 , mypolls 0 +thr d54c6280 , status 1 +connecting thr d54c6280 , thread 3503 , mypolls 0 +myconn 0 connecting thr d54c6280 , thread 3503 , mypolls 0 +thr d54c6400 , status 1 +connecting thr d54c6400 , thread 3504 , mypolls 0 +myconn 0 connecting thr d54c6400 , thread 3504 , mypolls 0 +thr d54c6580 , status 1 +connecting thr d54c6580 , thread 3505 , mypolls 0 +myconn 0 connecting thr d54c6580 , thread 3505 , mypolls 0 +thr d54c6700 , status 1 +connecting thr d54c6700 , thread 3506 , mypolls 0 +myconn 0 connecting thr d54c6700 , thread 3506 , mypolls 0 +thr d54c6880 , status 1 +connecting thr d54c6880 , thread 3507 , mypolls 0 +myconn 0 connecting thr d54c6880 , thread 3507 , mypolls 0 +thr d54c6a00 , status 1 +connecting thr d54c6a00 , thread 3508 , mypolls 0 +myconn 0 connecting thr d54c6a00 , thread 3508 , mypolls 0 +thr d54c6b80 , status 1 +connecting thr d54c6b80 , thread 3509 , mypolls 0 +myconn 0 connecting thr d54c6b80 , thread 3509 , mypolls 0 +thr d54c6d00 , status 1 +connecting thr d54c6d00 , thread 3510 , mypolls 0 +myconn 0 connecting thr d54c6d00 , thread 3510 , mypolls 0 +thr d54c6e80 , status 1 +connecting thr d54c6e80 , thread 3511 , mypolls 0 +myconn 0 connecting thr d54c6e80 , thread 3511 , mypolls 0 +thr d5325000 , status 1 +connecting thr d5325000 , thread 3512 , mypolls 0 +myconn 0 connecting thr d5325000 , thread 3512 , mypolls 0 +thr d5325180 , status 1 +connecting thr d5325180 , thread 3513 , mypolls 0 +myconn 0 connecting thr d5325180 , thread 3513 , mypolls 0 +thr d5325300 , status 1 +connecting thr d5325300 , thread 3514 , mypolls 0 +myconn 0 connecting thr d5325300 , thread 3514 , mypolls 0 +thr d5325480 , status 1 +connecting thr d5325480 , thread 3515 , mypolls 0 +myconn 0 connecting thr d5325480 , thread 3515 , mypolls 0 +thr d5325600 , status 1 +connecting thr d5325600 , thread 3516 , mypolls 0 +myconn 0 connecting thr d5325600 , thread 3516 , mypolls 0 +thr d5325780 , status 1 +connecting thr d5325780 , thread 3517 , mypolls 0 +myconn 0 connecting thr d5325780 , thread 3517 , mypolls 0 +thr d5325900 , status 1 +connecting thr d5325900 , thread 3518 , mypolls 0 +myconn 0 connecting thr d5325900 , thread 3518 , mypolls 0 +thr d5325a80 , status 1 +connecting thr d5325a80 , thread 3519 , mypolls 0 +myconn 0 connecting thr d5325a80 , thread 3519 , mypolls 0 +thr d5325c00 , status 1 +connecting thr d5325c00 , thread 3520 , mypolls 0 +myconn 0 connecting thr d5325c00 , thread 3520 , mypolls 0 +thr d5325d80 , status 1 +connecting thr d5325d80 , thread 3521 , mypolls 0 +myconn 0 connecting thr d5325d80 , thread 3521 , mypolls 0 +thr d5325f00 , status 1 +connecting thr d5325f00 , thread 3522 , mypolls 0 +myconn 0 connecting thr d5325f00 , thread 3522 , mypolls 0 +thr d5326080 , status 1 +connecting thr d5326080 , thread 3523 , mypolls 0 +myconn 0 connecting thr d5326080 , thread 3523 , mypolls 0 +thr d5326200 , status 1 +connecting thr d5326200 , thread 3524 , mypolls 0 +myconn 0 connecting thr d5326200 , thread 3524 , mypolls 0 +thr d5326380 , status 1 +connecting thr d5326380 , thread 3525 , mypolls 0 +myconn 0 connecting thr d5326380 , thread 3525 , mypolls 0 +thr d5326500 , status 1 +connecting thr d5326500 , thread 3526 , mypolls 0 +myconn 0 connecting thr d5326500 , thread 3526 , mypolls 0 +thr d5326680 , status 1 +connecting thr d5326680 , thread 3527 , mypolls 0 +myconn 0 connecting thr d5326680 , thread 3527 , mypolls 0 +thr d5326800 , status 1 +connecting thr d5326800 , thread 3528 , mypolls 0 +myconn 0 connecting thr d5326800 , thread 3528 , mypolls 0 +thr d5326980 , status 1 +connecting thr d5326980 , thread 3529 , mypolls 0 +myconn 0 connecting thr d5326980 , thread 3529 , mypolls 0 +thr d5326b00 , status 1 +connecting thr d5326b00 , thread 3530 , mypolls 0 +myconn 0 connecting thr d5326b00 , thread 3530 , mypolls 0 +thr d5326c80 , status 1 +connecting thr d5326c80 , thread 3531 , mypolls 0 +myconn 0 connecting thr d5326c80 , thread 3531 , mypolls 0 +thr d5326e00 , status 1 +connecting thr d5326e00 , thread 3532 , mypolls 0 +myconn 0 connecting thr d5326e00 , thread 3532 , mypolls 0 +thr d5326f80 , status 1 +connecting thr d5326f80 , thread 3533 , mypolls 0 +myconn 0 connecting thr d5326f80 , thread 3533 , mypolls 0 +thr d5327100 , status 1 +connecting thr d5327100 , thread 3534 , mypolls 0 +myconn 0 connecting thr d5327100 , thread 3534 , mypolls 0 +thr d5327280 , status 1 +connecting thr d5327280 , thread 3535 , mypolls 0 +myconn 0 connecting thr d5327280 , thread 3535 , mypolls 0 +thr d5327400 , status 1 +connecting thr d5327400 , thread 3536 , mypolls 0 +myconn 0 connecting thr d5327400 , thread 3536 , mypolls 0 +thr d5327580 , status 1 +connecting thr d5327580 , thread 3537 , mypolls 0 +myconn 0 connecting thr d5327580 , thread 3537 , mypolls 0 +thr d5327700 , status 1 +connecting thr d5327700 , thread 3538 , mypolls 0 +myconn 0 connecting thr d5327700 , thread 3538 , mypolls 0 +thr d5327880 , status 1 +connecting thr d5327880 , thread 3539 , mypolls 0 +myconn 0 connecting thr d5327880 , thread 3539 , mypolls 0 +thr d5327a00 , status 1 +connecting thr d5327a00 , thread 3540 , mypolls 0 +myconn 0 connecting thr d5327a00 , thread 3540 , mypolls 0 +thr d5327b80 , status 1 +connecting thr d5327b80 , thread 3541 , mypolls 0 +myconn 0 connecting thr d5327b80 , thread 3541 , mypolls 0 +thr d5327d00 , status 1 +connecting thr d5327d00 , thread 3542 , mypolls 0 +myconn 0 connecting thr d5327d00 , thread 3542 , mypolls 0 +thr d5327e80 , status 1 +connecting thr d5327e80 , thread 3543 , mypolls 0 +myconn 0 connecting thr d5327e80 , thread 3543 , mypolls 0 +thr d5187000 , status 1 +connecting thr d5187000 , thread 3544 , mypolls 0 +myconn 0 connecting thr d5187000 , thread 3544 , mypolls 0 +thr d5187180 , status 1 +connecting thr d5187180 , thread 3545 , mypolls 0 +myconn 0 connecting thr d5187180 , thread 3545 , mypolls 0 +thr d5187300 , status 1 +connecting thr d5187300 , thread 3546 , mypolls 0 +myconn 0 connecting thr d5187300 , thread 3546 , mypolls 0 +thr d5187480 , status 1 +connecting thr d5187480 , thread 3547 , mypolls 0 +myconn 0 connecting thr d5187480 , thread 3547 , mypolls 0 +thr d5187600 , status 1 +connecting thr d5187600 , thread 3548 , mypolls 0 +myconn 0 connecting thr d5187600 , thread 3548 , mypolls 0 +thr d5187780 , status 1 +connecting thr d5187780 , thread 3549 , mypolls 0 +myconn 0 connecting thr d5187780 , thread 3549 , mypolls 0 +thr d5187900 , status 1 +connecting thr d5187900 , thread 3550 , mypolls 0 +myconn 0 connecting thr d5187900 , thread 3550 , mypolls 0 +thr d5187a80 , status 1 +connecting thr d5187a80 , thread 3551 , mypolls 0 +myconn 0 connecting thr d5187a80 , thread 3551 , mypolls 0 +thr d5187c00 , status 1 +connecting thr d5187c00 , thread 3552 , mypolls 0 +myconn 0 connecting thr d5187c00 , thread 3552 , mypolls 0 +thr d5187d80 , status 1 +connecting thr d5187d80 , thread 3553 , mypolls 0 +myconn 0 connecting thr d5187d80 , thread 3553 , mypolls 0 +thr d5187f00 , status 1 +connecting thr d5187f00 , thread 3554 , mypolls 0 +myconn 0 connecting thr d5187f00 , thread 3554 , mypolls 0 +thr d5188080 , status 1 +connecting thr d5188080 , thread 3555 , mypolls 0 +myconn 0 connecting thr d5188080 , thread 3555 , mypolls 0 +thr d5188200 , status 1 +connecting thr d5188200 , thread 3556 , mypolls 0 +myconn 0 connecting thr d5188200 , thread 3556 , mypolls 0 +thr d5188380 , status 1 +connecting thr d5188380 , thread 3557 , mypolls 0 +myconn 0 connecting thr d5188380 , thread 3557 , mypolls 0 +thr d5188500 , status 1 +connecting thr d5188500 , thread 3558 , mypolls 0 +myconn 0 connecting thr d5188500 , thread 3558 , mypolls 0 +thr d5188680 , status 1 +connecting thr d5188680 , thread 3559 , mypolls 0 +myconn 0 connecting thr d5188680 , thread 3559 , mypolls 0 +thr d5188800 , status 1 +connecting thr d5188800 , thread 3560 , mypolls 0 +myconn 0 connecting thr d5188800 , thread 3560 , mypolls 0 +thr d5188980 , status 1 +connecting thr d5188980 , thread 3561 , mypolls 0 +myconn 0 connecting thr d5188980 , thread 3561 , mypolls 0 +thr d5188b00 , status 1 +connecting thr d5188b00 , thread 3562 , mypolls 0 +myconn 0 connecting thr d5188b00 , thread 3562 , mypolls 0 +thr d5188c80 , status 1 +connecting thr d5188c80 , thread 3563 , mypolls 0 +myconn 0 connecting thr d5188c80 , thread 3563 , mypolls 0 +thr d5188e00 , status 1 +connecting thr d5188e00 , thread 3564 , mypolls 0 +myconn 0 connecting thr d5188e00 , thread 3564 , mypolls 0 +thr d5188f80 , status 1 +connecting thr d5188f80 , thread 3565 , mypolls 0 +myconn 0 connecting thr d5188f80 , thread 3565 , mypolls 0 +thr d5189100 , status 1 +connecting thr d5189100 , thread 3566 , mypolls 0 +myconn 0 connecting thr d5189100 , thread 3566 , mypolls 0 +thr d5189280 , status 1 +connecting thr d5189280 , thread 3567 , mypolls 0 +myconn 0 connecting thr d5189280 , thread 3567 , mypolls 0 +thr d5189400 , status 1 +connecting thr d5189400 , thread 3568 , mypolls 0 +myconn 0 connecting thr d5189400 , thread 3568 , mypolls 0 +thr d5189580 , status 1 +connecting thr d5189580 , thread 3569 , mypolls 0 +myconn 0 connecting thr d5189580 , thread 3569 , mypolls 0 +thr d5189700 , status 1 +connecting thr d5189700 , thread 3570 , mypolls 0 +myconn 0 connecting thr d5189700 , thread 3570 , mypolls 0 +thr d5189880 , status 1 +connecting thr d5189880 , thread 3571 , mypolls 0 +myconn 0 connecting thr d5189880 , thread 3571 , mypolls 0 +thr d5189a00 , status 1 +connecting thr d5189a00 , thread 3572 , mypolls 0 +myconn 0 connecting thr d5189a00 , thread 3572 , mypolls 0 +thr d5189b80 , status 1 +connecting thr d5189b80 , thread 3573 , mypolls 0 +myconn 0 connecting thr d5189b80 , thread 3573 , mypolls 0 +thr d5189d00 , status 1 +connecting thr d5189d00 , thread 3574 , mypolls 0 +myconn 0 connecting thr d5189d00 , thread 3574 , mypolls 0 +thr d5189e80 , status 1 +connecting thr d5189e80 , thread 3575 , mypolls 0 +myconn 0 connecting thr d5189e80 , thread 3575 , mypolls 0 +thr d4feb000 , status 1 +connecting thr d4feb000 , thread 3576 , mypolls 0 +myconn 0 connecting thr d4feb000 , thread 3576 , mypolls 0 +thr d4feb180 , status 1 +connecting thr d4feb180 , thread 3577 , mypolls 0 +myconn 0 connecting thr d4feb180 , thread 3577 , mypolls 0 +thr d4feb300 , status 1 +connecting thr d4feb300 , thread 3578 , mypolls 0 +myconn 0 connecting thr d4feb300 , thread 3578 , mypolls 0 +thr d4feb480 , status 1 +connecting thr d4feb480 , thread 3579 , mypolls 0 +myconn 0 connecting thr d4feb480 , thread 3579 , mypolls 0 +thr d4feb600 , status 1 +connecting thr d4feb600 , thread 3580 , mypolls 0 +myconn 0 connecting thr d4feb600 , thread 3580 , mypolls 0 +thr d4feb780 , status 1 +connecting thr d4feb780 , thread 3581 , mypolls 0 +myconn 0 connecting thr d4feb780 , thread 3581 , mypolls 0 +thr d4feb900 , status 1 +connecting thr d4feb900 , thread 3582 , mypolls 0 +myconn 0 connecting thr d4feb900 , thread 3582 , mypolls 0 +thr d4feba80 , status 1 +connecting thr d4feba80 , thread 3583 , mypolls 0 +myconn 0 connecting thr d4feba80 , thread 3583 , mypolls 0 +thr d4febc00 , status 1 +connecting thr d4febc00 , thread 3584 , mypolls 0 +myconn 0 connecting thr d4febc00 , thread 3584 , mypolls 0 +thr d4febd80 , status 1 +connecting thr d4febd80 , thread 3585 , mypolls 0 +myconn 0 connecting thr d4febd80 , thread 3585 , mypolls 0 +thr d4febf00 , status 1 +connecting thr d4febf00 , thread 3586 , mypolls 0 +myconn 0 connecting thr d4febf00 , thread 3586 , mypolls 0 +thr d4fec080 , status 1 +connecting thr d4fec080 , thread 3587 , mypolls 0 +myconn 0 connecting thr d4fec080 , thread 3587 , mypolls 0 +thr d4fec200 , status 1 +connecting thr d4fec200 , thread 3588 , mypolls 0 +myconn 0 connecting thr d4fec200 , thread 3588 , mypolls 0 +thr d4fec380 , status 1 +connecting thr d4fec380 , thread 3589 , mypolls 0 +myconn 0 connecting thr d4fec380 , thread 3589 , mypolls 0 +thr d4fec500 , status 1 +connecting thr d4fec500 , thread 3590 , mypolls 0 +myconn 0 connecting thr d4fec500 , thread 3590 , mypolls 0 +thr d4fec680 , status 1 +connecting thr d4fec680 , thread 3591 , mypolls 0 +myconn 0 connecting thr d4fec680 , thread 3591 , mypolls 0 +thr d4fec800 , status 1 +connecting thr d4fec800 , thread 3592 , mypolls 0 +myconn 0 connecting thr d4fec800 , thread 3592 , mypolls 0 +thr d4fec980 , status 1 +connecting thr d4fec980 , thread 3593 , mypolls 0 +myconn 0 connecting thr d4fec980 , thread 3593 , mypolls 0 +thr d4fecb00 , status 1 +connecting thr d4fecb00 , thread 3594 , mypolls 0 +myconn 0 connecting thr d4fecb00 , thread 3594 , mypolls 0 +thr d4fecc80 , status 1 +connecting thr d4fecc80 , thread 3595 , mypolls 0 +myconn 0 connecting thr d4fecc80 , thread 3595 , mypolls 0 +thr d4fece00 , status 1 +connecting thr d4fece00 , thread 3596 , mypolls 0 +myconn 0 connecting thr d4fece00 , thread 3596 , mypolls 0 +thr d4fecf80 , status 1 +connecting thr d4fecf80 , thread 3597 , mypolls 0 +myconn 0 connecting thr d4fecf80 , thread 3597 , mypolls 0 +thr d4fed100 , status 1 +connecting thr d4fed100 , thread 3598 , mypolls 0 +myconn 0 connecting thr d4fed100 , thread 3598 , mypolls 0 +thr d4fed280 , status 1 +connecting thr d4fed280 , thread 3599 , mypolls 0 +myconn 0 connecting thr d4fed280 , thread 3599 , mypolls 0 +thr d4fed400 , status 1 +connecting thr d4fed400 , thread 3600 , mypolls 0 +myconn 0 connecting thr d4fed400 , thread 3600 , mypolls 0 +thr d4fed580 , status 1 +connecting thr d4fed580 , thread 3601 , mypolls 0 +myconn 0 connecting thr d4fed580 , thread 3601 , mypolls 0 +thr d4fed700 , status 1 +connecting thr d4fed700 , thread 3602 , mypolls 0 +myconn 0 connecting thr d4fed700 , thread 3602 , mypolls 0 +thr d4fed880 , status 1 +connecting thr d4fed880 , thread 3603 , mypolls 0 +myconn 0 connecting thr d4fed880 , thread 3603 , mypolls 0 +thr d4feda00 , status 1 +connecting thr d4feda00 , thread 3604 , mypolls 0 +myconn 0 connecting thr d4feda00 , thread 3604 , mypolls 0 +thr d4fedb80 , status 1 +connecting thr d4fedb80 , thread 3605 , mypolls 0 +myconn 0 connecting thr d4fedb80 , thread 3605 , mypolls 0 +thr d4fedd00 , status 1 +connecting thr d4fedd00 , thread 3606 , mypolls 0 +myconn 0 connecting thr d4fedd00 , thread 3606 , mypolls 0 +thr d4fede80 , status 1 +connecting thr d4fede80 , thread 3607 , mypolls 0 +myconn 0 connecting thr d4fede80 , thread 3607 , mypolls 0 +thr d4a5e000 , status 1 +connecting thr d4a5e000 , thread 3608 , mypolls 0 +myconn 0 connecting thr d4a5e000 , thread 3608 , mypolls 0 +thr d4a5e180 , status 1 +connecting thr d4a5e180 , thread 3609 , mypolls 0 +myconn 0 connecting thr d4a5e180 , thread 3609 , mypolls 0 +thr d4a5e300 , status 1 +connecting thr d4a5e300 , thread 3610 , mypolls 0 +myconn 0 connecting thr d4a5e300 , thread 3610 , mypolls 0 +thr d4a5e480 , status 1 +connecting thr d4a5e480 , thread 3611 , mypolls 0 +myconn 0 connecting thr d4a5e480 , thread 3611 , mypolls 0 +thr d4a5e600 , status 1 +connecting thr d4a5e600 , thread 3612 , mypolls 0 +myconn 0 connecting thr d4a5e600 , thread 3612 , mypolls 0 +thr d4a5e780 , status 1 +connecting thr d4a5e780 , thread 3613 , mypolls 0 +myconn 0 connecting thr d4a5e780 , thread 3613 , mypolls 0 +thr d4a5e900 , status 1 +connecting thr d4a5e900 , thread 3614 , mypolls 0 +myconn 0 connecting thr d4a5e900 , thread 3614 , mypolls 0 +thr d4a5ea80 , status 1 +connecting thr d4a5ea80 , thread 3615 , mypolls 0 +myconn 0 connecting thr d4a5ea80 , thread 3615 , mypolls 0 +thr d4a5ec00 , status 1 +connecting thr d4a5ec00 , thread 3616 , mypolls 0 +myconn 0 connecting thr d4a5ec00 , thread 3616 , mypolls 0 +thr d4a5ed80 , status 1 +connecting thr d4a5ed80 , thread 3617 , mypolls 0 +myconn 0 connecting thr d4a5ed80 , thread 3617 , mypolls 0 +thr d4a5ef00 , status 1 +connecting thr d4a5ef00 , thread 3618 , mypolls 0 +myconn 0 connecting thr d4a5ef00 , thread 3618 , mypolls 0 +thr d4a5f080 , status 1 +connecting thr d4a5f080 , thread 3619 , mypolls 0 +myconn 0 connecting thr d4a5f080 , thread 3619 , mypolls 0 +thr d4a5f200 , status 1 +connecting thr d4a5f200 , thread 3620 , mypolls 0 +myconn 0 connecting thr d4a5f200 , thread 3620 , mypolls 0 +thr d4a5f380 , status 1 +connecting thr d4a5f380 , thread 3621 , mypolls 0 +myconn 0 connecting thr d4a5f380 , thread 3621 , mypolls 0 +thr d4a5f500 , status 1 +connecting thr d4a5f500 , thread 3622 , mypolls 0 +myconn 0 connecting thr d4a5f500 , thread 3622 , mypolls 0 +thr d4a5f680 , status 1 +connecting thr d4a5f680 , thread 3623 , mypolls 0 +myconn 0 connecting thr d4a5f680 , thread 3623 , mypolls 0 +thr d4a5f800 , status 1 +connecting thr d4a5f800 , thread 3624 , mypolls 0 +myconn 0 connecting thr d4a5f800 , thread 3624 , mypolls 0 +thr d4a5f980 , status 1 +connecting thr d4a5f980 , thread 3625 , mypolls 0 +myconn 0 connecting thr d4a5f980 , thread 3625 , mypolls 0 +thr d4a5fb00 , status 1 +connecting thr d4a5fb00 , thread 3626 , mypolls 0 +myconn 0 connecting thr d4a5fb00 , thread 3626 , mypolls 0 +thr d4a5fc80 , status 1 +connecting thr d4a5fc80 , thread 3627 , mypolls 0 +myconn 0 connecting thr d4a5fc80 , thread 3627 , mypolls 0 +thr d4a5fe00 , status 1 +connecting thr d4a5fe00 , thread 3628 , mypolls 0 +myconn 0 connecting thr d4a5fe00 , thread 3628 , mypolls 0 +thr d4a5ff80 , status 1 +connecting thr d4a5ff80 , thread 3629 , mypolls 0 +myconn 0 connecting thr d4a5ff80 , thread 3629 , mypolls 0 +thr d4a60100 , status 1 +connecting thr d4a60100 , thread 3630 , mypolls 0 +myconn 0 connecting thr d4a60100 , thread 3630 , mypolls 0 +thr d4a60280 , status 1 +connecting thr d4a60280 , thread 3631 , mypolls 0 +myconn 0 connecting thr d4a60280 , thread 3631 , mypolls 0 +thr d4a60400 , status 1 +connecting thr d4a60400 , thread 3632 , mypolls 0 +myconn 0 connecting thr d4a60400 , thread 3632 , mypolls 0 +thr d4a60580 , status 1 +connecting thr d4a60580 , thread 3633 , mypolls 0 +myconn 0 connecting thr d4a60580 , thread 3633 , mypolls 0 +thr d4a60700 , status 1 +connecting thr d4a60700 , thread 3634 , mypolls 0 +myconn 0 connecting thr d4a60700 , thread 3634 , mypolls 0 +thr d4a60880 , status 1 +connecting thr d4a60880 , thread 3635 , mypolls 0 +myconn 0 connecting thr d4a60880 , thread 3635 , mypolls 0 +thr d4a60a00 , status 1 +connecting thr d4a60a00 , thread 3636 , mypolls 0 +myconn 0 connecting thr d4a60a00 , thread 3636 , mypolls 0 +thr d4a60b80 , status 1 +connecting thr d4a60b80 , thread 3637 , mypolls 0 +myconn 0 connecting thr d4a60b80 , thread 3637 , mypolls 0 +thr d4a60d00 , status 1 +connecting thr d4a60d00 , thread 3638 , mypolls 0 +myconn 0 connecting thr d4a60d00 , thread 3638 , mypolls 0 +thr d4a60e80 , status 1 +connecting thr d4a60e80 , thread 3639 , mypolls 0 +myconn 0 connecting thr d4a60e80 , thread 3639 , mypolls 0 +thr d4bfd000 , status 1 +connecting thr d4bfd000 , thread 3640 , mypolls 0 +myconn 0 connecting thr d4bfd000 , thread 3640 , mypolls 0 +thr d4bfd180 , status 1 +connecting thr d4bfd180 , thread 3641 , mypolls 0 +myconn 0 connecting thr d4bfd180 , thread 3641 , mypolls 0 +thr d4bfd300 , status 1 +connecting thr d4bfd300 , thread 3642 , mypolls 0 +myconn 0 connecting thr d4bfd300 , thread 3642 , mypolls 0 +thr d4bfd480 , status 1 +connecting thr d4bfd480 , thread 3643 , mypolls 0 +myconn 0 connecting thr d4bfd480 , thread 3643 , mypolls 0 +thr d4bfd600 , status 1 +connecting thr d4bfd600 , thread 3644 , mypolls 0 +myconn 0 connecting thr d4bfd600 , thread 3644 , mypolls 0 +thr d4bfd780 , status 1 +connecting thr d4bfd780 , thread 3645 , mypolls 0 +myconn 0 connecting thr d4bfd780 , thread 3645 , mypolls 0 +thr d4bfd900 , status 1 +connecting thr d4bfd900 , thread 3646 , mypolls 0 +myconn 0 connecting thr d4bfd900 , thread 3646 , mypolls 0 +thr d4bfda80 , status 1 +connecting thr d4bfda80 , thread 3647 , mypolls 0 +myconn 0 connecting thr d4bfda80 , thread 3647 , mypolls 0 +thr d4bfdc00 , status 1 +connecting thr d4bfdc00 , thread 3648 , mypolls 0 +myconn 0 connecting thr d4bfdc00 , thread 3648 , mypolls 0 +thr d4bfdd80 , status 1 +connecting thr d4bfdd80 , thread 3649 , mypolls 0 +myconn 0 connecting thr d4bfdd80 , thread 3649 , mypolls 0 +thr d4bfdf00 , status 1 +connecting thr d4bfdf00 , thread 3650 , mypolls 0 +myconn 0 connecting thr d4bfdf00 , thread 3650 , mypolls 0 +thr d4bfe080 , status 1 +connecting thr d4bfe080 , thread 3651 , mypolls 0 +myconn 0 connecting thr d4bfe080 , thread 3651 , mypolls 0 +thr d4bfe200 , status 1 +connecting thr d4bfe200 , thread 3652 , mypolls 0 +myconn 0 connecting thr d4bfe200 , thread 3652 , mypolls 0 +thr d4bfe380 , status 1 +connecting thr d4bfe380 , thread 3653 , mypolls 0 +myconn 0 connecting thr d4bfe380 , thread 3653 , mypolls 0 +thr d4bfe500 , status 1 +connecting thr d4bfe500 , thread 3654 , mypolls 0 +myconn 0 connecting thr d4bfe500 , thread 3654 , mypolls 0 +thr d4bfe680 , status 1 +connecting thr d4bfe680 , thread 3655 , mypolls 0 +myconn 0 connecting thr d4bfe680 , thread 3655 , mypolls 0 +thr d4bfe800 , status 1 +connecting thr d4bfe800 , thread 3656 , mypolls 0 +myconn 0 connecting thr d4bfe800 , thread 3656 , mypolls 0 +thr d4bfe980 , status 1 +connecting thr d4bfe980 , thread 3657 , mypolls 0 +myconn 0 connecting thr d4bfe980 , thread 3657 , mypolls 0 +thr d4bfeb00 , status 1 +connecting thr d4bfeb00 , thread 3658 , mypolls 0 +myconn 0 connecting thr d4bfeb00 , thread 3658 , mypolls 0 +thr d4bfec80 , status 1 +connecting thr d4bfec80 , thread 3659 , mypolls 0 +myconn 0 connecting thr d4bfec80 , thread 3659 , mypolls 0 +thr d4bfee00 , status 1 +connecting thr d4bfee00 , thread 3660 , mypolls 0 +myconn 0 connecting thr d4bfee00 , thread 3660 , mypolls 0 +thr d4bfef80 , status 1 +connecting thr d4bfef80 , thread 3661 , mypolls 0 +myconn 0 connecting thr d4bfef80 , thread 3661 , mypolls 0 +thr d4bff100 , status 1 +connecting thr d4bff100 , thread 3662 , mypolls 0 +myconn 0 connecting thr d4bff100 , thread 3662 , mypolls 0 +thr d4bff280 , status 1 +connecting thr d4bff280 , thread 3663 , mypolls 0 +myconn 0 connecting thr d4bff280 , thread 3663 , mypolls 0 +thr d4bff400 , status 1 +connecting thr d4bff400 , thread 3664 , mypolls 0 +myconn 0 connecting thr d4bff400 , thread 3664 , mypolls 0 +thr d4bff580 , status 1 +connecting thr d4bff580 , thread 3665 , mypolls 0 +myconn 0 connecting thr d4bff580 , thread 3665 , mypolls 0 +thr d4bff700 , status 1 +connecting thr d4bff700 , thread 3666 , mypolls 0 +myconn 0 connecting thr d4bff700 , thread 3666 , mypolls 0 +thr d4bff880 , status 1 +connecting thr d4bff880 , thread 3667 , mypolls 0 +myconn 0 connecting thr d4bff880 , thread 3667 , mypolls 0 +thr d4bffa00 , status 1 +connecting thr d4bffa00 , thread 3668 , mypolls 0 +myconn 0 connecting thr d4bffa00 , thread 3668 , mypolls 0 +thr d4bffb80 , status 1 +connecting thr d4bffb80 , thread 3669 , mypolls 0 +myconn 0 connecting thr d4bffb80 , thread 3669 , mypolls 0 +thr d4bffd00 , status 1 +connecting thr d4bffd00 , thread 3670 , mypolls 0 +myconn 0 connecting thr d4bffd00 , thread 3670 , mypolls 0 +thr d4bffe80 , status 1 +connecting thr d4bffe80 , thread 3671 , mypolls 0 +myconn 0 connecting thr d4bffe80 , thread 3671 , mypolls 0 +thr d49fd000 , status 1 +connecting thr d49fd000 , thread 3672 , mypolls 0 +myconn 0 connecting thr d49fd000 , thread 3672 , mypolls 0 +thr d49fd180 , status 1 +connecting thr d49fd180 , thread 3673 , mypolls 0 +myconn 0 connecting thr d49fd180 , thread 3673 , mypolls 0 +thr d49fd300 , status 1 +connecting thr d49fd300 , thread 3674 , mypolls 0 +myconn 0 connecting thr d49fd300 , thread 3674 , mypolls 0 +thr d49fd480 , status 1 +connecting thr d49fd480 , thread 3675 , mypolls 0 +myconn 0 connecting thr d49fd480 , thread 3675 , mypolls 0 +thr d49fd600 , status 1 +connecting thr d49fd600 , thread 3676 , mypolls 0 +myconn 0 connecting thr d49fd600 , thread 3676 , mypolls 0 +thr d49fd780 , status 1 +connecting thr d49fd780 , thread 3677 , mypolls 0 +myconn 0 connecting thr d49fd780 , thread 3677 , mypolls 0 +thr d49fd900 , status 1 +connecting thr d49fd900 , thread 3678 , mypolls 0 +myconn 0 connecting thr d49fd900 , thread 3678 , mypolls 0 +thr d49fda80 , status 1 +connecting thr d49fda80 , thread 3679 , mypolls 0 +myconn 0 connecting thr d49fda80 , thread 3679 , mypolls 0 +thr d49fdc00 , status 1 +connecting thr d49fdc00 , thread 3680 , mypolls 0 +myconn 0 connecting thr d49fdc00 , thread 3680 , mypolls 0 +thr d49fdd80 , status 1 +connecting thr d49fdd80 , thread 3681 , mypolls 0 +myconn 0 connecting thr d49fdd80 , thread 3681 , mypolls 0 +thr d49fdf00 , status 1 +connecting thr d49fdf00 , thread 3682 , mypolls 0 +myconn 0 connecting thr d49fdf00 , thread 3682 , mypolls 0 +thr d49fe080 , status 1 +connecting thr d49fe080 , thread 3683 , mypolls 0 +myconn 0 connecting thr d49fe080 , thread 3683 , mypolls 0 +thr d49fe200 , status 1 +connecting thr d49fe200 , thread 3684 , mypolls 0 +myconn 0 connecting thr d49fe200 , thread 3684 , mypolls 0 +thr d49fe380 , status 1 +connecting thr d49fe380 , thread 3685 , mypolls 0 +myconn 0 connecting thr d49fe380 , thread 3685 , mypolls 0 +thr d49fe500 , status 1 +connecting thr d49fe500 , thread 3686 , mypolls 0 +myconn 0 connecting thr d49fe500 , thread 3686 , mypolls 0 +thr d49fe680 , status 1 +connecting thr d49fe680 , thread 3687 , mypolls 0 +myconn 0 connecting thr d49fe680 , thread 3687 , mypolls 0 +thr d49fe800 , status 1 +connecting thr d49fe800 , thread 3688 , mypolls 0 +myconn 0 connecting thr d49fe800 , thread 3688 , mypolls 0 +thr d49fe980 , status 1 +connecting thr d49fe980 , thread 3689 , mypolls 0 +myconn 0 connecting thr d49fe980 , thread 3689 , mypolls 0 +thr d49feb00 , status 1 +connecting thr d49feb00 , thread 3690 , mypolls 0 +myconn 0 connecting thr d49feb00 , thread 3690 , mypolls 0 +thr d49fec80 , status 1 +connecting thr d49fec80 , thread 3691 , mypolls 0 +myconn 0 connecting thr d49fec80 , thread 3691 , mypolls 0 +thr d49fee00 , status 1 +connecting thr d49fee00 , thread 3692 , mypolls 0 +myconn 0 connecting thr d49fee00 , thread 3692 , mypolls 0 +thr d49fef80 , status 1 +connecting thr d49fef80 , thread 3693 , mypolls 0 +myconn 0 connecting thr d49fef80 , thread 3693 , mypolls 0 +thr d49ff100 , status 1 +connecting thr d49ff100 , thread 3694 , mypolls 0 +myconn 0 connecting thr d49ff100 , thread 3694 , mypolls 0 +thr d49ff280 , status 1 +connecting thr d49ff280 , thread 3695 , mypolls 0 +myconn 0 connecting thr d49ff280 , thread 3695 , mypolls 0 +thr d49ff400 , status 1 +connecting thr d49ff400 , thread 3696 , mypolls 0 +myconn 0 connecting thr d49ff400 , thread 3696 , mypolls 0 +thr d49ff580 , status 1 +connecting thr d49ff580 , thread 3697 , mypolls 0 +myconn 0 connecting thr d49ff580 , thread 3697 , mypolls 0 +thr d49ff700 , status 1 +connecting thr d49ff700 , thread 3698 , mypolls 0 +myconn 0 connecting thr d49ff700 , thread 3698 , mypolls 0 +thr d49ff880 , status 1 +connecting thr d49ff880 , thread 3699 , mypolls 0 +myconn 0 connecting thr d49ff880 , thread 3699 , mypolls 0 +thr d49ffa00 , status 1 +connecting thr d49ffa00 , thread 3700 , mypolls 0 +myconn 0 connecting thr d49ffa00 , thread 3700 , mypolls 0 +thr d49ffb80 , status 1 +connecting thr d49ffb80 , thread 3701 , mypolls 0 +myconn 0 connecting thr d49ffb80 , thread 3701 , mypolls 0 +thr d49ffd00 , status 1 +connecting thr d49ffd00 , thread 3702 , mypolls 0 +myconn 0 connecting thr d49ffd00 , thread 3702 , mypolls 0 +thr d49ffe80 , status 1 +connecting thr d49ffe80 , thread 3703 , mypolls 0 +myconn 0 connecting thr d49ffe80 , thread 3703 , mypolls 0 +thr d4584000 , status 1 +connecting thr d4584000 , thread 3704 , mypolls 0 +myconn 0 connecting thr d4584000 , thread 3704 , mypolls 0 +thr d4584180 , status 1 +connecting thr d4584180 , thread 3705 , mypolls 0 +myconn 0 connecting thr d4584180 , thread 3705 , mypolls 0 +thr d4584300 , status 1 +connecting thr d4584300 , thread 3706 , mypolls 0 +myconn 0 connecting thr d4584300 , thread 3706 , mypolls 0 +thr d4584480 , status 1 +connecting thr d4584480 , thread 3707 , mypolls 0 +myconn 0 connecting thr d4584480 , thread 3707 , mypolls 0 +thr d4584600 , status 1 +connecting thr d4584600 , thread 3708 , mypolls 0 +myconn 0 connecting thr d4584600 , thread 3708 , mypolls 0 +thr d4584780 , status 1 +connecting thr d4584780 , thread 3709 , mypolls 0 +myconn 0 connecting thr d4584780 , thread 3709 , mypolls 0 +thr d4584900 , status 1 +connecting thr d4584900 , thread 3710 , mypolls 0 +myconn 0 connecting thr d4584900 , thread 3710 , mypolls 0 +thr d4584a80 , status 1 +connecting thr d4584a80 , thread 3711 , mypolls 0 +myconn 0 connecting thr d4584a80 , thread 3711 , mypolls 0 +thr d4584c00 , status 1 +connecting thr d4584c00 , thread 3712 , mypolls 0 +myconn 0 connecting thr d4584c00 , thread 3712 , mypolls 0 +thr d4584d80 , status 1 +connecting thr d4584d80 , thread 3713 , mypolls 0 +myconn 0 connecting thr d4584d80 , thread 3713 , mypolls 0 +thr d4584f00 , status 1 +connecting thr d4584f00 , thread 3714 , mypolls 0 +myconn 0 connecting thr d4584f00 , thread 3714 , mypolls 0 +thr d4585080 , status 1 +connecting thr d4585080 , thread 3715 , mypolls 0 +myconn 0 connecting thr d4585080 , thread 3715 , mypolls 0 +thr d4585200 , status 1 +connecting thr d4585200 , thread 3716 , mypolls 0 +myconn 0 connecting thr d4585200 , thread 3716 , mypolls 0 +thr d4585380 , status 1 +connecting thr d4585380 , thread 3717 , mypolls 0 +myconn 0 connecting thr d4585380 , thread 3717 , mypolls 0 +thr d4585500 , status 1 +connecting thr d4585500 , thread 3718 , mypolls 0 +myconn 0 connecting thr d4585500 , thread 3718 , mypolls 0 +thr d4585680 , status 1 +connecting thr d4585680 , thread 3719 , mypolls 0 +myconn 0 connecting thr d4585680 , thread 3719 , mypolls 0 +thr d4585800 , status 1 +connecting thr d4585800 , thread 3720 , mypolls 0 +myconn 0 connecting thr d4585800 , thread 3720 , mypolls 0 +thr d4585980 , status 1 +connecting thr d4585980 , thread 3721 , mypolls 0 +myconn 0 connecting thr d4585980 , thread 3721 , mypolls 0 +thr d4585b00 , status 1 +connecting thr d4585b00 , thread 3722 , mypolls 0 +myconn 0 connecting thr d4585b00 , thread 3722 , mypolls 0 +thr d4585c80 , status 1 +connecting thr d4585c80 , thread 3723 , mypolls 0 +myconn 0 connecting thr d4585c80 , thread 3723 , mypolls 0 +thr d4585e00 , status 1 +connecting thr d4585e00 , thread 3724 , mypolls 0 +myconn 0 connecting thr d4585e00 , thread 3724 , mypolls 0 +thr d4585f80 , status 1 +connecting thr d4585f80 , thread 3725 , mypolls 0 +myconn 0 connecting thr d4585f80 , thread 3725 , mypolls 0 +thr d4586100 , status 1 +connecting thr d4586100 , thread 3726 , mypolls 0 +myconn 0 connecting thr d4586100 , thread 3726 , mypolls 0 +thr d4586280 , status 1 +connecting thr d4586280 , thread 3727 , mypolls 0 +myconn 0 connecting thr d4586280 , thread 3727 , mypolls 0 +thr d4586400 , status 1 +connecting thr d4586400 , thread 3728 , mypolls 0 +myconn 0 connecting thr d4586400 , thread 3728 , mypolls 0 +thr d4586580 , status 1 +connecting thr d4586580 , thread 3729 , mypolls 0 +myconn 0 connecting thr d4586580 , thread 3729 , mypolls 0 +thr d4586700 , status 1 +connecting thr d4586700 , thread 3730 , mypolls 0 +myconn 0 connecting thr d4586700 , thread 3730 , mypolls 0 +thr d4586880 , status 1 +connecting thr d4586880 , thread 3731 , mypolls 0 +myconn 0 connecting thr d4586880 , thread 3731 , mypolls 0 +thr d4586a00 , status 1 +connecting thr d4586a00 , thread 3732 , mypolls 0 +myconn 0 connecting thr d4586a00 , thread 3732 , mypolls 0 +thr d4586b80 , status 1 +connecting thr d4586b80 , thread 3733 , mypolls 0 +myconn 0 connecting thr d4586b80 , thread 3733 , mypolls 0 +thr d4586d00 , status 1 +connecting thr d4586d00 , thread 3734 , mypolls 0 +myconn 0 connecting thr d4586d00 , thread 3734 , mypolls 0 +thr d4586e80 , status 1 +connecting thr d4586e80 , thread 3735 , mypolls 0 +myconn 0 connecting thr d4586e80 , thread 3735 , mypolls 0 +thr d43e6000 , status 1 +connecting thr d43e6000 , thread 3736 , mypolls 0 +myconn 0 connecting thr d43e6000 , thread 3736 , mypolls 0 +thr d43e6180 , status 1 +connecting thr d43e6180 , thread 3737 , mypolls 0 +myconn 0 connecting thr d43e6180 , thread 3737 , mypolls 0 +thr d43e6300 , status 1 +connecting thr d43e6300 , thread 3738 , mypolls 0 +myconn 0 connecting thr d43e6300 , thread 3738 , mypolls 0 +thr d43e6480 , status 1 +connecting thr d43e6480 , thread 3739 , mypolls 0 +myconn 0 connecting thr d43e6480 , thread 3739 , mypolls 0 +thr d43e6600 , status 1 +connecting thr d43e6600 , thread 3740 , mypolls 0 +myconn 0 connecting thr d43e6600 , thread 3740 , mypolls 0 +thr d43e6780 , status 1 +connecting thr d43e6780 , thread 3741 , mypolls 0 +myconn 0 connecting thr d43e6780 , thread 3741 , mypolls 0 +thr d43e6900 , status 1 +connecting thr d43e6900 , thread 3742 , mypolls 0 +myconn 0 connecting thr d43e6900 , thread 3742 , mypolls 0 +thr d43e6a80 , status 1 +connecting thr d43e6a80 , thread 3743 , mypolls 0 +myconn 0 connecting thr d43e6a80 , thread 3743 , mypolls 0 +thr d43e6c00 , status 1 +connecting thr d43e6c00 , thread 3744 , mypolls 0 +myconn 0 connecting thr d43e6c00 , thread 3744 , mypolls 0 +thr d43e6d80 , status 1 +connecting thr d43e6d80 , thread 3745 , mypolls 0 +myconn 0 connecting thr d43e6d80 , thread 3745 , mypolls 0 +thr d43e6f00 , status 1 +connecting thr d43e6f00 , thread 3746 , mypolls 0 +myconn 0 connecting thr d43e6f00 , thread 3746 , mypolls 0 +thr d43e7080 , status 1 +connecting thr d43e7080 , thread 3747 , mypolls 0 +myconn 0 connecting thr d43e7080 , thread 3747 , mypolls 0 +thr d43e7200 , status 1 +connecting thr d43e7200 , thread 3748 , mypolls 0 +myconn 0 connecting thr d43e7200 , thread 3748 , mypolls 0 +thr d43e7380 , status 1 +connecting thr d43e7380 , thread 3749 , mypolls 0 +myconn 0 connecting thr d43e7380 , thread 3749 , mypolls 0 +thr d43e7500 , status 1 +connecting thr d43e7500 , thread 3750 , mypolls 0 +myconn 0 connecting thr d43e7500 , thread 3750 , mypolls 0 +thr d43e7680 , status 1 +connecting thr d43e7680 , thread 3751 , mypolls 0 +myconn 0 connecting thr d43e7680 , thread 3751 , mypolls 0 +thr d43e7800 , status 1 +connecting thr d43e7800 , thread 3752 , mypolls 0 +myconn 0 connecting thr d43e7800 , thread 3752 , mypolls 0 +thr d43e7980 , status 1 +connecting thr d43e7980 , thread 3753 , mypolls 0 +myconn 0 connecting thr d43e7980 , thread 3753 , mypolls 0 +thr d43e7b00 , status 1 +connecting thr d43e7b00 , thread 3754 , mypolls 0 +myconn 0 connecting thr d43e7b00 , thread 3754 , mypolls 0 +thr d43e7c80 , status 1 +connecting thr d43e7c80 , thread 3755 , mypolls 0 +myconn 0 connecting thr d43e7c80 , thread 3755 , mypolls 0 +thr d43e7e00 , status 1 +connecting thr d43e7e00 , thread 3756 , mypolls 0 +myconn 0 connecting thr d43e7e00 , thread 3756 , mypolls 0 +thr d43e7f80 , status 1 +connecting thr d43e7f80 , thread 3757 , mypolls 0 +myconn 0 connecting thr d43e7f80 , thread 3757 , mypolls 0 +thr d43e8100 , status 1 +connecting thr d43e8100 , thread 3758 , mypolls 0 +myconn 0 connecting thr d43e8100 , thread 3758 , mypolls 0 +thr d43e8280 , status 1 +connecting thr d43e8280 , thread 3759 , mypolls 0 +myconn 0 connecting thr d43e8280 , thread 3759 , mypolls 0 +thr d43e8400 , status 1 +connecting thr d43e8400 , thread 3760 , mypolls 0 +myconn 0 connecting thr d43e8400 , thread 3760 , mypolls 0 +thr d43e8580 , status 1 +connecting thr d43e8580 , thread 3761 , mypolls 0 +myconn 0 connecting thr d43e8580 , thread 3761 , mypolls 0 +thr d43e8700 , status 1 +connecting thr d43e8700 , thread 3762 , mypolls 0 +myconn 0 connecting thr d43e8700 , thread 3762 , mypolls 0 +thr d43e8880 , status 1 +connecting thr d43e8880 , thread 3763 , mypolls 0 +myconn 0 connecting thr d43e8880 , thread 3763 , mypolls 0 +thr d43e8a00 , status 1 +connecting thr d43e8a00 , thread 3764 , mypolls 0 +myconn 0 connecting thr d43e8a00 , thread 3764 , mypolls 0 +thr d43e8b80 , status 1 +connecting thr d43e8b80 , thread 3765 , mypolls 0 +myconn 0 connecting thr d43e8b80 , thread 3765 , mypolls 0 +thr d43e8d00 , status 1 +connecting thr d43e8d00 , thread 3766 , mypolls 0 +myconn 0 connecting thr d43e8d00 , thread 3766 , mypolls 0 +thr d43e8e80 , status 1 +connecting thr d43e8e80 , thread 3767 , mypolls 0 +myconn 0 connecting thr d43e8e80 , thread 3767 , mypolls 0 +thr d3e55000 , status 1 +connecting thr d3e55000 , thread 3768 , mypolls 0 +myconn 0 connecting thr d3e55000 , thread 3768 , mypolls 0 +thr d3e55180 , status 1 +connecting thr d3e55180 , thread 3769 , mypolls 0 +myconn 0 connecting thr d3e55180 , thread 3769 , mypolls 0 +thr d3e55300 , status 1 +connecting thr d3e55300 , thread 3770 , mypolls 0 +myconn 0 connecting thr d3e55300 , thread 3770 , mypolls 0 +thr d3e55480 , status 1 +connecting thr d3e55480 , thread 3771 , mypolls 0 +myconn 0 connecting thr d3e55480 , thread 3771 , mypolls 0 +thr d3e55600 , status 1 +connecting thr d3e55600 , thread 3772 , mypolls 0 +myconn 0 connecting thr d3e55600 , thread 3772 , mypolls 0 +thr d3e55780 , status 1 +connecting thr d3e55780 , thread 3773 , mypolls 0 +myconn 0 connecting thr d3e55780 , thread 3773 , mypolls 0 +thr d3e55900 , status 1 +connecting thr d3e55900 , thread 3774 , mypolls 0 +myconn 0 connecting thr d3e55900 , thread 3774 , mypolls 0 +thr d3e55a80 , status 1 +connecting thr d3e55a80 , thread 3775 , mypolls 0 +myconn 0 connecting thr d3e55a80 , thread 3775 , mypolls 0 +thr d3e55c00 , status 1 +connecting thr d3e55c00 , thread 3776 , mypolls 0 +myconn 0 connecting thr d3e55c00 , thread 3776 , mypolls 0 +thr d3e55d80 , status 1 +connecting thr d3e55d80 , thread 3777 , mypolls 0 +myconn 0 connecting thr d3e55d80 , thread 3777 , mypolls 0 +thr d3e55f00 , status 1 +connecting thr d3e55f00 , thread 3778 , mypolls 0 +myconn 0 connecting thr d3e55f00 , thread 3778 , mypolls 0 +thr d3e56080 , status 1 +connecting thr d3e56080 , thread 3779 , mypolls 0 +myconn 0 connecting thr d3e56080 , thread 3779 , mypolls 0 +thr d3e56200 , status 1 +connecting thr d3e56200 , thread 3780 , mypolls 0 +myconn 0 connecting thr d3e56200 , thread 3780 , mypolls 0 +thr d3e56380 , status 1 +connecting thr d3e56380 , thread 3781 , mypolls 0 +myconn 0 connecting thr d3e56380 , thread 3781 , mypolls 0 +thr d3e56500 , status 1 +connecting thr d3e56500 , thread 3782 , mypolls 0 +myconn 0 connecting thr d3e56500 , thread 3782 , mypolls 0 +thr d3e56680 , status 1 +connecting thr d3e56680 , thread 3783 , mypolls 0 +myconn 0 connecting thr d3e56680 , thread 3783 , mypolls 0 +thr d3e56800 , status 1 +connecting thr d3e56800 , thread 3784 , mypolls 0 +myconn 0 connecting thr d3e56800 , thread 3784 , mypolls 0 +thr d3e56980 , status 1 +connecting thr d3e56980 , thread 3785 , mypolls 0 +myconn 0 connecting thr d3e56980 , thread 3785 , mypolls 0 +thr d3e56b00 , status 1 +connecting thr d3e56b00 , thread 3786 , mypolls 0 +myconn 0 connecting thr d3e56b00 , thread 3786 , mypolls 0 +thr d3e56c80 , status 1 +connecting thr d3e56c80 , thread 3787 , mypolls 0 +myconn 0 connecting thr d3e56c80 , thread 3787 , mypolls 0 +thr d3e56e00 , status 1 +connecting thr d3e56e00 , thread 3788 , mypolls 0 +myconn 0 connecting thr d3e56e00 , thread 3788 , mypolls 0 +thr d3e56f80 , status 1 +connecting thr d3e56f80 , thread 3789 , mypolls 0 +myconn 0 connecting thr d3e56f80 , thread 3789 , mypolls 0 +thr d3e57100 , status 1 +connecting thr d3e57100 , thread 3790 , mypolls 0 +myconn 0 connecting thr d3e57100 , thread 3790 , mypolls 0 +thr d3e57280 , status 1 +connecting thr d3e57280 , thread 3791 , mypolls 0 +myconn 0 connecting thr d3e57280 , thread 3791 , mypolls 0 +thr d3e57400 , status 1 +connecting thr d3e57400 , thread 3792 , mypolls 0 +myconn 0 connecting thr d3e57400 , thread 3792 , mypolls 0 +thr d3e57580 , status 1 +connecting thr d3e57580 , thread 3793 , mypolls 0 +myconn 0 connecting thr d3e57580 , thread 3793 , mypolls 0 +thr d3e57700 , status 1 +connecting thr d3e57700 , thread 3794 , mypolls 0 +myconn 0 connecting thr d3e57700 , thread 3794 , mypolls 0 +thr d3e57880 , status 1 +connecting thr d3e57880 , thread 3795 , mypolls 0 +myconn 0 connecting thr d3e57880 , thread 3795 , mypolls 0 +thr d3e57a00 , status 1 +connecting thr d3e57a00 , thread 3796 , mypolls 0 +myconn 0 connecting thr d3e57a00 , thread 3796 , mypolls 0 +thr d3e57b80 , status 1 +connecting thr d3e57b80 , thread 3797 , mypolls 0 +myconn 0 connecting thr d3e57b80 , thread 3797 , mypolls 0 +thr d3e57d00 , status 1 +connecting thr d3e57d00 , thread 3798 , mypolls 0 +myconn 0 connecting thr d3e57d00 , thread 3798 , mypolls 0 +thr d3e57e80 , status 1 +connecting thr d3e57e80 , thread 3799 , mypolls 0 +myconn 0 connecting thr d3e57e80 , thread 3799 , mypolls 0 +thr d3cb8000 , status 1 +connecting thr d3cb8000 , thread 3800 , mypolls 0 +myconn 0 connecting thr d3cb8000 , thread 3800 , mypolls 0 +thr d3cb8180 , status 1 +connecting thr d3cb8180 , thread 3801 , mypolls 0 +myconn 0 connecting thr d3cb8180 , thread 3801 , mypolls 0 +thr d3cb8300 , status 1 +connecting thr d3cb8300 , thread 3802 , mypolls 0 +myconn 0 connecting thr d3cb8300 , thread 3802 , mypolls 0 +thr d3cb8480 , status 1 +connecting thr d3cb8480 , thread 3803 , mypolls 0 +myconn 0 connecting thr d3cb8480 , thread 3803 , mypolls 0 +thr d3cb8600 , status 1 +connecting thr d3cb8600 , thread 3804 , mypolls 0 +myconn 0 connecting thr d3cb8600 , thread 3804 , mypolls 0 +thr d3cb8780 , status 1 +connecting thr d3cb8780 , thread 3805 , mypolls 0 +myconn 0 connecting thr d3cb8780 , thread 3805 , mypolls 0 +thr d3cb8900 , status 1 +connecting thr d3cb8900 , thread 3806 , mypolls 0 +myconn 0 connecting thr d3cb8900 , thread 3806 , mypolls 0 +thr d3cb8a80 , status 1 +connecting thr d3cb8a80 , thread 3807 , mypolls 0 +myconn 0 connecting thr d3cb8a80 , thread 3807 , mypolls 0 +thr d3cb8c00 , status 1 +connecting thr d3cb8c00 , thread 3808 , mypolls 0 +myconn 0 connecting thr d3cb8c00 , thread 3808 , mypolls 0 +thr d3cb8d80 , status 1 +connecting thr d3cb8d80 , thread 3809 , mypolls 0 +myconn 0 connecting thr d3cb8d80 , thread 3809 , mypolls 0 +thr d3cb8f00 , status 1 +connecting thr d3cb8f00 , thread 3810 , mypolls 0 +myconn 0 connecting thr d3cb8f00 , thread 3810 , mypolls 0 +thr d3cb9080 , status 1 +connecting thr d3cb9080 , thread 3811 , mypolls 0 +myconn 0 connecting thr d3cb9080 , thread 3811 , mypolls 0 +thr d3cb9200 , status 1 +connecting thr d3cb9200 , thread 3812 , mypolls 0 +myconn 0 connecting thr d3cb9200 , thread 3812 , mypolls 0 +thr d3cb9380 , status 1 +connecting thr d3cb9380 , thread 3813 , mypolls 0 +myconn 0 connecting thr d3cb9380 , thread 3813 , mypolls 0 +thr d3cb9500 , status 1 +connecting thr d3cb9500 , thread 3814 , mypolls 0 +myconn 0 connecting thr d3cb9500 , thread 3814 , mypolls 0 +thr d3cb9680 , status 1 +connecting thr d3cb9680 , thread 3815 , mypolls 0 +myconn 0 connecting thr d3cb9680 , thread 3815 , mypolls 0 +thr d3cb9800 , status 1 +connecting thr d3cb9800 , thread 3816 , mypolls 0 +myconn 0 connecting thr d3cb9800 , thread 3816 , mypolls 0 +thr d3cb9980 , status 1 +connecting thr d3cb9980 , thread 3817 , mypolls 0 +myconn 0 connecting thr d3cb9980 , thread 3817 , mypolls 0 +thr d3cb9b00 , status 1 +connecting thr d3cb9b00 , thread 3818 , mypolls 0 +myconn 0 connecting thr d3cb9b00 , thread 3818 , mypolls 0 +thr d3cb9c80 , status 1 +connecting thr d3cb9c80 , thread 3819 , mypolls 0 +myconn 0 connecting thr d3cb9c80 , thread 3819 , mypolls 0 +thr d3cb9e00 , status 1 +connecting thr d3cb9e00 , thread 3820 , mypolls 0 +myconn 0 connecting thr d3cb9e00 , thread 3820 , mypolls 0 +thr d3cb9f80 , status 1 +connecting thr d3cb9f80 , thread 3821 , mypolls 0 +myconn 0 connecting thr d3cb9f80 , thread 3821 , mypolls 0 +thr d3cba100 , status 1 +connecting thr d3cba100 , thread 3822 , mypolls 0 +myconn 0 connecting thr d3cba100 , thread 3822 , mypolls 0 +thr d3cba280 , status 1 +connecting thr d3cba280 , thread 3823 , mypolls 0 +myconn 0 connecting thr d3cba280 , thread 3823 , mypolls 0 +thr d3cba400 , status 1 +connecting thr d3cba400 , thread 3824 , mypolls 0 +myconn 0 connecting thr d3cba400 , thread 3824 , mypolls 0 +thr d3cba580 , status 1 +connecting thr d3cba580 , thread 3825 , mypolls 0 +myconn 0 connecting thr d3cba580 , thread 3825 , mypolls 0 +thr d3cba700 , status 1 +connecting thr d3cba700 , thread 3826 , mypolls 0 +myconn 0 connecting thr d3cba700 , thread 3826 , mypolls 0 +thr d3cba880 , status 1 +connecting thr d3cba880 , thread 3827 , mypolls 0 +myconn 0 connecting thr d3cba880 , thread 3827 , mypolls 0 +thr d3cbaa00 , status 1 +connecting thr d3cbaa00 , thread 3828 , mypolls 0 +myconn 0 connecting thr d3cbaa00 , thread 3828 , mypolls 0 +thr d3cbab80 , status 1 +connecting thr d3cbab80 , thread 3829 , mypolls 0 +myconn 0 connecting thr d3cbab80 , thread 3829 , mypolls 0 +thr d3cbad00 , status 1 +connecting thr d3cbad00 , thread 3830 , mypolls 0 +myconn 0 connecting thr d3cbad00 , thread 3830 , mypolls 0 +thr d3cbae80 , status 1 +connecting thr d3cbae80 , thread 3831 , mypolls 0 +myconn 0 connecting thr d3cbae80 , thread 3831 , mypolls 0 +thr d3dfd000 , status 1 +connecting thr d3dfd000 , thread 3832 , mypolls 0 +myconn 0 connecting thr d3dfd000 , thread 3832 , mypolls 0 +thr d3dfd180 , status 1 +connecting thr d3dfd180 , thread 3833 , mypolls 0 +myconn 0 connecting thr d3dfd180 , thread 3833 , mypolls 0 +thr d3dfd300 , status 1 +connecting thr d3dfd300 , thread 3834 , mypolls 0 +myconn 0 connecting thr d3dfd300 , thread 3834 , mypolls 0 +thr d3dfd480 , status 1 +connecting thr d3dfd480 , thread 3835 , mypolls 0 +myconn 0 connecting thr d3dfd480 , thread 3835 , mypolls 0 +thr d3dfd600 , status 1 +connecting thr d3dfd600 , thread 3836 , mypolls 0 +myconn 0 connecting thr d3dfd600 , thread 3836 , mypolls 0 +thr d3dfd780 , status 1 +connecting thr d3dfd780 , thread 3837 , mypolls 0 +myconn 0 connecting thr d3dfd780 , thread 3837 , mypolls 0 +thr d3dfd900 , status 1 +connecting thr d3dfd900 , thread 3838 , mypolls 0 +myconn 0 connecting thr d3dfd900 , thread 3838 , mypolls 0 +thr d3dfda80 , status 1 +connecting thr d3dfda80 , thread 3839 , mypolls 0 +myconn 0 connecting thr d3dfda80 , thread 3839 , mypolls 0 +thr d3dfdc00 , status 1 +connecting thr d3dfdc00 , thread 3840 , mypolls 0 +myconn 0 connecting thr d3dfdc00 , thread 3840 , mypolls 0 +thr d3dfdd80 , status 1 +connecting thr d3dfdd80 , thread 3841 , mypolls 0 +myconn 0 connecting thr d3dfdd80 , thread 3841 , mypolls 0 +thr d3dfdf00 , status 1 +connecting thr d3dfdf00 , thread 3842 , mypolls 0 +myconn 0 connecting thr d3dfdf00 , thread 3842 , mypolls 0 +thr d3dfe080 , status 1 +connecting thr d3dfe080 , thread 3843 , mypolls 0 +myconn 0 connecting thr d3dfe080 , thread 3843 , mypolls 0 +thr d3dfe200 , status 1 +connecting thr d3dfe200 , thread 3844 , mypolls 0 +myconn 0 connecting thr d3dfe200 , thread 3844 , mypolls 0 +thr d3dfe380 , status 1 +connecting thr d3dfe380 , thread 3845 , mypolls 0 +myconn 0 connecting thr d3dfe380 , thread 3845 , mypolls 0 +thr d3dfe500 , status 1 +connecting thr d3dfe500 , thread 3846 , mypolls 0 +myconn 0 connecting thr d3dfe500 , thread 3846 , mypolls 0 +thr d3dfe680 , status 1 +connecting thr d3dfe680 , thread 3847 , mypolls 0 +myconn 0 connecting thr d3dfe680 , thread 3847 , mypolls 0 +thr d3dfe800 , status 1 +connecting thr d3dfe800 , thread 3848 , mypolls 0 +myconn 0 connecting thr d3dfe800 , thread 3848 , mypolls 0 +thr d3dfe980 , status 1 +connecting thr d3dfe980 , thread 3849 , mypolls 0 +myconn 0 connecting thr d3dfe980 , thread 3849 , mypolls 0 +thr d3dfeb00 , status 1 +connecting thr d3dfeb00 , thread 3850 , mypolls 0 +myconn 0 connecting thr d3dfeb00 , thread 3850 , mypolls 0 +thr d3dfec80 , status 1 +connecting thr d3dfec80 , thread 3851 , mypolls 0 +myconn 0 connecting thr d3dfec80 , thread 3851 , mypolls 0 +thr d3dfee00 , status 1 +connecting thr d3dfee00 , thread 3852 , mypolls 0 +myconn 0 connecting thr d3dfee00 , thread 3852 , mypolls 0 +thr d3dfef80 , status 1 +connecting thr d3dfef80 , thread 3853 , mypolls 0 +myconn 0 connecting thr d3dfef80 , thread 3853 , mypolls 0 +thr d3dff100 , status 1 +connecting thr d3dff100 , thread 3854 , mypolls 0 +myconn 0 connecting thr d3dff100 , thread 3854 , mypolls 0 +thr d3dff280 , status 1 +connecting thr d3dff280 , thread 3855 , mypolls 0 +myconn 0 connecting thr d3dff280 , thread 3855 , mypolls 0 +thr d3dff400 , status 1 +connecting thr d3dff400 , thread 3856 , mypolls 0 +myconn 0 connecting thr d3dff400 , thread 3856 , mypolls 0 +thr d3dff580 , status 1 +connecting thr d3dff580 , thread 3857 , mypolls 0 +myconn 0 connecting thr d3dff580 , thread 3857 , mypolls 0 +thr d3dff700 , status 1 +connecting thr d3dff700 , thread 3858 , mypolls 0 +myconn 0 connecting thr d3dff700 , thread 3858 , mypolls 0 +thr d3dff880 , status 1 +connecting thr d3dff880 , thread 3859 , mypolls 0 +myconn 0 connecting thr d3dff880 , thread 3859 , mypolls 0 +thr d3dffa00 , status 1 +connecting thr d3dffa00 , thread 3860 , mypolls 0 +myconn 0 connecting thr d3dffa00 , thread 3860 , mypolls 0 +thr d3dffb80 , status 1 +connecting thr d3dffb80 , thread 3861 , mypolls 0 +myconn 0 connecting thr d3dffb80 , thread 3861 , mypolls 0 +thr d3dffd00 , status 1 +connecting thr d3dffd00 , thread 3862 , mypolls 0 +myconn 0 connecting thr d3dffd00 , thread 3862 , mypolls 0 +thr d3dffe80 , status 1 +connecting thr d3dffe80 , thread 3863 , mypolls 0 +myconn 0 connecting thr d3dffe80 , thread 3863 , mypolls 0 +thr d397b000 , status 1 +connecting thr d397b000 , thread 3864 , mypolls 0 +myconn 0 connecting thr d397b000 , thread 3864 , mypolls 0 +thr d397b180 , status 1 +connecting thr d397b180 , thread 3865 , mypolls 0 +myconn 0 connecting thr d397b180 , thread 3865 , mypolls 0 +thr d397b300 , status 1 +connecting thr d397b300 , thread 3866 , mypolls 0 +myconn 0 connecting thr d397b300 , thread 3866 , mypolls 0 +thr d397b480 , status 1 +connecting thr d397b480 , thread 3867 , mypolls 0 +myconn 0 connecting thr d397b480 , thread 3867 , mypolls 0 +thr d397b600 , status 1 +connecting thr d397b600 , thread 3868 , mypolls 0 +myconn 0 connecting thr d397b600 , thread 3868 , mypolls 0 +thr d397b780 , status 1 +connecting thr d397b780 , thread 3869 , mypolls 0 +myconn 0 connecting thr d397b780 , thread 3869 , mypolls 0 +thr d397b900 , status 1 +connecting thr d397b900 , thread 3870 , mypolls 0 +myconn 0 connecting thr d397b900 , thread 3870 , mypolls 0 +thr d397ba80 , status 1 +connecting thr d397ba80 , thread 3871 , mypolls 0 +myconn 0 connecting thr d397ba80 , thread 3871 , mypolls 0 +thr d397bc00 , status 1 +connecting thr d397bc00 , thread 3872 , mypolls 0 +myconn 0 connecting thr d397bc00 , thread 3872 , mypolls 0 +thr d397bd80 , status 1 +connecting thr d397bd80 , thread 3873 , mypolls 0 +myconn 0 connecting thr d397bd80 , thread 3873 , mypolls 0 +thr d397bf00 , status 1 +connecting thr d397bf00 , thread 3874 , mypolls 0 +myconn 0 connecting thr d397bf00 , thread 3874 , mypolls 0 +thr d397c080 , status 1 +connecting thr d397c080 , thread 3875 , mypolls 0 +myconn 0 connecting thr d397c080 , thread 3875 , mypolls 0 +thr d397c200 , status 1 +connecting thr d397c200 , thread 3876 , mypolls 0 +myconn 0 connecting thr d397c200 , thread 3876 , mypolls 0 +thr d397c380 , status 1 +connecting thr d397c380 , thread 3877 , mypolls 0 +myconn 0 connecting thr d397c380 , thread 3877 , mypolls 0 +thr d397c500 , status 1 +connecting thr d397c500 , thread 3878 , mypolls 0 +myconn 0 connecting thr d397c500 , thread 3878 , mypolls 0 +thr d397c680 , status 1 +connecting thr d397c680 , thread 3879 , mypolls 0 +myconn 0 connecting thr d397c680 , thread 3879 , mypolls 0 +thr d397c800 , status 1 +connecting thr d397c800 , thread 3880 , mypolls 0 +myconn 0 connecting thr d397c800 , thread 3880 , mypolls 0 +thr d397c980 , status 1 +connecting thr d397c980 , thread 3881 , mypolls 0 +myconn 0 connecting thr d397c980 , thread 3881 , mypolls 0 +thr d397cb00 , status 1 +connecting thr d397cb00 , thread 3882 , mypolls 0 +myconn 0 connecting thr d397cb00 , thread 3882 , mypolls 0 +thr d397cc80 , status 1 +connecting thr d397cc80 , thread 3883 , mypolls 0 +myconn 0 connecting thr d397cc80 , thread 3883 , mypolls 0 +thr d397ce00 , status 1 +connecting thr d397ce00 , thread 3884 , mypolls 0 +myconn 0 connecting thr d397ce00 , thread 3884 , mypolls 0 +thr d397cf80 , status 1 +connecting thr d397cf80 , thread 3885 , mypolls 0 +myconn 0 connecting thr d397cf80 , thread 3885 , mypolls 0 +thr d397d100 , status 1 +connecting thr d397d100 , thread 3886 , mypolls 0 +myconn 0 connecting thr d397d100 , thread 3886 , mypolls 0 +thr d397d280 , status 1 +connecting thr d397d280 , thread 3887 , mypolls 0 +myconn 0 connecting thr d397d280 , thread 3887 , mypolls 0 +thr d397d400 , status 1 +connecting thr d397d400 , thread 3888 , mypolls 0 +myconn 0 connecting thr d397d400 , thread 3888 , mypolls 0 +thr d397d580 , status 1 +connecting thr d397d580 , thread 3889 , mypolls 0 +myconn 0 connecting thr d397d580 , thread 3889 , mypolls 0 +thr d397d700 , status 1 +connecting thr d397d700 , thread 3890 , mypolls 0 +myconn 0 connecting thr d397d700 , thread 3890 , mypolls 0 +thr d397d880 , status 1 +connecting thr d397d880 , thread 3891 , mypolls 0 +myconn 0 connecting thr d397d880 , thread 3891 , mypolls 0 +thr d397da00 , status 1 +connecting thr d397da00 , thread 3892 , mypolls 0 +myconn 0 connecting thr d397da00 , thread 3892 , mypolls 0 +thr d397db80 , status 1 +connecting thr d397db80 , thread 3893 , mypolls 0 +myconn 0 connecting thr d397db80 , thread 3893 , mypolls 0 +thr d397dd00 , status 1 +connecting thr d397dd00 , thread 3894 , mypolls 0 +myconn 0 connecting thr d397dd00 , thread 3894 , mypolls 0 +thr d397de80 , status 1 +connecting thr d397de80 , thread 3895 , mypolls 0 +myconn 0 connecting thr d397de80 , thread 3895 , mypolls 0 +thr d37e2000 , status 1 +connecting thr d37e2000 , thread 3896 , mypolls 0 +myconn 0 connecting thr d37e2000 , thread 3896 , mypolls 0 +thr d37e2180 , status 1 +connecting thr d37e2180 , thread 3897 , mypolls 0 +myconn 0 connecting thr d37e2180 , thread 3897 , mypolls 0 +thr d37e2300 , status 1 +connecting thr d37e2300 , thread 3898 , mypolls 0 +myconn 0 connecting thr d37e2300 , thread 3898 , mypolls 0 +thr d37e2480 , status 1 +connecting thr d37e2480 , thread 3899 , mypolls 0 +myconn 0 connecting thr d37e2480 , thread 3899 , mypolls 0 +thr d37e2600 , status 1 +connecting thr d37e2600 , thread 3900 , mypolls 0 +myconn 0 connecting thr d37e2600 , thread 3900 , mypolls 0 +thr d37e2780 , status 1 +connecting thr d37e2780 , thread 3901 , mypolls 0 +myconn 0 connecting thr d37e2780 , thread 3901 , mypolls 0 +thr d37e2900 , status 1 +connecting thr d37e2900 , thread 3902 , mypolls 0 +myconn 0 connecting thr d37e2900 , thread 3902 , mypolls 0 +thr d37e2a80 , status 1 +connecting thr d37e2a80 , thread 3903 , mypolls 0 +myconn 0 connecting thr d37e2a80 , thread 3903 , mypolls 0 +thr d37e2c00 , status 1 +connecting thr d37e2c00 , thread 3904 , mypolls 0 +myconn 0 connecting thr d37e2c00 , thread 3904 , mypolls 0 +thr d37e2d80 , status 1 +connecting thr d37e2d80 , thread 3905 , mypolls 0 +myconn 0 connecting thr d37e2d80 , thread 3905 , mypolls 0 +thr d37e2f00 , status 1 +connecting thr d37e2f00 , thread 3906 , mypolls 0 +myconn 0 connecting thr d37e2f00 , thread 3906 , mypolls 0 +thr d37e3080 , status 1 +connecting thr d37e3080 , thread 3907 , mypolls 0 +myconn 0 connecting thr d37e3080 , thread 3907 , mypolls 0 +thr d37e3200 , status 1 +connecting thr d37e3200 , thread 3908 , mypolls 0 +myconn 0 connecting thr d37e3200 , thread 3908 , mypolls 0 +thr d37e3380 , status 1 +connecting thr d37e3380 , thread 3909 , mypolls 0 +myconn 0 connecting thr d37e3380 , thread 3909 , mypolls 0 +thr d37e3500 , status 1 +connecting thr d37e3500 , thread 3910 , mypolls 0 +myconn 0 connecting thr d37e3500 , thread 3910 , mypolls 0 +thr d37e3680 , status 1 +connecting thr d37e3680 , thread 3911 , mypolls 0 +myconn 0 connecting thr d37e3680 , thread 3911 , mypolls 0 +thr d37e3800 , status 1 +connecting thr d37e3800 , thread 3912 , mypolls 0 +myconn 0 connecting thr d37e3800 , thread 3912 , mypolls 0 +thr d37e3980 , status 1 +connecting thr d37e3980 , thread 3913 , mypolls 0 +myconn 0 connecting thr d37e3980 , thread 3913 , mypolls 0 +thr d37e3b00 , status 1 +connecting thr d37e3b00 , thread 3914 , mypolls 0 +myconn 0 connecting thr d37e3b00 , thread 3914 , mypolls 0 +thr d37e3c80 , status 1 +connecting thr d37e3c80 , thread 3915 , mypolls 0 +myconn 0 connecting thr d37e3c80 , thread 3915 , mypolls 0 +thr d37e3e00 , status 1 +connecting thr d37e3e00 , thread 3916 , mypolls 0 +myconn 0 connecting thr d37e3e00 , thread 3916 , mypolls 0 +thr d37e3f80 , status 1 +connecting thr d37e3f80 , thread 3917 , mypolls 0 +myconn 0 connecting thr d37e3f80 , thread 3917 , mypolls 0 +thr d37e4100 , status 1 +connecting thr d37e4100 , thread 3918 , mypolls 0 +myconn 0 connecting thr d37e4100 , thread 3918 , mypolls 0 +thr d37e4280 , status 1 +connecting thr d37e4280 , thread 3919 , mypolls 0 +myconn 0 connecting thr d37e4280 , thread 3919 , mypolls 0 +thr d37e4400 , status 1 +connecting thr d37e4400 , thread 3920 , mypolls 0 +myconn 0 connecting thr d37e4400 , thread 3920 , mypolls 0 +thr d37e4580 , status 1 +connecting thr d37e4580 , thread 3921 , mypolls 0 +myconn 0 connecting thr d37e4580 , thread 3921 , mypolls 0 +thr d37e4700 , status 1 +connecting thr d37e4700 , thread 3922 , mypolls 0 +myconn 0 connecting thr d37e4700 , thread 3922 , mypolls 0 +thr d37e4880 , status 1 +connecting thr d37e4880 , thread 3923 , mypolls 0 +myconn 0 connecting thr d37e4880 , thread 3923 , mypolls 0 +thr d37e4a00 , status 1 +connecting thr d37e4a00 , thread 3924 , mypolls 0 +myconn 0 connecting thr d37e4a00 , thread 3924 , mypolls 0 +thr d37e4b80 , status 1 +connecting thr d37e4b80 , thread 3925 , mypolls 0 +myconn 0 connecting thr d37e4b80 , thread 3925 , mypolls 0 +thr d37e4d00 , status 1 +connecting thr d37e4d00 , thread 3926 , mypolls 0 +myconn 0 connecting thr d37e4d00 , thread 3926 , mypolls 0 +thr d37e4e80 , status 1 +connecting thr d37e4e80 , thread 3927 , mypolls 0 +myconn 0 connecting thr d37e4e80 , thread 3927 , mypolls 0 +thr d35fc000 , status 1 +connecting thr d35fc000 , thread 3928 , mypolls 0 +myconn 0 connecting thr d35fc000 , thread 3928 , mypolls 0 +thr d35fc180 , status 1 +connecting thr d35fc180 , thread 3929 , mypolls 0 +myconn 0 connecting thr d35fc180 , thread 3929 , mypolls 0 +thr d35fc300 , status 1 +connecting thr d35fc300 , thread 3930 , mypolls 0 +myconn 0 connecting thr d35fc300 , thread 3930 , mypolls 0 +thr d35fc480 , status 1 +connecting thr d35fc480 , thread 3931 , mypolls 0 +myconn 0 connecting thr d35fc480 , thread 3931 , mypolls 0 +thr d35fc600 , status 1 +connecting thr d35fc600 , thread 3932 , mypolls 0 +myconn 0 connecting thr d35fc600 , thread 3932 , mypolls 0 +thr d35fc780 , status 1 +connecting thr d35fc780 , thread 3933 , mypolls 0 +myconn 0 connecting thr d35fc780 , thread 3933 , mypolls 0 +thr d35fc900 , status 1 +connecting thr d35fc900 , thread 3934 , mypolls 0 +myconn 0 connecting thr d35fc900 , thread 3934 , mypolls 0 +thr d35fca80 , status 1 +connecting thr d35fca80 , thread 3935 , mypolls 0 +myconn 0 connecting thr d35fca80 , thread 3935 , mypolls 0 +thr d35fcc00 , status 1 +connecting thr d35fcc00 , thread 3936 , mypolls 0 +myconn 0 connecting thr d35fcc00 , thread 3936 , mypolls 0 +thr d35fcd80 , status 1 +connecting thr d35fcd80 , thread 3937 , mypolls 0 +myconn 0 connecting thr d35fcd80 , thread 3937 , mypolls 0 +thr d35fcf00 , status 1 +connecting thr d35fcf00 , thread 3938 , mypolls 0 +myconn 0 connecting thr d35fcf00 , thread 3938 , mypolls 0 +thr d35fd080 , status 1 +connecting thr d35fd080 , thread 3939 , mypolls 0 +myconn 0 connecting thr d35fd080 , thread 3939 , mypolls 0 +thr d35fd200 , status 1 +connecting thr d35fd200 , thread 3940 , mypolls 0 +myconn 0 connecting thr d35fd200 , thread 3940 , mypolls 0 +thr d35fd380 , status 1 +connecting thr d35fd380 , thread 3941 , mypolls 0 +myconn 0 connecting thr d35fd380 , thread 3941 , mypolls 0 +thr d35fd500 , status 1 +connecting thr d35fd500 , thread 3942 , mypolls 0 +myconn 0 connecting thr d35fd500 , thread 3942 , mypolls 0 +thr d35fd680 , status 1 +connecting thr d35fd680 , thread 3943 , mypolls 0 +myconn 0 connecting thr d35fd680 , thread 3943 , mypolls 0 +thr d35fd800 , status 1 +connecting thr d35fd800 , thread 3944 , mypolls 0 +myconn 0 connecting thr d35fd800 , thread 3944 , mypolls 0 +thr d35fd980 , status 1 +connecting thr d35fd980 , thread 3945 , mypolls 0 +myconn 0 connecting thr d35fd980 , thread 3945 , mypolls 0 +thr d35fdb00 , status 1 +connecting thr d35fdb00 , thread 3946 , mypolls 0 +myconn 0 connecting thr d35fdb00 , thread 3946 , mypolls 0 +thr d35fdc80 , status 1 +connecting thr d35fdc80 , thread 3947 , mypolls 0 +myconn 0 connecting thr d35fdc80 , thread 3947 , mypolls 0 +thr d35fde00 , status 1 +connecting thr d35fde00 , thread 3948 , mypolls 0 +myconn 0 connecting thr d35fde00 , thread 3948 , mypolls 0 +thr d35fdf80 , status 1 +connecting thr d35fdf80 , thread 3949 , mypolls 0 +myconn 0 connecting thr d35fdf80 , thread 3949 , mypolls 0 +thr d35fe100 , status 1 +connecting thr d35fe100 , thread 3950 , mypolls 0 +myconn 0 connecting thr d35fe100 , thread 3950 , mypolls 0 +thr d35fe280 , status 1 +connecting thr d35fe280 , thread 3951 , mypolls 0 +myconn 0 connecting thr d35fe280 , thread 3951 , mypolls 0 +thr d35fe400 , status 1 +connecting thr d35fe400 , thread 3952 , mypolls 0 +myconn 0 connecting thr d35fe400 , thread 3952 , mypolls 0 +thr d35fe580 , status 1 +connecting thr d35fe580 , thread 3953 , mypolls 0 +myconn 0 connecting thr d35fe580 , thread 3953 , mypolls 0 +thr d35fe700 , status 1 +connecting thr d35fe700 , thread 3954 , mypolls 0 +myconn 0 connecting thr d35fe700 , thread 3954 , mypolls 0 +thr d35fe880 , status 1 +connecting thr d35fe880 , thread 3955 , mypolls 0 +myconn 0 connecting thr d35fe880 , thread 3955 , mypolls 0 +thr d35fea00 , status 1 +connecting thr d35fea00 , thread 3956 , mypolls 0 +myconn 0 connecting thr d35fea00 , thread 3956 , mypolls 0 +thr d35feb80 , status 1 +connecting thr d35feb80 , thread 3957 , mypolls 0 +myconn 0 connecting thr d35feb80 , thread 3957 , mypolls 0 +thr d35fed00 , status 1 +connecting thr d35fed00 , thread 3958 , mypolls 0 +myconn 0 connecting thr d35fed00 , thread 3958 , mypolls 0 +thr d35fee80 , status 1 +connecting thr d35fee80 , thread 3959 , mypolls 0 +myconn 0 connecting thr d35fee80 , thread 3959 , mypolls 0 +thr d30b0000 , status 1 +connecting thr d30b0000 , thread 3960 , mypolls 0 +myconn 0 connecting thr d30b0000 , thread 3960 , mypolls 0 +thr d30b0180 , status 1 +connecting thr d30b0180 , thread 3961 , mypolls 0 +myconn 0 connecting thr d30b0180 , thread 3961 , mypolls 0 +thr d30b0300 , status 1 +connecting thr d30b0300 , thread 3962 , mypolls 0 +myconn 0 connecting thr d30b0300 , thread 3962 , mypolls 0 +thr d30b0480 , status 1 +connecting thr d30b0480 , thread 3963 , mypolls 0 +myconn 0 connecting thr d30b0480 , thread 3963 , mypolls 0 +thr d30b0600 , status 1 +connecting thr d30b0600 , thread 3964 , mypolls 0 +myconn 0 connecting thr d30b0600 , thread 3964 , mypolls 0 +thr d30b0780 , status 1 +connecting thr d30b0780 , thread 3965 , mypolls 0 +myconn 0 connecting thr d30b0780 , thread 3965 , mypolls 0 +thr d30b0900 , status 1 +connecting thr d30b0900 , thread 3966 , mypolls 0 +myconn 0 connecting thr d30b0900 , thread 3966 , mypolls 0 +thr d30b0a80 , status 1 +connecting thr d30b0a80 , thread 3967 , mypolls 0 +myconn 0 connecting thr d30b0a80 , thread 3967 , mypolls 0 +thr d30b0c00 , status 1 +connecting thr d30b0c00 , thread 3968 , mypolls 0 +myconn 0 connecting thr d30b0c00 , thread 3968 , mypolls 0 +thr d30b0d80 , status 1 +connecting thr d30b0d80 , thread 3969 , mypolls 0 +myconn 0 connecting thr d30b0d80 , thread 3969 , mypolls 0 +thr d30b0f00 , status 1 +connecting thr d30b0f00 , thread 3970 , mypolls 0 +myconn 0 connecting thr d30b0f00 , thread 3970 , mypolls 0 +thr d30b1080 , status 1 +connecting thr d30b1080 , thread 3971 , mypolls 0 +myconn 0 connecting thr d30b1080 , thread 3971 , mypolls 0 +thr d30b1200 , status 1 +connecting thr d30b1200 , thread 3972 , mypolls 0 +myconn 0 connecting thr d30b1200 , thread 3972 , mypolls 0 +thr d30b1380 , status 1 +connecting thr d30b1380 , thread 3973 , mypolls 0 +myconn 0 connecting thr d30b1380 , thread 3973 , mypolls 0 +thr d30b1500 , status 1 +connecting thr d30b1500 , thread 3974 , mypolls 0 +myconn 0 connecting thr d30b1500 , thread 3974 , mypolls 0 +thr d30b1680 , status 1 +connecting thr d30b1680 , thread 3975 , mypolls 0 +myconn 0 connecting thr d30b1680 , thread 3975 , mypolls 0 +thr d30b1800 , status 1 +connecting thr d30b1800 , thread 3976 , mypolls 0 +myconn 0 connecting thr d30b1800 , thread 3976 , mypolls 0 +thr d30b1980 , status 1 +connecting thr d30b1980 , thread 3977 , mypolls 0 +myconn 0 connecting thr d30b1980 , thread 3977 , mypolls 0 +thr d30b1b00 , status 1 +connecting thr d30b1b00 , thread 3978 , mypolls 0 +myconn 0 connecting thr d30b1b00 , thread 3978 , mypolls 0 +thr d30b1c80 , status 1 +connecting thr d30b1c80 , thread 3979 , mypolls 0 +myconn 0 connecting thr d30b1c80 , thread 3979 , mypolls 0 +thr d30b1e00 , status 1 +connecting thr d30b1e00 , thread 3980 , mypolls 0 +myconn 0 connecting thr d30b1e00 , thread 3980 , mypolls 0 +thr d30b1f80 , status 1 +connecting thr d30b1f80 , thread 3981 , mypolls 0 +myconn 0 connecting thr d30b1f80 , thread 3981 , mypolls 0 +thr d30b2100 , status 1 +connecting thr d30b2100 , thread 3982 , mypolls 0 +myconn 0 connecting thr d30b2100 , thread 3982 , mypolls 0 +thr d30b2280 , status 1 +connecting thr d30b2280 , thread 3983 , mypolls 0 +myconn 0 connecting thr d30b2280 , thread 3983 , mypolls 0 +thr d30b2400 , status 1 +connecting thr d30b2400 , thread 3984 , mypolls 0 +myconn 0 connecting thr d30b2400 , thread 3984 , mypolls 0 +thr d30b2580 , status 1 +connecting thr d30b2580 , thread 3985 , mypolls 0 +myconn 0 connecting thr d30b2580 , thread 3985 , mypolls 0 +thr d30b2700 , status 1 +connecting thr d30b2700 , thread 3986 , mypolls 0 +myconn 0 connecting thr d30b2700 , thread 3986 , mypolls 0 +thr d30b2880 , status 1 +connecting thr d30b2880 , thread 3987 , mypolls 0 +myconn 0 connecting thr d30b2880 , thread 3987 , mypolls 0 +thr d30b2a00 , status 1 +connecting thr d30b2a00 , thread 3988 , mypolls 0 +myconn 0 connecting thr d30b2a00 , thread 3988 , mypolls 0 +thr d30b2b80 , status 1 +connecting thr d30b2b80 , thread 3989 , mypolls 0 +myconn 0 connecting thr d30b2b80 , thread 3989 , mypolls 0 +thr d30b2d00 , status 1 +connecting thr d30b2d00 , thread 3990 , mypolls 0 +myconn 0 connecting thr d30b2d00 , thread 3990 , mypolls 0 +thr d30b2e80 , status 1 +connecting thr d30b2e80 , thread 3991 , mypolls 0 +myconn 0 connecting thr d30b2e80 , thread 3991 , mypolls 0 +thr d2f14000 , status 1 +connecting thr d2f14000 , thread 3992 , mypolls 0 +myconn 0 connecting thr d2f14000 , thread 3992 , mypolls 0 +thr d2f14180 , status 1 +connecting thr d2f14180 , thread 3993 , mypolls 0 +myconn 0 connecting thr d2f14180 , thread 3993 , mypolls 0 +thr d2f14300 , status 1 +connecting thr d2f14300 , thread 3994 , mypolls 0 +myconn 0 connecting thr d2f14300 , thread 3994 , mypolls 0 +thr d2f14480 , status 1 +connecting thr d2f14480 , thread 3995 , mypolls 0 +myconn 0 connecting thr d2f14480 , thread 3995 , mypolls 0 +thr d2f14600 , status 1 +connecting thr d2f14600 , thread 3996 , mypolls 0 +myconn 0 connecting thr d2f14600 , thread 3996 , mypolls 0 +thr d2f14780 , status 1 +connecting thr d2f14780 , thread 3997 , mypolls 0 +myconn 0 connecting thr d2f14780 , thread 3997 , mypolls 0 +thr d2f14900 , status 1 +connecting thr d2f14900 , thread 3998 , mypolls 0 +myconn 0 connecting thr d2f14900 , thread 3998 , mypolls 0 +thr d2f14a80 , status 1 +connecting thr d2f14a80 , thread 3999 , mypolls 0 +myconn 0 connecting thr d2f14a80 , thread 3999 , mypolls 0 +thr d2f14c00 , status 1 +connecting thr d2f14c00 , thread 4000 , mypolls 0 +myconn 0 connecting thr d2f14c00 , thread 4000 , mypolls 0 +thr d2f14d80 , status 1 +connecting thr d2f14d80 , thread 4001 , mypolls 0 +myconn 0 connecting thr d2f14d80 , thread 4001 , mypolls 0 +thr d2f14f00 , status 1 +connecting thr d2f14f00 , thread 4002 , mypolls 0 +myconn 0 connecting thr d2f14f00 , thread 4002 , mypolls 0 +thr d2f15080 , status 1 +connecting thr d2f15080 , thread 4003 , mypolls 0 +myconn 0 connecting thr d2f15080 , thread 4003 , mypolls 0 +thr d2f15200 , status 1 +connecting thr d2f15200 , thread 4004 , mypolls 0 +myconn 0 connecting thr d2f15200 , thread 4004 , mypolls 0 +thr d2f15380 , status 1 +connecting thr d2f15380 , thread 4005 , mypolls 0 +myconn 0 connecting thr d2f15380 , thread 4005 , mypolls 0 +thr d2f15500 , status 1 +connecting thr d2f15500 , thread 4006 , mypolls 0 +myconn 0 connecting thr d2f15500 , thread 4006 , mypolls 0 +thr d2f15680 , status 1 +connecting thr d2f15680 , thread 4007 , mypolls 0 +myconn 0 connecting thr d2f15680 , thread 4007 , mypolls 0 +thr d2f15800 , status 1 +connecting thr d2f15800 , thread 4008 , mypolls 0 +myconn 0 connecting thr d2f15800 , thread 4008 , mypolls 0 +thr d2f15980 , status 1 +connecting thr d2f15980 , thread 4009 , mypolls 0 +myconn 0 connecting thr d2f15980 , thread 4009 , mypolls 0 +thr d2f15b00 , status 1 +connecting thr d2f15b00 , thread 4010 , mypolls 0 +myconn 0 connecting thr d2f15b00 , thread 4010 , mypolls 0 +thr d2f15c80 , status 1 +connecting thr d2f15c80 , thread 4011 , mypolls 0 +myconn 0 connecting thr d2f15c80 , thread 4011 , mypolls 0 +thr d2f15e00 , status 1 +connecting thr d2f15e00 , thread 4012 , mypolls 0 +myconn 0 connecting thr d2f15e00 , thread 4012 , mypolls 0 +thr d2f15f80 , status 1 +connecting thr d2f15f80 , thread 4013 , mypolls 0 +myconn 0 connecting thr d2f15f80 , thread 4013 , mypolls 0 +thr d2f16100 , status 1 +connecting thr d2f16100 , thread 4014 , mypolls 0 +myconn 0 connecting thr d2f16100 , thread 4014 , mypolls 0 +thr d2f16280 , status 1 +connecting thr d2f16280 , thread 4015 , mypolls 0 +myconn 0 connecting thr d2f16280 , thread 4015 , mypolls 0 +thr d2f16400 , status 1 +connecting thr d2f16400 , thread 4016 , mypolls 0 +myconn 0 connecting thr d2f16400 , thread 4016 , mypolls 0 +thr d2f16580 , status 1 +connecting thr d2f16580 , thread 4017 , mypolls 0 +myconn 0 connecting thr d2f16580 , thread 4017 , mypolls 0 +thr d2f16700 , status 1 +connecting thr d2f16700 , thread 4018 , mypolls 0 +myconn 0 connecting thr d2f16700 , thread 4018 , mypolls 0 +thr d2f16880 , status 1 +connecting thr d2f16880 , thread 4019 , mypolls 0 +myconn 0 connecting thr d2f16880 , thread 4019 , mypolls 0 +thr d2f16a00 , status 1 +connecting thr d2f16a00 , thread 4020 , mypolls 0 +myconn 0 connecting thr d2f16a00 , thread 4020 , mypolls 0 +thr d2f16b80 , status 1 +connecting thr d2f16b80 , thread 4021 , mypolls 0 +myconn 0 connecting thr d2f16b80 , thread 4021 , mypolls 0 +thr d2f16d00 , status 1 +connecting thr d2f16d00 , thread 4022 , mypolls 0 +myconn 0 connecting thr d2f16d00 , thread 4022 , mypolls 0 +thr d2f16e80 , status 1 +connecting thr d2f16e80 , thread 4023 , mypolls 0 +myconn 0 connecting thr d2f16e80 , thread 4023 , mypolls 0 +thr d2d76000 , status 1 +connecting thr d2d76000 , thread 4024 , mypolls 0 +myconn 0 connecting thr d2d76000 , thread 4024 , mypolls 0 +thr d2d76180 , status 1 +connecting thr d2d76180 , thread 4025 , mypolls 0 +myconn 0 connecting thr d2d76180 , thread 4025 , mypolls 0 +thr d2d76300 , status 1 +connecting thr d2d76300 , thread 4026 , mypolls 0 +myconn 0 connecting thr d2d76300 , thread 4026 , mypolls 0 +thr d2d76480 , status 1 +connecting thr d2d76480 , thread 4027 , mypolls 0 +myconn 0 connecting thr d2d76480 , thread 4027 , mypolls 0 +thr d2d76600 , status 1 +connecting thr d2d76600 , thread 4028 , mypolls 0 +myconn 0 connecting thr d2d76600 , thread 4028 , mypolls 0 +thr d2d76780 , status 1 +connecting thr d2d76780 , thread 4029 , mypolls 0 +myconn 0 connecting thr d2d76780 , thread 4029 , mypolls 0 +thr d2d76900 , status 1 +connecting thr d2d76900 , thread 4030 , mypolls 0 +myconn 0 connecting thr d2d76900 , thread 4030 , mypolls 0 +thr d2d76a80 , status 1 +connecting thr d2d76a80 , thread 4031 , mypolls 0 +myconn 0 connecting thr d2d76a80 , thread 4031 , mypolls 0 +thr d2d76c00 , status 1 +connecting thr d2d76c00 , thread 4032 , mypolls 0 +myconn 0 connecting thr d2d76c00 , thread 4032 , mypolls 0 +thr d2d76d80 , status 1 +connecting thr d2d76d80 , thread 4033 , mypolls 0 +myconn 0 connecting thr d2d76d80 , thread 4033 , mypolls 0 +thr d2d76f00 , status 1 +connecting thr d2d76f00 , thread 4034 , mypolls 0 +myconn 0 connecting thr d2d76f00 , thread 4034 , mypolls 0 +thr d2d77080 , status 1 +connecting thr d2d77080 , thread 4035 , mypolls 0 +myconn 0 connecting thr d2d77080 , thread 4035 , mypolls 0 +thr d2d77200 , status 1 +connecting thr d2d77200 , thread 4036 , mypolls 0 +myconn 0 connecting thr d2d77200 , thread 4036 , mypolls 0 +thr d2d77380 , status 1 +connecting thr d2d77380 , thread 4037 , mypolls 0 +myconn 0 connecting thr d2d77380 , thread 4037 , mypolls 0 +thr d2d77500 , status 1 +connecting thr d2d77500 , thread 4038 , mypolls 0 +myconn 0 connecting thr d2d77500 , thread 4038 , mypolls 0 +thr d2d77680 , status 1 +connecting thr d2d77680 , thread 4039 , mypolls 0 +myconn 0 connecting thr d2d77680 , thread 4039 , mypolls 0 +thr d2d77800 , status 1 +connecting thr d2d77800 , thread 4040 , mypolls 0 +myconn 0 connecting thr d2d77800 , thread 4040 , mypolls 0 +thr d2d77980 , status 1 +connecting thr d2d77980 , thread 4041 , mypolls 0 +myconn 0 connecting thr d2d77980 , thread 4041 , mypolls 0 +thr d2d77b00 , status 1 +connecting thr d2d77b00 , thread 4042 , mypolls 0 +myconn 0 connecting thr d2d77b00 , thread 4042 , mypolls 0 +thr d2d77c80 , status 1 +connecting thr d2d77c80 , thread 4043 , mypolls 0 +myconn 0 connecting thr d2d77c80 , thread 4043 , mypolls 0 +thr d2d77e00 , status 1 +connecting thr d2d77e00 , thread 4044 , mypolls 0 +myconn 0 connecting thr d2d77e00 , thread 4044 , mypolls 0 +thr d2d77f80 , status 1 +connecting thr d2d77f80 , thread 4045 , mypolls 0 +myconn 0 connecting thr d2d77f80 , thread 4045 , mypolls 0 +thr d2d78100 , status 1 +connecting thr d2d78100 , thread 4046 , mypolls 0 +myconn 0 connecting thr d2d78100 , thread 4046 , mypolls 0 +thr d2d78280 , status 1 +connecting thr d2d78280 , thread 4047 , mypolls 0 +myconn 0 connecting thr d2d78280 , thread 4047 , mypolls 0 +thr d2d78400 , status 1 +connecting thr d2d78400 , thread 4048 , mypolls 0 +myconn 0 connecting thr d2d78400 , thread 4048 , mypolls 0 +thr d2d78580 , status 1 +connecting thr d2d78580 , thread 4049 , mypolls 0 +myconn 0 connecting thr d2d78580 , thread 4049 , mypolls 0 +thr d2d78700 , status 1 +connecting thr d2d78700 , thread 4050 , mypolls 0 +myconn 0 connecting thr d2d78700 , thread 4050 , mypolls 0 +thr d2d78880 , status 1 +connecting thr d2d78880 , thread 4051 , mypolls 0 +myconn 0 connecting thr d2d78880 , thread 4051 , mypolls 0 +thr d2d78a00 , status 1 +connecting thr d2d78a00 , thread 4052 , mypolls 0 +myconn 0 connecting thr d2d78a00 , thread 4052 , mypolls 0 +thr d2d78b80 , status 1 +connecting thr d2d78b80 , thread 4053 , mypolls 0 +myconn 0 connecting thr d2d78b80 , thread 4053 , mypolls 0 +thr d2d78d00 , status 1 +connecting thr d2d78d00 , thread 4054 , mypolls 0 +myconn 0 connecting thr d2d78d00 , thread 4054 , mypolls 0 +thr d2d78e80 , status 1 +connecting thr d2d78e80 , thread 4055 , mypolls 0 +myconn 0 connecting thr d2d78e80 , thread 4055 , mypolls 0 +thr d2bda000 , status 1 +connecting thr d2bda000 , thread 4056 , mypolls 0 +myconn 0 connecting thr d2bda000 , thread 4056 , mypolls 0 +thr d2bda180 , status 1 +connecting thr d2bda180 , thread 4057 , mypolls 0 +myconn 0 connecting thr d2bda180 , thread 4057 , mypolls 0 +thr d2bda300 , status 1 +connecting thr d2bda300 , thread 4058 , mypolls 0 +myconn 0 connecting thr d2bda300 , thread 4058 , mypolls 0 +thr d2bda480 , status 1 +connecting thr d2bda480 , thread 4059 , mypolls 0 +myconn 0 connecting thr d2bda480 , thread 4059 , mypolls 0 +thr d2bda600 , status 1 +connecting thr d2bda600 , thread 4060 , mypolls 0 +myconn 0 connecting thr d2bda600 , thread 4060 , mypolls 0 +thr d2bda780 , status 1 +connecting thr d2bda780 , thread 4061 , mypolls 0 +myconn 0 connecting thr d2bda780 , thread 4061 , mypolls 0 +thr d2bda900 , status 1 +connecting thr d2bda900 , thread 4062 , mypolls 0 +myconn 0 connecting thr d2bda900 , thread 4062 , mypolls 0 +thr d2bdaa80 , status 1 +connecting thr d2bdaa80 , thread 4063 , mypolls 0 +myconn 0 connecting thr d2bdaa80 , thread 4063 , mypolls 0 +thr d2bdac00 , status 1 +connecting thr d2bdac00 , thread 4064 , mypolls 0 +myconn 0 connecting thr d2bdac00 , thread 4064 , mypolls 0 +thr d2bdad80 , status 1 +connecting thr d2bdad80 , thread 4065 , mypolls 0 +myconn 0 connecting thr d2bdad80 , thread 4065 , mypolls 0 +thr d2bdaf00 , status 1 +connecting thr d2bdaf00 , thread 4066 , mypolls 0 +myconn 0 connecting thr d2bdaf00 , thread 4066 , mypolls 0 +thr d2bdb080 , status 1 +connecting thr d2bdb080 , thread 4067 , mypolls 0 +myconn 0 connecting thr d2bdb080 , thread 4067 , mypolls 0 +thr d2bdb200 , status 1 +connecting thr d2bdb200 , thread 4068 , mypolls 0 +myconn 0 connecting thr d2bdb200 , thread 4068 , mypolls 0 +thr d2bdb380 , status 1 +connecting thr d2bdb380 , thread 4069 , mypolls 0 +myconn 0 connecting thr d2bdb380 , thread 4069 , mypolls 0 +thr d2bdb500 , status 1 +connecting thr d2bdb500 , thread 4070 , mypolls 0 +myconn 0 connecting thr d2bdb500 , thread 4070 , mypolls 0 +thr d2bdb680 , status 1 +connecting thr d2bdb680 , thread 4071 , mypolls 0 +myconn 0 connecting thr d2bdb680 , thread 4071 , mypolls 0 +thr d2bdb800 , status 1 +connecting thr d2bdb800 , thread 4072 , mypolls 0 +myconn 0 connecting thr d2bdb800 , thread 4072 , mypolls 0 +thr d2bdb980 , status 1 +connecting thr d2bdb980 , thread 4073 , mypolls 0 +myconn 0 connecting thr d2bdb980 , thread 4073 , mypolls 0 +thr d2bdbb00 , status 1 +connecting thr d2bdbb00 , thread 4074 , mypolls 0 +myconn 0 connecting thr d2bdbb00 , thread 4074 , mypolls 0 +thr d2bdbc80 , status 1 +connecting thr d2bdbc80 , thread 4075 , mypolls 0 +myconn 0 connecting thr d2bdbc80 , thread 4075 , mypolls 0 +thr d2bdbe00 , status 1 +connecting thr d2bdbe00 , thread 4076 , mypolls 0 +myconn 0 connecting thr d2bdbe00 , thread 4076 , mypolls 0 +thr d2bdbf80 , status 1 +connecting thr d2bdbf80 , thread 4077 , mypolls 0 +myconn 0 connecting thr d2bdbf80 , thread 4077 , mypolls 0 +thr d2bdc100 , status 1 +connecting thr d2bdc100 , thread 4078 , mypolls 0 +myconn 0 connecting thr d2bdc100 , thread 4078 , mypolls 0 +thr d2bdc280 , status 1 +connecting thr d2bdc280 , thread 4079 , mypolls 0 +myconn 0 connecting thr d2bdc280 , thread 4079 , mypolls 0 +thr d2bdc400 , status 1 +connecting thr d2bdc400 , thread 4080 , mypolls 0 +myconn 0 connecting thr d2bdc400 , thread 4080 , mypolls 0 +thr d2bdc580 , status 1 +connecting thr d2bdc580 , thread 4081 , mypolls 0 +myconn 0 connecting thr d2bdc580 , thread 4081 , mypolls 0 +thr d2bdc700 , status 1 +connecting thr d2bdc700 , thread 4082 , mypolls 0 +myconn 0 connecting thr d2bdc700 , thread 4082 , mypolls 0 +thr d2bdc880 , status 1 +connecting thr d2bdc880 , thread 4083 , mypolls 0 +myconn 0 connecting thr d2bdc880 , thread 4083 , mypolls 0 +thr d2bdca00 , status 1 +connecting thr d2bdca00 , thread 4084 , mypolls 0 +myconn 0 connecting thr d2bdca00 , thread 4084 , mypolls 0 +thr d2bdcb80 , status 1 +connecting thr d2bdcb80 , thread 4085 , mypolls 0 +myconn 0 connecting thr d2bdcb80 , thread 4085 , mypolls 0 +thr d2bdcd00 , status 1 +connecting thr d2bdcd00 , thread 4086 , mypolls 0 +myconn 0 connecting thr d2bdcd00 , thread 4086 , mypolls 0 +thr d2bdce80 , status 1 +connecting thr d2bdce80 , thread 4087 , mypolls 0 +myconn 0 connecting thr d2bdce80 , thread 4087 , mypolls 0 +thr d29f9000 , status 1 +connecting thr d29f9000 , thread 4088 , mypolls 0 +myconn 0 connecting thr d29f9000 , thread 4088 , mypolls 0 +thr d29f9180 , status 1 +connecting thr d29f9180 , thread 4089 , mypolls 0 +myconn 0 connecting thr d29f9180 , thread 4089 , mypolls 0 +thr d29f9300 , status 1 +connecting thr d29f9300 , thread 4090 , mypolls 0 +myconn 0 connecting thr d29f9300 , thread 4090 , mypolls 0 +thr d29f9480 , status 1 +connecting thr d29f9480 , thread 4091 , mypolls 0 +myconn 0 connecting thr d29f9480 , thread 4091 , mypolls 0 +thr d29f9600 , status 1 +connecting thr d29f9600 , thread 4092 , mypolls 0 +myconn 0 connecting thr d29f9600 , thread 4092 , mypolls 0 +thr d29f9780 , status 1 +connecting thr d29f9780 , thread 4093 , mypolls 0 +myconn 0 connecting thr d29f9780 , thread 4093 , mypolls 0 +thr d29f9900 , status 1 +connecting thr d29f9900 , thread 4094 , mypolls 0 +myconn 0 connecting thr d29f9900 , thread 4094 , mypolls 0 +thr d29f9a80 , status 1 +connecting thr d29f9a80 , thread 4095 , mypolls 0 +myconn 0 connecting thr d29f9a80 , thread 4095 , mypolls 0 +thr d29f9c00 , status 1 +connecting thr d29f9c00 , thread 4096 , mypolls 0 +myconn 0 connecting thr d29f9c00 , thread 4096 , mypolls 0 +thr d29f9d80 , status 1 +connecting thr d29f9d80 , thread 4097 , mypolls 0 +myconn 0 connecting thr d29f9d80 , thread 4097 , mypolls 0 +thr d29f9f00 , status 1 +connecting thr d29f9f00 , thread 4098 , mypolls 0 +myconn 0 connecting thr d29f9f00 , thread 4098 , mypolls 0 +thr d29fa080 , status 1 +connecting thr d29fa080 , thread 4099 , mypolls 0 +myconn 0 connecting thr d29fa080 , thread 4099 , mypolls 0 +thr d29fa200 , status 1 +connecting thr d29fa200 , thread 4100 , mypolls 0 +myconn 0 connecting thr d29fa200 , thread 4100 , mypolls 0 +thr d29fa380 , status 1 +connecting thr d29fa380 , thread 4101 , mypolls 0 +myconn 0 connecting thr d29fa380 , thread 4101 , mypolls 0 +thr d29fa500 , status 1 +connecting thr d29fa500 , thread 4102 , mypolls 0 +myconn 0 connecting thr d29fa500 , thread 4102 , mypolls 0 +thr d29fa680 , status 1 +connecting thr d29fa680 , thread 4103 , mypolls 0 +myconn 0 connecting thr d29fa680 , thread 4103 , mypolls 0 +thr d29fa800 , status 1 +connecting thr d29fa800 , thread 4104 , mypolls 0 +myconn 0 connecting thr d29fa800 , thread 4104 , mypolls 0 +thr d29fa980 , status 1 +connecting thr d29fa980 , thread 4105 , mypolls 0 +myconn 0 connecting thr d29fa980 , thread 4105 , mypolls 0 +thr d29fab00 , status 1 +connecting thr d29fab00 , thread 4106 , mypolls 0 +myconn 0 connecting thr d29fab00 , thread 4106 , mypolls 0 +thr d29fac80 , status 1 +connecting thr d29fac80 , thread 4107 , mypolls 0 +myconn 0 connecting thr d29fac80 , thread 4107 , mypolls 0 +thr d29fae00 , status 1 +connecting thr d29fae00 , thread 4108 , mypolls 0 +myconn 0 connecting thr d29fae00 , thread 4108 , mypolls 0 +thr d29faf80 , status 1 +connecting thr d29faf80 , thread 4109 , mypolls 0 +myconn 0 connecting thr d29faf80 , thread 4109 , mypolls 0 +thr d29fb100 , status 1 +connecting thr d29fb100 , thread 4110 , mypolls 0 +myconn 0 connecting thr d29fb100 , thread 4110 , mypolls 0 +thr d29fb280 , status 1 +connecting thr d29fb280 , thread 4111 , mypolls 0 +myconn 0 connecting thr d29fb280 , thread 4111 , mypolls 0 +thr d29fb400 , status 1 +connecting thr d29fb400 , thread 4112 , mypolls 0 +myconn 0 connecting thr d29fb400 , thread 4112 , mypolls 0 +thr d29fb580 , status 1 +connecting thr d29fb580 , thread 4113 , mypolls 0 +myconn 0 connecting thr d29fb580 , thread 4113 , mypolls 0 +thr d29fb700 , status 1 +connecting thr d29fb700 , thread 4114 , mypolls 0 +myconn 0 connecting thr d29fb700 , thread 4114 , mypolls 0 +thr d29fb880 , status 1 +connecting thr d29fb880 , thread 4115 , mypolls 0 +myconn 0 connecting thr d29fb880 , thread 4115 , mypolls 0 +thr d29fba00 , status 1 +connecting thr d29fba00 , thread 4116 , mypolls 0 +myconn 0 connecting thr d29fba00 , thread 4116 , mypolls 0 +thr d29fbb80 , status 1 +connecting thr d29fbb80 , thread 4117 , mypolls 0 +myconn 0 connecting thr d29fbb80 , thread 4117 , mypolls 0 +thr d29fbd00 , status 1 +connecting thr d29fbd00 , thread 4118 , mypolls 0 +myconn 0 connecting thr d29fbd00 , thread 4118 , mypolls 0 +thr d29fbe80 , status 1 +connecting thr d29fbe80 , thread 4119 , mypolls 0 +myconn 0 connecting thr d29fbe80 , thread 4119 , mypolls 0 +thr d24af000 , status 1 +connecting thr d24af000 , thread 4120 , mypolls 0 +myconn 0 connecting thr d24af000 , thread 4120 , mypolls 0 +thr d24af180 , status 1 +connecting thr d24af180 , thread 4121 , mypolls 0 +myconn 0 connecting thr d24af180 , thread 4121 , mypolls 0 +thr d24af300 , status 1 +connecting thr d24af300 , thread 4122 , mypolls 0 +myconn 0 connecting thr d24af300 , thread 4122 , mypolls 0 +thr d24af480 , status 1 +connecting thr d24af480 , thread 4123 , mypolls 0 +myconn 0 connecting thr d24af480 , thread 4123 , mypolls 0 +thr d24af600 , status 1 +connecting thr d24af600 , thread 4124 , mypolls 0 +myconn 0 connecting thr d24af600 , thread 4124 , mypolls 0 +thr d24af780 , status 1 +connecting thr d24af780 , thread 4125 , mypolls 0 +myconn 0 connecting thr d24af780 , thread 4125 , mypolls 0 +thr d24af900 , status 1 +connecting thr d24af900 , thread 4126 , mypolls 0 +myconn 0 connecting thr d24af900 , thread 4126 , mypolls 0 +thr d24afa80 , status 1 +connecting thr d24afa80 , thread 4127 , mypolls 0 +myconn 0 connecting thr d24afa80 , thread 4127 , mypolls 0 +thr d24afc00 , status 1 +connecting thr d24afc00 , thread 4128 , mypolls 0 +myconn 0 connecting thr d24afc00 , thread 4128 , mypolls 0 +thr d24afd80 , status 1 +connecting thr d24afd80 , thread 4129 , mypolls 0 +myconn 0 connecting thr d24afd80 , thread 4129 , mypolls 0 +thr d24aff00 , status 1 +connecting thr d24aff00 , thread 4130 , mypolls 0 +myconn 0 connecting thr d24aff00 , thread 4130 , mypolls 0 +thr d24b0080 , status 1 +connecting thr d24b0080 , thread 4131 , mypolls 0 +myconn 0 connecting thr d24b0080 , thread 4131 , mypolls 0 +thr d24b0200 , status 1 +connecting thr d24b0200 , thread 4132 , mypolls 0 +myconn 0 connecting thr d24b0200 , thread 4132 , mypolls 0 +thr d24b0380 , status 1 +connecting thr d24b0380 , thread 4133 , mypolls 0 +myconn 0 connecting thr d24b0380 , thread 4133 , mypolls 0 +thr d24b0500 , status 1 +connecting thr d24b0500 , thread 4134 , mypolls 0 +myconn 0 connecting thr d24b0500 , thread 4134 , mypolls 0 +thr d24b0680 , status 1 +connecting thr d24b0680 , thread 4135 , mypolls 0 +myconn 0 connecting thr d24b0680 , thread 4135 , mypolls 0 +thr d24b0800 , status 1 +connecting thr d24b0800 , thread 4136 , mypolls 0 +myconn 0 connecting thr d24b0800 , thread 4136 , mypolls 0 +thr d24b0980 , status 1 +connecting thr d24b0980 , thread 4137 , mypolls 0 +myconn 0 connecting thr d24b0980 , thread 4137 , mypolls 0 +thr d24b0b00 , status 1 +connecting thr d24b0b00 , thread 4138 , mypolls 0 +myconn 0 connecting thr d24b0b00 , thread 4138 , mypolls 0 +thr d24b0c80 , status 1 +connecting thr d24b0c80 , thread 4139 , mypolls 0 +myconn 0 connecting thr d24b0c80 , thread 4139 , mypolls 0 +thr d24b0e00 , status 1 +connecting thr d24b0e00 , thread 4140 , mypolls 0 +myconn 0 connecting thr d24b0e00 , thread 4140 , mypolls 0 +thr d24b0f80 , status 1 +connecting thr d24b0f80 , thread 4141 , mypolls 0 +myconn 0 connecting thr d24b0f80 , thread 4141 , mypolls 0 +thr d24b1100 , status 1 +connecting thr d24b1100 , thread 4142 , mypolls 0 +myconn 0 connecting thr d24b1100 , thread 4142 , mypolls 0 +thr d24b1280 , status 1 +connecting thr d24b1280 , thread 4143 , mypolls 0 +myconn 0 connecting thr d24b1280 , thread 4143 , mypolls 0 +thr d24b1400 , status 1 +connecting thr d24b1400 , thread 4144 , mypolls 0 +myconn 0 connecting thr d24b1400 , thread 4144 , mypolls 0 +thr d24b1580 , status 1 +connecting thr d24b1580 , thread 4145 , mypolls 0 +myconn 0 connecting thr d24b1580 , thread 4145 , mypolls 0 +thr d24b1700 , status 1 +connecting thr d24b1700 , thread 4146 , mypolls 0 +myconn 0 connecting thr d24b1700 , thread 4146 , mypolls 0 +thr d24b1880 , status 1 +connecting thr d24b1880 , thread 4147 , mypolls 0 +myconn 0 connecting thr d24b1880 , thread 4147 , mypolls 0 +thr d24b1a00 , status 1 +connecting thr d24b1a00 , thread 4148 , mypolls 0 +myconn 0 connecting thr d24b1a00 , thread 4148 , mypolls 0 +thr d24b1b80 , status 1 +connecting thr d24b1b80 , thread 4149 , mypolls 0 +myconn 0 connecting thr d24b1b80 , thread 4149 , mypolls 0 +thr d24b1d00 , status 1 +connecting thr d24b1d00 , thread 4150 , mypolls 0 +myconn 0 connecting thr d24b1d00 , thread 4150 , mypolls 0 +thr d24b1e80 , status 1 +connecting thr d24b1e80 , thread 4151 , mypolls 0 +myconn 0 connecting thr d24b1e80 , thread 4151 , mypolls 0 +thr d231a000 , status 1 +connecting thr d231a000 , thread 4152 , mypolls 0 +myconn 0 connecting thr d231a000 , thread 4152 , mypolls 0 +thr d231a180 , status 1 +connecting thr d231a180 , thread 4153 , mypolls 0 +myconn 0 connecting thr d231a180 , thread 4153 , mypolls 0 +thr d231a300 , status 1 +connecting thr d231a300 , thread 4154 , mypolls 0 +myconn 0 connecting thr d231a300 , thread 4154 , mypolls 0 +thr d231a480 , status 1 +connecting thr d231a480 , thread 4155 , mypolls 0 +myconn 0 connecting thr d231a480 , thread 4155 , mypolls 0 +thr d231a600 , status 1 +connecting thr d231a600 , thread 4156 , mypolls 0 +myconn 0 connecting thr d231a600 , thread 4156 , mypolls 0 +thr d231a780 , status 1 +connecting thr d231a780 , thread 4157 , mypolls 0 +myconn 0 connecting thr d231a780 , thread 4157 , mypolls 0 +thr d231a900 , status 1 +connecting thr d231a900 , thread 4158 , mypolls 0 +myconn 0 connecting thr d231a900 , thread 4158 , mypolls 0 +thr d231aa80 , status 1 +connecting thr d231aa80 , thread 4159 , mypolls 0 +myconn 0 connecting thr d231aa80 , thread 4159 , mypolls 0 +thr d231ac00 , status 1 +connecting thr d231ac00 , thread 4160 , mypolls 0 +myconn 0 connecting thr d231ac00 , thread 4160 , mypolls 0 +thr d231ad80 , status 1 +connecting thr d231ad80 , thread 4161 , mypolls 0 +myconn 0 connecting thr d231ad80 , thread 4161 , mypolls 0 +thr d231af00 , status 1 +connecting thr d231af00 , thread 4162 , mypolls 0 +myconn 0 connecting thr d231af00 , thread 4162 , mypolls 0 +thr d231b080 , status 1 +connecting thr d231b080 , thread 4163 , mypolls 0 +myconn 0 connecting thr d231b080 , thread 4163 , mypolls 0 +thr d231b200 , status 1 +connecting thr d231b200 , thread 4164 , mypolls 0 +myconn 0 connecting thr d231b200 , thread 4164 , mypolls 0 +thr d231b380 , status 1 +connecting thr d231b380 , thread 4165 , mypolls 0 +myconn 0 connecting thr d231b380 , thread 4165 , mypolls 0 +thr d231b500 , status 1 +connecting thr d231b500 , thread 4166 , mypolls 0 +myconn 0 connecting thr d231b500 , thread 4166 , mypolls 0 +thr d231b680 , status 1 +connecting thr d231b680 , thread 4167 , mypolls 0 +myconn 0 connecting thr d231b680 , thread 4167 , mypolls 0 +thr d231b800 , status 1 +connecting thr d231b800 , thread 4168 , mypolls 0 +myconn 0 connecting thr d231b800 , thread 4168 , mypolls 0 +thr d231b980 , status 1 +connecting thr d231b980 , thread 4169 , mypolls 0 +myconn 0 connecting thr d231b980 , thread 4169 , mypolls 0 +thr d231bb00 , status 1 +connecting thr d231bb00 , thread 4170 , mypolls 0 +myconn 0 connecting thr d231bb00 , thread 4170 , mypolls 0 +thr d231bc80 , status 1 +connecting thr d231bc80 , thread 4171 , mypolls 0 +myconn 0 connecting thr d231bc80 , thread 4171 , mypolls 0 +thr d231be00 , status 1 +connecting thr d231be00 , thread 4172 , mypolls 0 +myconn 0 connecting thr d231be00 , thread 4172 , mypolls 0 +thr d231bf80 , status 1 +connecting thr d231bf80 , thread 4173 , mypolls 0 +myconn 0 connecting thr d231bf80 , thread 4173 , mypolls 0 +thr d231c100 , status 1 +connecting thr d231c100 , thread 4174 , mypolls 0 +myconn 0 connecting thr d231c100 , thread 4174 , mypolls 0 +thr d231c280 , status 1 +connecting thr d231c280 , thread 4175 , mypolls 0 +myconn 0 connecting thr d231c280 , thread 4175 , mypolls 0 +thr d231c400 , status 1 +connecting thr d231c400 , thread 4176 , mypolls 0 +myconn 0 connecting thr d231c400 , thread 4176 , mypolls 0 +thr d231c580 , status 1 +connecting thr d231c580 , thread 4177 , mypolls 0 +myconn 0 connecting thr d231c580 , thread 4177 , mypolls 0 +thr d231c700 , status 1 +connecting thr d231c700 , thread 4178 , mypolls 0 +myconn 0 connecting thr d231c700 , thread 4178 , mypolls 0 +thr d231c880 , status 1 +connecting thr d231c880 , thread 4179 , mypolls 0 +myconn 0 connecting thr d231c880 , thread 4179 , mypolls 0 +thr d231ca00 , status 1 +connecting thr d231ca00 , thread 4180 , mypolls 0 +myconn 0 connecting thr d231ca00 , thread 4180 , mypolls 0 +thr d231cb80 , status 1 +connecting thr d231cb80 , thread 4181 , mypolls 0 +myconn 0 connecting thr d231cb80 , thread 4181 , mypolls 0 +thr d231cd00 , status 1 +connecting thr d231cd00 , thread 4182 , mypolls 0 +myconn 0 connecting thr d231cd00 , thread 4182 , mypolls 0 +thr d231ce80 , status 1 +connecting thr d231ce80 , thread 4183 , mypolls 0 +myconn 0 connecting thr d231ce80 , thread 4183 , mypolls 0 +thr d217b000 , status 1 +connecting thr d217b000 , thread 4184 , mypolls 0 +myconn 0 connecting thr d217b000 , thread 4184 , mypolls 0 +thr d217b180 , status 1 +connecting thr d217b180 , thread 4185 , mypolls 0 +myconn 0 connecting thr d217b180 , thread 4185 , mypolls 0 +thr d217b300 , status 1 +connecting thr d217b300 , thread 4186 , mypolls 0 +myconn 0 connecting thr d217b300 , thread 4186 , mypolls 0 +thr d217b480 , status 1 +connecting thr d217b480 , thread 4187 , mypolls 0 +myconn 0 connecting thr d217b480 , thread 4187 , mypolls 0 +thr d217b600 , status 1 +connecting thr d217b600 , thread 4188 , mypolls 0 +myconn 0 connecting thr d217b600 , thread 4188 , mypolls 0 +thr d217b780 , status 1 +connecting thr d217b780 , thread 4189 , mypolls 0 +myconn 0 connecting thr d217b780 , thread 4189 , mypolls 0 +thr d217b900 , status 1 +connecting thr d217b900 , thread 4190 , mypolls 0 +myconn 0 connecting thr d217b900 , thread 4190 , mypolls 0 +thr d217ba80 , status 1 +connecting thr d217ba80 , thread 4191 , mypolls 0 +myconn 0 connecting thr d217ba80 , thread 4191 , mypolls 0 +thr d217bc00 , status 1 +connecting thr d217bc00 , thread 4192 , mypolls 0 +myconn 0 connecting thr d217bc00 , thread 4192 , mypolls 0 +thr d217bd80 , status 1 +connecting thr d217bd80 , thread 4193 , mypolls 0 +myconn 0 connecting thr d217bd80 , thread 4193 , mypolls 0 +thr d217bf00 , status 1 +connecting thr d217bf00 , thread 4194 , mypolls 0 +myconn 0 connecting thr d217bf00 , thread 4194 , mypolls 0 +thr d217c080 , status 1 +connecting thr d217c080 , thread 4195 , mypolls 0 +myconn 0 connecting thr d217c080 , thread 4195 , mypolls 0 +thr d217c200 , status 1 +connecting thr d217c200 , thread 4196 , mypolls 0 +myconn 0 connecting thr d217c200 , thread 4196 , mypolls 0 +thr d217c380 , status 1 +connecting thr d217c380 , thread 4197 , mypolls 0 +myconn 0 connecting thr d217c380 , thread 4197 , mypolls 0 +thr d217c500 , status 1 +connecting thr d217c500 , thread 4198 , mypolls 0 +myconn 0 connecting thr d217c500 , thread 4198 , mypolls 0 +thr d217c680 , status 1 +connecting thr d217c680 , thread 4199 , mypolls 0 +myconn 0 connecting thr d217c680 , thread 4199 , mypolls 0 +thr d217c800 , status 1 +connecting thr d217c800 , thread 4200 , mypolls 0 +myconn 0 connecting thr d217c800 , thread 4200 , mypolls 0 +thr d217c980 , status 1 +connecting thr d217c980 , thread 4201 , mypolls 0 +myconn 0 connecting thr d217c980 , thread 4201 , mypolls 0 +thr d217cb00 , status 1 +connecting thr d217cb00 , thread 4202 , mypolls 0 +myconn 0 connecting thr d217cb00 , thread 4202 , mypolls 0 +thr d217cc80 , status 1 +connecting thr d217cc80 , thread 4203 , mypolls 0 +myconn 0 connecting thr d217cc80 , thread 4203 , mypolls 0 +thr d217ce00 , status 1 +connecting thr d217ce00 , thread 4204 , mypolls 0 +myconn 0 connecting thr d217ce00 , thread 4204 , mypolls 0 +thr d217cf80 , status 1 +connecting thr d217cf80 , thread 4205 , mypolls 0 +myconn 0 connecting thr d217cf80 , thread 4205 , mypolls 0 +thr d217d100 , status 1 +connecting thr d217d100 , thread 4206 , mypolls 0 +myconn 0 connecting thr d217d100 , thread 4206 , mypolls 0 +thr d217d280 , status 1 +connecting thr d217d280 , thread 4207 , mypolls 0 +myconn 0 connecting thr d217d280 , thread 4207 , mypolls 0 +thr d217d400 , status 1 +connecting thr d217d400 , thread 4208 , mypolls 0 +myconn 0 connecting thr d217d400 , thread 4208 , mypolls 0 +thr d217d580 , status 1 +connecting thr d217d580 , thread 4209 , mypolls 0 +myconn 0 connecting thr d217d580 , thread 4209 , mypolls 0 +thr d217d700 , status 1 +connecting thr d217d700 , thread 4210 , mypolls 0 +myconn 0 connecting thr d217d700 , thread 4210 , mypolls 0 +thr d217d880 , status 1 +connecting thr d217d880 , thread 4211 , mypolls 0 +myconn 0 connecting thr d217d880 , thread 4211 , mypolls 0 +thr d217da00 , status 1 +connecting thr d217da00 , thread 4212 , mypolls 0 +myconn 0 connecting thr d217da00 , thread 4212 , mypolls 0 +thr d217db80 , status 1 +connecting thr d217db80 , thread 4213 , mypolls 0 +myconn 0 connecting thr d217db80 , thread 4213 , mypolls 0 +thr d217dd00 , status 1 +connecting thr d217dd00 , thread 4214 , mypolls 0 +myconn 0 connecting thr d217dd00 , thread 4214 , mypolls 0 +thr d217de80 , status 1 +connecting thr d217de80 , thread 4215 , mypolls 0 +myconn 0 connecting thr d217de80 , thread 4215 , mypolls 0 +thr d1fdc000 , status 1 +connecting thr d1fdc000 , thread 4216 , mypolls 0 +myconn 0 connecting thr d1fdc000 , thread 4216 , mypolls 0 +thr d1fdc180 , status 1 +connecting thr d1fdc180 , thread 4217 , mypolls 0 +myconn 0 connecting thr d1fdc180 , thread 4217 , mypolls 0 +thr d1fdc300 , status 1 +connecting thr d1fdc300 , thread 4218 , mypolls 0 +myconn 0 connecting thr d1fdc300 , thread 4218 , mypolls 0 +thr d1fdc480 , status 1 +connecting thr d1fdc480 , thread 4219 , mypolls 0 +myconn 0 connecting thr d1fdc480 , thread 4219 , mypolls 0 +thr d1fdc600 , status 1 +connecting thr d1fdc600 , thread 4220 , mypolls 0 +myconn 0 connecting thr d1fdc600 , thread 4220 , mypolls 0 +thr d1fdc780 , status 1 +connecting thr d1fdc780 , thread 4221 , mypolls 0 +myconn 0 connecting thr d1fdc780 , thread 4221 , mypolls 0 +thr d1fdc900 , status 1 +connecting thr d1fdc900 , thread 4222 , mypolls 0 +myconn 0 connecting thr d1fdc900 , thread 4222 , mypolls 0 +thr d1fdca80 , status 1 +connecting thr d1fdca80 , thread 4223 , mypolls 0 +myconn 0 connecting thr d1fdca80 , thread 4223 , mypolls 0 +thr d1fdcc00 , status 1 +connecting thr d1fdcc00 , thread 4224 , mypolls 0 +myconn 0 connecting thr d1fdcc00 , thread 4224 , mypolls 0 +thr d1fdcd80 , status 1 +connecting thr d1fdcd80 , thread 4225 , mypolls 0 +myconn 0 connecting thr d1fdcd80 , thread 4225 , mypolls 0 +thr d1fdcf00 , status 1 +connecting thr d1fdcf00 , thread 4226 , mypolls 0 +myconn 0 connecting thr d1fdcf00 , thread 4226 , mypolls 0 +thr d1fdd080 , status 1 +connecting thr d1fdd080 , thread 4227 , mypolls 0 +myconn 0 connecting thr d1fdd080 , thread 4227 , mypolls 0 +thr d1fdd200 , status 1 +connecting thr d1fdd200 , thread 4228 , mypolls 0 +myconn 0 connecting thr d1fdd200 , thread 4228 , mypolls 0 +thr d1fdd380 , status 1 +connecting thr d1fdd380 , thread 4229 , mypolls 0 +myconn 0 connecting thr d1fdd380 , thread 4229 , mypolls 0 +thr d1fdd500 , status 1 +connecting thr d1fdd500 , thread 4230 , mypolls 0 +myconn 0 connecting thr d1fdd500 , thread 4230 , mypolls 0 +thr d1fdd680 , status 1 +connecting thr d1fdd680 , thread 4231 , mypolls 0 +myconn 0 connecting thr d1fdd680 , thread 4231 , mypolls 0 +thr d1fdd800 , status 1 +connecting thr d1fdd800 , thread 4232 , mypolls 0 +myconn 0 connecting thr d1fdd800 , thread 4232 , mypolls 0 +thr d1fdd980 , status 1 +connecting thr d1fdd980 , thread 4233 , mypolls 0 +myconn 0 connecting thr d1fdd980 , thread 4233 , mypolls 0 +thr d1fddb00 , status 1 +connecting thr d1fddb00 , thread 4234 , mypolls 0 +myconn 0 connecting thr d1fddb00 , thread 4234 , mypolls 0 +thr d1fddc80 , status 1 +connecting thr d1fddc80 , thread 4235 , mypolls 0 +myconn 0 connecting thr d1fddc80 , thread 4235 , mypolls 0 +thr d1fdde00 , status 1 +connecting thr d1fdde00 , thread 4236 , mypolls 0 +myconn 0 connecting thr d1fdde00 , thread 4236 , mypolls 0 +thr d1fddf80 , status 1 +connecting thr d1fddf80 , thread 4237 , mypolls 0 +myconn 0 connecting thr d1fddf80 , thread 4237 , mypolls 0 +thr d1fde100 , status 1 +connecting thr d1fde100 , thread 4238 , mypolls 0 +myconn 0 connecting thr d1fde100 , thread 4238 , mypolls 0 +thr d1fde280 , status 1 +connecting thr d1fde280 , thread 4239 , mypolls 0 +myconn 0 connecting thr d1fde280 , thread 4239 , mypolls 0 +thr d1fde400 , status 1 +connecting thr d1fde400 , thread 4240 , mypolls 0 +myconn 0 connecting thr d1fde400 , thread 4240 , mypolls 0 +thr d1fde580 , status 1 +connecting thr d1fde580 , thread 4241 , mypolls 0 +myconn 0 connecting thr d1fde580 , thread 4241 , mypolls 0 +thr d1fde700 , status 1 +connecting thr d1fde700 , thread 4242 , mypolls 0 +myconn 0 connecting thr d1fde700 , thread 4242 , mypolls 0 +thr d1fde880 , status 1 +connecting thr d1fde880 , thread 4243 , mypolls 0 +myconn 0 connecting thr d1fde880 , thread 4243 , mypolls 0 +thr d1fdea00 , status 1 +connecting thr d1fdea00 , thread 4244 , mypolls 0 +myconn 0 connecting thr d1fdea00 , thread 4244 , mypolls 0 +thr d1fdeb80 , status 1 +connecting thr d1fdeb80 , thread 4245 , mypolls 0 +myconn 0 connecting thr d1fdeb80 , thread 4245 , mypolls 0 +thr d1fded00 , status 1 +connecting thr d1fded00 , thread 4246 , mypolls 0 +myconn 0 connecting thr d1fded00 , thread 4246 , mypolls 0 +thr d1fdee80 , status 1 +connecting thr d1fdee80 , thread 4247 , mypolls 0 +myconn 0 connecting thr d1fdee80 , thread 4247 , mypolls 0 +thr d1dfc000 , status 1 +connecting thr d1dfc000 , thread 4248 , mypolls 0 +myconn 0 connecting thr d1dfc000 , thread 4248 , mypolls 0 +thr d1dfc180 , status 1 +connecting thr d1dfc180 , thread 4249 , mypolls 0 +myconn 0 connecting thr d1dfc180 , thread 4249 , mypolls 0 +thr d1dfc300 , status 1 +connecting thr d1dfc300 , thread 4250 , mypolls 0 +myconn 0 connecting thr d1dfc300 , thread 4250 , mypolls 0 +thr d1dfc480 , status 1 +connecting thr d1dfc480 , thread 4251 , mypolls 0 +myconn 0 connecting thr d1dfc480 , thread 4251 , mypolls 0 +thr d1dfc600 , status 1 +connecting thr d1dfc600 , thread 4252 , mypolls 0 +myconn 0 connecting thr d1dfc600 , thread 4252 , mypolls 0 +thr d1dfc780 , status 1 +connecting thr d1dfc780 , thread 4253 , mypolls 0 +myconn 0 connecting thr d1dfc780 , thread 4253 , mypolls 0 +thr d1dfc900 , status 1 +connecting thr d1dfc900 , thread 4254 , mypolls 0 +myconn 0 connecting thr d1dfc900 , thread 4254 , mypolls 0 +thr d1dfca80 , status 1 +connecting thr d1dfca80 , thread 4255 , mypolls 0 +myconn 0 connecting thr d1dfca80 , thread 4255 , mypolls 0 +thr d1dfcc00 , status 1 +connecting thr d1dfcc00 , thread 4256 , mypolls 0 +myconn 0 connecting thr d1dfcc00 , thread 4256 , mypolls 0 +thr d1dfcd80 , status 1 +connecting thr d1dfcd80 , thread 4257 , mypolls 0 +myconn 0 connecting thr d1dfcd80 , thread 4257 , mypolls 0 +thr d1dfcf00 , status 1 +connecting thr d1dfcf00 , thread 4258 , mypolls 0 +myconn 0 connecting thr d1dfcf00 , thread 4258 , mypolls 0 +thr d1dfd080 , status 1 +connecting thr d1dfd080 , thread 4259 , mypolls 0 +myconn 0 connecting thr d1dfd080 , thread 4259 , mypolls 0 +thr d1dfd200 , status 1 +connecting thr d1dfd200 , thread 4260 , mypolls 0 +myconn 0 connecting thr d1dfd200 , thread 4260 , mypolls 0 +thr d1dfd380 , status 1 +connecting thr d1dfd380 , thread 4261 , mypolls 0 +myconn 0 connecting thr d1dfd380 , thread 4261 , mypolls 0 +thr d1dfd500 , status 1 +connecting thr d1dfd500 , thread 4262 , mypolls 0 +myconn 0 connecting thr d1dfd500 , thread 4262 , mypolls 0 +thr d1dfd680 , status 1 +connecting thr d1dfd680 , thread 4263 , mypolls 0 +myconn 0 connecting thr d1dfd680 , thread 4263 , mypolls 0 +thr d1dfd800 , status 1 +connecting thr d1dfd800 , thread 4264 , mypolls 0 +myconn 0 connecting thr d1dfd800 , thread 4264 , mypolls 0 +thr d1dfd980 , status 1 +connecting thr d1dfd980 , thread 4265 , mypolls 0 +myconn 0 connecting thr d1dfd980 , thread 4265 , mypolls 0 +thr d1dfdb00 , status 1 +connecting thr d1dfdb00 , thread 4266 , mypolls 0 +myconn 0 connecting thr d1dfdb00 , thread 4266 , mypolls 0 +thr d1dfdc80 , status 1 +connecting thr d1dfdc80 , thread 4267 , mypolls 0 +myconn 0 connecting thr d1dfdc80 , thread 4267 , mypolls 0 +thr d1dfde00 , status 1 +connecting thr d1dfde00 , thread 4268 , mypolls 0 +myconn 0 connecting thr d1dfde00 , thread 4268 , mypolls 0 +thr d1dfdf80 , status 1 +connecting thr d1dfdf80 , thread 4269 , mypolls 0 +myconn 0 connecting thr d1dfdf80 , thread 4269 , mypolls 0 +thr d1dfe100 , status 1 +connecting thr d1dfe100 , thread 4270 , mypolls 0 +myconn 0 connecting thr d1dfe100 , thread 4270 , mypolls 0 +thr d1dfe280 , status 1 +connecting thr d1dfe280 , thread 4271 , mypolls 0 +myconn 0 connecting thr d1dfe280 , thread 4271 , mypolls 0 +thr d1dfe400 , status 1 +connecting thr d1dfe400 , thread 4272 , mypolls 0 +myconn 0 connecting thr d1dfe400 , thread 4272 , mypolls 0 +thr d1dfe580 , status 1 +connecting thr d1dfe580 , thread 4273 , mypolls 0 +myconn 0 connecting thr d1dfe580 , thread 4273 , mypolls 0 +thr d1dfe700 , status 1 +connecting thr d1dfe700 , thread 4274 , mypolls 0 +myconn 0 connecting thr d1dfe700 , thread 4274 , mypolls 0 +thr d1dfe880 , status 1 +connecting thr d1dfe880 , thread 4275 , mypolls 0 +myconn 0 connecting thr d1dfe880 , thread 4275 , mypolls 0 +thr d1dfea00 , status 1 +connecting thr d1dfea00 , thread 4276 , mypolls 0 +myconn 0 connecting thr d1dfea00 , thread 4276 , mypolls 0 +thr d1dfeb80 , status 1 +connecting thr d1dfeb80 , thread 4277 , mypolls 0 +myconn 0 connecting thr d1dfeb80 , thread 4277 , mypolls 0 +thr d1dfed00 , status 1 +connecting thr d1dfed00 , thread 4278 , mypolls 0 +myconn 0 connecting thr d1dfed00 , thread 4278 , mypolls 0 +thr d1dfee80 , status 1 +connecting thr d1dfee80 , thread 4279 , mypolls 0 +myconn 0 connecting thr d1dfee80 , thread 4279 , mypolls 0 +thr d1bfd000 , status 1 +connecting thr d1bfd000 , thread 4280 , mypolls 0 +myconn 0 connecting thr d1bfd000 , thread 4280 , mypolls 0 +thr d1bfd180 , status 1 +connecting thr d1bfd180 , thread 4281 , mypolls 0 +myconn 0 connecting thr d1bfd180 , thread 4281 , mypolls 0 +thr d1bfd300 , status 1 +connecting thr d1bfd300 , thread 4282 , mypolls 0 +myconn 0 connecting thr d1bfd300 , thread 4282 , mypolls 0 +thr d1bfd480 , status 1 +connecting thr d1bfd480 , thread 4283 , mypolls 0 +myconn 0 connecting thr d1bfd480 , thread 4283 , mypolls 0 +thr d1bfd600 , status 1 +connecting thr d1bfd600 , thread 4284 , mypolls 0 +myconn 0 connecting thr d1bfd600 , thread 4284 , mypolls 0 +thr d1bfd780 , status 1 +connecting thr d1bfd780 , thread 4285 , mypolls 0 +myconn 0 connecting thr d1bfd780 , thread 4285 , mypolls 0 +thr d1bfd900 , status 1 +connecting thr d1bfd900 , thread 4286 , mypolls 0 +myconn 0 connecting thr d1bfd900 , thread 4286 , mypolls 0 +thr d1bfda80 , status 1 +connecting thr d1bfda80 , thread 4287 , mypolls 0 +myconn 0 connecting thr d1bfda80 , thread 4287 , mypolls 0 +thr d1bfdc00 , status 1 +connecting thr d1bfdc00 , thread 4288 , mypolls 0 +myconn 0 connecting thr d1bfdc00 , thread 4288 , mypolls 0 +thr d1bfdd80 , status 1 +connecting thr d1bfdd80 , thread 4289 , mypolls 0 +myconn 0 connecting thr d1bfdd80 , thread 4289 , mypolls 0 +thr d1bfdf00 , status 1 +connecting thr d1bfdf00 , thread 4290 , mypolls 0 +myconn 0 connecting thr d1bfdf00 , thread 4290 , mypolls 0 +thr d1bfe080 , status 1 +connecting thr d1bfe080 , thread 4291 , mypolls 0 +myconn 0 connecting thr d1bfe080 , thread 4291 , mypolls 0 +thr d1bfe200 , status 1 +connecting thr d1bfe200 , thread 4292 , mypolls 0 +myconn 0 connecting thr d1bfe200 , thread 4292 , mypolls 0 +thr d1bfe380 , status 1 +connecting thr d1bfe380 , thread 4293 , mypolls 0 +myconn 0 connecting thr d1bfe380 , thread 4293 , mypolls 0 +thr d1bfe500 , status 1 +connecting thr d1bfe500 , thread 4294 , mypolls 0 +myconn 0 connecting thr d1bfe500 , thread 4294 , mypolls 0 +thr d1bfe680 , status 1 +connecting thr d1bfe680 , thread 4295 , mypolls 0 +myconn 0 connecting thr d1bfe680 , thread 4295 , mypolls 0 +thr d1bfe800 , status 1 +connecting thr d1bfe800 , thread 4296 , mypolls 0 +myconn 0 connecting thr d1bfe800 , thread 4296 , mypolls 0 +thr d1bfe980 , status 1 +connecting thr d1bfe980 , thread 4297 , mypolls 0 +myconn 0 connecting thr d1bfe980 , thread 4297 , mypolls 0 +thr d1bfeb00 , status 1 +connecting thr d1bfeb00 , thread 4298 , mypolls 0 +myconn 0 connecting thr d1bfeb00 , thread 4298 , mypolls 0 +thr d1bfec80 , status 1 +connecting thr d1bfec80 , thread 4299 , mypolls 0 +myconn 0 connecting thr d1bfec80 , thread 4299 , mypolls 0 +thr d1bfee00 , status 1 +connecting thr d1bfee00 , thread 4300 , mypolls 0 +myconn 0 connecting thr d1bfee00 , thread 4300 , mypolls 0 +thr d1bfef80 , status 1 +connecting thr d1bfef80 , thread 4301 , mypolls 0 +myconn 0 connecting thr d1bfef80 , thread 4301 , mypolls 0 +thr d1bff100 , status 1 +connecting thr d1bff100 , thread 4302 , mypolls 0 +myconn 0 connecting thr d1bff100 , thread 4302 , mypolls 0 +thr d1bff280 , status 1 +connecting thr d1bff280 , thread 4303 , mypolls 0 +myconn 0 connecting thr d1bff280 , thread 4303 , mypolls 0 +thr d1bff400 , status 1 +connecting thr d1bff400 , thread 4304 , mypolls 0 +myconn 0 connecting thr d1bff400 , thread 4304 , mypolls 0 +thr d1bff580 , status 1 +connecting thr d1bff580 , thread 4305 , mypolls 0 +myconn 0 connecting thr d1bff580 , thread 4305 , mypolls 0 +thr d1bff700 , status 1 +connecting thr d1bff700 , thread 4306 , mypolls 0 +myconn 0 connecting thr d1bff700 , thread 4306 , mypolls 0 +thr d1bff880 , status 1 +connecting thr d1bff880 , thread 4307 , mypolls 0 +myconn 0 connecting thr d1bff880 , thread 4307 , mypolls 0 +thr d1bffa00 , status 1 +connecting thr d1bffa00 , thread 4308 , mypolls 0 +myconn 0 connecting thr d1bffa00 , thread 4308 , mypolls 0 +thr d1bffb80 , status 1 +connecting thr d1bffb80 , thread 4309 , mypolls 0 +myconn 0 connecting thr d1bffb80 , thread 4309 , mypolls 0 +thr d1bffd00 , status 1 +connecting thr d1bffd00 , thread 4310 , mypolls 0 +myconn 0 connecting thr d1bffd00 , thread 4310 , mypolls 0 +thr d1bffe80 , status 1 +connecting thr d1bffe80 , thread 4311 , mypolls 0 +myconn 0 connecting thr d1bffe80 , thread 4311 , mypolls 0 +thr d170e000 , status 1 +connecting thr d170e000 , thread 4312 , mypolls 0 +myconn 0 connecting thr d170e000 , thread 4312 , mypolls 0 +thr d170e180 , status 1 +connecting thr d170e180 , thread 4313 , mypolls 0 +myconn 0 connecting thr d170e180 , thread 4313 , mypolls 0 +thr d170e300 , status 1 +connecting thr d170e300 , thread 4314 , mypolls 0 +myconn 0 connecting thr d170e300 , thread 4314 , mypolls 0 +thr d170e480 , status 1 +connecting thr d170e480 , thread 4315 , mypolls 0 +myconn 0 connecting thr d170e480 , thread 4315 , mypolls 0 +thr d170e600 , status 1 +connecting thr d170e600 , thread 4316 , mypolls 0 +myconn 0 connecting thr d170e600 , thread 4316 , mypolls 0 +thr d170e780 , status 1 +connecting thr d170e780 , thread 4317 , mypolls 0 +myconn 0 connecting thr d170e780 , thread 4317 , mypolls 0 +thr d170e900 , status 1 +connecting thr d170e900 , thread 4318 , mypolls 0 +myconn 0 connecting thr d170e900 , thread 4318 , mypolls 0 +thr d170ea80 , status 1 +connecting thr d170ea80 , thread 4319 , mypolls 0 +myconn 0 connecting thr d170ea80 , thread 4319 , mypolls 0 +thr d170ec00 , status 1 +connecting thr d170ec00 , thread 4320 , mypolls 0 +myconn 0 connecting thr d170ec00 , thread 4320 , mypolls 0 +thr d170ed80 , status 1 +connecting thr d170ed80 , thread 4321 , mypolls 0 +myconn 0 connecting thr d170ed80 , thread 4321 , mypolls 0 +thr d170ef00 , status 1 +connecting thr d170ef00 , thread 4322 , mypolls 0 +myconn 0 connecting thr d170ef00 , thread 4322 , mypolls 0 +thr d170f080 , status 1 +connecting thr d170f080 , thread 4323 , mypolls 0 +myconn 0 connecting thr d170f080 , thread 4323 , mypolls 0 +thr d170f200 , status 1 +connecting thr d170f200 , thread 4324 , mypolls 0 +myconn 0 connecting thr d170f200 , thread 4324 , mypolls 0 +thr d170f380 , status 1 +connecting thr d170f380 , thread 4325 , mypolls 0 +myconn 0 connecting thr d170f380 , thread 4325 , mypolls 0 +thr d170f500 , status 1 +connecting thr d170f500 , thread 4326 , mypolls 0 +myconn 0 connecting thr d170f500 , thread 4326 , mypolls 0 +thr d170f680 , status 1 +connecting thr d170f680 , thread 4327 , mypolls 0 +myconn 0 connecting thr d170f680 , thread 4327 , mypolls 0 +thr d170f800 , status 1 +connecting thr d170f800 , thread 4328 , mypolls 0 +myconn 0 connecting thr d170f800 , thread 4328 , mypolls 0 +thr d170f980 , status 1 +connecting thr d170f980 , thread 4329 , mypolls 0 +myconn 0 connecting thr d170f980 , thread 4329 , mypolls 0 +thr d170fb00 , status 1 +connecting thr d170fb00 , thread 4330 , mypolls 0 +myconn 0 connecting thr d170fb00 , thread 4330 , mypolls 0 +thr d170fc80 , status 1 +connecting thr d170fc80 , thread 4331 , mypolls 0 +myconn 0 connecting thr d170fc80 , thread 4331 , mypolls 0 +thr d170fe00 , status 1 +connecting thr d170fe00 , thread 4332 , mypolls 0 +myconn 0 connecting thr d170fe00 , thread 4332 , mypolls 0 +thr d170ff80 , status 1 +connecting thr d170ff80 , thread 4333 , mypolls 0 +myconn 0 connecting thr d170ff80 , thread 4333 , mypolls 0 +thr d1710100 , status 1 +connecting thr d1710100 , thread 4334 , mypolls 0 +myconn 0 connecting thr d1710100 , thread 4334 , mypolls 0 +thr d1710280 , status 1 +connecting thr d1710280 , thread 4335 , mypolls 0 +myconn 0 connecting thr d1710280 , thread 4335 , mypolls 0 +thr d1710400 , status 1 +connecting thr d1710400 , thread 4336 , mypolls 0 +myconn 0 connecting thr d1710400 , thread 4336 , mypolls 0 +thr d1710580 , status 1 +connecting thr d1710580 , thread 4337 , mypolls 0 +myconn 0 connecting thr d1710580 , thread 4337 , mypolls 0 +thr d1710700 , status 1 +connecting thr d1710700 , thread 4338 , mypolls 0 +myconn 0 connecting thr d1710700 , thread 4338 , mypolls 0 +thr d1710880 , status 1 +connecting thr d1710880 , thread 4339 , mypolls 0 +myconn 0 connecting thr d1710880 , thread 4339 , mypolls 0 +thr d1710a00 , status 1 +connecting thr d1710a00 , thread 4340 , mypolls 0 +myconn 0 connecting thr d1710a00 , thread 4340 , mypolls 0 +thr d1710b80 , status 1 +connecting thr d1710b80 , thread 4341 , mypolls 0 +myconn 0 connecting thr d1710b80 , thread 4341 , mypolls 0 +thr d1710d00 , status 1 +connecting thr d1710d00 , thread 4342 , mypolls 0 +myconn 0 connecting thr d1710d00 , thread 4342 , mypolls 0 +thr d1710e80 , status 1 +connecting thr d1710e80 , thread 4343 , mypolls 0 +myconn 0 connecting thr d1710e80 , thread 4343 , mypolls 0 +thr d1573000 , status 1 +connecting thr d1573000 , thread 4344 , mypolls 0 +myconn 0 connecting thr d1573000 , thread 4344 , mypolls 0 +thr d1573180 , status 1 +connecting thr d1573180 , thread 4345 , mypolls 0 +myconn 0 connecting thr d1573180 , thread 4345 , mypolls 0 +thr d1573300 , status 1 +connecting thr d1573300 , thread 4346 , mypolls 0 +myconn 0 connecting thr d1573300 , thread 4346 , mypolls 0 +thr d1573480 , status 1 +connecting thr d1573480 , thread 4347 , mypolls 0 +myconn 0 connecting thr d1573480 , thread 4347 , mypolls 0 +thr d1573600 , status 1 +connecting thr d1573600 , thread 4348 , mypolls 0 +myconn 0 connecting thr d1573600 , thread 4348 , mypolls 0 +thr d1573780 , status 1 +connecting thr d1573780 , thread 4349 , mypolls 0 +myconn 0 connecting thr d1573780 , thread 4349 , mypolls 0 +thr d1573900 , status 1 +connecting thr d1573900 , thread 4350 , mypolls 0 +myconn 0 connecting thr d1573900 , thread 4350 , mypolls 0 +thr d1573a80 , status 1 +connecting thr d1573a80 , thread 4351 , mypolls 0 +myconn 0 connecting thr d1573a80 , thread 4351 , mypolls 0 +thr d1573c00 , status 1 +connecting thr d1573c00 , thread 4352 , mypolls 0 +myconn 0 connecting thr d1573c00 , thread 4352 , mypolls 0 +thr d1573d80 , status 1 +connecting thr d1573d80 , thread 4353 , mypolls 0 +myconn 0 connecting thr d1573d80 , thread 4353 , mypolls 0 +thr d1573f00 , status 1 +connecting thr d1573f00 , thread 4354 , mypolls 0 +myconn 0 connecting thr d1573f00 , thread 4354 , mypolls 0 +thr d1574080 , status 1 +connecting thr d1574080 , thread 4355 , mypolls 0 +myconn 0 connecting thr d1574080 , thread 4355 , mypolls 0 +thr d1574200 , status 1 +connecting thr d1574200 , thread 4356 , mypolls 0 +myconn 0 connecting thr d1574200 , thread 4356 , mypolls 0 +thr d1574380 , status 1 +connecting thr d1574380 , thread 4357 , mypolls 0 +myconn 0 connecting thr d1574380 , thread 4357 , mypolls 0 +thr d1574500 , status 1 +connecting thr d1574500 , thread 4358 , mypolls 0 +myconn 0 connecting thr d1574500 , thread 4358 , mypolls 0 +thr d1574680 , status 1 +connecting thr d1574680 , thread 4359 , mypolls 0 +myconn 0 connecting thr d1574680 , thread 4359 , mypolls 0 +thr d1574800 , status 1 +connecting thr d1574800 , thread 4360 , mypolls 0 +myconn 0 connecting thr d1574800 , thread 4360 , mypolls 0 +thr d1574980 , status 1 +connecting thr d1574980 , thread 4361 , mypolls 0 +myconn 0 connecting thr d1574980 , thread 4361 , mypolls 0 +thr d1574b00 , status 1 +connecting thr d1574b00 , thread 4362 , mypolls 0 +myconn 0 connecting thr d1574b00 , thread 4362 , mypolls 0 +thr d1574c80 , status 1 +connecting thr d1574c80 , thread 4363 , mypolls 0 +myconn 0 connecting thr d1574c80 , thread 4363 , mypolls 0 +thr d1574e00 , status 1 +connecting thr d1574e00 , thread 4364 , mypolls 0 +myconn 0 connecting thr d1574e00 , thread 4364 , mypolls 0 +thr d1574f80 , status 1 +connecting thr d1574f80 , thread 4365 , mypolls 0 +myconn 0 connecting thr d1574f80 , thread 4365 , mypolls 0 +thr d1575100 , status 1 +connecting thr d1575100 , thread 4366 , mypolls 0 +myconn 0 connecting thr d1575100 , thread 4366 , mypolls 0 +thr d1575280 , status 1 +connecting thr d1575280 , thread 4367 , mypolls 0 +myconn 0 connecting thr d1575280 , thread 4367 , mypolls 0 +thr d1575400 , status 1 +connecting thr d1575400 , thread 4368 , mypolls 0 +myconn 0 connecting thr d1575400 , thread 4368 , mypolls 0 +thr d1575580 , status 1 +connecting thr d1575580 , thread 4369 , mypolls 0 +myconn 0 connecting thr d1575580 , thread 4369 , mypolls 0 +thr d1575700 , status 1 +connecting thr d1575700 , thread 4370 , mypolls 0 +myconn 0 connecting thr d1575700 , thread 4370 , mypolls 0 +thr d1575880 , status 1 +connecting thr d1575880 , thread 4371 , mypolls 0 +myconn 0 connecting thr d1575880 , thread 4371 , mypolls 0 +thr d1575a00 , status 1 +connecting thr d1575a00 , thread 4372 , mypolls 0 +myconn 0 connecting thr d1575a00 , thread 4372 , mypolls 0 +thr d1575b80 , status 1 +connecting thr d1575b80 , thread 4373 , mypolls 0 +myconn 0 connecting thr d1575b80 , thread 4373 , mypolls 0 +thr d1575d00 , status 1 +connecting thr d1575d00 , thread 4374 , mypolls 0 +myconn 0 connecting thr d1575d00 , thread 4374 , mypolls 0 +thr d1575e80 , status 1 +connecting thr d1575e80 , thread 4375 , mypolls 0 +myconn 0 connecting thr d1575e80 , thread 4375 , mypolls 0 +thr d13d4000 , status 1 +connecting thr d13d4000 , thread 4376 , mypolls 0 +myconn 0 connecting thr d13d4000 , thread 4376 , mypolls 0 +thr d13d4180 , status 1 +connecting thr d13d4180 , thread 4377 , mypolls 0 +myconn 0 connecting thr d13d4180 , thread 4377 , mypolls 0 +thr d13d4300 , status 1 +connecting thr d13d4300 , thread 4378 , mypolls 0 +myconn 0 connecting thr d13d4300 , thread 4378 , mypolls 0 +thr d13d4480 , status 1 +connecting thr d13d4480 , thread 4379 , mypolls 0 +myconn 0 connecting thr d13d4480 , thread 4379 , mypolls 0 +thr d13d4600 , status 1 +connecting thr d13d4600 , thread 4380 , mypolls 0 +myconn 0 connecting thr d13d4600 , thread 4380 , mypolls 0 +thr d13d4780 , status 1 +connecting thr d13d4780 , thread 4381 , mypolls 0 +myconn 0 connecting thr d13d4780 , thread 4381 , mypolls 0 +thr d13d4900 , status 1 +connecting thr d13d4900 , thread 4382 , mypolls 0 +myconn 0 connecting thr d13d4900 , thread 4382 , mypolls 0 +thr d13d4a80 , status 1 +connecting thr d13d4a80 , thread 4383 , mypolls 0 +myconn 0 connecting thr d13d4a80 , thread 4383 , mypolls 0 +thr d13d4c00 , status 1 +connecting thr d13d4c00 , thread 4384 , mypolls 0 +myconn 0 connecting thr d13d4c00 , thread 4384 , mypolls 0 +thr d13d4d80 , status 1 +connecting thr d13d4d80 , thread 4385 , mypolls 0 +myconn 0 connecting thr d13d4d80 , thread 4385 , mypolls 0 +thr d13d4f00 , status 1 +connecting thr d13d4f00 , thread 4386 , mypolls 0 +myconn 0 connecting thr d13d4f00 , thread 4386 , mypolls 0 +thr d13d5080 , status 1 +connecting thr d13d5080 , thread 4387 , mypolls 0 +myconn 0 connecting thr d13d5080 , thread 4387 , mypolls 0 +thr d13d5200 , status 1 +connecting thr d13d5200 , thread 4388 , mypolls 0 +myconn 0 connecting thr d13d5200 , thread 4388 , mypolls 0 +thr d13d5380 , status 1 +connecting thr d13d5380 , thread 4389 , mypolls 0 +myconn 0 connecting thr d13d5380 , thread 4389 , mypolls 0 +thr d13d5500 , status 1 +connecting thr d13d5500 , thread 4390 , mypolls 0 +myconn 0 connecting thr d13d5500 , thread 4390 , mypolls 0 +thr d13d5680 , status 1 +connecting thr d13d5680 , thread 4391 , mypolls 0 +myconn 0 connecting thr d13d5680 , thread 4391 , mypolls 0 +thr d13d5800 , status 1 +connecting thr d13d5800 , thread 4392 , mypolls 0 +myconn 0 connecting thr d13d5800 , thread 4392 , mypolls 0 +thr d13d5980 , status 1 +connecting thr d13d5980 , thread 4393 , mypolls 0 +myconn 0 connecting thr d13d5980 , thread 4393 , mypolls 0 +thr d13d5b00 , status 1 +connecting thr d13d5b00 , thread 4394 , mypolls 0 +myconn 0 connecting thr d13d5b00 , thread 4394 , mypolls 0 +thr d13d5c80 , status 1 +connecting thr d13d5c80 , thread 4395 , mypolls 0 +myconn 0 connecting thr d13d5c80 , thread 4395 , mypolls 0 +thr d13d5e00 , status 1 +connecting thr d13d5e00 , thread 4396 , mypolls 0 +myconn 0 connecting thr d13d5e00 , thread 4396 , mypolls 0 +thr d13d5f80 , status 1 +connecting thr d13d5f80 , thread 4397 , mypolls 0 +myconn 0 connecting thr d13d5f80 , thread 4397 , mypolls 0 +thr d13d6100 , status 1 +connecting thr d13d6100 , thread 4398 , mypolls 0 +myconn 0 connecting thr d13d6100 , thread 4398 , mypolls 0 +thr d13d6280 , status 1 +connecting thr d13d6280 , thread 4399 , mypolls 0 +myconn 0 connecting thr d13d6280 , thread 4399 , mypolls 0 +thr d13d6400 , status 1 +connecting thr d13d6400 , thread 4400 , mypolls 0 +myconn 0 connecting thr d13d6400 , thread 4400 , mypolls 0 +thr d13d6580 , status 1 +connecting thr d13d6580 , thread 4401 , mypolls 0 +myconn 0 connecting thr d13d6580 , thread 4401 , mypolls 0 +thr d13d6700 , status 1 +connecting thr d13d6700 , thread 4402 , mypolls 0 +myconn 0 connecting thr d13d6700 , thread 4402 , mypolls 0 +thr d13d6880 , status 1 +connecting thr d13d6880 , thread 4403 , mypolls 0 +myconn 0 connecting thr d13d6880 , thread 4403 , mypolls 0 +thr d13d6a00 , status 1 +connecting thr d13d6a00 , thread 4404 , mypolls 0 +myconn 0 connecting thr d13d6a00 , thread 4404 , mypolls 0 +thr d13d6b80 , status 1 +connecting thr d13d6b80 , thread 4405 , mypolls 0 +myconn 0 connecting thr d13d6b80 , thread 4405 , mypolls 0 +thr d13d6d00 , status 1 +connecting thr d13d6d00 , thread 4406 , mypolls 0 +myconn 0 connecting thr d13d6d00 , thread 4406 , mypolls 0 +thr d13d6e80 , status 1 +connecting thr d13d6e80 , thread 4407 , mypolls 0 +myconn 0 connecting thr d13d6e80 , thread 4407 , mypolls 0 +thr d11f9000 , status 1 +connecting thr d11f9000 , thread 4408 , mypolls 0 +myconn 0 connecting thr d11f9000 , thread 4408 , mypolls 0 +thr d11f9180 , status 1 +connecting thr d11f9180 , thread 4409 , mypolls 0 +myconn 0 connecting thr d11f9180 , thread 4409 , mypolls 0 +thr d11f9300 , status 1 +connecting thr d11f9300 , thread 4410 , mypolls 0 +myconn 0 connecting thr d11f9300 , thread 4410 , mypolls 0 +thr d11f9480 , status 1 +connecting thr d11f9480 , thread 4411 , mypolls 0 +myconn 0 connecting thr d11f9480 , thread 4411 , mypolls 0 +thr d11f9600 , status 1 +connecting thr d11f9600 , thread 4412 , mypolls 0 +myconn 0 connecting thr d11f9600 , thread 4412 , mypolls 0 +thr d11f9780 , status 1 +connecting thr d11f9780 , thread 4413 , mypolls 0 +myconn 0 connecting thr d11f9780 , thread 4413 , mypolls 0 +thr d11f9900 , status 1 +connecting thr d11f9900 , thread 4414 , mypolls 0 +myconn 0 connecting thr d11f9900 , thread 4414 , mypolls 0 +thr d11f9a80 , status 1 +connecting thr d11f9a80 , thread 4415 , mypolls 0 +myconn 0 connecting thr d11f9a80 , thread 4415 , mypolls 0 +thr d11f9c00 , status 1 +connecting thr d11f9c00 , thread 4416 , mypolls 0 +myconn 0 connecting thr d11f9c00 , thread 4416 , mypolls 0 +thr d11f9d80 , status 1 +connecting thr d11f9d80 , thread 4417 , mypolls 0 +myconn 0 connecting thr d11f9d80 , thread 4417 , mypolls 0 +thr d11f9f00 , status 1 +connecting thr d11f9f00 , thread 4418 , mypolls 0 +myconn 0 connecting thr d11f9f00 , thread 4418 , mypolls 0 +thr d11fa080 , status 1 +connecting thr d11fa080 , thread 4419 , mypolls 0 +myconn 0 connecting thr d11fa080 , thread 4419 , mypolls 0 +thr d11fa200 , status 1 +connecting thr d11fa200 , thread 4420 , mypolls 0 +myconn 0 connecting thr d11fa200 , thread 4420 , mypolls 0 +thr d11fa380 , status 1 +connecting thr d11fa380 , thread 4421 , mypolls 0 +myconn 0 connecting thr d11fa380 , thread 4421 , mypolls 0 +thr d11fa500 , status 1 +connecting thr d11fa500 , thread 4422 , mypolls 0 +myconn 0 connecting thr d11fa500 , thread 4422 , mypolls 0 +thr d11fa680 , status 1 +connecting thr d11fa680 , thread 4423 , mypolls 0 +myconn 0 connecting thr d11fa680 , thread 4423 , mypolls 0 +thr d11fa800 , status 1 +connecting thr d11fa800 , thread 4424 , mypolls 0 +myconn 0 connecting thr d11fa800 , thread 4424 , mypolls 0 +thr d11fa980 , status 1 +connecting thr d11fa980 , thread 4425 , mypolls 0 +myconn 0 connecting thr d11fa980 , thread 4425 , mypolls 0 +thr d11fab00 , status 1 +connecting thr d11fab00 , thread 4426 , mypolls 0 +myconn 0 connecting thr d11fab00 , thread 4426 , mypolls 0 +thr d11fac80 , status 1 +connecting thr d11fac80 , thread 4427 , mypolls 0 +myconn 0 connecting thr d11fac80 , thread 4427 , mypolls 0 +thr d11fae00 , status 1 +connecting thr d11fae00 , thread 4428 , mypolls 0 +myconn 0 connecting thr d11fae00 , thread 4428 , mypolls 0 +thr d11faf80 , status 1 +connecting thr d11faf80 , thread 4429 , mypolls 0 +myconn 0 connecting thr d11faf80 , thread 4429 , mypolls 0 +thr d11fb100 , status 1 +connecting thr d11fb100 , thread 4430 , mypolls 0 +myconn 0 connecting thr d11fb100 , thread 4430 , mypolls 0 +thr d11fb280 , status 1 +connecting thr d11fb280 , thread 4431 , mypolls 0 +myconn 0 connecting thr d11fb280 , thread 4431 , mypolls 0 +thr d11fb400 , status 1 +connecting thr d11fb400 , thread 4432 , mypolls 0 +myconn 0 connecting thr d11fb400 , thread 4432 , mypolls 0 +thr d11fb580 , status 1 +connecting thr d11fb580 , thread 4433 , mypolls 0 +myconn 0 connecting thr d11fb580 , thread 4433 , mypolls 0 +thr d11fb700 , status 1 +connecting thr d11fb700 , thread 4434 , mypolls 0 +myconn 0 connecting thr d11fb700 , thread 4434 , mypolls 0 +thr d11fb880 , status 1 +connecting thr d11fb880 , thread 4435 , mypolls 0 +myconn 0 connecting thr d11fb880 , thread 4435 , mypolls 0 +thr d11fba00 , status 1 +connecting thr d11fba00 , thread 4436 , mypolls 0 +myconn 0 connecting thr d11fba00 , thread 4436 , mypolls 0 +thr d11fbb80 , status 1 +connecting thr d11fbb80 , thread 4437 , mypolls 0 +myconn 0 connecting thr d11fbb80 , thread 4437 , mypolls 0 +thr d11fbd00 , status 1 +connecting thr d11fbd00 , thread 4438 , mypolls 0 +myconn 0 connecting thr d11fbd00 , thread 4438 , mypolls 0 +thr d11fbe80 , status 1 +connecting thr d11fbe80 , thread 4439 , mypolls 0 +myconn 0 connecting thr d11fbe80 , thread 4439 , mypolls 0 +thr d0caa000 , status 1 +connecting thr d0caa000 , thread 4440 , mypolls 0 +myconn 0 connecting thr d0caa000 , thread 4440 , mypolls 0 +thr d0caa180 , status 1 +connecting thr d0caa180 , thread 4441 , mypolls 0 +myconn 0 connecting thr d0caa180 , thread 4441 , mypolls 0 +thr d0caa300 , status 1 +connecting thr d0caa300 , thread 4442 , mypolls 0 +myconn 0 connecting thr d0caa300 , thread 4442 , mypolls 0 +thr d0caa480 , status 1 +connecting thr d0caa480 , thread 4443 , mypolls 0 +myconn 0 connecting thr d0caa480 , thread 4443 , mypolls 0 +thr d0caa600 , status 1 +connecting thr d0caa600 , thread 4444 , mypolls 0 +myconn 0 connecting thr d0caa600 , thread 4444 , mypolls 0 +thr d0caa780 , status 1 +connecting thr d0caa780 , thread 4445 , mypolls 0 +myconn 0 connecting thr d0caa780 , thread 4445 , mypolls 0 +thr d0caa900 , status 1 +connecting thr d0caa900 , thread 4446 , mypolls 0 +myconn 0 connecting thr d0caa900 , thread 4446 , mypolls 0 +thr d0caaa80 , status 1 +connecting thr d0caaa80 , thread 4447 , mypolls 0 +myconn 0 connecting thr d0caaa80 , thread 4447 , mypolls 0 +thr d0caac00 , status 1 +connecting thr d0caac00 , thread 4448 , mypolls 0 +myconn 0 connecting thr d0caac00 , thread 4448 , mypolls 0 +thr d0caad80 , status 1 +connecting thr d0caad80 , thread 4449 , mypolls 0 +myconn 0 connecting thr d0caad80 , thread 4449 , mypolls 0 +thr d0caaf00 , status 1 +connecting thr d0caaf00 , thread 4450 , mypolls 0 +myconn 0 connecting thr d0caaf00 , thread 4450 , mypolls 0 +thr d0cab080 , status 1 +connecting thr d0cab080 , thread 4451 , mypolls 0 +myconn 0 connecting thr d0cab080 , thread 4451 , mypolls 0 +thr d0cab200 , status 1 +connecting thr d0cab200 , thread 4452 , mypolls 0 +myconn 0 connecting thr d0cab200 , thread 4452 , mypolls 0 +thr d0cab380 , status 1 +connecting thr d0cab380 , thread 4453 , mypolls 0 +myconn 0 connecting thr d0cab380 , thread 4453 , mypolls 0 +thr d0cab500 , status 1 +connecting thr d0cab500 , thread 4454 , mypolls 0 +myconn 0 connecting thr d0cab500 , thread 4454 , mypolls 0 +thr d0cab680 , status 1 +connecting thr d0cab680 , thread 4455 , mypolls 0 +myconn 0 connecting thr d0cab680 , thread 4455 , mypolls 0 +thr d0cab800 , status 1 +connecting thr d0cab800 , thread 4456 , mypolls 0 +myconn 0 connecting thr d0cab800 , thread 4456 , mypolls 0 +thr d0cab980 , status 1 +connecting thr d0cab980 , thread 4457 , mypolls 0 +myconn 0 connecting thr d0cab980 , thread 4457 , mypolls 0 +thr d0cabb00 , status 1 +connecting thr d0cabb00 , thread 4458 , mypolls 0 +myconn 0 connecting thr d0cabb00 , thread 4458 , mypolls 0 +thr d0cabc80 , status 1 +connecting thr d0cabc80 , thread 4459 , mypolls 0 +myconn 0 connecting thr d0cabc80 , thread 4459 , mypolls 0 +thr d0cabe00 , status 1 +connecting thr d0cabe00 , thread 4460 , mypolls 0 +myconn 0 connecting thr d0cabe00 , thread 4460 , mypolls 0 +thr d0cabf80 , status 1 +connecting thr d0cabf80 , thread 4461 , mypolls 0 +myconn 0 connecting thr d0cabf80 , thread 4461 , mypolls 0 +thr d0cac100 , status 1 +connecting thr d0cac100 , thread 4462 , mypolls 0 +myconn 0 connecting thr d0cac100 , thread 4462 , mypolls 0 +thr d0cac280 , status 1 +connecting thr d0cac280 , thread 4463 , mypolls 0 +myconn 0 connecting thr d0cac280 , thread 4463 , mypolls 0 +thr d0cac400 , status 1 +connecting thr d0cac400 , thread 4464 , mypolls 0 +myconn 0 connecting thr d0cac400 , thread 4464 , mypolls 0 +thr d0cac580 , status 1 +connecting thr d0cac580 , thread 4465 , mypolls 0 +myconn 0 connecting thr d0cac580 , thread 4465 , mypolls 0 +thr d0cac700 , status 1 +connecting thr d0cac700 , thread 4466 , mypolls 0 +myconn 0 connecting thr d0cac700 , thread 4466 , mypolls 0 +thr d0cac880 , status 1 +connecting thr d0cac880 , thread 4467 , mypolls 0 +myconn 0 connecting thr d0cac880 , thread 4467 , mypolls 0 +thr d0caca00 , status 1 +connecting thr d0caca00 , thread 4468 , mypolls 0 +myconn 0 connecting thr d0caca00 , thread 4468 , mypolls 0 +thr d0cacb80 , status 1 +connecting thr d0cacb80 , thread 4469 , mypolls 0 +myconn 0 connecting thr d0cacb80 , thread 4469 , mypolls 0 +thr d0cacd00 , status 1 +connecting thr d0cacd00 , thread 4470 , mypolls 0 +myconn 0 connecting thr d0cacd00 , thread 4470 , mypolls 0 +thr d0cace80 , status 1 +connecting thr d0cace80 , thread 4471 , mypolls 0 +myconn 0 connecting thr d0cace80 , thread 4471 , mypolls 0 +thr d0b0a000 , status 1 +connecting thr d0b0a000 , thread 4472 , mypolls 0 +myconn 0 connecting thr d0b0a000 , thread 4472 , mypolls 0 +thr d0b0a180 , status 1 +connecting thr d0b0a180 , thread 4473 , mypolls 0 +myconn 0 connecting thr d0b0a180 , thread 4473 , mypolls 0 +thr d0b0a300 , status 1 +connecting thr d0b0a300 , thread 4474 , mypolls 0 +myconn 0 connecting thr d0b0a300 , thread 4474 , mypolls 0 +thr d0b0a480 , status 1 +connecting thr d0b0a480 , thread 4475 , mypolls 0 +myconn 0 connecting thr d0b0a480 , thread 4475 , mypolls 0 +thr d0b0a600 , status 1 +connecting thr d0b0a600 , thread 4476 , mypolls 0 +myconn 0 connecting thr d0b0a600 , thread 4476 , mypolls 0 +thr d0b0a780 , status 1 +connecting thr d0b0a780 , thread 4477 , mypolls 0 +myconn 0 connecting thr d0b0a780 , thread 4477 , mypolls 0 +thr d0b0a900 , status 1 +connecting thr d0b0a900 , thread 4478 , mypolls 0 +myconn 0 connecting thr d0b0a900 , thread 4478 , mypolls 0 +thr d0b0aa80 , status 1 +connecting thr d0b0aa80 , thread 4479 , mypolls 0 +myconn 0 connecting thr d0b0aa80 , thread 4479 , mypolls 0 +thr d0b0ac00 , status 1 +connecting thr d0b0ac00 , thread 4480 , mypolls 0 +myconn 0 connecting thr d0b0ac00 , thread 4480 , mypolls 0 +thr d0b0ad80 , status 1 +connecting thr d0b0ad80 , thread 4481 , mypolls 0 +myconn 0 connecting thr d0b0ad80 , thread 4481 , mypolls 0 +thr d0b0af00 , status 1 +connecting thr d0b0af00 , thread 4482 , mypolls 0 +myconn 0 connecting thr d0b0af00 , thread 4482 , mypolls 0 +thr d0b0b080 , status 1 +connecting thr d0b0b080 , thread 4483 , mypolls 0 +myconn 0 connecting thr d0b0b080 , thread 4483 , mypolls 0 +thr d0b0b200 , status 1 +connecting thr d0b0b200 , thread 4484 , mypolls 0 +myconn 0 connecting thr d0b0b200 , thread 4484 , mypolls 0 +thr d0b0b380 , status 1 +connecting thr d0b0b380 , thread 4485 , mypolls 0 +myconn 0 connecting thr d0b0b380 , thread 4485 , mypolls 0 +thr d0b0b500 , status 1 +connecting thr d0b0b500 , thread 4486 , mypolls 0 +myconn 0 connecting thr d0b0b500 , thread 4486 , mypolls 0 +thr d0b0b680 , status 1 +connecting thr d0b0b680 , thread 4487 , mypolls 0 +myconn 0 connecting thr d0b0b680 , thread 4487 , mypolls 0 +thr d0b0b800 , status 1 +connecting thr d0b0b800 , thread 4488 , mypolls 0 +myconn 0 connecting thr d0b0b800 , thread 4488 , mypolls 0 +thr d0b0b980 , status 1 +connecting thr d0b0b980 , thread 4489 , mypolls 0 +myconn 0 connecting thr d0b0b980 , thread 4489 , mypolls 0 +thr d0b0bb00 , status 1 +connecting thr d0b0bb00 , thread 4490 , mypolls 0 +myconn 0 connecting thr d0b0bb00 , thread 4490 , mypolls 0 +thr d0b0bc80 , status 1 +connecting thr d0b0bc80 , thread 4491 , mypolls 0 +myconn 0 connecting thr d0b0bc80 , thread 4491 , mypolls 0 +thr d0b0be00 , status 1 +connecting thr d0b0be00 , thread 4492 , mypolls 0 +myconn 0 connecting thr d0b0be00 , thread 4492 , mypolls 0 +thr d0b0bf80 , status 1 +connecting thr d0b0bf80 , thread 4493 , mypolls 0 +myconn 0 connecting thr d0b0bf80 , thread 4493 , mypolls 0 +thr d0b0c100 , status 1 +connecting thr d0b0c100 , thread 4494 , mypolls 0 +myconn 0 connecting thr d0b0c100 , thread 4494 , mypolls 0 +thr d0b0c280 , status 1 +connecting thr d0b0c280 , thread 4495 , mypolls 0 +myconn 0 connecting thr d0b0c280 , thread 4495 , mypolls 0 +thr d0b0c400 , status 1 +connecting thr d0b0c400 , thread 4496 , mypolls 0 +myconn 0 connecting thr d0b0c400 , thread 4496 , mypolls 0 +thr d0b0c580 , status 1 +connecting thr d0b0c580 , thread 4497 , mypolls 0 +myconn 0 connecting thr d0b0c580 , thread 4497 , mypolls 0 +thr d0b0c700 , status 1 +connecting thr d0b0c700 , thread 4498 , mypolls 0 +myconn 0 connecting thr d0b0c700 , thread 4498 , mypolls 0 +thr d0b0c880 , status 1 +connecting thr d0b0c880 , thread 4499 , mypolls 0 +myconn 0 connecting thr d0b0c880 , thread 4499 , mypolls 0 +thr d0b0ca00 , status 1 +connecting thr d0b0ca00 , thread 4500 , mypolls 0 +myconn 0 connecting thr d0b0ca00 , thread 4500 , mypolls 0 +thr d0b0cb80 , status 1 +connecting thr d0b0cb80 , thread 4501 , mypolls 0 +myconn 0 connecting thr d0b0cb80 , thread 4501 , mypolls 0 +thr d0b0cd00 , status 1 +connecting thr d0b0cd00 , thread 4502 , mypolls 0 +myconn 0 connecting thr d0b0cd00 , thread 4502 , mypolls 0 +thr d0b0ce80 , status 1 +connecting thr d0b0ce80 , thread 4503 , mypolls 0 +myconn 0 connecting thr d0b0ce80 , thread 4503 , mypolls 0 +thr d0970000 , status 1 +connecting thr d0970000 , thread 4504 , mypolls 0 +myconn 0 connecting thr d0970000 , thread 4504 , mypolls 0 +thr d0970180 , status 1 +connecting thr d0970180 , thread 4505 , mypolls 0 +myconn 0 connecting thr d0970180 , thread 4505 , mypolls 0 +thr d0970300 , status 1 +connecting thr d0970300 , thread 4506 , mypolls 0 +myconn 0 connecting thr d0970300 , thread 4506 , mypolls 0 +thr d0970480 , status 1 +connecting thr d0970480 , thread 4507 , mypolls 0 +myconn 0 connecting thr d0970480 , thread 4507 , mypolls 0 +thr d0970600 , status 1 +connecting thr d0970600 , thread 4508 , mypolls 0 +myconn 0 connecting thr d0970600 , thread 4508 , mypolls 0 +thr d0970780 , status 1 +connecting thr d0970780 , thread 4509 , mypolls 0 +myconn 0 connecting thr d0970780 , thread 4509 , mypolls 0 +thr d0970900 , status 1 +connecting thr d0970900 , thread 4510 , mypolls 0 +myconn 0 connecting thr d0970900 , thread 4510 , mypolls 0 +thr d0970a80 , status 1 +connecting thr d0970a80 , thread 4511 , mypolls 0 +myconn 0 connecting thr d0970a80 , thread 4511 , mypolls 0 +thr d0970c00 , status 1 +connecting thr d0970c00 , thread 4512 , mypolls 0 +myconn 0 connecting thr d0970c00 , thread 4512 , mypolls 0 +thr d0970d80 , status 1 +connecting thr d0970d80 , thread 4513 , mypolls 0 +myconn 0 connecting thr d0970d80 , thread 4513 , mypolls 0 +thr d0970f00 , status 1 +connecting thr d0970f00 , thread 4514 , mypolls 0 +myconn 0 connecting thr d0970f00 , thread 4514 , mypolls 0 +thr d0971080 , status 1 +connecting thr d0971080 , thread 4515 , mypolls 0 +myconn 0 connecting thr d0971080 , thread 4515 , mypolls 0 +thr d0971200 , status 1 +connecting thr d0971200 , thread 4516 , mypolls 0 +myconn 0 connecting thr d0971200 , thread 4516 , mypolls 0 +thr d0971380 , status 1 +connecting thr d0971380 , thread 4517 , mypolls 0 +myconn 0 connecting thr d0971380 , thread 4517 , mypolls 0 +thr d0971500 , status 1 +connecting thr d0971500 , thread 4518 , mypolls 0 +myconn 0 connecting thr d0971500 , thread 4518 , mypolls 0 +thr d0971680 , status 1 +connecting thr d0971680 , thread 4519 , mypolls 0 +myconn 0 connecting thr d0971680 , thread 4519 , mypolls 0 +thr d0971800 , status 1 +connecting thr d0971800 , thread 4520 , mypolls 0 +myconn 0 connecting thr d0971800 , thread 4520 , mypolls 0 +thr d0971980 , status 1 +connecting thr d0971980 , thread 4521 , mypolls 0 +myconn 0 connecting thr d0971980 , thread 4521 , mypolls 0 +thr d0971b00 , status 1 +connecting thr d0971b00 , thread 4522 , mypolls 0 +myconn 0 connecting thr d0971b00 , thread 4522 , mypolls 0 +thr d0971c80 , status 1 +connecting thr d0971c80 , thread 4523 , mypolls 0 +myconn 0 connecting thr d0971c80 , thread 4523 , mypolls 0 +thr d0971e00 , status 1 +connecting thr d0971e00 , thread 4524 , mypolls 0 +myconn 0 connecting thr d0971e00 , thread 4524 , mypolls 0 +thr d0971f80 , status 1 +connecting thr d0971f80 , thread 4525 , mypolls 0 +myconn 0 connecting thr d0971f80 , thread 4525 , mypolls 0 +thr d0972100 , status 1 +connecting thr d0972100 , thread 4526 , mypolls 0 +myconn 0 connecting thr d0972100 , thread 4526 , mypolls 0 +thr d0972280 , status 1 +connecting thr d0972280 , thread 4527 , mypolls 0 +myconn 0 connecting thr d0972280 , thread 4527 , mypolls 0 +thr d0972400 , status 1 +connecting thr d0972400 , thread 4528 , mypolls 0 +myconn 0 connecting thr d0972400 , thread 4528 , mypolls 0 +thr d0972580 , status 1 +connecting thr d0972580 , thread 4529 , mypolls 0 +myconn 0 connecting thr d0972580 , thread 4529 , mypolls 0 +thr d0972700 , status 1 +connecting thr d0972700 , thread 4530 , mypolls 0 +myconn 0 connecting thr d0972700 , thread 4530 , mypolls 0 +thr d0972880 , status 1 +connecting thr d0972880 , thread 4531 , mypolls 0 +myconn 0 connecting thr d0972880 , thread 4531 , mypolls 0 +thr d0972a00 , status 1 +connecting thr d0972a00 , thread 4532 , mypolls 0 +myconn 0 connecting thr d0972a00 , thread 4532 , mypolls 0 +thr d0972b80 , status 1 +connecting thr d0972b80 , thread 4533 , mypolls 0 +myconn 0 connecting thr d0972b80 , thread 4533 , mypolls 0 +thr d0972d00 , status 1 +connecting thr d0972d00 , thread 4534 , mypolls 0 +myconn 0 connecting thr d0972d00 , thread 4534 , mypolls 0 +thr d0972e80 , status 1 +connecting thr d0972e80 , thread 4535 , mypolls 0 +myconn 0 connecting thr d0972e80 , thread 4535 , mypolls 0 +thr d07cf000 , status 1 +connecting thr d07cf000 , thread 4536 , mypolls 0 +myconn 0 connecting thr d07cf000 , thread 4536 , mypolls 0 +thr d07cf180 , status 1 +connecting thr d07cf180 , thread 4537 , mypolls 0 +myconn 0 connecting thr d07cf180 , thread 4537 , mypolls 0 +thr d07cf300 , status 1 +connecting thr d07cf300 , thread 4538 , mypolls 0 +myconn 0 connecting thr d07cf300 , thread 4538 , mypolls 0 +thr d07cf480 , status 1 +connecting thr d07cf480 , thread 4539 , mypolls 0 +myconn 0 connecting thr d07cf480 , thread 4539 , mypolls 0 +thr d07cf600 , status 1 +connecting thr d07cf600 , thread 4540 , mypolls 0 +myconn 0 connecting thr d07cf600 , thread 4540 , mypolls 0 +thr d07cf780 , status 1 +connecting thr d07cf780 , thread 4541 , mypolls 0 +myconn 0 connecting thr d07cf780 , thread 4541 , mypolls 0 +thr d07cf900 , status 1 +connecting thr d07cf900 , thread 4542 , mypolls 0 +myconn 0 connecting thr d07cf900 , thread 4542 , mypolls 0 +thr d07cfa80 , status 1 +connecting thr d07cfa80 , thread 4543 , mypolls 0 +myconn 0 connecting thr d07cfa80 , thread 4543 , mypolls 0 +thr d07cfc00 , status 1 +connecting thr d07cfc00 , thread 4544 , mypolls 0 +myconn 0 connecting thr d07cfc00 , thread 4544 , mypolls 0 +thr d07cfd80 , status 1 +connecting thr d07cfd80 , thread 4545 , mypolls 0 +myconn 0 connecting thr d07cfd80 , thread 4545 , mypolls 0 +thr d07cff00 , status 1 +connecting thr d07cff00 , thread 4546 , mypolls 0 +myconn 0 connecting thr d07cff00 , thread 4546 , mypolls 0 +thr d07d0080 , status 1 +connecting thr d07d0080 , thread 4547 , mypolls 0 +myconn 0 connecting thr d07d0080 , thread 4547 , mypolls 0 +thr d07d0200 , status 1 +connecting thr d07d0200 , thread 4548 , mypolls 0 +myconn 0 connecting thr d07d0200 , thread 4548 , mypolls 0 +thr d07d0380 , status 1 +connecting thr d07d0380 , thread 4549 , mypolls 0 +myconn 0 connecting thr d07d0380 , thread 4549 , mypolls 0 +thr d07d0500 , status 1 +connecting thr d07d0500 , thread 4550 , mypolls 0 +myconn 0 connecting thr d07d0500 , thread 4550 , mypolls 0 +thr d07d0680 , status 1 +connecting thr d07d0680 , thread 4551 , mypolls 0 +myconn 0 connecting thr d07d0680 , thread 4551 , mypolls 0 +thr d07d0800 , status 1 +connecting thr d07d0800 , thread 4552 , mypolls 0 +myconn 0 connecting thr d07d0800 , thread 4552 , mypolls 0 +thr d07d0980 , status 1 +connecting thr d07d0980 , thread 4553 , mypolls 0 +myconn 0 connecting thr d07d0980 , thread 4553 , mypolls 0 +thr d07d0b00 , status 1 +connecting thr d07d0b00 , thread 4554 , mypolls 0 +myconn 0 connecting thr d07d0b00 , thread 4554 , mypolls 0 +thr d07d0c80 , status 1 +connecting thr d07d0c80 , thread 4555 , mypolls 0 +myconn 0 connecting thr d07d0c80 , thread 4555 , mypolls 0 +thr d07d0e00 , status 1 +connecting thr d07d0e00 , thread 4556 , mypolls 0 +myconn 0 connecting thr d07d0e00 , thread 4556 , mypolls 0 +thr d07d0f80 , status 1 +connecting thr d07d0f80 , thread 4557 , mypolls 0 +myconn 0 connecting thr d07d0f80 , thread 4557 , mypolls 0 +thr d07d1100 , status 1 +connecting thr d07d1100 , thread 4558 , mypolls 0 +myconn 0 connecting thr d07d1100 , thread 4558 , mypolls 0 +thr d07d1280 , status 1 +connecting thr d07d1280 , thread 4559 , mypolls 0 +myconn 0 connecting thr d07d1280 , thread 4559 , mypolls 0 +thr d07d1400 , status 1 +connecting thr d07d1400 , thread 4560 , mypolls 0 +myconn 0 connecting thr d07d1400 , thread 4560 , mypolls 0 +thr d07d1580 , status 1 +connecting thr d07d1580 , thread 4561 , mypolls 0 +myconn 0 connecting thr d07d1580 , thread 4561 , mypolls 0 +thr d07d1700 , status 1 +connecting thr d07d1700 , thread 4562 , mypolls 0 +myconn 0 connecting thr d07d1700 , thread 4562 , mypolls 0 +thr d07d1880 , status 1 +connecting thr d07d1880 , thread 4563 , mypolls 0 +myconn 0 connecting thr d07d1880 , thread 4563 , mypolls 0 +thr d07d1a00 , status 1 +connecting thr d07d1a00 , thread 4564 , mypolls 0 +myconn 0 connecting thr d07d1a00 , thread 4564 , mypolls 0 +thr d07d1b80 , status 1 +connecting thr d07d1b80 , thread 4565 , mypolls 0 +myconn 0 connecting thr d07d1b80 , thread 4565 , mypolls 0 +thr d07d1d00 , status 1 +connecting thr d07d1d00 , thread 4566 , mypolls 0 +myconn 0 connecting thr d07d1d00 , thread 4566 , mypolls 0 +thr d07d1e80 , status 1 +connecting thr d07d1e80 , thread 4567 , mypolls 0 +myconn 0 connecting thr d07d1e80 , thread 4567 , mypolls 0 +thr d05f9000 , status 1 +connecting thr d05f9000 , thread 4568 , mypolls 0 +myconn 0 connecting thr d05f9000 , thread 4568 , mypolls 0 +thr d05f9180 , status 1 +connecting thr d05f9180 , thread 4569 , mypolls 0 +myconn 0 connecting thr d05f9180 , thread 4569 , mypolls 0 +thr d05f9300 , status 1 +connecting thr d05f9300 , thread 4570 , mypolls 0 +myconn 0 connecting thr d05f9300 , thread 4570 , mypolls 0 +thr d05f9480 , status 1 +connecting thr d05f9480 , thread 4571 , mypolls 0 +myconn 0 connecting thr d05f9480 , thread 4571 , mypolls 0 +thr d05f9600 , status 1 +connecting thr d05f9600 , thread 4572 , mypolls 0 +myconn 0 connecting thr d05f9600 , thread 4572 , mypolls 0 +thr d05f9780 , status 1 +connecting thr d05f9780 , thread 4573 , mypolls 0 +myconn 0 connecting thr d05f9780 , thread 4573 , mypolls 0 +thr d05f9900 , status 1 +connecting thr d05f9900 , thread 4574 , mypolls 0 +myconn 0 connecting thr d05f9900 , thread 4574 , mypolls 0 +thr d05f9a80 , status 1 +connecting thr d05f9a80 , thread 4575 , mypolls 0 +myconn 0 connecting thr d05f9a80 , thread 4575 , mypolls 0 +thr d05f9c00 , status 1 +connecting thr d05f9c00 , thread 4576 , mypolls 0 +myconn 0 connecting thr d05f9c00 , thread 4576 , mypolls 0 +thr d05f9d80 , status 1 +connecting thr d05f9d80 , thread 4577 , mypolls 0 +myconn 0 connecting thr d05f9d80 , thread 4577 , mypolls 0 +thr d05f9f00 , status 1 +connecting thr d05f9f00 , thread 4578 , mypolls 0 +myconn 0 connecting thr d05f9f00 , thread 4578 , mypolls 0 +thr d05fa080 , status 1 +connecting thr d05fa080 , thread 4579 , mypolls 0 +myconn 0 connecting thr d05fa080 , thread 4579 , mypolls 0 +thr d05fa200 , status 1 +connecting thr d05fa200 , thread 4580 , mypolls 0 +myconn 0 connecting thr d05fa200 , thread 4580 , mypolls 0 +thr d05fa380 , status 1 +connecting thr d05fa380 , thread 4581 , mypolls 0 +myconn 0 connecting thr d05fa380 , thread 4581 , mypolls 0 +thr d05fa500 , status 1 +connecting thr d05fa500 , thread 4582 , mypolls 0 +myconn 0 connecting thr d05fa500 , thread 4582 , mypolls 0 +thr d05fa680 , status 1 +connecting thr d05fa680 , thread 4583 , mypolls 0 +myconn 0 connecting thr d05fa680 , thread 4583 , mypolls 0 +thr d05fa800 , status 1 +connecting thr d05fa800 , thread 4584 , mypolls 0 +myconn 0 connecting thr d05fa800 , thread 4584 , mypolls 0 +thr d05fa980 , status 1 +connecting thr d05fa980 , thread 4585 , mypolls 0 +myconn 0 connecting thr d05fa980 , thread 4585 , mypolls 0 +thr d05fab00 , status 1 +connecting thr d05fab00 , thread 4586 , mypolls 0 +myconn 0 connecting thr d05fab00 , thread 4586 , mypolls 0 +thr d05fac80 , status 1 +connecting thr d05fac80 , thread 4587 , mypolls 0 +myconn 0 connecting thr d05fac80 , thread 4587 , mypolls 0 +thr d05fae00 , status 1 +connecting thr d05fae00 , thread 4588 , mypolls 0 +myconn 0 connecting thr d05fae00 , thread 4588 , mypolls 0 +thr d05faf80 , status 1 +connecting thr d05faf80 , thread 4589 , mypolls 0 +myconn 0 connecting thr d05faf80 , thread 4589 , mypolls 0 +thr d05fb100 , status 1 +connecting thr d05fb100 , thread 4590 , mypolls 0 +myconn 0 connecting thr d05fb100 , thread 4590 , mypolls 0 +thr d05fb280 , status 1 +connecting thr d05fb280 , thread 4591 , mypolls 0 +myconn 0 connecting thr d05fb280 , thread 4591 , mypolls 0 +thr d05fb400 , status 1 +connecting thr d05fb400 , thread 4592 , mypolls 0 +myconn 0 connecting thr d05fb400 , thread 4592 , mypolls 0 +thr d05fb580 , status 1 +connecting thr d05fb580 , thread 4593 , mypolls 0 +myconn 0 connecting thr d05fb580 , thread 4593 , mypolls 0 +thr d05fb700 , status 1 +connecting thr d05fb700 , thread 4594 , mypolls 0 +myconn 0 connecting thr d05fb700 , thread 4594 , mypolls 0 +thr d05fb880 , status 1 +connecting thr d05fb880 , thread 4595 , mypolls 0 +myconn 0 connecting thr d05fb880 , thread 4595 , mypolls 0 +thr d05fba00 , status 1 +connecting thr d05fba00 , thread 4596 , mypolls 0 +myconn 0 connecting thr d05fba00 , thread 4596 , mypolls 0 +thr d05fbb80 , status 1 +connecting thr d05fbb80 , thread 4597 , mypolls 0 +myconn 0 connecting thr d05fbb80 , thread 4597 , mypolls 0 +thr d05fbd00 , status 1 +connecting thr d05fbd00 , thread 4598 , mypolls 0 +myconn 0 connecting thr d05fbd00 , thread 4598 , mypolls 0 +thr d05fbe80 , status 1 +connecting thr d05fbe80 , thread 4599 , mypolls 0 +myconn 0 connecting thr d05fbe80 , thread 4599 , mypolls 0 +thr d00a6000 , status 1 +connecting thr d00a6000 , thread 4600 , mypolls 0 +myconn 0 connecting thr d00a6000 , thread 4600 , mypolls 0 +thr d00a6180 , status 1 +connecting thr d00a6180 , thread 4601 , mypolls 0 +myconn 0 connecting thr d00a6180 , thread 4601 , mypolls 0 +thr d00a6300 , status 1 +connecting thr d00a6300 , thread 4602 , mypolls 0 +myconn 0 connecting thr d00a6300 , thread 4602 , mypolls 0 +thr d00a6480 , status 1 +connecting thr d00a6480 , thread 4603 , mypolls 0 +myconn 0 connecting thr d00a6480 , thread 4603 , mypolls 0 +thr d00a6600 , status 1 +connecting thr d00a6600 , thread 4604 , mypolls 0 +myconn 0 connecting thr d00a6600 , thread 4604 , mypolls 0 +thr d00a6780 , status 1 +connecting thr d00a6780 , thread 4605 , mypolls 0 +myconn 0 connecting thr d00a6780 , thread 4605 , mypolls 0 +thr d00a6900 , status 1 +connecting thr d00a6900 , thread 4606 , mypolls 0 +myconn 0 connecting thr d00a6900 , thread 4606 , mypolls 0 +thr d00a6a80 , status 1 +connecting thr d00a6a80 , thread 4607 , mypolls 0 +myconn 0 connecting thr d00a6a80 , thread 4607 , mypolls 0 +thr d00a6c00 , status 1 +connecting thr d00a6c00 , thread 4608 , mypolls 0 +myconn 0 connecting thr d00a6c00 , thread 4608 , mypolls 0 +thr d00a6d80 , status 1 +connecting thr d00a6d80 , thread 4609 , mypolls 0 +myconn 0 connecting thr d00a6d80 , thread 4609 , mypolls 0 +thr d00a6f00 , status 1 +connecting thr d00a6f00 , thread 4610 , mypolls 0 +myconn 0 connecting thr d00a6f00 , thread 4610 , mypolls 0 +thr d00a7080 , status 1 +connecting thr d00a7080 , thread 4611 , mypolls 0 +myconn 0 connecting thr d00a7080 , thread 4611 , mypolls 0 +thr d00a7200 , status 1 +connecting thr d00a7200 , thread 4612 , mypolls 0 +myconn 0 connecting thr d00a7200 , thread 4612 , mypolls 0 +thr d00a7380 , status 1 +connecting thr d00a7380 , thread 4613 , mypolls 0 +myconn 0 connecting thr d00a7380 , thread 4613 , mypolls 0 +thr d00a7500 , status 1 +connecting thr d00a7500 , thread 4614 , mypolls 0 +myconn 0 connecting thr d00a7500 , thread 4614 , mypolls 0 +thr d00a7680 , status 1 +connecting thr d00a7680 , thread 4615 , mypolls 0 +myconn 0 connecting thr d00a7680 , thread 4615 , mypolls 0 +thr d00a7800 , status 1 +connecting thr d00a7800 , thread 4616 , mypolls 0 +myconn 0 connecting thr d00a7800 , thread 4616 , mypolls 0 +thr d00a7980 , status 1 +connecting thr d00a7980 , thread 4617 , mypolls 0 +myconn 0 connecting thr d00a7980 , thread 4617 , mypolls 0 +thr d00a7b00 , status 1 +connecting thr d00a7b00 , thread 4618 , mypolls 0 +myconn 0 connecting thr d00a7b00 , thread 4618 , mypolls 0 +thr d00a7c80 , status 1 +connecting thr d00a7c80 , thread 4619 , mypolls 0 +myconn 0 connecting thr d00a7c80 , thread 4619 , mypolls 0 +thr d00a7e00 , status 1 +connecting thr d00a7e00 , thread 4620 , mypolls 0 +myconn 0 connecting thr d00a7e00 , thread 4620 , mypolls 0 +thr d00a7f80 , status 1 +connecting thr d00a7f80 , thread 4621 , mypolls 0 +myconn 0 connecting thr d00a7f80 , thread 4621 , mypolls 0 +thr d00a8100 , status 1 +connecting thr d00a8100 , thread 4622 , mypolls 0 +myconn 0 connecting thr d00a8100 , thread 4622 , mypolls 0 +thr d00a8280 , status 1 +connecting thr d00a8280 , thread 4623 , mypolls 0 +myconn 0 connecting thr d00a8280 , thread 4623 , mypolls 0 +thr d00a8400 , status 1 +connecting thr d00a8400 , thread 4624 , mypolls 0 +myconn 0 connecting thr d00a8400 , thread 4624 , mypolls 0 +thr d00a8580 , status 1 +connecting thr d00a8580 , thread 4625 , mypolls 0 +myconn 0 connecting thr d00a8580 , thread 4625 , mypolls 0 +thr d00a8700 , status 1 +connecting thr d00a8700 , thread 4626 , mypolls 0 +myconn 0 connecting thr d00a8700 , thread 4626 , mypolls 0 +thr d00a8880 , status 1 +connecting thr d00a8880 , thread 4627 , mypolls 0 +myconn 0 connecting thr d00a8880 , thread 4627 , mypolls 0 +thr d00a8a00 , status 1 +connecting thr d00a8a00 , thread 4628 , mypolls 0 +myconn 0 connecting thr d00a8a00 , thread 4628 , mypolls 0 +thr d00a8b80 , status 1 +connecting thr d00a8b80 , thread 4629 , mypolls 0 +myconn 0 connecting thr d00a8b80 , thread 4629 , mypolls 0 +thr d00a8d00 , status 1 +connecting thr d00a8d00 , thread 4630 , mypolls 0 +myconn 0 connecting thr d00a8d00 , thread 4630 , mypolls 0 +thr d00a8e80 , status 1 +connecting thr d00a8e80 , thread 4631 , mypolls 0 +myconn 0 connecting thr d00a8e80 , thread 4631 , mypolls 0 +thr d01fd000 , status 1 +connecting thr d01fd000 , thread 4632 , mypolls 0 +myconn 0 connecting thr d01fd000 , thread 4632 , mypolls 0 +thr d01fd180 , status 1 +connecting thr d01fd180 , thread 4633 , mypolls 0 +myconn 0 connecting thr d01fd180 , thread 4633 , mypolls 0 +thr d01fd300 , status 1 +connecting thr d01fd300 , thread 4634 , mypolls 0 +myconn 0 connecting thr d01fd300 , thread 4634 , mypolls 0 +thr d01fd480 , status 1 +connecting thr d01fd480 , thread 4635 , mypolls 0 +myconn 0 connecting thr d01fd480 , thread 4635 , mypolls 0 +thr d01fd600 , status 1 +connecting thr d01fd600 , thread 4636 , mypolls 0 +myconn 0 connecting thr d01fd600 , thread 4636 , mypolls 0 +thr d01fd780 , status 1 +connecting thr d01fd780 , thread 4637 , mypolls 0 +myconn 0 connecting thr d01fd780 , thread 4637 , mypolls 0 +thr d01fd900 , status 1 +connecting thr d01fd900 , thread 4638 , mypolls 0 +myconn 0 connecting thr d01fd900 , thread 4638 , mypolls 0 +thr d01fda80 , status 1 +connecting thr d01fda80 , thread 4639 , mypolls 0 +myconn 0 connecting thr d01fda80 , thread 4639 , mypolls 0 +thr d01fdc00 , status 1 +connecting thr d01fdc00 , thread 4640 , mypolls 0 +myconn 0 connecting thr d01fdc00 , thread 4640 , mypolls 0 +thr d01fdd80 , status 1 +connecting thr d01fdd80 , thread 4641 , mypolls 0 +myconn 0 connecting thr d01fdd80 , thread 4641 , mypolls 0 +thr d01fdf00 , status 1 +connecting thr d01fdf00 , thread 4642 , mypolls 0 +myconn 0 connecting thr d01fdf00 , thread 4642 , mypolls 0 +thr d01fe080 , status 1 +connecting thr d01fe080 , thread 4643 , mypolls 0 +myconn 0 connecting thr d01fe080 , thread 4643 , mypolls 0 +thr d01fe200 , status 1 +connecting thr d01fe200 , thread 4644 , mypolls 0 +myconn 0 connecting thr d01fe200 , thread 4644 , mypolls 0 +thr d01fe380 , status 1 +connecting thr d01fe380 , thread 4645 , mypolls 0 +myconn 0 connecting thr d01fe380 , thread 4645 , mypolls 0 +thr d01fe500 , status 1 +connecting thr d01fe500 , thread 4646 , mypolls 0 +myconn 0 connecting thr d01fe500 , thread 4646 , mypolls 0 +thr d01fe680 , status 1 +connecting thr d01fe680 , thread 4647 , mypolls 0 +myconn 0 connecting thr d01fe680 , thread 4647 , mypolls 0 +thr d01fe800 , status 1 +connecting thr d01fe800 , thread 4648 , mypolls 0 +myconn 0 connecting thr d01fe800 , thread 4648 , mypolls 0 +thr d01fe980 , status 1 +connecting thr d01fe980 , thread 4649 , mypolls 0 +myconn 0 connecting thr d01fe980 , thread 4649 , mypolls 0 +thr d01feb00 , status 1 +connecting thr d01feb00 , thread 4650 , mypolls 0 +myconn 0 connecting thr d01feb00 , thread 4650 , mypolls 0 +thr d01fec80 , status 1 +connecting thr d01fec80 , thread 4651 , mypolls 0 +myconn 0 connecting thr d01fec80 , thread 4651 , mypolls 0 +thr d01fee00 , status 1 +connecting thr d01fee00 , thread 4652 , mypolls 0 +myconn 0 connecting thr d01fee00 , thread 4652 , mypolls 0 +thr d01fef80 , status 1 +connecting thr d01fef80 , thread 4653 , mypolls 0 +myconn 0 connecting thr d01fef80 , thread 4653 , mypolls 0 +thr d01ff100 , status 1 +connecting thr d01ff100 , thread 4654 , mypolls 0 +myconn 0 connecting thr d01ff100 , thread 4654 , mypolls 0 +thr d01ff280 , status 1 +connecting thr d01ff280 , thread 4655 , mypolls 0 +myconn 0 connecting thr d01ff280 , thread 4655 , mypolls 0 +thr d01ff400 , status 1 +connecting thr d01ff400 , thread 4656 , mypolls 0 +myconn 0 connecting thr d01ff400 , thread 4656 , mypolls 0 +thr d01ff580 , status 1 +connecting thr d01ff580 , thread 4657 , mypolls 0 +myconn 0 connecting thr d01ff580 , thread 4657 , mypolls 0 +thr d01ff700 , status 1 +connecting thr d01ff700 , thread 4658 , mypolls 0 +myconn 0 connecting thr d01ff700 , thread 4658 , mypolls 0 +thr d01ff880 , status 1 +connecting thr d01ff880 , thread 4659 , mypolls 0 +myconn 0 connecting thr d01ff880 , thread 4659 , mypolls 0 +thr d01ffa00 , status 1 +connecting thr d01ffa00 , thread 4660 , mypolls 0 +myconn 0 connecting thr d01ffa00 , thread 4660 , mypolls 0 +thr d01ffb80 , status 1 +connecting thr d01ffb80 , thread 4661 , mypolls 0 +myconn 0 connecting thr d01ffb80 , thread 4661 , mypolls 0 +thr d01ffd00 , status 1 +connecting thr d01ffd00 , thread 4662 , mypolls 0 +myconn 0 connecting thr d01ffd00 , thread 4662 , mypolls 0 +thr d01ffe80 , status 1 +connecting thr d01ffe80 , thread 4663 , mypolls 0 +myconn 0 connecting thr d01ffe80 , thread 4663 , mypolls 0 +thr cfd6c000 , status 1 +connecting thr cfd6c000 , thread 4664 , mypolls 0 +myconn 0 connecting thr cfd6c000 , thread 4664 , mypolls 0 +thr cfd6c180 , status 1 +connecting thr cfd6c180 , thread 4665 , mypolls 0 +myconn 0 connecting thr cfd6c180 , thread 4665 , mypolls 0 +thr cfd6c300 , status 1 +connecting thr cfd6c300 , thread 4666 , mypolls 0 +myconn 0 connecting thr cfd6c300 , thread 4666 , mypolls 0 +thr cfd6c480 , status 1 +connecting thr cfd6c480 , thread 4667 , mypolls 0 +myconn 0 connecting thr cfd6c480 , thread 4667 , mypolls 0 +thr cfd6c600 , status 1 +connecting thr cfd6c600 , thread 4668 , mypolls 0 +myconn 0 connecting thr cfd6c600 , thread 4668 , mypolls 0 +thr cfd6c780 , status 1 +connecting thr cfd6c780 , thread 4669 , mypolls 0 +myconn 0 connecting thr cfd6c780 , thread 4669 , mypolls 0 +thr cfd6c900 , status 1 +connecting thr cfd6c900 , thread 4670 , mypolls 0 +myconn 0 connecting thr cfd6c900 , thread 4670 , mypolls 0 +thr cfd6ca80 , status 1 +connecting thr cfd6ca80 , thread 4671 , mypolls 0 +myconn 0 connecting thr cfd6ca80 , thread 4671 , mypolls 0 +thr cfd6cc00 , status 1 +connecting thr cfd6cc00 , thread 4672 , mypolls 0 +myconn 0 connecting thr cfd6cc00 , thread 4672 , mypolls 0 +thr cfd6cd80 , status 1 +connecting thr cfd6cd80 , thread 4673 , mypolls 0 +myconn 0 connecting thr cfd6cd80 , thread 4673 , mypolls 0 +thr cfd6cf00 , status 1 +connecting thr cfd6cf00 , thread 4674 , mypolls 0 +myconn 0 connecting thr cfd6cf00 , thread 4674 , mypolls 0 +thr cfd6d080 , status 1 +connecting thr cfd6d080 , thread 4675 , mypolls 0 +myconn 0 connecting thr cfd6d080 , thread 4675 , mypolls 0 +thr cfd6d200 , status 1 +connecting thr cfd6d200 , thread 4676 , mypolls 0 +myconn 0 connecting thr cfd6d200 , thread 4676 , mypolls 0 +thr cfd6d380 , status 1 +connecting thr cfd6d380 , thread 4677 , mypolls 0 +myconn 0 connecting thr cfd6d380 , thread 4677 , mypolls 0 +thr cfd6d500 , status 1 +connecting thr cfd6d500 , thread 4678 , mypolls 0 +myconn 0 connecting thr cfd6d500 , thread 4678 , mypolls 0 +thr cfd6d680 , status 1 +connecting thr cfd6d680 , thread 4679 , mypolls 0 +myconn 0 connecting thr cfd6d680 , thread 4679 , mypolls 0 +thr cfd6d800 , status 1 +connecting thr cfd6d800 , thread 4680 , mypolls 0 +myconn 0 connecting thr cfd6d800 , thread 4680 , mypolls 0 +thr cfd6d980 , status 1 +connecting thr cfd6d980 , thread 4681 , mypolls 0 +myconn 0 connecting thr cfd6d980 , thread 4681 , mypolls 0 +thr cfd6db00 , status 1 +connecting thr cfd6db00 , thread 4682 , mypolls 0 +myconn 0 connecting thr cfd6db00 , thread 4682 , mypolls 0 +thr cfd6dc80 , status 1 +connecting thr cfd6dc80 , thread 4683 , mypolls 0 +myconn 0 connecting thr cfd6dc80 , thread 4683 , mypolls 0 +thr cfd6de00 , status 1 +connecting thr cfd6de00 , thread 4684 , mypolls 0 +myconn 0 connecting thr cfd6de00 , thread 4684 , mypolls 0 +thr cfd6df80 , status 1 +connecting thr cfd6df80 , thread 4685 , mypolls 0 +myconn 0 connecting thr cfd6df80 , thread 4685 , mypolls 0 +thr cfd6e100 , status 1 +connecting thr cfd6e100 , thread 4686 , mypolls 0 +myconn 0 connecting thr cfd6e100 , thread 4686 , mypolls 0 +thr cfd6e280 , status 1 +connecting thr cfd6e280 , thread 4687 , mypolls 0 +myconn 0 connecting thr cfd6e280 , thread 4687 , mypolls 0 +thr cfd6e400 , status 1 +connecting thr cfd6e400 , thread 4688 , mypolls 0 +myconn 0 connecting thr cfd6e400 , thread 4688 , mypolls 0 +thr cfd6e580 , status 1 +connecting thr cfd6e580 , thread 4689 , mypolls 0 +myconn 0 connecting thr cfd6e580 , thread 4689 , mypolls 0 +thr cfd6e700 , status 1 +connecting thr cfd6e700 , thread 4690 , mypolls 0 +myconn 0 connecting thr cfd6e700 , thread 4690 , mypolls 0 +thr cfd6e880 , status 1 +connecting thr cfd6e880 , thread 4691 , mypolls 0 +myconn 0 connecting thr cfd6e880 , thread 4691 , mypolls 0 +thr cfd6ea00 , status 1 +connecting thr cfd6ea00 , thread 4692 , mypolls 0 +myconn 0 connecting thr cfd6ea00 , thread 4692 , mypolls 0 +thr cfd6eb80 , status 1 +connecting thr cfd6eb80 , thread 4693 , mypolls 0 +myconn 0 connecting thr cfd6eb80 , thread 4693 , mypolls 0 +thr cfd6ed00 , status 1 +connecting thr cfd6ed00 , thread 4694 , mypolls 0 +myconn 0 connecting thr cfd6ed00 , thread 4694 , mypolls 0 +thr cfd6ee80 , status 1 +connecting thr cfd6ee80 , thread 4695 , mypolls 0 +myconn 0 connecting thr cfd6ee80 , thread 4695 , mypolls 0 +thr cfbcb000 , status 1 +connecting thr cfbcb000 , thread 4696 , mypolls 0 +myconn 0 connecting thr cfbcb000 , thread 4696 , mypolls 0 +thr cfbcb180 , status 1 +connecting thr cfbcb180 , thread 4697 , mypolls 0 +myconn 0 connecting thr cfbcb180 , thread 4697 , mypolls 0 +thr cfbcb300 , status 1 +connecting thr cfbcb300 , thread 4698 , mypolls 0 +myconn 0 connecting thr cfbcb300 , thread 4698 , mypolls 0 +thr cfbcb480 , status 1 +connecting thr cfbcb480 , thread 4699 , mypolls 0 +myconn 0 connecting thr cfbcb480 , thread 4699 , mypolls 0 +thr cfbcb600 , status 1 +connecting thr cfbcb600 , thread 4700 , mypolls 0 +myconn 0 connecting thr cfbcb600 , thread 4700 , mypolls 0 +thr cfbcb780 , status 1 +connecting thr cfbcb780 , thread 4701 , mypolls 0 +myconn 0 connecting thr cfbcb780 , thread 4701 , mypolls 0 +thr cfbcb900 , status 1 +connecting thr cfbcb900 , thread 4702 , mypolls 0 +myconn 0 connecting thr cfbcb900 , thread 4702 , mypolls 0 +thr cfbcba80 , status 1 +connecting thr cfbcba80 , thread 4703 , mypolls 0 +myconn 0 connecting thr cfbcba80 , thread 4703 , mypolls 0 +thr cfbcbc00 , status 1 +connecting thr cfbcbc00 , thread 4704 , mypolls 0 +myconn 0 connecting thr cfbcbc00 , thread 4704 , mypolls 0 +thr cfbcbd80 , status 1 +connecting thr cfbcbd80 , thread 4705 , mypolls 0 +myconn 0 connecting thr cfbcbd80 , thread 4705 , mypolls 0 +thr cfbcbf00 , status 1 +connecting thr cfbcbf00 , thread 4706 , mypolls 0 +myconn 0 connecting thr cfbcbf00 , thread 4706 , mypolls 0 +thr cfbcc080 , status 1 +connecting thr cfbcc080 , thread 4707 , mypolls 0 +myconn 0 connecting thr cfbcc080 , thread 4707 , mypolls 0 +thr cfbcc200 , status 1 +connecting thr cfbcc200 , thread 4708 , mypolls 0 +myconn 0 connecting thr cfbcc200 , thread 4708 , mypolls 0 +thr cfbcc380 , status 1 +connecting thr cfbcc380 , thread 4709 , mypolls 0 +myconn 0 connecting thr cfbcc380 , thread 4709 , mypolls 0 +thr cfbcc500 , status 1 +connecting thr cfbcc500 , thread 4710 , mypolls 0 +myconn 0 connecting thr cfbcc500 , thread 4710 , mypolls 0 +thr cfbcc680 , status 1 +connecting thr cfbcc680 , thread 4711 , mypolls 0 +myconn 0 connecting thr cfbcc680 , thread 4711 , mypolls 0 +thr cfbcc800 , status 1 +connecting thr cfbcc800 , thread 4712 , mypolls 0 +myconn 0 connecting thr cfbcc800 , thread 4712 , mypolls 0 +thr cfbcc980 , status 1 +connecting thr cfbcc980 , thread 4713 , mypolls 0 +myconn 0 connecting thr cfbcc980 , thread 4713 , mypolls 0 +thr cfbccb00 , status 1 +connecting thr cfbccb00 , thread 4714 , mypolls 0 +myconn 0 connecting thr cfbccb00 , thread 4714 , mypolls 0 +thr cfbccc80 , status 1 +connecting thr cfbccc80 , thread 4715 , mypolls 0 +myconn 0 connecting thr cfbccc80 , thread 4715 , mypolls 0 +thr cfbcce00 , status 1 +connecting thr cfbcce00 , thread 4716 , mypolls 0 +myconn 0 connecting thr cfbcce00 , thread 4716 , mypolls 0 +thr cfbccf80 , status 1 +connecting thr cfbccf80 , thread 4717 , mypolls 0 +myconn 0 connecting thr cfbccf80 , thread 4717 , mypolls 0 +thr cfbcd100 , status 1 +connecting thr cfbcd100 , thread 4718 , mypolls 0 +myconn 0 connecting thr cfbcd100 , thread 4718 , mypolls 0 +thr cfbcd280 , status 1 +connecting thr cfbcd280 , thread 4719 , mypolls 0 +myconn 0 connecting thr cfbcd280 , thread 4719 , mypolls 0 +thr cfbcd400 , status 1 +connecting thr cfbcd400 , thread 4720 , mypolls 0 +myconn 0 connecting thr cfbcd400 , thread 4720 , mypolls 0 +thr cfbcd580 , status 1 +connecting thr cfbcd580 , thread 4721 , mypolls 0 +myconn 0 connecting thr cfbcd580 , thread 4721 , mypolls 0 +thr cfbcd700 , status 1 +connecting thr cfbcd700 , thread 4722 , mypolls 0 +myconn 0 connecting thr cfbcd700 , thread 4722 , mypolls 0 +thr cfbcd880 , status 1 +connecting thr cfbcd880 , thread 4723 , mypolls 0 +myconn 0 connecting thr cfbcd880 , thread 4723 , mypolls 0 +thr cfbcda00 , status 1 +connecting thr cfbcda00 , thread 4724 , mypolls 0 +myconn 0 connecting thr cfbcda00 , thread 4724 , mypolls 0 +thr cfbcdb80 , status 1 +connecting thr cfbcdb80 , thread 4725 , mypolls 0 +myconn 0 connecting thr cfbcdb80 , thread 4725 , mypolls 0 +thr cfbcdd00 , status 1 +connecting thr cfbcdd00 , thread 4726 , mypolls 0 +myconn 0 connecting thr cfbcdd00 , thread 4726 , mypolls 0 +thr cfbcde80 , status 1 +connecting thr cfbcde80 , thread 4727 , mypolls 0 +myconn 0 connecting thr cfbcde80 , thread 4727 , mypolls 0 +thr cf63a000 , status 1 +connecting thr cf63a000 , thread 4728 , mypolls 0 +myconn 0 connecting thr cf63a000 , thread 4728 , mypolls 0 +thr cf63a180 , status 1 +connecting thr cf63a180 , thread 4729 , mypolls 0 +myconn 0 connecting thr cf63a180 , thread 4729 , mypolls 0 +thr cf63a300 , status 1 +connecting thr cf63a300 , thread 4730 , mypolls 0 +myconn 0 connecting thr cf63a300 , thread 4730 , mypolls 0 +thr cf63a480 , status 1 +connecting thr cf63a480 , thread 4731 , mypolls 0 +myconn 0 connecting thr cf63a480 , thread 4731 , mypolls 0 +thr cf63a600 , status 1 +connecting thr cf63a600 , thread 4732 , mypolls 0 +myconn 0 connecting thr cf63a600 , thread 4732 , mypolls 0 +thr cf63a780 , status 1 +connecting thr cf63a780 , thread 4733 , mypolls 0 +myconn 0 connecting thr cf63a780 , thread 4733 , mypolls 0 +thr cf63a900 , status 1 +connecting thr cf63a900 , thread 4734 , mypolls 0 +myconn 0 connecting thr cf63a900 , thread 4734 , mypolls 0 +thr cf63aa80 , status 1 +connecting thr cf63aa80 , thread 4735 , mypolls 0 +myconn 0 connecting thr cf63aa80 , thread 4735 , mypolls 0 +thr cf63ac00 , status 1 +connecting thr cf63ac00 , thread 4736 , mypolls 0 +myconn 0 connecting thr cf63ac00 , thread 4736 , mypolls 0 +thr cf63ad80 , status 1 +connecting thr cf63ad80 , thread 4737 , mypolls 0 +myconn 0 connecting thr cf63ad80 , thread 4737 , mypolls 0 +thr cf63af00 , status 1 +connecting thr cf63af00 , thread 4738 , mypolls 0 +myconn 0 connecting thr cf63af00 , thread 4738 , mypolls 0 +thr cf63b080 , status 1 +connecting thr cf63b080 , thread 4739 , mypolls 0 +myconn 0 connecting thr cf63b080 , thread 4739 , mypolls 0 +thr cf63b200 , status 1 +connecting thr cf63b200 , thread 4740 , mypolls 0 +myconn 0 connecting thr cf63b200 , thread 4740 , mypolls 0 +thr cf63b380 , status 1 +connecting thr cf63b380 , thread 4741 , mypolls 0 +myconn 0 connecting thr cf63b380 , thread 4741 , mypolls 0 +thr cf63b500 , status 1 +connecting thr cf63b500 , thread 4742 , mypolls 0 +myconn 0 connecting thr cf63b500 , thread 4742 , mypolls 0 +thr cf63b680 , status 1 +connecting thr cf63b680 , thread 4743 , mypolls 0 +myconn 0 connecting thr cf63b680 , thread 4743 , mypolls 0 +thr cf63b800 , status 1 +connecting thr cf63b800 , thread 4744 , mypolls 0 +myconn 0 connecting thr cf63b800 , thread 4744 , mypolls 0 +thr cf63b980 , status 1 +connecting thr cf63b980 , thread 4745 , mypolls 0 +myconn 0 connecting thr cf63b980 , thread 4745 , mypolls 0 +thr cf63bb00 , status 1 +connecting thr cf63bb00 , thread 4746 , mypolls 0 +myconn 0 connecting thr cf63bb00 , thread 4746 , mypolls 0 +thr cf63bc80 , status 1 +connecting thr cf63bc80 , thread 4747 , mypolls 0 +myconn 0 connecting thr cf63bc80 , thread 4747 , mypolls 0 +thr cf63be00 , status 1 +connecting thr cf63be00 , thread 4748 , mypolls 0 +myconn 0 connecting thr cf63be00 , thread 4748 , mypolls 0 +thr cf63bf80 , status 1 +connecting thr cf63bf80 , thread 4749 , mypolls 0 +myconn 0 connecting thr cf63bf80 , thread 4749 , mypolls 0 +thr cf63c100 , status 1 +connecting thr cf63c100 , thread 4750 , mypolls 0 +myconn 0 connecting thr cf63c100 , thread 4750 , mypolls 0 +thr cf63c280 , status 1 +connecting thr cf63c280 , thread 4751 , mypolls 0 +myconn 0 connecting thr cf63c280 , thread 4751 , mypolls 0 +thr cf63c400 , status 1 +connecting thr cf63c400 , thread 4752 , mypolls 0 +myconn 0 connecting thr cf63c400 , thread 4752 , mypolls 0 +thr cf63c580 , status 1 +connecting thr cf63c580 , thread 4753 , mypolls 0 +myconn 0 connecting thr cf63c580 , thread 4753 , mypolls 0 +thr cf63c700 , status 1 +connecting thr cf63c700 , thread 4754 , mypolls 0 +myconn 0 connecting thr cf63c700 , thread 4754 , mypolls 0 +thr cf63c880 , status 1 +connecting thr cf63c880 , thread 4755 , mypolls 0 +myconn 0 connecting thr cf63c880 , thread 4755 , mypolls 0 +thr cf63ca00 , status 1 +connecting thr cf63ca00 , thread 4756 , mypolls 0 +myconn 0 connecting thr cf63ca00 , thread 4756 , mypolls 0 +thr cf63cb80 , status 1 +connecting thr cf63cb80 , thread 4757 , mypolls 0 +myconn 0 connecting thr cf63cb80 , thread 4757 , mypolls 0 +thr cf63cd00 , status 1 +connecting thr cf63cd00 , thread 4758 , mypolls 0 +myconn 0 connecting thr cf63cd00 , thread 4758 , mypolls 0 +thr cf63ce80 , status 1 +connecting thr cf63ce80 , thread 4759 , mypolls 0 +myconn 0 connecting thr cf63ce80 , thread 4759 , mypolls 0 +thr cf49d000 , status 1 +connecting thr cf49d000 , thread 4760 , mypolls 0 +myconn 0 connecting thr cf49d000 , thread 4760 , mypolls 0 +thr cf49d180 , status 1 +connecting thr cf49d180 , thread 4761 , mypolls 0 +myconn 0 connecting thr cf49d180 , thread 4761 , mypolls 0 +thr cf49d300 , status 1 +connecting thr cf49d300 , thread 4762 , mypolls 0 +myconn 0 connecting thr cf49d300 , thread 4762 , mypolls 0 +thr cf49d480 , status 1 +connecting thr cf49d480 , thread 4763 , mypolls 0 +myconn 0 connecting thr cf49d480 , thread 4763 , mypolls 0 +thr cf49d600 , status 1 +connecting thr cf49d600 , thread 4764 , mypolls 0 +myconn 0 connecting thr cf49d600 , thread 4764 , mypolls 0 +thr cf49d780 , status 1 +connecting thr cf49d780 , thread 4765 , mypolls 0 +myconn 0 connecting thr cf49d780 , thread 4765 , mypolls 0 +thr cf49d900 , status 1 +connecting thr cf49d900 , thread 4766 , mypolls 0 +myconn 0 connecting thr cf49d900 , thread 4766 , mypolls 0 +thr cf49da80 , status 1 +connecting thr cf49da80 , thread 4767 , mypolls 0 +myconn 0 connecting thr cf49da80 , thread 4767 , mypolls 0 +thr cf49dc00 , status 1 +connecting thr cf49dc00 , thread 4768 , mypolls 0 +myconn 0 connecting thr cf49dc00 , thread 4768 , mypolls 0 +thr cf49dd80 , status 1 +connecting thr cf49dd80 , thread 4769 , mypolls 0 +myconn 0 connecting thr cf49dd80 , thread 4769 , mypolls 0 +thr cf49df00 , status 1 +connecting thr cf49df00 , thread 4770 , mypolls 0 +myconn 0 connecting thr cf49df00 , thread 4770 , mypolls 0 +thr cf49e080 , status 1 +connecting thr cf49e080 , thread 4771 , mypolls 0 +myconn 0 connecting thr cf49e080 , thread 4771 , mypolls 0 +thr cf49e200 , status 1 +connecting thr cf49e200 , thread 4772 , mypolls 0 +myconn 0 connecting thr cf49e200 , thread 4772 , mypolls 0 +thr cf49e380 , status 1 +connecting thr cf49e380 , thread 4773 , mypolls 0 +myconn 0 connecting thr cf49e380 , thread 4773 , mypolls 0 +thr cf49e500 , status 1 +connecting thr cf49e500 , thread 4774 , mypolls 0 +myconn 0 connecting thr cf49e500 , thread 4774 , mypolls 0 +thr cf49e680 , status 1 +connecting thr cf49e680 , thread 4775 , mypolls 0 +myconn 0 connecting thr cf49e680 , thread 4775 , mypolls 0 +thr cf49e800 , status 1 +connecting thr cf49e800 , thread 4776 , mypolls 0 +myconn 0 connecting thr cf49e800 , thread 4776 , mypolls 0 +thr cf49e980 , status 1 +connecting thr cf49e980 , thread 4777 , mypolls 0 +myconn 0 connecting thr cf49e980 , thread 4777 , mypolls 0 +thr cf49eb00 , status 1 +connecting thr cf49eb00 , thread 4778 , mypolls 0 +myconn 0 connecting thr cf49eb00 , thread 4778 , mypolls 0 +thr cf49ec80 , status 1 +connecting thr cf49ec80 , thread 4779 , mypolls 0 +myconn 0 connecting thr cf49ec80 , thread 4779 , mypolls 0 +thr cf49ee00 , status 1 +connecting thr cf49ee00 , thread 4780 , mypolls 0 +myconn 0 connecting thr cf49ee00 , thread 4780 , mypolls 0 +thr cf49ef80 , status 1 +connecting thr cf49ef80 , thread 4781 , mypolls 0 +myconn 0 connecting thr cf49ef80 , thread 4781 , mypolls 0 +thr cf49f100 , status 1 +connecting thr cf49f100 , thread 4782 , mypolls 0 +myconn 0 connecting thr cf49f100 , thread 4782 , mypolls 0 +thr cf49f280 , status 1 +connecting thr cf49f280 , thread 4783 , mypolls 0 +myconn 0 connecting thr cf49f280 , thread 4783 , mypolls 0 +thr cf49f400 , status 1 +connecting thr cf49f400 , thread 4784 , mypolls 0 +myconn 0 connecting thr cf49f400 , thread 4784 , mypolls 0 +thr cf49f580 , status 1 +connecting thr cf49f580 , thread 4785 , mypolls 0 +myconn 0 connecting thr cf49f580 , thread 4785 , mypolls 0 +thr cf49f700 , status 1 +connecting thr cf49f700 , thread 4786 , mypolls 0 +myconn 0 connecting thr cf49f700 , thread 4786 , mypolls 0 +thr cf49f880 , status 1 +connecting thr cf49f880 , thread 4787 , mypolls 0 +myconn 0 connecting thr cf49f880 , thread 4787 , mypolls 0 +thr cf49fa00 , status 1 +connecting thr cf49fa00 , thread 4788 , mypolls 0 +myconn 0 connecting thr cf49fa00 , thread 4788 , mypolls 0 +thr cf49fb80 , status 1 +connecting thr cf49fb80 , thread 4789 , mypolls 0 +myconn 0 connecting thr cf49fb80 , thread 4789 , mypolls 0 +thr cf49fd00 , status 1 +connecting thr cf49fd00 , thread 4790 , mypolls 0 +myconn 0 connecting thr cf49fd00 , thread 4790 , mypolls 0 +thr cf49fe80 , status 1 +connecting thr cf49fe80 , thread 4791 , mypolls 0 +myconn 0 connecting thr cf49fe80 , thread 4791 , mypolls 0 +thr cf5fd000 , status 1 +connecting thr cf5fd000 , thread 4792 , mypolls 0 +myconn 0 connecting thr cf5fd000 , thread 4792 , mypolls 0 +thr cf5fd180 , status 1 +connecting thr cf5fd180 , thread 4793 , mypolls 0 +myconn 0 connecting thr cf5fd180 , thread 4793 , mypolls 0 +thr cf5fd300 , status 1 +connecting thr cf5fd300 , thread 4794 , mypolls 0 +myconn 0 connecting thr cf5fd300 , thread 4794 , mypolls 0 +thr cf5fd480 , status 1 +connecting thr cf5fd480 , thread 4795 , mypolls 0 +myconn 0 connecting thr cf5fd480 , thread 4795 , mypolls 0 +thr cf5fd600 , status 1 +connecting thr cf5fd600 , thread 4796 , mypolls 0 +myconn 0 connecting thr cf5fd600 , thread 4796 , mypolls 0 +thr cf5fd780 , status 1 +connecting thr cf5fd780 , thread 4797 , mypolls 0 +myconn 0 connecting thr cf5fd780 , thread 4797 , mypolls 0 +thr cf5fd900 , status 1 +connecting thr cf5fd900 , thread 4798 , mypolls 0 +myconn 0 connecting thr cf5fd900 , thread 4798 , mypolls 0 +thr cf5fda80 , status 1 +connecting thr cf5fda80 , thread 4799 , mypolls 0 +myconn 0 connecting thr cf5fda80 , thread 4799 , mypolls 0 +thr cf5fdc00 , status 1 +connecting thr cf5fdc00 , thread 4800 , mypolls 0 +myconn 0 connecting thr cf5fdc00 , thread 4800 , mypolls 0 +thr cf5fdd80 , status 1 +connecting thr cf5fdd80 , thread 4801 , mypolls 0 +myconn 0 connecting thr cf5fdd80 , thread 4801 , mypolls 0 +thr cf5fdf00 , status 1 +connecting thr cf5fdf00 , thread 4802 , mypolls 0 +myconn 0 connecting thr cf5fdf00 , thread 4802 , mypolls 0 +thr cf5fe080 , status 1 +connecting thr cf5fe080 , thread 4803 , mypolls 0 +myconn 0 connecting thr cf5fe080 , thread 4803 , mypolls 0 +thr cf5fe200 , status 1 +connecting thr cf5fe200 , thread 4804 , mypolls 0 +myconn 0 connecting thr cf5fe200 , thread 4804 , mypolls 0 +thr cf5fe380 , status 1 +connecting thr cf5fe380 , thread 4805 , mypolls 0 +myconn 0 connecting thr cf5fe380 , thread 4805 , mypolls 0 +thr cf5fe500 , status 1 +connecting thr cf5fe500 , thread 4806 , mypolls 0 +myconn 0 connecting thr cf5fe500 , thread 4806 , mypolls 0 +thr cf5fe680 , status 1 +connecting thr cf5fe680 , thread 4807 , mypolls 0 +myconn 0 connecting thr cf5fe680 , thread 4807 , mypolls 0 +thr cf5fe800 , status 1 +connecting thr cf5fe800 , thread 4808 , mypolls 0 +myconn 0 connecting thr cf5fe800 , thread 4808 , mypolls 0 +thr cf5fe980 , status 1 +connecting thr cf5fe980 , thread 4809 , mypolls 0 +myconn 0 connecting thr cf5fe980 , thread 4809 , mypolls 0 +thr cf5feb00 , status 1 +connecting thr cf5feb00 , thread 4810 , mypolls 0 +myconn 0 connecting thr cf5feb00 , thread 4810 , mypolls 0 +thr cf5fec80 , status 1 +connecting thr cf5fec80 , thread 4811 , mypolls 0 +myconn 0 connecting thr cf5fec80 , thread 4811 , mypolls 0 +thr cf5fee00 , status 1 +connecting thr cf5fee00 , thread 4812 , mypolls 0 +myconn 0 connecting thr cf5fee00 , thread 4812 , mypolls 0 +thr cf5fef80 , status 1 +connecting thr cf5fef80 , thread 4813 , mypolls 0 +myconn 0 connecting thr cf5fef80 , thread 4813 , mypolls 0 +thr cf5ff100 , status 1 +connecting thr cf5ff100 , thread 4814 , mypolls 0 +myconn 0 connecting thr cf5ff100 , thread 4814 , mypolls 0 +thr cf5ff280 , status 1 +connecting thr cf5ff280 , thread 4815 , mypolls 0 +myconn 0 connecting thr cf5ff280 , thread 4815 , mypolls 0 +thr cf5ff400 , status 1 +connecting thr cf5ff400 , thread 4816 , mypolls 0 +myconn 0 connecting thr cf5ff400 , thread 4816 , mypolls 0 +thr cf5ff580 , status 1 +connecting thr cf5ff580 , thread 4817 , mypolls 0 +myconn 0 connecting thr cf5ff580 , thread 4817 , mypolls 0 +thr cf5ff700 , status 1 +connecting thr cf5ff700 , thread 4818 , mypolls 0 +myconn 0 connecting thr cf5ff700 , thread 4818 , mypolls 0 +thr cf5ff880 , status 1 +connecting thr cf5ff880 , thread 4819 , mypolls 0 +myconn 0 connecting thr cf5ff880 , thread 4819 , mypolls 0 +thr cf5ffa00 , status 1 +connecting thr cf5ffa00 , thread 4820 , mypolls 0 +myconn 0 connecting thr cf5ffa00 , thread 4820 , mypolls 0 +thr cf5ffb80 , status 1 +connecting thr cf5ffb80 , thread 4821 , mypolls 0 +myconn 0 connecting thr cf5ffb80 , thread 4821 , mypolls 0 +thr cf5ffd00 , status 1 +connecting thr cf5ffd00 , thread 4822 , mypolls 0 +myconn 0 connecting thr cf5ffd00 , thread 4822 , mypolls 0 +thr cf5ffe80 , status 1 +connecting thr cf5ffe80 , thread 4823 , mypolls 0 +myconn 0 connecting thr cf5ffe80 , thread 4823 , mypolls 0 +thr cf163000 , status 1 +connecting thr cf163000 , thread 4824 , mypolls 0 +myconn 0 connecting thr cf163000 , thread 4824 , mypolls 0 +thr cf163180 , status 1 +connecting thr cf163180 , thread 4825 , mypolls 0 +myconn 0 connecting thr cf163180 , thread 4825 , mypolls 0 +thr cf163300 , status 1 +connecting thr cf163300 , thread 4826 , mypolls 0 +myconn 0 connecting thr cf163300 , thread 4826 , mypolls 0 +thr cf163480 , status 1 +connecting thr cf163480 , thread 4827 , mypolls 0 +myconn 0 connecting thr cf163480 , thread 4827 , mypolls 0 +thr cf163600 , status 1 +connecting thr cf163600 , thread 4828 , mypolls 0 +myconn 0 connecting thr cf163600 , thread 4828 , mypolls 0 +thr cf163780 , status 1 +connecting thr cf163780 , thread 4829 , mypolls 0 +myconn 0 connecting thr cf163780 , thread 4829 , mypolls 0 +thr cf163900 , status 1 +connecting thr cf163900 , thread 4830 , mypolls 0 +myconn 0 connecting thr cf163900 , thread 4830 , mypolls 0 +thr cf163a80 , status 1 +connecting thr cf163a80 , thread 4831 , mypolls 0 +myconn 0 connecting thr cf163a80 , thread 4831 , mypolls 0 +thr cf163c00 , status 1 +connecting thr cf163c00 , thread 4832 , mypolls 0 +myconn 0 connecting thr cf163c00 , thread 4832 , mypolls 0 +thr cf163d80 , status 1 +connecting thr cf163d80 , thread 4833 , mypolls 0 +myconn 0 connecting thr cf163d80 , thread 4833 , mypolls 0 +thr cf163f00 , status 1 +connecting thr cf163f00 , thread 4834 , mypolls 0 +myconn 0 connecting thr cf163f00 , thread 4834 , mypolls 0 +thr cf164080 , status 1 +connecting thr cf164080 , thread 4835 , mypolls 0 +myconn 0 connecting thr cf164080 , thread 4835 , mypolls 0 +thr cf164200 , status 1 +connecting thr cf164200 , thread 4836 , mypolls 0 +myconn 0 connecting thr cf164200 , thread 4836 , mypolls 0 +thr cf164380 , status 1 +connecting thr cf164380 , thread 4837 , mypolls 0 +myconn 0 connecting thr cf164380 , thread 4837 , mypolls 0 +thr cf164500 , status 1 +connecting thr cf164500 , thread 4838 , mypolls 0 +myconn 0 connecting thr cf164500 , thread 4838 , mypolls 0 +thr cf164680 , status 1 +connecting thr cf164680 , thread 4839 , mypolls 0 +myconn 0 connecting thr cf164680 , thread 4839 , mypolls 0 +thr cf164800 , status 1 +connecting thr cf164800 , thread 4840 , mypolls 0 +myconn 0 connecting thr cf164800 , thread 4840 , mypolls 0 +thr cf164980 , status 1 +connecting thr cf164980 , thread 4841 , mypolls 0 +myconn 0 connecting thr cf164980 , thread 4841 , mypolls 0 +thr cf164b00 , status 1 +connecting thr cf164b00 , thread 4842 , mypolls 0 +myconn 0 connecting thr cf164b00 , thread 4842 , mypolls 0 +thr cf164c80 , status 1 +connecting thr cf164c80 , thread 4843 , mypolls 0 +myconn 0 connecting thr cf164c80 , thread 4843 , mypolls 0 +thr cf164e00 , status 1 +connecting thr cf164e00 , thread 4844 , mypolls 0 +myconn 0 connecting thr cf164e00 , thread 4844 , mypolls 0 +thr cf164f80 , status 1 +connecting thr cf164f80 , thread 4845 , mypolls 0 +myconn 0 connecting thr cf164f80 , thread 4845 , mypolls 0 +thr cf165100 , status 1 +connecting thr cf165100 , thread 4846 , mypolls 0 +myconn 0 connecting thr cf165100 , thread 4846 , mypolls 0 +thr cf165280 , status 1 +connecting thr cf165280 , thread 4847 , mypolls 0 +myconn 0 connecting thr cf165280 , thread 4847 , mypolls 0 +thr cf165400 , status 1 +connecting thr cf165400 , thread 4848 , mypolls 0 +myconn 0 connecting thr cf165400 , thread 4848 , mypolls 0 +thr cf165580 , status 1 +connecting thr cf165580 , thread 4849 , mypolls 0 +myconn 0 connecting thr cf165580 , thread 4849 , mypolls 0 +thr cf165700 , status 1 +connecting thr cf165700 , thread 4850 , mypolls 0 +myconn 0 connecting thr cf165700 , thread 4850 , mypolls 0 +thr cf165880 , status 1 +connecting thr cf165880 , thread 4851 , mypolls 0 +myconn 0 connecting thr cf165880 , thread 4851 , mypolls 0 +thr cf165a00 , status 1 +connecting thr cf165a00 , thread 4852 , mypolls 0 +myconn 0 connecting thr cf165a00 , thread 4852 , mypolls 0 +thr cf165b80 , status 1 +connecting thr cf165b80 , thread 4853 , mypolls 0 +myconn 0 connecting thr cf165b80 , thread 4853 , mypolls 0 +thr cf165d00 , status 1 +connecting thr cf165d00 , thread 4854 , mypolls 0 +myconn 0 connecting thr cf165d00 , thread 4854 , mypolls 0 +thr cf165e80 , status 1 +connecting thr cf165e80 , thread 4855 , mypolls 0 +myconn 0 connecting thr cf165e80 , thread 4855 , mypolls 0 +thr cefc3000 , status 1 +connecting thr cefc3000 , thread 4856 , mypolls 0 +myconn 0 connecting thr cefc3000 , thread 4856 , mypolls 0 +thr cefc3180 , status 1 +connecting thr cefc3180 , thread 4857 , mypolls 0 +myconn 0 connecting thr cefc3180 , thread 4857 , mypolls 0 +thr cefc3300 , status 1 +connecting thr cefc3300 , thread 4858 , mypolls 0 +myconn 0 connecting thr cefc3300 , thread 4858 , mypolls 0 +thr cefc3480 , status 1 +connecting thr cefc3480 , thread 4859 , mypolls 0 +myconn 0 connecting thr cefc3480 , thread 4859 , mypolls 0 +thr cefc3600 , status 1 +connecting thr cefc3600 , thread 4860 , mypolls 0 +myconn 0 connecting thr cefc3600 , thread 4860 , mypolls 0 +thr cefc3780 , status 1 +connecting thr cefc3780 , thread 4861 , mypolls 0 +myconn 0 connecting thr cefc3780 , thread 4861 , mypolls 0 +thr cefc3900 , status 1 +connecting thr cefc3900 , thread 4862 , mypolls 0 +myconn 0 connecting thr cefc3900 , thread 4862 , mypolls 0 +thr cefc3a80 , status 1 +connecting thr cefc3a80 , thread 4863 , mypolls 0 +myconn 0 connecting thr cefc3a80 , thread 4863 , mypolls 0 +thr cefc3c00 , status 1 +connecting thr cefc3c00 , thread 4864 , mypolls 0 +myconn 0 connecting thr cefc3c00 , thread 4864 , mypolls 0 +thr cefc3d80 , status 1 +connecting thr cefc3d80 , thread 4865 , mypolls 0 +myconn 0 connecting thr cefc3d80 , thread 4865 , mypolls 0 +thr cefc3f00 , status 1 +connecting thr cefc3f00 , thread 4866 , mypolls 0 +myconn 0 connecting thr cefc3f00 , thread 4866 , mypolls 0 +thr cefc4080 , status 1 +connecting thr cefc4080 , thread 4867 , mypolls 0 +myconn 0 connecting thr cefc4080 , thread 4867 , mypolls 0 +thr cefc4200 , status 1 +connecting thr cefc4200 , thread 4868 , mypolls 0 +myconn 0 connecting thr cefc4200 , thread 4868 , mypolls 0 +thr cefc4380 , status 1 +connecting thr cefc4380 , thread 4869 , mypolls 0 +myconn 0 connecting thr cefc4380 , thread 4869 , mypolls 0 +thr cefc4500 , status 1 +connecting thr cefc4500 , thread 4870 , mypolls 0 +myconn 0 connecting thr cefc4500 , thread 4870 , mypolls 0 +thr cefc4680 , status 1 +connecting thr cefc4680 , thread 4871 , mypolls 0 +myconn 0 connecting thr cefc4680 , thread 4871 , mypolls 0 +thr cefc4800 , status 1 +connecting thr cefc4800 , thread 4872 , mypolls 0 +myconn 0 connecting thr cefc4800 , thread 4872 , mypolls 0 +thr cefc4980 , status 1 +connecting thr cefc4980 , thread 4873 , mypolls 0 +myconn 0 connecting thr cefc4980 , thread 4873 , mypolls 0 +thr cefc4b00 , status 1 +connecting thr cefc4b00 , thread 4874 , mypolls 0 +myconn 0 connecting thr cefc4b00 , thread 4874 , mypolls 0 +thr cefc4c80 , status 1 +connecting thr cefc4c80 , thread 4875 , mypolls 0 +myconn 0 connecting thr cefc4c80 , thread 4875 , mypolls 0 +thr cefc4e00 , status 1 +connecting thr cefc4e00 , thread 4876 , mypolls 0 +myconn 0 connecting thr cefc4e00 , thread 4876 , mypolls 0 +thr cefc4f80 , status 1 +connecting thr cefc4f80 , thread 4877 , mypolls 0 +myconn 0 connecting thr cefc4f80 , thread 4877 , mypolls 0 +thr cefc5100 , status 1 +connecting thr cefc5100 , thread 4878 , mypolls 0 +myconn 0 connecting thr cefc5100 , thread 4878 , mypolls 0 +thr cefc5280 , status 1 +connecting thr cefc5280 , thread 4879 , mypolls 0 +myconn 0 connecting thr cefc5280 , thread 4879 , mypolls 0 +thr cefc5400 , status 1 +connecting thr cefc5400 , thread 4880 , mypolls 0 +myconn 0 connecting thr cefc5400 , thread 4880 , mypolls 0 +thr cefc5580 , status 1 +connecting thr cefc5580 , thread 4881 , mypolls 0 +myconn 0 connecting thr cefc5580 , thread 4881 , mypolls 0 +thr cefc5700 , status 1 +connecting thr cefc5700 , thread 4882 , mypolls 0 +myconn 0 connecting thr cefc5700 , thread 4882 , mypolls 0 +thr cefc5880 , status 1 +connecting thr cefc5880 , thread 4883 , mypolls 0 +myconn 0 connecting thr cefc5880 , thread 4883 , mypolls 0 +thr cefc5a00 , status 1 +connecting thr cefc5a00 , thread 4884 , mypolls 0 +myconn 0 connecting thr cefc5a00 , thread 4884 , mypolls 0 +thr cefc5b80 , status 1 +connecting thr cefc5b80 , thread 4885 , mypolls 0 +myconn 0 connecting thr cefc5b80 , thread 4885 , mypolls 0 +thr cefc5d00 , status 1 +connecting thr cefc5d00 , thread 4886 , mypolls 0 +myconn 0 connecting thr cefc5d00 , thread 4886 , mypolls 0 +thr cefc5e80 , status 1 +connecting thr cefc5e80 , thread 4887 , mypolls 0 +myconn 0 connecting thr cefc5e80 , thread 4887 , mypolls 0 +thr cedfc000 , status 1 +connecting thr cedfc000 , thread 4888 , mypolls 0 +myconn 0 connecting thr cedfc000 , thread 4888 , mypolls 0 +thr cedfc180 , status 1 +connecting thr cedfc180 , thread 4889 , mypolls 0 +myconn 0 connecting thr cedfc180 , thread 4889 , mypolls 0 +thr cedfc300 , status 1 +connecting thr cedfc300 , thread 4890 , mypolls 0 +myconn 0 connecting thr cedfc300 , thread 4890 , mypolls 0 +thr cedfc480 , status 1 +connecting thr cedfc480 , thread 4891 , mypolls 0 +myconn 0 connecting thr cedfc480 , thread 4891 , mypolls 0 +thr cedfc600 , status 1 +connecting thr cedfc600 , thread 4892 , mypolls 0 +myconn 0 connecting thr cedfc600 , thread 4892 , mypolls 0 +thr cedfc780 , status 1 +connecting thr cedfc780 , thread 4893 , mypolls 0 +myconn 0 connecting thr cedfc780 , thread 4893 , mypolls 0 +thr cedfc900 , status 1 +connecting thr cedfc900 , thread 4894 , mypolls 0 +myconn 0 connecting thr cedfc900 , thread 4894 , mypolls 0 +thr cedfca80 , status 1 +connecting thr cedfca80 , thread 4895 , mypolls 0 +myconn 0 connecting thr cedfca80 , thread 4895 , mypolls 0 +thr cedfcc00 , status 1 +connecting thr cedfcc00 , thread 4896 , mypolls 0 +myconn 0 connecting thr cedfcc00 , thread 4896 , mypolls 0 +thr cedfcd80 , status 1 +connecting thr cedfcd80 , thread 4897 , mypolls 0 +myconn 0 connecting thr cedfcd80 , thread 4897 , mypolls 0 +thr cedfcf00 , status 1 +connecting thr cedfcf00 , thread 4898 , mypolls 0 +myconn 0 connecting thr cedfcf00 , thread 4898 , mypolls 0 +thr cedfd080 , status 1 +connecting thr cedfd080 , thread 4899 , mypolls 0 +myconn 0 connecting thr cedfd080 , thread 4899 , mypolls 0 +thr cedfd200 , status 1 +connecting thr cedfd200 , thread 4900 , mypolls 0 +myconn 0 connecting thr cedfd200 , thread 4900 , mypolls 0 +thr cedfd380 , status 1 +connecting thr cedfd380 , thread 4901 , mypolls 0 +myconn 0 connecting thr cedfd380 , thread 4901 , mypolls 0 +thr cedfd500 , status 1 +connecting thr cedfd500 , thread 4902 , mypolls 0 +myconn 0 connecting thr cedfd500 , thread 4902 , mypolls 0 +thr cedfd680 , status 1 +connecting thr cedfd680 , thread 4903 , mypolls 0 +myconn 0 connecting thr cedfd680 , thread 4903 , mypolls 0 +thr cedfd800 , status 1 +connecting thr cedfd800 , thread 4904 , mypolls 0 +myconn 0 connecting thr cedfd800 , thread 4904 , mypolls 0 +thr cedfd980 , status 1 +connecting thr cedfd980 , thread 4905 , mypolls 0 +myconn 0 connecting thr cedfd980 , thread 4905 , mypolls 0 +thr cedfdb00 , status 1 +connecting thr cedfdb00 , thread 4906 , mypolls 0 +myconn 0 connecting thr cedfdb00 , thread 4906 , mypolls 0 +thr cedfdc80 , status 1 +connecting thr cedfdc80 , thread 4907 , mypolls 0 +myconn 0 connecting thr cedfdc80 , thread 4907 , mypolls 0 +thr cedfde00 , status 1 +connecting thr cedfde00 , thread 4908 , mypolls 0 +myconn 0 connecting thr cedfde00 , thread 4908 , mypolls 0 +thr cedfdf80 , status 1 +connecting thr cedfdf80 , thread 4909 , mypolls 0 +myconn 0 connecting thr cedfdf80 , thread 4909 , mypolls 0 +thr cedfe100 , status 1 +connecting thr cedfe100 , thread 4910 , mypolls 0 +myconn 0 connecting thr cedfe100 , thread 4910 , mypolls 0 +thr cedfe280 , status 1 +connecting thr cedfe280 , thread 4911 , mypolls 0 +myconn 0 connecting thr cedfe280 , thread 4911 , mypolls 0 +thr cedfe400 , status 1 +connecting thr cedfe400 , thread 4912 , mypolls 0 +myconn 0 connecting thr cedfe400 , thread 4912 , mypolls 0 +thr cedfe580 , status 1 +connecting thr cedfe580 , thread 4913 , mypolls 0 +myconn 0 connecting thr cedfe580 , thread 4913 , mypolls 0 +thr cedfe700 , status 1 +connecting thr cedfe700 , thread 4914 , mypolls 0 +myconn 0 connecting thr cedfe700 , thread 4914 , mypolls 0 +thr cedfe880 , status 1 +connecting thr cedfe880 , thread 4915 , mypolls 0 +myconn 0 connecting thr cedfe880 , thread 4915 , mypolls 0 +thr cedfea00 , status 1 +connecting thr cedfea00 , thread 4916 , mypolls 0 +myconn 0 connecting thr cedfea00 , thread 4916 , mypolls 0 +thr cedfeb80 , status 1 +connecting thr cedfeb80 , thread 4917 , mypolls 0 +myconn 0 connecting thr cedfeb80 , thread 4917 , mypolls 0 +thr cedfed00 , status 1 +connecting thr cedfed00 , thread 4918 , mypolls 0 +myconn 0 connecting thr cedfed00 , thread 4918 , mypolls 0 +thr cedfee80 , status 1 +connecting thr cedfee80 , thread 4919 , mypolls 0 +myconn 0 connecting thr cedfee80 , thread 4919 , mypolls 0 +thr ce899000 , status 1 +connecting thr ce899000 , thread 4920 , mypolls 0 +myconn 0 connecting thr ce899000 , thread 4920 , mypolls 0 +thr ce899180 , status 1 +connecting thr ce899180 , thread 4921 , mypolls 0 +myconn 0 connecting thr ce899180 , thread 4921 , mypolls 0 +thr ce899300 , status 1 +connecting thr ce899300 , thread 4922 , mypolls 0 +myconn 0 connecting thr ce899300 , thread 4922 , mypolls 0 +thr ce899480 , status 1 +connecting thr ce899480 , thread 4923 , mypolls 0 +myconn 0 connecting thr ce899480 , thread 4923 , mypolls 0 +thr ce899600 , status 1 +connecting thr ce899600 , thread 4924 , mypolls 0 +myconn 0 connecting thr ce899600 , thread 4924 , mypolls 0 +thr ce899780 , status 1 +connecting thr ce899780 , thread 4925 , mypolls 0 +myconn 0 connecting thr ce899780 , thread 4925 , mypolls 0 +thr ce899900 , status 1 +connecting thr ce899900 , thread 4926 , mypolls 0 +myconn 0 connecting thr ce899900 , thread 4926 , mypolls 0 +thr ce899a80 , status 1 +connecting thr ce899a80 , thread 4927 , mypolls 0 +myconn 0 connecting thr ce899a80 , thread 4927 , mypolls 0 +thr ce899c00 , status 1 +connecting thr ce899c00 , thread 4928 , mypolls 0 +myconn 0 connecting thr ce899c00 , thread 4928 , mypolls 0 +thr ce899d80 , status 1 +connecting thr ce899d80 , thread 4929 , mypolls 0 +myconn 0 connecting thr ce899d80 , thread 4929 , mypolls 0 +thr ce899f00 , status 1 +connecting thr ce899f00 , thread 4930 , mypolls 0 +myconn 0 connecting thr ce899f00 , thread 4930 , mypolls 0 +thr ce89a080 , status 1 +connecting thr ce89a080 , thread 4931 , mypolls 0 +myconn 0 connecting thr ce89a080 , thread 4931 , mypolls 0 +thr ce89a200 , status 1 +connecting thr ce89a200 , thread 4932 , mypolls 0 +myconn 0 connecting thr ce89a200 , thread 4932 , mypolls 0 +thr ce89a380 , status 1 +connecting thr ce89a380 , thread 4933 , mypolls 0 +myconn 0 connecting thr ce89a380 , thread 4933 , mypolls 0 +thr ce89a500 , status 1 +connecting thr ce89a500 , thread 4934 , mypolls 0 +myconn 0 connecting thr ce89a500 , thread 4934 , mypolls 0 +thr ce89a680 , status 1 +connecting thr ce89a680 , thread 4935 , mypolls 0 +myconn 0 connecting thr ce89a680 , thread 4935 , mypolls 0 +thr ce89a800 , status 1 +connecting thr ce89a800 , thread 4936 , mypolls 0 +myconn 0 connecting thr ce89a800 , thread 4936 , mypolls 0 +thr ce89a980 , status 1 +connecting thr ce89a980 , thread 4937 , mypolls 0 +myconn 0 connecting thr ce89a980 , thread 4937 , mypolls 0 +thr ce89ab00 , status 1 +connecting thr ce89ab00 , thread 4938 , mypolls 0 +myconn 0 connecting thr ce89ab00 , thread 4938 , mypolls 0 +thr ce89ac80 , status 1 +connecting thr ce89ac80 , thread 4939 , mypolls 0 +myconn 0 connecting thr ce89ac80 , thread 4939 , mypolls 0 +thr ce89ae00 , status 1 +connecting thr ce89ae00 , thread 4940 , mypolls 0 +myconn 0 connecting thr ce89ae00 , thread 4940 , mypolls 0 +thr ce89af80 , status 1 +connecting thr ce89af80 , thread 4941 , mypolls 0 +myconn 0 connecting thr ce89af80 , thread 4941 , mypolls 0 +thr ce89b100 , status 1 +connecting thr ce89b100 , thread 4942 , mypolls 0 +myconn 0 connecting thr ce89b100 , thread 4942 , mypolls 0 +thr ce89b280 , status 1 +connecting thr ce89b280 , thread 4943 , mypolls 0 +myconn 0 connecting thr ce89b280 , thread 4943 , mypolls 0 +thr ce89b400 , status 1 +connecting thr ce89b400 , thread 4944 , mypolls 0 +myconn 0 connecting thr ce89b400 , thread 4944 , mypolls 0 +thr ce89b580 , status 1 +connecting thr ce89b580 , thread 4945 , mypolls 0 +myconn 0 connecting thr ce89b580 , thread 4945 , mypolls 0 +thr ce89b700 , status 1 +connecting thr ce89b700 , thread 4946 , mypolls 0 +myconn 0 connecting thr ce89b700 , thread 4946 , mypolls 0 +thr ce89b880 , status 1 +connecting thr ce89b880 , thread 4947 , mypolls 0 +myconn 0 connecting thr ce89b880 , thread 4947 , mypolls 0 +thr ce89ba00 , status 1 +connecting thr ce89ba00 , thread 4948 , mypolls 0 +myconn 0 connecting thr ce89ba00 , thread 4948 , mypolls 0 +thr ce89bb80 , status 1 +connecting thr ce89bb80 , thread 4949 , mypolls 0 +myconn 0 connecting thr ce89bb80 , thread 4949 , mypolls 0 +thr ce89bd00 , status 1 +connecting thr ce89bd00 , thread 4950 , mypolls 0 +myconn 0 connecting thr ce89bd00 , thread 4950 , mypolls 0 +thr ce89be80 , status 1 +connecting thr ce89be80 , thread 4951 , mypolls 0 +myconn 0 connecting thr ce89be80 , thread 4951 , mypolls 0 +thr ce6fb000 , status 1 +connecting thr ce6fb000 , thread 4952 , mypolls 0 +myconn 0 connecting thr ce6fb000 , thread 4952 , mypolls 0 +thr ce6fb180 , status 1 +connecting thr ce6fb180 , thread 4953 , mypolls 0 +myconn 0 connecting thr ce6fb180 , thread 4953 , mypolls 0 +thr ce6fb300 , status 1 +connecting thr ce6fb300 , thread 4954 , mypolls 0 +myconn 0 connecting thr ce6fb300 , thread 4954 , mypolls 0 +thr ce6fb480 , status 1 +connecting thr ce6fb480 , thread 4955 , mypolls 0 +myconn 0 connecting thr ce6fb480 , thread 4955 , mypolls 0 +thr ce6fb600 , status 1 +connecting thr ce6fb600 , thread 4956 , mypolls 0 +myconn 0 connecting thr ce6fb600 , thread 4956 , mypolls 0 +thr ce6fb780 , status 1 +connecting thr ce6fb780 , thread 4957 , mypolls 0 +myconn 0 connecting thr ce6fb780 , thread 4957 , mypolls 0 +thr ce6fb900 , status 1 +connecting thr ce6fb900 , thread 4958 , mypolls 0 +myconn 0 connecting thr ce6fb900 , thread 4958 , mypolls 0 +thr ce6fba80 , status 1 +connecting thr ce6fba80 , thread 4959 , mypolls 0 +myconn 0 connecting thr ce6fba80 , thread 4959 , mypolls 0 +thr ce6fbc00 , status 1 +connecting thr ce6fbc00 , thread 4960 , mypolls 0 +myconn 0 connecting thr ce6fbc00 , thread 4960 , mypolls 0 +thr ce6fbd80 , status 1 +connecting thr ce6fbd80 , thread 4961 , mypolls 0 +myconn 0 connecting thr ce6fbd80 , thread 4961 , mypolls 0 +thr ce6fbf00 , status 1 +connecting thr ce6fbf00 , thread 4962 , mypolls 0 +myconn 0 connecting thr ce6fbf00 , thread 4962 , mypolls 0 +thr ce6fc080 , status 1 +connecting thr ce6fc080 , thread 4963 , mypolls 0 +myconn 0 connecting thr ce6fc080 , thread 4963 , mypolls 0 +thr ce6fc200 , status 1 +connecting thr ce6fc200 , thread 4964 , mypolls 0 +myconn 0 connecting thr ce6fc200 , thread 4964 , mypolls 0 +thr ce6fc380 , status 1 +connecting thr ce6fc380 , thread 4965 , mypolls 0 +myconn 0 connecting thr ce6fc380 , thread 4965 , mypolls 0 +thr ce6fc500 , status 1 +connecting thr ce6fc500 , thread 4966 , mypolls 0 +myconn 0 connecting thr ce6fc500 , thread 4966 , mypolls 0 +thr ce6fc680 , status 1 +connecting thr ce6fc680 , thread 4967 , mypolls 0 +myconn 0 connecting thr ce6fc680 , thread 4967 , mypolls 0 +thr ce6fc800 , status 1 +connecting thr ce6fc800 , thread 4968 , mypolls 0 +myconn 0 connecting thr ce6fc800 , thread 4968 , mypolls 0 +thr ce6fc980 , status 1 +connecting thr ce6fc980 , thread 4969 , mypolls 0 +myconn 0 connecting thr ce6fc980 , thread 4969 , mypolls 0 +thr ce6fcb00 , status 1 +connecting thr ce6fcb00 , thread 4970 , mypolls 0 +myconn 0 connecting thr ce6fcb00 , thread 4970 , mypolls 0 +thr ce6fcc80 , status 1 +connecting thr ce6fcc80 , thread 4971 , mypolls 0 +myconn 0 connecting thr ce6fcc80 , thread 4971 , mypolls 0 +thr ce6fce00 , status 1 +connecting thr ce6fce00 , thread 4972 , mypolls 0 +myconn 0 connecting thr ce6fce00 , thread 4972 , mypolls 0 +thr ce6fcf80 , status 1 +connecting thr ce6fcf80 , thread 4973 , mypolls 0 +myconn 0 connecting thr ce6fcf80 , thread 4973 , mypolls 0 +thr ce6fd100 , status 1 +connecting thr ce6fd100 , thread 4974 , mypolls 0 +myconn 0 connecting thr ce6fd100 , thread 4974 , mypolls 0 +thr ce6fd280 , status 1 +connecting thr ce6fd280 , thread 4975 , mypolls 0 +myconn 0 connecting thr ce6fd280 , thread 4975 , mypolls 0 +thr ce6fd400 , status 1 +connecting thr ce6fd400 , thread 4976 , mypolls 0 +myconn 0 connecting thr ce6fd400 , thread 4976 , mypolls 0 +thr ce6fd580 , status 1 +connecting thr ce6fd580 , thread 4977 , mypolls 0 +myconn 0 connecting thr ce6fd580 , thread 4977 , mypolls 0 +thr ce6fd700 , status 1 +connecting thr ce6fd700 , thread 4978 , mypolls 0 +myconn 0 connecting thr ce6fd700 , thread 4978 , mypolls 0 +thr ce6fd880 , status 1 +connecting thr ce6fd880 , thread 4979 , mypolls 0 +myconn 0 connecting thr ce6fd880 , thread 4979 , mypolls 0 +thr ce6fda00 , status 1 +connecting thr ce6fda00 , thread 4980 , mypolls 0 +myconn 0 connecting thr ce6fda00 , thread 4980 , mypolls 0 +thr ce6fdb80 , status 1 +connecting thr ce6fdb80 , thread 4981 , mypolls 0 +myconn 0 connecting thr ce6fdb80 , thread 4981 , mypolls 0 +thr ce6fdd00 , status 1 +connecting thr ce6fdd00 , thread 4982 , mypolls 0 +myconn 0 connecting thr ce6fdd00 , thread 4982 , mypolls 0 +thr ce6fde80 , status 1 +connecting thr ce6fde80 , thread 4983 , mypolls 0 +myconn 0 connecting thr ce6fde80 , thread 4983 , mypolls 0 +thr ce55c000 , status 1 +connecting thr ce55c000 , thread 4984 , mypolls 0 +myconn 0 connecting thr ce55c000 , thread 4984 , mypolls 0 +thr ce55c180 , status 1 +connecting thr ce55c180 , thread 4985 , mypolls 0 +myconn 0 connecting thr ce55c180 , thread 4985 , mypolls 0 +thr ce55c300 , status 1 +connecting thr ce55c300 , thread 4986 , mypolls 0 +myconn 0 connecting thr ce55c300 , thread 4986 , mypolls 0 +thr ce55c480 , status 1 +connecting thr ce55c480 , thread 4987 , mypolls 0 +myconn 0 connecting thr ce55c480 , thread 4987 , mypolls 0 +thr ce55c600 , status 1 +connecting thr ce55c600 , thread 4988 , mypolls 0 +myconn 0 connecting thr ce55c600 , thread 4988 , mypolls 0 +thr ce55c780 , status 1 +connecting thr ce55c780 , thread 4989 , mypolls 0 +myconn 0 connecting thr ce55c780 , thread 4989 , mypolls 0 +thr ce55c900 , status 1 +connecting thr ce55c900 , thread 4990 , mypolls 0 +myconn 0 connecting thr ce55c900 , thread 4990 , mypolls 0 +thr ce55ca80 , status 1 +connecting thr ce55ca80 , thread 4991 , mypolls 0 +myconn 0 connecting thr ce55ca80 , thread 4991 , mypolls 0 +thr ce55cc00 , status 1 +connecting thr ce55cc00 , thread 4992 , mypolls 0 +myconn 0 connecting thr ce55cc00 , thread 4992 , mypolls 0 +thr ce55cd80 , status 1 +connecting thr ce55cd80 , thread 4993 , mypolls 0 +myconn 0 connecting thr ce55cd80 , thread 4993 , mypolls 0 +thr ce55cf00 , status 1 +connecting thr ce55cf00 , thread 4994 , mypolls 0 +myconn 0 connecting thr ce55cf00 , thread 4994 , mypolls 0 +thr ce55d080 , status 1 +connecting thr ce55d080 , thread 4995 , mypolls 0 +myconn 0 connecting thr ce55d080 , thread 4995 , mypolls 0 +thr ce55d200 , status 1 +connecting thr ce55d200 , thread 4996 , mypolls 0 +myconn 0 connecting thr ce55d200 , thread 4996 , mypolls 0 +thr ce55d380 , status 1 +connecting thr ce55d380 , thread 4997 , mypolls 0 +myconn 0 connecting thr ce55d380 , thread 4997 , mypolls 0 +thr ce55d500 , status 1 +connecting thr ce55d500 , thread 4998 , mypolls 0 +myconn 0 connecting thr ce55d500 , thread 4998 , mypolls 0 +thr ce55d680 , status 1 +connecting thr ce55d680 , thread 4999 , mypolls 0 +myconn 0 connecting thr ce55d680 , thread 4999 , mypolls 0 +thr ce55d800 , status 1 +connecting thr ce55d800 , thread 5000 , mypolls 0 +myconn 0 connecting thr ce55d800 , thread 5000 , mypolls 0 +thr ce55d980 , status 1 +connecting thr ce55d980 , thread 5001 , mypolls 0 +myconn 0 connecting thr ce55d980 , thread 5001 , mypolls 0 +thr ce55db00 , status 1 +connecting thr ce55db00 , thread 5002 , mypolls 0 +myconn 0 connecting thr ce55db00 , thread 5002 , mypolls 0 +thr ce55dc80 , status 1 +connecting thr ce55dc80 , thread 5003 , mypolls 0 +myconn 0 connecting thr ce55dc80 , thread 5003 , mypolls 0 +thr ce55de00 , status 1 +connecting thr ce55de00 , thread 5004 , mypolls 0 +myconn 0 connecting thr ce55de00 , thread 5004 , mypolls 0 +thr ce55df80 , status 1 +connecting thr ce55df80 , thread 5005 , mypolls 0 +myconn 0 connecting thr ce55df80 , thread 5005 , mypolls 0 +thr ce55e100 , status 1 +connecting thr ce55e100 , thread 5006 , mypolls 0 +myconn 0 connecting thr ce55e100 , thread 5006 , mypolls 0 +thr ce55e280 , status 1 +connecting thr ce55e280 , thread 5007 , mypolls 0 +myconn 0 connecting thr ce55e280 , thread 5007 , mypolls 0 +thr ce55e400 , status 1 +connecting thr ce55e400 , thread 5008 , mypolls 0 +myconn 0 connecting thr ce55e400 , thread 5008 , mypolls 0 +thr ce55e580 , status 1 +connecting thr ce55e580 , thread 5009 , mypolls 0 +myconn 0 connecting thr ce55e580 , thread 5009 , mypolls 0 +thr ce55e700 , status 1 +connecting thr ce55e700 , thread 5010 , mypolls 0 +myconn 0 connecting thr ce55e700 , thread 5010 , mypolls 0 +thr ce55e880 , status 1 +connecting thr ce55e880 , thread 5011 , mypolls 0 +myconn 0 connecting thr ce55e880 , thread 5011 , mypolls 0 +thr ce55ea00 , status 1 +connecting thr ce55ea00 , thread 5012 , mypolls 0 +myconn 0 connecting thr ce55ea00 , thread 5012 , mypolls 0 +thr ce55eb80 , status 1 +connecting thr ce55eb80 , thread 5013 , mypolls 0 +myconn 0 connecting thr ce55eb80 , thread 5013 , mypolls 0 +thr ce55ed00 , status 1 +connecting thr ce55ed00 , thread 5014 , mypolls 0 +myconn 0 connecting thr ce55ed00 , thread 5014 , mypolls 0 +thr ce55ee80 , status 1 +connecting thr ce55ee80 , thread 5015 , mypolls 0 +myconn 0 connecting thr ce55ee80 , thread 5015 , mypolls 0 +thr ce3bf000 , status 1 +connecting thr ce3bf000 , thread 5016 , mypolls 0 +myconn 0 connecting thr ce3bf000 , thread 5016 , mypolls 0 +thr ce3bf180 , status 1 +connecting thr ce3bf180 , thread 5017 , mypolls 0 +myconn 0 connecting thr ce3bf180 , thread 5017 , mypolls 0 +thr ce3bf300 , status 1 +connecting thr ce3bf300 , thread 5018 , mypolls 0 +myconn 0 connecting thr ce3bf300 , thread 5018 , mypolls 0 +thr ce3bf480 , status 1 +connecting thr ce3bf480 , thread 5019 , mypolls 0 +myconn 0 connecting thr ce3bf480 , thread 5019 , mypolls 0 +thr ce3bf600 , status 1 +connecting thr ce3bf600 , thread 5020 , mypolls 0 +myconn 0 connecting thr ce3bf600 , thread 5020 , mypolls 0 +thr ce3bf780 , status 1 +connecting thr ce3bf780 , thread 5021 , mypolls 0 +myconn 0 connecting thr ce3bf780 , thread 5021 , mypolls 0 +thr ce3bf900 , status 1 +connecting thr ce3bf900 , thread 5022 , mypolls 0 +myconn 0 connecting thr ce3bf900 , thread 5022 , mypolls 0 +thr ce3bfa80 , status 1 +connecting thr ce3bfa80 , thread 5023 , mypolls 0 +myconn 0 connecting thr ce3bfa80 , thread 5023 , mypolls 0 +thr ce3bfc00 , status 1 +connecting thr ce3bfc00 , thread 5024 , mypolls 0 +myconn 0 connecting thr ce3bfc00 , thread 5024 , mypolls 0 +thr ce3bfd80 , status 1 +connecting thr ce3bfd80 , thread 5025 , mypolls 0 +myconn 0 connecting thr ce3bfd80 , thread 5025 , mypolls 0 +thr ce3bff00 , status 1 +connecting thr ce3bff00 , thread 5026 , mypolls 0 +myconn 0 connecting thr ce3bff00 , thread 5026 , mypolls 0 +thr ce3c0080 , status 1 +connecting thr ce3c0080 , thread 5027 , mypolls 0 +myconn 0 connecting thr ce3c0080 , thread 5027 , mypolls 0 +thr ce3c0200 , status 1 +connecting thr ce3c0200 , thread 5028 , mypolls 0 +myconn 0 connecting thr ce3c0200 , thread 5028 , mypolls 0 +thr ce3c0380 , status 1 +connecting thr ce3c0380 , thread 5029 , mypolls 0 +myconn 0 connecting thr ce3c0380 , thread 5029 , mypolls 0 +thr ce3c0500 , status 1 +connecting thr ce3c0500 , thread 5030 , mypolls 0 +myconn 0 connecting thr ce3c0500 , thread 5030 , mypolls 0 +thr ce3c0680 , status 1 +connecting thr ce3c0680 , thread 5031 , mypolls 0 +myconn 0 connecting thr ce3c0680 , thread 5031 , mypolls 0 +thr ce3c0800 , status 1 +connecting thr ce3c0800 , thread 5032 , mypolls 0 +myconn 0 connecting thr ce3c0800 , thread 5032 , mypolls 0 +thr ce3c0980 , status 1 +connecting thr ce3c0980 , thread 5033 , mypolls 0 +myconn 0 connecting thr ce3c0980 , thread 5033 , mypolls 0 +thr ce3c0b00 , status 1 +connecting thr ce3c0b00 , thread 5034 , mypolls 0 +myconn 0 connecting thr ce3c0b00 , thread 5034 , mypolls 0 +thr ce3c0c80 , status 1 +connecting thr ce3c0c80 , thread 5035 , mypolls 0 +myconn 0 connecting thr ce3c0c80 , thread 5035 , mypolls 0 +thr ce3c0e00 , status 1 +connecting thr ce3c0e00 , thread 5036 , mypolls 0 +myconn 0 connecting thr ce3c0e00 , thread 5036 , mypolls 0 +thr ce3c0f80 , status 1 +connecting thr ce3c0f80 , thread 5037 , mypolls 0 +myconn 0 connecting thr ce3c0f80 , thread 5037 , mypolls 0 +thr ce3c1100 , status 1 +connecting thr ce3c1100 , thread 5038 , mypolls 0 +myconn 0 connecting thr ce3c1100 , thread 5038 , mypolls 0 +thr ce3c1280 , status 1 +connecting thr ce3c1280 , thread 5039 , mypolls 0 +myconn 0 connecting thr ce3c1280 , thread 5039 , mypolls 0 +thr ce3c1400 , status 1 +connecting thr ce3c1400 , thread 5040 , mypolls 0 +myconn 0 connecting thr ce3c1400 , thread 5040 , mypolls 0 +thr ce3c1580 , status 1 +connecting thr ce3c1580 , thread 5041 , mypolls 0 +myconn 0 connecting thr ce3c1580 , thread 5041 , mypolls 0 +thr ce3c1700 , status 1 +connecting thr ce3c1700 , thread 5042 , mypolls 0 +myconn 0 connecting thr ce3c1700 , thread 5042 , mypolls 0 +thr ce3c1880 , status 1 +connecting thr ce3c1880 , thread 5043 , mypolls 0 +myconn 0 connecting thr ce3c1880 , thread 5043 , mypolls 0 +thr ce3c1a00 , status 1 +connecting thr ce3c1a00 , thread 5044 , mypolls 0 +myconn 0 connecting thr ce3c1a00 , thread 5044 , mypolls 0 +thr ce3c1b80 , status 1 +connecting thr ce3c1b80 , thread 5045 , mypolls 0 +myconn 0 connecting thr ce3c1b80 , thread 5045 , mypolls 0 +thr ce3c1d00 , status 1 +connecting thr ce3c1d00 , thread 5046 , mypolls 0 +myconn 0 connecting thr ce3c1d00 , thread 5046 , mypolls 0 +thr ce3c1e80 , status 1 +connecting thr ce3c1e80 , thread 5047 , mypolls 0 +myconn 0 connecting thr ce3c1e80 , thread 5047 , mypolls 0 +thr ce1fb000 , status 1 +connecting thr ce1fb000 , thread 5048 , mypolls 0 +myconn 0 connecting thr ce1fb000 , thread 5048 , mypolls 0 +thr ce1fb180 , status 1 +connecting thr ce1fb180 , thread 5049 , mypolls 0 +myconn 0 connecting thr ce1fb180 , thread 5049 , mypolls 0 +thr ce1fb300 , status 1 +connecting thr ce1fb300 , thread 5050 , mypolls 0 +myconn 0 connecting thr ce1fb300 , thread 5050 , mypolls 0 +thr ce1fb480 , status 1 +connecting thr ce1fb480 , thread 5051 , mypolls 0 +myconn 0 connecting thr ce1fb480 , thread 5051 , mypolls 0 +thr ce1fb600 , status 1 +connecting thr ce1fb600 , thread 5052 , mypolls 0 +myconn 0 connecting thr ce1fb600 , thread 5052 , mypolls 0 +thr ce1fb780 , status 1 +connecting thr ce1fb780 , thread 5053 , mypolls 0 +myconn 0 connecting thr ce1fb780 , thread 5053 , mypolls 0 +thr ce1fb900 , status 1 +connecting thr ce1fb900 , thread 5054 , mypolls 0 +myconn 0 connecting thr ce1fb900 , thread 5054 , mypolls 0 +thr ce1fba80 , status 1 +connecting thr ce1fba80 , thread 5055 , mypolls 0 +myconn 0 connecting thr ce1fba80 , thread 5055 , mypolls 0 +thr ce1fbc00 , status 1 +connecting thr ce1fbc00 , thread 5056 , mypolls 0 +myconn 0 connecting thr ce1fbc00 , thread 5056 , mypolls 0 +thr ce1fbd80 , status 1 +connecting thr ce1fbd80 , thread 5057 , mypolls 0 +myconn 0 connecting thr ce1fbd80 , thread 5057 , mypolls 0 +thr ce1fbf00 , status 1 +connecting thr ce1fbf00 , thread 5058 , mypolls 0 +myconn 0 connecting thr ce1fbf00 , thread 5058 , mypolls 0 +thr ce1fc080 , status 1 +connecting thr ce1fc080 , thread 5059 , mypolls 0 +myconn 0 connecting thr ce1fc080 , thread 5059 , mypolls 0 +thr ce1fc200 , status 1 +connecting thr ce1fc200 , thread 5060 , mypolls 0 +myconn 0 connecting thr ce1fc200 , thread 5060 , mypolls 0 +thr ce1fc380 , status 1 +connecting thr ce1fc380 , thread 5061 , mypolls 0 +myconn 0 connecting thr ce1fc380 , thread 5061 , mypolls 0 +thr ce1fc500 , status 1 +connecting thr ce1fc500 , thread 5062 , mypolls 0 +myconn 0 connecting thr ce1fc500 , thread 5062 , mypolls 0 +thr ce1fc680 , status 1 +connecting thr ce1fc680 , thread 5063 , mypolls 0 +myconn 0 connecting thr ce1fc680 , thread 5063 , mypolls 0 +thr ce1fc800 , status 1 +connecting thr ce1fc800 , thread 5064 , mypolls 0 +myconn 0 connecting thr ce1fc800 , thread 5064 , mypolls 0 +thr ce1fc980 , status 1 +connecting thr ce1fc980 , thread 5065 , mypolls 0 +myconn 0 connecting thr ce1fc980 , thread 5065 , mypolls 0 +thr ce1fcb00 , status 1 +connecting thr ce1fcb00 , thread 5066 , mypolls 0 +myconn 0 connecting thr ce1fcb00 , thread 5066 , mypolls 0 +thr ce1fcc80 , status 1 +connecting thr ce1fcc80 , thread 5067 , mypolls 0 +myconn 0 connecting thr ce1fcc80 , thread 5067 , mypolls 0 +thr ce1fce00 , status 1 +connecting thr ce1fce00 , thread 5068 , mypolls 0 +myconn 0 connecting thr ce1fce00 , thread 5068 , mypolls 0 +thr ce1fcf80 , status 1 +connecting thr ce1fcf80 , thread 5069 , mypolls 0 +myconn 0 connecting thr ce1fcf80 , thread 5069 , mypolls 0 +thr ce1fd100 , status 1 +connecting thr ce1fd100 , thread 5070 , mypolls 0 +myconn 0 connecting thr ce1fd100 , thread 5070 , mypolls 0 +thr ce1fd280 , status 1 +connecting thr ce1fd280 , thread 5071 , mypolls 0 +myconn 0 connecting thr ce1fd280 , thread 5071 , mypolls 0 +thr ce1fd400 , status 1 +connecting thr ce1fd400 , thread 5072 , mypolls 0 +myconn 0 connecting thr ce1fd400 , thread 5072 , mypolls 0 +thr ce1fd580 , status 1 +connecting thr ce1fd580 , thread 5073 , mypolls 0 +myconn 0 connecting thr ce1fd580 , thread 5073 , mypolls 0 +thr ce1fd700 , status 1 +connecting thr ce1fd700 , thread 5074 , mypolls 0 +myconn 0 connecting thr ce1fd700 , thread 5074 , mypolls 0 +thr ce1fd880 , status 1 +connecting thr ce1fd880 , thread 5075 , mypolls 0 +myconn 0 connecting thr ce1fd880 , thread 5075 , mypolls 0 +thr ce1fda00 , status 1 +connecting thr ce1fda00 , thread 5076 , mypolls 0 +myconn 0 connecting thr ce1fda00 , thread 5076 , mypolls 0 +thr ce1fdb80 , status 1 +connecting thr ce1fdb80 , thread 5077 , mypolls 0 +myconn 0 connecting thr ce1fdb80 , thread 5077 , mypolls 0 +thr ce1fdd00 , status 1 +connecting thr ce1fdd00 , thread 5078 , mypolls 0 +myconn 0 connecting thr ce1fdd00 , thread 5078 , mypolls 0 +thr ce1fde80 , status 1 +connecting thr ce1fde80 , thread 5079 , mypolls 0 +myconn 0 connecting thr ce1fde80 , thread 5079 , mypolls 0 +thr cdc8d000 , status 1 +connecting thr cdc8d000 , thread 5080 , mypolls 0 +myconn 0 connecting thr cdc8d000 , thread 5080 , mypolls 0 +thr cdc8d180 , status 1 +connecting thr cdc8d180 , thread 5081 , mypolls 0 +myconn 0 connecting thr cdc8d180 , thread 5081 , mypolls 0 +thr cdc8d300 , status 1 +connecting thr cdc8d300 , thread 5082 , mypolls 0 +myconn 0 connecting thr cdc8d300 , thread 5082 , mypolls 0 +thr cdc8d480 , status 1 +connecting thr cdc8d480 , thread 5083 , mypolls 0 +myconn 0 connecting thr cdc8d480 , thread 5083 , mypolls 0 +thr cdc8d600 , status 1 +connecting thr cdc8d600 , thread 5084 , mypolls 0 +myconn 0 connecting thr cdc8d600 , thread 5084 , mypolls 0 +thr cdc8d780 , status 1 +connecting thr cdc8d780 , thread 5085 , mypolls 0 +myconn 0 connecting thr cdc8d780 , thread 5085 , mypolls 0 +thr cdc8d900 , status 1 +connecting thr cdc8d900 , thread 5086 , mypolls 0 +myconn 0 connecting thr cdc8d900 , thread 5086 , mypolls 0 +thr cdc8da80 , status 1 +connecting thr cdc8da80 , thread 5087 , mypolls 0 +myconn 0 connecting thr cdc8da80 , thread 5087 , mypolls 0 +thr cdc8dc00 , status 1 +connecting thr cdc8dc00 , thread 5088 , mypolls 0 +myconn 0 connecting thr cdc8dc00 , thread 5088 , mypolls 0 +thr cdc8dd80 , status 1 +connecting thr cdc8dd80 , thread 5089 , mypolls 0 +myconn 0 connecting thr cdc8dd80 , thread 5089 , mypolls 0 +thr cdc8df00 , status 1 +connecting thr cdc8df00 , thread 5090 , mypolls 0 +myconn 0 connecting thr cdc8df00 , thread 5090 , mypolls 0 +thr cdc8e080 , status 1 +connecting thr cdc8e080 , thread 5091 , mypolls 0 +myconn 0 connecting thr cdc8e080 , thread 5091 , mypolls 0 +thr cdc8e200 , status 1 +connecting thr cdc8e200 , thread 5092 , mypolls 0 +myconn 0 connecting thr cdc8e200 , thread 5092 , mypolls 0 +thr cdc8e380 , status 1 +connecting thr cdc8e380 , thread 5093 , mypolls 0 +myconn 0 connecting thr cdc8e380 , thread 5093 , mypolls 0 +thr cdc8e500 , status 1 +connecting thr cdc8e500 , thread 5094 , mypolls 0 +myconn 0 connecting thr cdc8e500 , thread 5094 , mypolls 0 +thr cdc8e680 , status 1 +connecting thr cdc8e680 , thread 5095 , mypolls 0 +myconn 0 connecting thr cdc8e680 , thread 5095 , mypolls 0 +thr cdc8e800 , status 1 +connecting thr cdc8e800 , thread 5096 , mypolls 0 +myconn 0 connecting thr cdc8e800 , thread 5096 , mypolls 0 +thr cdc8e980 , status 1 +connecting thr cdc8e980 , thread 5097 , mypolls 0 +myconn 0 connecting thr cdc8e980 , thread 5097 , mypolls 0 +thr cdc8eb00 , status 1 +connecting thr cdc8eb00 , thread 5098 , mypolls 0 +myconn 0 connecting thr cdc8eb00 , thread 5098 , mypolls 0 +thr cdc8ec80 , status 1 +connecting thr cdc8ec80 , thread 5099 , mypolls 0 +myconn 0 connecting thr cdc8ec80 , thread 5099 , mypolls 0 +thr cdc8ee00 , status 1 +connecting thr cdc8ee00 , thread 5100 , mypolls 0 +myconn 0 connecting thr cdc8ee00 , thread 5100 , mypolls 0 +thr cdc8ef80 , status 1 +connecting thr cdc8ef80 , thread 5101 , mypolls 0 +myconn 0 connecting thr cdc8ef80 , thread 5101 , mypolls 0 +thr cdc8f100 , status 1 +connecting thr cdc8f100 , thread 5102 , mypolls 0 +myconn 0 connecting thr cdc8f100 , thread 5102 , mypolls 0 +thr cdc8f280 , status 1 +connecting thr cdc8f280 , thread 5103 , mypolls 0 +myconn 0 connecting thr cdc8f280 , thread 5103 , mypolls 0 +thr cdc8f400 , status 1 +connecting thr cdc8f400 , thread 5104 , mypolls 0 +myconn 0 connecting thr cdc8f400 , thread 5104 , mypolls 0 +thr cdc8f580 , status 1 +connecting thr cdc8f580 , thread 5105 , mypolls 0 +myconn 0 connecting thr cdc8f580 , thread 5105 , mypolls 0 +thr cdc8f700 , status 1 +connecting thr cdc8f700 , thread 5106 , mypolls 0 +myconn 0 connecting thr cdc8f700 , thread 5106 , mypolls 0 +thr cdc8f880 , status 1 +connecting thr cdc8f880 , thread 5107 , mypolls 0 +myconn 0 connecting thr cdc8f880 , thread 5107 , mypolls 0 +thr cdc8fa00 , status 1 +connecting thr cdc8fa00 , thread 5108 , mypolls 0 +myconn 0 connecting thr cdc8fa00 , thread 5108 , mypolls 0 +thr cdc8fb80 , status 1 +connecting thr cdc8fb80 , thread 5109 , mypolls 0 +myconn 0 connecting thr cdc8fb80 , thread 5109 , mypolls 0 +thr cdc8fd00 , status 1 +connecting thr cdc8fd00 , thread 5110 , mypolls 0 +myconn 0 connecting thr cdc8fd00 , thread 5110 , mypolls 0 +thr cdc8fe80 , status 1 +connecting thr cdc8fe80 , thread 5111 , mypolls 0 +myconn 0 connecting thr cdc8fe80 , thread 5111 , mypolls 0 +thr cdaf7000 , status 1 +connecting thr cdaf7000 , thread 5112 , mypolls 0 +myconn 0 connecting thr cdaf7000 , thread 5112 , mypolls 0 +thr cdaf7180 , status 1 +connecting thr cdaf7180 , thread 5113 , mypolls 0 +myconn 0 connecting thr cdaf7180 , thread 5113 , mypolls 0 +thr cdaf7300 , status 1 +connecting thr cdaf7300 , thread 5114 , mypolls 0 +myconn 0 connecting thr cdaf7300 , thread 5114 , mypolls 0 +thr cdaf7480 , status 1 +connecting thr cdaf7480 , thread 5115 , mypolls 0 +myconn 0 connecting thr cdaf7480 , thread 5115 , mypolls 0 +thr cdaf7600 , status 1 +connecting thr cdaf7600 , thread 5116 , mypolls 0 +myconn 0 connecting thr cdaf7600 , thread 5116 , mypolls 0 +thr cdaf7780 , status 1 +connecting thr cdaf7780 , thread 5117 , mypolls 0 +myconn 0 connecting thr cdaf7780 , thread 5117 , mypolls 0 +thr cdaf7900 , status 1 +connecting thr cdaf7900 , thread 5118 , mypolls 0 +myconn 0 connecting thr cdaf7900 , thread 5118 , mypolls 0 +thr cdaf7a80 , status 1 +connecting thr cdaf7a80 , thread 5119 , mypolls 0 +myconn 0 connecting thr cdaf7a80 , thread 5119 , mypolls 0 +thr cdaf7c00 , status 1 +connecting thr cdaf7c00 , thread 5120 , mypolls 0 +myconn 0 connecting thr cdaf7c00 , thread 5120 , mypolls 0 +thr cdaf7d80 , status 1 +connecting thr cdaf7d80 , thread 5121 , mypolls 0 +myconn 0 connecting thr cdaf7d80 , thread 5121 , mypolls 0 +thr cdaf7f00 , status 1 +connecting thr cdaf7f00 , thread 5122 , mypolls 0 +myconn 0 connecting thr cdaf7f00 , thread 5122 , mypolls 0 +thr cdaf8080 , status 1 +connecting thr cdaf8080 , thread 5123 , mypolls 0 +myconn 0 connecting thr cdaf8080 , thread 5123 , mypolls 0 +thr cdaf8200 , status 1 +connecting thr cdaf8200 , thread 5124 , mypolls 0 +myconn 0 connecting thr cdaf8200 , thread 5124 , mypolls 0 +thr cdaf8380 , status 1 +connecting thr cdaf8380 , thread 5125 , mypolls 0 +myconn 0 connecting thr cdaf8380 , thread 5125 , mypolls 0 +thr cdaf8500 , status 1 +connecting thr cdaf8500 , thread 5126 , mypolls 0 +myconn 0 connecting thr cdaf8500 , thread 5126 , mypolls 0 +thr cdaf8680 , status 1 +connecting thr cdaf8680 , thread 5127 , mypolls 0 +myconn 0 connecting thr cdaf8680 , thread 5127 , mypolls 0 +thr cdaf8800 , status 1 +connecting thr cdaf8800 , thread 5128 , mypolls 0 +myconn 0 connecting thr cdaf8800 , thread 5128 , mypolls 0 +thr cdaf8980 , status 1 +connecting thr cdaf8980 , thread 5129 , mypolls 0 +myconn 0 connecting thr cdaf8980 , thread 5129 , mypolls 0 +thr cdaf8b00 , status 1 +connecting thr cdaf8b00 , thread 5130 , mypolls 0 +myconn 0 connecting thr cdaf8b00 , thread 5130 , mypolls 0 +thr cdaf8c80 , status 1 +connecting thr cdaf8c80 , thread 5131 , mypolls 0 +myconn 0 connecting thr cdaf8c80 , thread 5131 , mypolls 0 +thr cdaf8e00 , status 1 +connecting thr cdaf8e00 , thread 5132 , mypolls 0 +myconn 0 connecting thr cdaf8e00 , thread 5132 , mypolls 0 +thr cdaf8f80 , status 1 +connecting thr cdaf8f80 , thread 5133 , mypolls 0 +myconn 0 connecting thr cdaf8f80 , thread 5133 , mypolls 0 +thr cdaf9100 , status 1 +connecting thr cdaf9100 , thread 5134 , mypolls 0 +myconn 0 connecting thr cdaf9100 , thread 5134 , mypolls 0 +thr cdaf9280 , status 1 +connecting thr cdaf9280 , thread 5135 , mypolls 0 +myconn 0 connecting thr cdaf9280 , thread 5135 , mypolls 0 +thr cdaf9400 , status 1 +connecting thr cdaf9400 , thread 5136 , mypolls 0 +myconn 0 connecting thr cdaf9400 , thread 5136 , mypolls 0 +thr cdaf9580 , status 1 +connecting thr cdaf9580 , thread 5137 , mypolls 0 +myconn 0 connecting thr cdaf9580 , thread 5137 , mypolls 0 +thr cdaf9700 , status 1 +connecting thr cdaf9700 , thread 5138 , mypolls 0 +myconn 0 connecting thr cdaf9700 , thread 5138 , mypolls 0 +thr cdaf9880 , status 1 +connecting thr cdaf9880 , thread 5139 , mypolls 0 +myconn 0 connecting thr cdaf9880 , thread 5139 , mypolls 0 +thr cdaf9a00 , status 1 +connecting thr cdaf9a00 , thread 5140 , mypolls 0 +myconn 0 connecting thr cdaf9a00 , thread 5140 , mypolls 0 +thr cdaf9b80 , status 1 +connecting thr cdaf9b80 , thread 5141 , mypolls 0 +myconn 0 connecting thr cdaf9b80 , thread 5141 , mypolls 0 +thr cdaf9d00 , status 1 +connecting thr cdaf9d00 , thread 5142 , mypolls 0 +myconn 0 connecting thr cdaf9d00 , thread 5142 , mypolls 0 +thr cdaf9e80 , status 1 +connecting thr cdaf9e80 , thread 5143 , mypolls 0 +myconn 0 connecting thr cdaf9e80 , thread 5143 , mypolls 0 +thr cd959000 , status 1 +connecting thr cd959000 , thread 5144 , mypolls 0 +myconn 0 connecting thr cd959000 , thread 5144 , mypolls 0 +thr cd959180 , status 1 +connecting thr cd959180 , thread 5145 , mypolls 0 +myconn 0 connecting thr cd959180 , thread 5145 , mypolls 0 +thr cd959300 , status 1 +connecting thr cd959300 , thread 5146 , mypolls 0 +myconn 0 connecting thr cd959300 , thread 5146 , mypolls 0 +thr cd959480 , status 1 +connecting thr cd959480 , thread 5147 , mypolls 0 +myconn 0 connecting thr cd959480 , thread 5147 , mypolls 0 +thr cd959600 , status 1 +connecting thr cd959600 , thread 5148 , mypolls 0 +myconn 0 connecting thr cd959600 , thread 5148 , mypolls 0 +thr cd959780 , status 1 +connecting thr cd959780 , thread 5149 , mypolls 0 +myconn 0 connecting thr cd959780 , thread 5149 , mypolls 0 +thr cd959900 , status 1 +connecting thr cd959900 , thread 5150 , mypolls 0 +myconn 0 connecting thr cd959900 , thread 5150 , mypolls 0 +thr cd959a80 , status 1 +connecting thr cd959a80 , thread 5151 , mypolls 0 +myconn 0 connecting thr cd959a80 , thread 5151 , mypolls 0 +thr cd959c00 , status 1 +connecting thr cd959c00 , thread 5152 , mypolls 0 +myconn 0 connecting thr cd959c00 , thread 5152 , mypolls 0 +thr cd959d80 , status 1 +connecting thr cd959d80 , thread 5153 , mypolls 0 +myconn 0 connecting thr cd959d80 , thread 5153 , mypolls 0 +thr cd959f00 , status 1 +connecting thr cd959f00 , thread 5154 , mypolls 0 +myconn 0 connecting thr cd959f00 , thread 5154 , mypolls 0 +thr cd95a080 , status 1 +connecting thr cd95a080 , thread 5155 , mypolls 0 +myconn 0 connecting thr cd95a080 , thread 5155 , mypolls 0 +thr cd95a200 , status 1 +connecting thr cd95a200 , thread 5156 , mypolls 0 +myconn 0 connecting thr cd95a200 , thread 5156 , mypolls 0 +thr cd95a380 , status 1 +connecting thr cd95a380 , thread 5157 , mypolls 0 +myconn 0 connecting thr cd95a380 , thread 5157 , mypolls 0 +thr cd95a500 , status 1 +connecting thr cd95a500 , thread 5158 , mypolls 0 +myconn 0 connecting thr cd95a500 , thread 5158 , mypolls 0 +thr cd95a680 , status 1 +connecting thr cd95a680 , thread 5159 , mypolls 0 +myconn 0 connecting thr cd95a680 , thread 5159 , mypolls 0 +thr cd95a800 , status 1 +connecting thr cd95a800 , thread 5160 , mypolls 0 +myconn 0 connecting thr cd95a800 , thread 5160 , mypolls 0 +thr cd95a980 , status 1 +connecting thr cd95a980 , thread 5161 , mypolls 0 +myconn 0 connecting thr cd95a980 , thread 5161 , mypolls 0 +thr cd95ab00 , status 1 +connecting thr cd95ab00 , thread 5162 , mypolls 0 +myconn 0 connecting thr cd95ab00 , thread 5162 , mypolls 0 +thr cd95ac80 , status 1 +connecting thr cd95ac80 , thread 5163 , mypolls 0 +myconn 0 connecting thr cd95ac80 , thread 5163 , mypolls 0 +thr cd95ae00 , status 1 +connecting thr cd95ae00 , thread 5164 , mypolls 0 +myconn 0 connecting thr cd95ae00 , thread 5164 , mypolls 0 +thr cd95af80 , status 1 +connecting thr cd95af80 , thread 5165 , mypolls 0 +myconn 0 connecting thr cd95af80 , thread 5165 , mypolls 0 +thr cd95b100 , status 1 +connecting thr cd95b100 , thread 5166 , mypolls 0 +myconn 0 connecting thr cd95b100 , thread 5166 , mypolls 0 +thr cd95b280 , status 1 +connecting thr cd95b280 , thread 5167 , mypolls 0 +myconn 0 connecting thr cd95b280 , thread 5167 , mypolls 0 +thr cd95b400 , status 1 +connecting thr cd95b400 , thread 5168 , mypolls 0 +myconn 0 connecting thr cd95b400 , thread 5168 , mypolls 0 +thr cd95b580 , status 1 +connecting thr cd95b580 , thread 5169 , mypolls 0 +myconn 0 connecting thr cd95b580 , thread 5169 , mypolls 0 +thr cd95b700 , status 1 +connecting thr cd95b700 , thread 5170 , mypolls 0 +myconn 0 connecting thr cd95b700 , thread 5170 , mypolls 0 +thr cd95b880 , status 1 +connecting thr cd95b880 , thread 5171 , mypolls 0 +myconn 0 connecting thr cd95b880 , thread 5171 , mypolls 0 +thr cd95ba00 , status 1 +connecting thr cd95ba00 , thread 5172 , mypolls 0 +myconn 0 connecting thr cd95ba00 , thread 5172 , mypolls 0 +thr cd95bb80 , status 1 +connecting thr cd95bb80 , thread 5173 , mypolls 0 +myconn 0 connecting thr cd95bb80 , thread 5173 , mypolls 0 +thr cd95bd00 , status 1 +connecting thr cd95bd00 , thread 5174 , mypolls 0 +myconn 0 connecting thr cd95bd00 , thread 5174 , mypolls 0 +thr cd95be80 , status 1 +connecting thr cd95be80 , thread 5175 , mypolls 0 +myconn 0 connecting thr cd95be80 , thread 5175 , mypolls 0 +thr cd7b9000 , status 1 +connecting thr cd7b9000 , thread 5176 , mypolls 0 +myconn 0 connecting thr cd7b9000 , thread 5176 , mypolls 0 +thr cd7b9180 , status 1 +connecting thr cd7b9180 , thread 5177 , mypolls 0 +myconn 0 connecting thr cd7b9180 , thread 5177 , mypolls 0 +thr cd7b9300 , status 1 +connecting thr cd7b9300 , thread 5178 , mypolls 0 +myconn 0 connecting thr cd7b9300 , thread 5178 , mypolls 0 +thr cd7b9480 , status 1 +connecting thr cd7b9480 , thread 5179 , mypolls 0 +myconn 0 connecting thr cd7b9480 , thread 5179 , mypolls 0 +thr cd7b9600 , status 1 +connecting thr cd7b9600 , thread 5180 , mypolls 0 +myconn 0 connecting thr cd7b9600 , thread 5180 , mypolls 0 +thr cd7b9780 , status 1 +connecting thr cd7b9780 , thread 5181 , mypolls 0 +myconn 0 connecting thr cd7b9780 , thread 5181 , mypolls 0 +thr cd7b9900 , status 1 +connecting thr cd7b9900 , thread 5182 , mypolls 0 +myconn 0 connecting thr cd7b9900 , thread 5182 , mypolls 0 +thr cd7b9a80 , status 1 +connecting thr cd7b9a80 , thread 5183 , mypolls 0 +myconn 0 connecting thr cd7b9a80 , thread 5183 , mypolls 0 +thr cd7b9c00 , status 1 +connecting thr cd7b9c00 , thread 5184 , mypolls 0 +myconn 0 connecting thr cd7b9c00 , thread 5184 , mypolls 0 +thr cd7b9d80 , status 1 +connecting thr cd7b9d80 , thread 5185 , mypolls 0 +myconn 0 connecting thr cd7b9d80 , thread 5185 , mypolls 0 +thr cd7b9f00 , status 1 +connecting thr cd7b9f00 , thread 5186 , mypolls 0 +myconn 0 connecting thr cd7b9f00 , thread 5186 , mypolls 0 +thr cd7ba080 , status 1 +connecting thr cd7ba080 , thread 5187 , mypolls 0 +myconn 0 connecting thr cd7ba080 , thread 5187 , mypolls 0 +thr cd7ba200 , status 1 +connecting thr cd7ba200 , thread 5188 , mypolls 0 +myconn 0 connecting thr cd7ba200 , thread 5188 , mypolls 0 +thr cd7ba380 , status 1 +connecting thr cd7ba380 , thread 5189 , mypolls 0 +myconn 0 connecting thr cd7ba380 , thread 5189 , mypolls 0 +thr cd7ba500 , status 1 +connecting thr cd7ba500 , thread 5190 , mypolls 0 +myconn 0 connecting thr cd7ba500 , thread 5190 , mypolls 0 +thr cd7ba680 , status 1 +connecting thr cd7ba680 , thread 5191 , mypolls 0 +myconn 0 connecting thr cd7ba680 , thread 5191 , mypolls 0 +thr cd7ba800 , status 1 +connecting thr cd7ba800 , thread 5192 , mypolls 0 +myconn 0 connecting thr cd7ba800 , thread 5192 , mypolls 0 +thr cd7ba980 , status 1 +connecting thr cd7ba980 , thread 5193 , mypolls 0 +myconn 0 connecting thr cd7ba980 , thread 5193 , mypolls 0 +thr cd7bab00 , status 1 +connecting thr cd7bab00 , thread 5194 , mypolls 0 +myconn 0 connecting thr cd7bab00 , thread 5194 , mypolls 0 +thr cd7bac80 , status 1 +connecting thr cd7bac80 , thread 5195 , mypolls 0 +myconn 0 connecting thr cd7bac80 , thread 5195 , mypolls 0 +thr cd7bae00 , status 1 +connecting thr cd7bae00 , thread 5196 , mypolls 0 +myconn 0 connecting thr cd7bae00 , thread 5196 , mypolls 0 +thr cd7baf80 , status 1 +connecting thr cd7baf80 , thread 5197 , mypolls 0 +myconn 0 connecting thr cd7baf80 , thread 5197 , mypolls 0 +thr cd7bb100 , status 1 +connecting thr cd7bb100 , thread 5198 , mypolls 0 +myconn 0 connecting thr cd7bb100 , thread 5198 , mypolls 0 +thr cd7bb280 , status 1 +connecting thr cd7bb280 , thread 5199 , mypolls 0 +myconn 0 connecting thr cd7bb280 , thread 5199 , mypolls 0 +thr cd7bb400 , status 1 +connecting thr cd7bb400 , thread 5200 , mypolls 0 +myconn 0 connecting thr cd7bb400 , thread 5200 , mypolls 0 +thr cd7bb580 , status 1 +connecting thr cd7bb580 , thread 5201 , mypolls 0 +myconn 0 connecting thr cd7bb580 , thread 5201 , mypolls 0 +thr cd7bb700 , status 1 +connecting thr cd7bb700 , thread 5202 , mypolls 0 +myconn 0 connecting thr cd7bb700 , thread 5202 , mypolls 0 +thr cd7bb880 , status 1 +connecting thr cd7bb880 , thread 5203 , mypolls 0 +myconn 0 connecting thr cd7bb880 , thread 5203 , mypolls 0 +thr cd7bba00 , status 1 +connecting thr cd7bba00 , thread 5204 , mypolls 0 +myconn 0 connecting thr cd7bba00 , thread 5204 , mypolls 0 +thr cd7bbb80 , status 1 +connecting thr cd7bbb80 , thread 5205 , mypolls 0 +myconn 0 connecting thr cd7bbb80 , thread 5205 , mypolls 0 +thr cd7bbd00 , status 1 +connecting thr cd7bbd00 , thread 5206 , mypolls 0 +myconn 0 connecting thr cd7bbd00 , thread 5206 , mypolls 0 +thr cd7bbe80 , status 1 +connecting thr cd7bbe80 , thread 5207 , mypolls 0 +myconn 0 connecting thr cd7bbe80 , thread 5207 , mypolls 0 +thr cd5f8000 , status 1 +connecting thr cd5f8000 , thread 5208 , mypolls 0 +myconn 0 connecting thr cd5f8000 , thread 5208 , mypolls 0 +thr cd5f8180 , status 1 +connecting thr cd5f8180 , thread 5209 , mypolls 0 +myconn 0 connecting thr cd5f8180 , thread 5209 , mypolls 0 +thr cd5f8300 , status 1 +connecting thr cd5f8300 , thread 5210 , mypolls 0 +myconn 0 connecting thr cd5f8300 , thread 5210 , mypolls 0 +thr cd5f8480 , status 1 +connecting thr cd5f8480 , thread 5211 , mypolls 0 +myconn 0 connecting thr cd5f8480 , thread 5211 , mypolls 0 +thr cd5f8600 , status 1 +connecting thr cd5f8600 , thread 5212 , mypolls 0 +myconn 0 connecting thr cd5f8600 , thread 5212 , mypolls 0 +thr cd5f8780 , status 1 +connecting thr cd5f8780 , thread 5213 , mypolls 0 +myconn 0 connecting thr cd5f8780 , thread 5213 , mypolls 0 +thr cd5f8900 , status 1 +connecting thr cd5f8900 , thread 5214 , mypolls 0 +myconn 0 connecting thr cd5f8900 , thread 5214 , mypolls 0 +thr cd5f8a80 , status 1 +connecting thr cd5f8a80 , thread 5215 , mypolls 0 +myconn 0 connecting thr cd5f8a80 , thread 5215 , mypolls 0 +thr cd5f8c00 , status 1 +connecting thr cd5f8c00 , thread 5216 , mypolls 0 +myconn 0 connecting thr cd5f8c00 , thread 5216 , mypolls 0 +thr cd5f8d80 , status 1 +connecting thr cd5f8d80 , thread 5217 , mypolls 0 +myconn 0 connecting thr cd5f8d80 , thread 5217 , mypolls 0 +thr cd5f8f00 , status 1 +connecting thr cd5f8f00 , thread 5218 , mypolls 0 +myconn 0 connecting thr cd5f8f00 , thread 5218 , mypolls 0 +thr cd5f9080 , status 1 +connecting thr cd5f9080 , thread 5219 , mypolls 0 +myconn 0 connecting thr cd5f9080 , thread 5219 , mypolls 0 +thr cd5f9200 , status 1 +connecting thr cd5f9200 , thread 5220 , mypolls 0 +myconn 0 connecting thr cd5f9200 , thread 5220 , mypolls 0 +thr cd5f9380 , status 1 +connecting thr cd5f9380 , thread 5221 , mypolls 0 +myconn 0 connecting thr cd5f9380 , thread 5221 , mypolls 0 +thr cd5f9500 , status 1 +connecting thr cd5f9500 , thread 5222 , mypolls 0 +myconn 0 connecting thr cd5f9500 , thread 5222 , mypolls 0 +thr cd5f9680 , status 1 +connecting thr cd5f9680 , thread 5223 , mypolls 0 +myconn 0 connecting thr cd5f9680 , thread 5223 , mypolls 0 +thr cd5f9800 , status 1 +connecting thr cd5f9800 , thread 5224 , mypolls 0 +myconn 0 connecting thr cd5f9800 , thread 5224 , mypolls 0 +thr cd5f9980 , status 1 +connecting thr cd5f9980 , thread 5225 , mypolls 0 +myconn 0 connecting thr cd5f9980 , thread 5225 , mypolls 0 +thr cd5f9b00 , status 1 +connecting thr cd5f9b00 , thread 5226 , mypolls 0 +myconn 0 connecting thr cd5f9b00 , thread 5226 , mypolls 0 +thr cd5f9c80 , status 1 +connecting thr cd5f9c80 , thread 5227 , mypolls 0 +myconn 0 connecting thr cd5f9c80 , thread 5227 , mypolls 0 +thr cd5f9e00 , status 1 +connecting thr cd5f9e00 , thread 5228 , mypolls 0 +myconn 0 connecting thr cd5f9e00 , thread 5228 , mypolls 0 +thr cd5f9f80 , status 1 +connecting thr cd5f9f80 , thread 5229 , mypolls 0 +myconn 0 connecting thr cd5f9f80 , thread 5229 , mypolls 0 +thr cd5fa100 , status 1 +connecting thr cd5fa100 , thread 5230 , mypolls 0 +myconn 0 connecting thr cd5fa100 , thread 5230 , mypolls 0 +thr cd5fa280 , status 1 +connecting thr cd5fa280 , thread 5231 , mypolls 0 +myconn 0 connecting thr cd5fa280 , thread 5231 , mypolls 0 +thr cd5fa400 , status 1 +connecting thr cd5fa400 , thread 5232 , mypolls 0 +myconn 0 connecting thr cd5fa400 , thread 5232 , mypolls 0 +thr cd5fa580 , status 1 +connecting thr cd5fa580 , thread 5233 , mypolls 0 +myconn 0 connecting thr cd5fa580 , thread 5233 , mypolls 0 +thr cd5fa700 , status 1 +connecting thr cd5fa700 , thread 5234 , mypolls 0 +myconn 0 connecting thr cd5fa700 , thread 5234 , mypolls 0 +thr cd5fa880 , status 1 +connecting thr cd5fa880 , thread 5235 , mypolls 0 +myconn 0 connecting thr cd5fa880 , thread 5235 , mypolls 0 +thr cd5faa00 , status 1 +connecting thr cd5faa00 , thread 5236 , mypolls 0 +myconn 0 connecting thr cd5faa00 , thread 5236 , mypolls 0 +thr cd5fab80 , status 1 +connecting thr cd5fab80 , thread 5237 , mypolls 0 +myconn 0 connecting thr cd5fab80 , thread 5237 , mypolls 0 +thr cd5fad00 , status 1 +connecting thr cd5fad00 , thread 5238 , mypolls 0 +myconn 0 connecting thr cd5fad00 , thread 5238 , mypolls 0 +thr cd5fae80 , status 1 +connecting thr cd5fae80 , thread 5239 , mypolls 0 +myconn 0 connecting thr cd5fae80 , thread 5239 , mypolls 0 +thr cd08b000 , status 1 +connecting thr cd08b000 , thread 5240 , mypolls 0 +myconn 0 connecting thr cd08b000 , thread 5240 , mypolls 0 +thr cd08b180 , status 1 +connecting thr cd08b180 , thread 5241 , mypolls 0 +myconn 0 connecting thr cd08b180 , thread 5241 , mypolls 0 +thr cd08b300 , status 1 +connecting thr cd08b300 , thread 5242 , mypolls 0 +myconn 0 connecting thr cd08b300 , thread 5242 , mypolls 0 +thr cd08b480 , status 1 +connecting thr cd08b480 , thread 5243 , mypolls 0 +myconn 0 connecting thr cd08b480 , thread 5243 , mypolls 0 +thr cd08b600 , status 1 +connecting thr cd08b600 , thread 5244 , mypolls 0 +myconn 0 connecting thr cd08b600 , thread 5244 , mypolls 0 +thr cd08b780 , status 1 +connecting thr cd08b780 , thread 5245 , mypolls 0 +myconn 0 connecting thr cd08b780 , thread 5245 , mypolls 0 +thr cd08b900 , status 1 +connecting thr cd08b900 , thread 5246 , mypolls 0 +myconn 0 connecting thr cd08b900 , thread 5246 , mypolls 0 +thr cd08ba80 , status 1 +connecting thr cd08ba80 , thread 5247 , mypolls 0 +myconn 0 connecting thr cd08ba80 , thread 5247 , mypolls 0 +thr cd08bc00 , status 1 +connecting thr cd08bc00 , thread 5248 , mypolls 0 +myconn 0 connecting thr cd08bc00 , thread 5248 , mypolls 0 +thr cd08bd80 , status 1 +connecting thr cd08bd80 , thread 5249 , mypolls 0 +myconn 0 connecting thr cd08bd80 , thread 5249 , mypolls 0 +thr cd08bf00 , status 1 +connecting thr cd08bf00 , thread 5250 , mypolls 0 +myconn 0 connecting thr cd08bf00 , thread 5250 , mypolls 0 +thr cd08c080 , status 1 +connecting thr cd08c080 , thread 5251 , mypolls 0 +myconn 0 connecting thr cd08c080 , thread 5251 , mypolls 0 +thr cd08c200 , status 1 +connecting thr cd08c200 , thread 5252 , mypolls 0 +myconn 0 connecting thr cd08c200 , thread 5252 , mypolls 0 +thr cd08c380 , status 1 +connecting thr cd08c380 , thread 5253 , mypolls 0 +myconn 0 connecting thr cd08c380 , thread 5253 , mypolls 0 +thr cd08c500 , status 1 +connecting thr cd08c500 , thread 5254 , mypolls 0 +myconn 0 connecting thr cd08c500 , thread 5254 , mypolls 0 +thr cd08c680 , status 1 +connecting thr cd08c680 , thread 5255 , mypolls 0 +myconn 0 connecting thr cd08c680 , thread 5255 , mypolls 0 +thr cd08c800 , status 1 +connecting thr cd08c800 , thread 5256 , mypolls 0 +myconn 0 connecting thr cd08c800 , thread 5256 , mypolls 0 +thr cd08c980 , status 1 +connecting thr cd08c980 , thread 5257 , mypolls 0 +myconn 0 connecting thr cd08c980 , thread 5257 , mypolls 0 +thr cd08cb00 , status 1 +connecting thr cd08cb00 , thread 5258 , mypolls 0 +myconn 0 connecting thr cd08cb00 , thread 5258 , mypolls 0 +thr cd08cc80 , status 1 +connecting thr cd08cc80 , thread 5259 , mypolls 0 +myconn 0 connecting thr cd08cc80 , thread 5259 , mypolls 0 +thr cd08ce00 , status 1 +connecting thr cd08ce00 , thread 5260 , mypolls 0 +myconn 0 connecting thr cd08ce00 , thread 5260 , mypolls 0 +thr cd08cf80 , status 1 +connecting thr cd08cf80 , thread 5261 , mypolls 0 +myconn 0 connecting thr cd08cf80 , thread 5261 , mypolls 0 +thr cd08d100 , status 1 +connecting thr cd08d100 , thread 5262 , mypolls 0 +myconn 0 connecting thr cd08d100 , thread 5262 , mypolls 0 +thr cd08d280 , status 1 +connecting thr cd08d280 , thread 5263 , mypolls 0 +myconn 0 connecting thr cd08d280 , thread 5263 , mypolls 0 +thr cd08d400 , status 1 +connecting thr cd08d400 , thread 5264 , mypolls 0 +myconn 0 connecting thr cd08d400 , thread 5264 , mypolls 0 +thr cd08d580 , status 1 +connecting thr cd08d580 , thread 5265 , mypolls 0 +myconn 0 connecting thr cd08d580 , thread 5265 , mypolls 0 +thr cd08d700 , status 1 +connecting thr cd08d700 , thread 5266 , mypolls 0 +myconn 0 connecting thr cd08d700 , thread 5266 , mypolls 0 +thr cd08d880 , status 1 +connecting thr cd08d880 , thread 5267 , mypolls 0 +myconn 0 connecting thr cd08d880 , thread 5267 , mypolls 0 +thr cd08da00 , status 1 +connecting thr cd08da00 , thread 5268 , mypolls 0 +myconn 0 connecting thr cd08da00 , thread 5268 , mypolls 0 +thr cd08db80 , status 1 +connecting thr cd08db80 , thread 5269 , mypolls 0 +myconn 0 connecting thr cd08db80 , thread 5269 , mypolls 0 +thr cd08dd00 , status 1 +connecting thr cd08dd00 , thread 5270 , mypolls 0 +myconn 0 connecting thr cd08dd00 , thread 5270 , mypolls 0 +thr cd08de80 , status 1 +connecting thr cd08de80 , thread 5271 , mypolls 0 +myconn 0 connecting thr cd08de80 , thread 5271 , mypolls 0 +thr cceee000 , status 1 +connecting thr cceee000 , thread 5272 , mypolls 0 +myconn 0 connecting thr cceee000 , thread 5272 , mypolls 0 +thr cceee180 , status 1 +connecting thr cceee180 , thread 5273 , mypolls 0 +myconn 0 connecting thr cceee180 , thread 5273 , mypolls 0 +thr cceee300 , status 1 +connecting thr cceee300 , thread 5274 , mypolls 0 +myconn 0 connecting thr cceee300 , thread 5274 , mypolls 0 +thr cceee480 , status 1 +connecting thr cceee480 , thread 5275 , mypolls 0 +myconn 0 connecting thr cceee480 , thread 5275 , mypolls 0 +thr cceee600 , status 1 +connecting thr cceee600 , thread 5276 , mypolls 0 +myconn 0 connecting thr cceee600 , thread 5276 , mypolls 0 +thr cceee780 , status 1 +connecting thr cceee780 , thread 5277 , mypolls 0 +myconn 0 connecting thr cceee780 , thread 5277 , mypolls 0 +thr cceee900 , status 1 +connecting thr cceee900 , thread 5278 , mypolls 0 +myconn 0 connecting thr cceee900 , thread 5278 , mypolls 0 +thr cceeea80 , status 1 +connecting thr cceeea80 , thread 5279 , mypolls 0 +myconn 0 connecting thr cceeea80 , thread 5279 , mypolls 0 +thr cceeec00 , status 1 +connecting thr cceeec00 , thread 5280 , mypolls 0 +myconn 0 connecting thr cceeec00 , thread 5280 , mypolls 0 +thr cceeed80 , status 1 +connecting thr cceeed80 , thread 5281 , mypolls 0 +myconn 0 connecting thr cceeed80 , thread 5281 , mypolls 0 +thr cceeef00 , status 1 +connecting thr cceeef00 , thread 5282 , mypolls 0 +myconn 0 connecting thr cceeef00 , thread 5282 , mypolls 0 +thr cceef080 , status 1 +connecting thr cceef080 , thread 5283 , mypolls 0 +myconn 0 connecting thr cceef080 , thread 5283 , mypolls 0 +thr cceef200 , status 1 +connecting thr cceef200 , thread 5284 , mypolls 0 +myconn 0 connecting thr cceef200 , thread 5284 , mypolls 0 +thr cceef380 , status 1 +connecting thr cceef380 , thread 5285 , mypolls 0 +myconn 0 connecting thr cceef380 , thread 5285 , mypolls 0 +thr cceef500 , status 1 +connecting thr cceef500 , thread 5286 , mypolls 0 +myconn 0 connecting thr cceef500 , thread 5286 , mypolls 0 +thr cceef680 , status 1 +connecting thr cceef680 , thread 5287 , mypolls 0 +myconn 0 connecting thr cceef680 , thread 5287 , mypolls 0 +thr cceef800 , status 1 +connecting thr cceef800 , thread 5288 , mypolls 0 +myconn 0 connecting thr cceef800 , thread 5288 , mypolls 0 +thr cceef980 , status 1 +connecting thr cceef980 , thread 5289 , mypolls 0 +myconn 0 connecting thr cceef980 , thread 5289 , mypolls 0 +thr cceefb00 , status 1 +connecting thr cceefb00 , thread 5290 , mypolls 0 +myconn 0 connecting thr cceefb00 , thread 5290 , mypolls 0 +thr cceefc80 , status 1 +connecting thr cceefc80 , thread 5291 , mypolls 0 +myconn 0 connecting thr cceefc80 , thread 5291 , mypolls 0 +thr cceefe00 , status 1 +connecting thr cceefe00 , thread 5292 , mypolls 0 +myconn 0 connecting thr cceefe00 , thread 5292 , mypolls 0 +thr cceeff80 , status 1 +connecting thr cceeff80 , thread 5293 , mypolls 0 +myconn 0 connecting thr cceeff80 , thread 5293 , mypolls 0 +thr ccef0100 , status 1 +connecting thr ccef0100 , thread 5294 , mypolls 0 +myconn 0 connecting thr ccef0100 , thread 5294 , mypolls 0 +thr ccef0280 , status 1 +connecting thr ccef0280 , thread 5295 , mypolls 0 +myconn 0 connecting thr ccef0280 , thread 5295 , mypolls 0 +thr ccef0400 , status 1 +connecting thr ccef0400 , thread 5296 , mypolls 0 +myconn 0 connecting thr ccef0400 , thread 5296 , mypolls 0 +thr ccef0580 , status 1 +connecting thr ccef0580 , thread 5297 , mypolls 0 +myconn 0 connecting thr ccef0580 , thread 5297 , mypolls 0 +thr ccef0700 , status 1 +connecting thr ccef0700 , thread 5298 , mypolls 0 +myconn 0 connecting thr ccef0700 , thread 5298 , mypolls 0 +thr ccef0880 , status 1 +connecting thr ccef0880 , thread 5299 , mypolls 0 +myconn 0 connecting thr ccef0880 , thread 5299 , mypolls 0 +thr ccef0a00 , status 1 +connecting thr ccef0a00 , thread 5300 , mypolls 0 +myconn 0 connecting thr ccef0a00 , thread 5300 , mypolls 0 +thr ccef0b80 , status 1 +connecting thr ccef0b80 , thread 5301 , mypolls 0 +myconn 0 connecting thr ccef0b80 , thread 5301 , mypolls 0 +thr ccef0d00 , status 1 +connecting thr ccef0d00 , thread 5302 , mypolls 0 +myconn 0 connecting thr ccef0d00 , thread 5302 , mypolls 0 +thr ccef0e80 , status 1 +connecting thr ccef0e80 , thread 5303 , mypolls 0 +myconn 0 connecting thr ccef0e80 , thread 5303 , mypolls 0 +thr ccd50000 , status 1 +connecting thr ccd50000 , thread 5304 , mypolls 0 +myconn 0 connecting thr ccd50000 , thread 5304 , mypolls 0 +thr ccd50180 , status 1 +connecting thr ccd50180 , thread 5305 , mypolls 0 +myconn 0 connecting thr ccd50180 , thread 5305 , mypolls 0 +thr ccd50300 , status 1 +connecting thr ccd50300 , thread 5306 , mypolls 0 +myconn 0 connecting thr ccd50300 , thread 5306 , mypolls 0 +thr ccd50480 , status 1 +connecting thr ccd50480 , thread 5307 , mypolls 0 +myconn 0 connecting thr ccd50480 , thread 5307 , mypolls 0 +thr ccd50600 , status 1 +connecting thr ccd50600 , thread 5308 , mypolls 0 +myconn 0 connecting thr ccd50600 , thread 5308 , mypolls 0 +thr ccd50780 , status 1 +connecting thr ccd50780 , thread 5309 , mypolls 0 +myconn 0 connecting thr ccd50780 , thread 5309 , mypolls 0 +thr ccd50900 , status 1 +connecting thr ccd50900 , thread 5310 , mypolls 0 +myconn 0 connecting thr ccd50900 , thread 5310 , mypolls 0 +thr ccd50a80 , status 1 +connecting thr ccd50a80 , thread 5311 , mypolls 0 +myconn 0 connecting thr ccd50a80 , thread 5311 , mypolls 0 +thr ccd50c00 , status 1 +connecting thr ccd50c00 , thread 5312 , mypolls 0 +myconn 0 connecting thr ccd50c00 , thread 5312 , mypolls 0 +thr ccd50d80 , status 1 +connecting thr ccd50d80 , thread 5313 , mypolls 0 +myconn 0 connecting thr ccd50d80 , thread 5313 , mypolls 0 +thr ccd50f00 , status 1 +connecting thr ccd50f00 , thread 5314 , mypolls 0 +myconn 0 connecting thr ccd50f00 , thread 5314 , mypolls 0 +thr ccd51080 , status 1 +connecting thr ccd51080 , thread 5315 , mypolls 0 +myconn 0 connecting thr ccd51080 , thread 5315 , mypolls 0 +thr ccd51200 , status 1 +connecting thr ccd51200 , thread 5316 , mypolls 0 +myconn 0 connecting thr ccd51200 , thread 5316 , mypolls 0 +thr ccd51380 , status 1 +connecting thr ccd51380 , thread 5317 , mypolls 0 +myconn 0 connecting thr ccd51380 , thread 5317 , mypolls 0 +thr ccd51500 , status 1 +connecting thr ccd51500 , thread 5318 , mypolls 0 +myconn 0 connecting thr ccd51500 , thread 5318 , mypolls 0 +thr ccd51680 , status 1 +connecting thr ccd51680 , thread 5319 , mypolls 0 +myconn 0 connecting thr ccd51680 , thread 5319 , mypolls 0 +thr ccd51800 , status 1 +connecting thr ccd51800 , thread 5320 , mypolls 0 +myconn 0 connecting thr ccd51800 , thread 5320 , mypolls 0 +thr ccd51980 , status 1 +connecting thr ccd51980 , thread 5321 , mypolls 0 +myconn 0 connecting thr ccd51980 , thread 5321 , mypolls 0 +thr ccd51b00 , status 1 +connecting thr ccd51b00 , thread 5322 , mypolls 0 +myconn 0 connecting thr ccd51b00 , thread 5322 , mypolls 0 +thr ccd51c80 , status 1 +connecting thr ccd51c80 , thread 5323 , mypolls 0 +myconn 0 connecting thr ccd51c80 , thread 5323 , mypolls 0 +thr ccd51e00 , status 1 +connecting thr ccd51e00 , thread 5324 , mypolls 0 +myconn 0 connecting thr ccd51e00 , thread 5324 , mypolls 0 +thr ccd51f80 , status 1 +connecting thr ccd51f80 , thread 5325 , mypolls 0 +myconn 0 connecting thr ccd51f80 , thread 5325 , mypolls 0 +thr ccd52100 , status 1 +connecting thr ccd52100 , thread 5326 , mypolls 0 +myconn 0 connecting thr ccd52100 , thread 5326 , mypolls 0 +thr ccd52280 , status 1 +connecting thr ccd52280 , thread 5327 , mypolls 0 +myconn 0 connecting thr ccd52280 , thread 5327 , mypolls 0 +thr ccd52400 , status 1 +connecting thr ccd52400 , thread 5328 , mypolls 0 +myconn 0 connecting thr ccd52400 , thread 5328 , mypolls 0 +thr ccd52580 , status 1 +connecting thr ccd52580 , thread 5329 , mypolls 0 +myconn 0 connecting thr ccd52580 , thread 5329 , mypolls 0 +thr ccd52700 , status 1 +connecting thr ccd52700 , thread 5330 , mypolls 0 +myconn 0 connecting thr ccd52700 , thread 5330 , mypolls 0 +thr ccd52880 , status 1 +connecting thr ccd52880 , thread 5331 , mypolls 0 +myconn 0 connecting thr ccd52880 , thread 5331 , mypolls 0 +thr ccd52a00 , status 1 +connecting thr ccd52a00 , thread 5332 , mypolls 0 +myconn 0 connecting thr ccd52a00 , thread 5332 , mypolls 0 +thr ccd52b80 , status 1 +connecting thr ccd52b80 , thread 5333 , mypolls 0 +myconn 0 connecting thr ccd52b80 , thread 5333 , mypolls 0 +thr ccd52d00 , status 1 +connecting thr ccd52d00 , thread 5334 , mypolls 0 +myconn 0 connecting thr ccd52d00 , thread 5334 , mypolls 0 +thr ccd52e80 , status 1 +connecting thr ccd52e80 , thread 5335 , mypolls 0 +myconn 0 connecting thr ccd52e80 , thread 5335 , mypolls 0 +thr ccbb0000 , status 1 +connecting thr ccbb0000 , thread 5336 , mypolls 0 +myconn 0 connecting thr ccbb0000 , thread 5336 , mypolls 0 +thr ccbb0180 , status 1 +connecting thr ccbb0180 , thread 5337 , mypolls 0 +myconn 0 connecting thr ccbb0180 , thread 5337 , mypolls 0 +thr ccbb0300 , status 1 +connecting thr ccbb0300 , thread 5338 , mypolls 0 +myconn 0 connecting thr ccbb0300 , thread 5338 , mypolls 0 +thr ccbb0480 , status 1 +connecting thr ccbb0480 , thread 5339 , mypolls 0 +myconn 0 connecting thr ccbb0480 , thread 5339 , mypolls 0 +thr ccbb0600 , status 1 +connecting thr ccbb0600 , thread 5340 , mypolls 0 +myconn 0 connecting thr ccbb0600 , thread 5340 , mypolls 0 +thr ccbb0780 , status 1 +connecting thr ccbb0780 , thread 5341 , mypolls 0 +myconn 0 connecting thr ccbb0780 , thread 5341 , mypolls 0 +thr ccbb0900 , status 1 +connecting thr ccbb0900 , thread 5342 , mypolls 0 +myconn 0 connecting thr ccbb0900 , thread 5342 , mypolls 0 +thr ccbb0a80 , status 1 +connecting thr ccbb0a80 , thread 5343 , mypolls 0 +myconn 0 connecting thr ccbb0a80 , thread 5343 , mypolls 0 +thr ccbb0c00 , status 1 +connecting thr ccbb0c00 , thread 5344 , mypolls 0 +myconn 0 connecting thr ccbb0c00 , thread 5344 , mypolls 0 +thr ccbb0d80 , status 1 +connecting thr ccbb0d80 , thread 5345 , mypolls 0 +myconn 0 connecting thr ccbb0d80 , thread 5345 , mypolls 0 +thr ccbb0f00 , status 1 +connecting thr ccbb0f00 , thread 5346 , mypolls 0 +myconn 0 connecting thr ccbb0f00 , thread 5346 , mypolls 0 +thr ccbb1080 , status 1 +connecting thr ccbb1080 , thread 5347 , mypolls 0 +myconn 0 connecting thr ccbb1080 , thread 5347 , mypolls 0 +thr ccbb1200 , status 1 +connecting thr ccbb1200 , thread 5348 , mypolls 0 +myconn 0 connecting thr ccbb1200 , thread 5348 , mypolls 0 +thr ccbb1380 , status 1 +connecting thr ccbb1380 , thread 5349 , mypolls 0 +myconn 0 connecting thr ccbb1380 , thread 5349 , mypolls 0 +thr ccbb1500 , status 1 +connecting thr ccbb1500 , thread 5350 , mypolls 0 +myconn 0 connecting thr ccbb1500 , thread 5350 , mypolls 0 +thr ccbb1680 , status 1 +connecting thr ccbb1680 , thread 5351 , mypolls 0 +myconn 0 connecting thr ccbb1680 , thread 5351 , mypolls 0 +thr ccbb1800 , status 1 +connecting thr ccbb1800 , thread 5352 , mypolls 0 +myconn 0 connecting thr ccbb1800 , thread 5352 , mypolls 0 +thr ccbb1980 , status 1 +connecting thr ccbb1980 , thread 5353 , mypolls 0 +myconn 0 connecting thr ccbb1980 , thread 5353 , mypolls 0 +thr ccbb1b00 , status 1 +connecting thr ccbb1b00 , thread 5354 , mypolls 0 +myconn 0 connecting thr ccbb1b00 , thread 5354 , mypolls 0 +thr ccbb1c80 , status 1 +connecting thr ccbb1c80 , thread 5355 , mypolls 0 +myconn 0 connecting thr ccbb1c80 , thread 5355 , mypolls 0 +thr ccbb1e00 , status 1 +connecting thr ccbb1e00 , thread 5356 , mypolls 0 +myconn 0 connecting thr ccbb1e00 , thread 5356 , mypolls 0 +thr ccbb1f80 , status 1 +connecting thr ccbb1f80 , thread 5357 , mypolls 0 +myconn 0 connecting thr ccbb1f80 , thread 5357 , mypolls 0 +thr ccbb2100 , status 1 +connecting thr ccbb2100 , thread 5358 , mypolls 0 +myconn 0 connecting thr ccbb2100 , thread 5358 , mypolls 0 +thr ccbb2280 , status 1 +connecting thr ccbb2280 , thread 5359 , mypolls 0 +myconn 0 connecting thr ccbb2280 , thread 5359 , mypolls 0 +thr ccbb2400 , status 1 +connecting thr ccbb2400 , thread 5360 , mypolls 0 +myconn 0 connecting thr ccbb2400 , thread 5360 , mypolls 0 +thr ccbb2580 , status 1 +connecting thr ccbb2580 , thread 5361 , mypolls 0 +myconn 0 connecting thr ccbb2580 , thread 5361 , mypolls 0 +thr ccbb2700 , status 1 +connecting thr ccbb2700 , thread 5362 , mypolls 0 +myconn 0 connecting thr ccbb2700 , thread 5362 , mypolls 0 +thr ccbb2880 , status 1 +connecting thr ccbb2880 , thread 5363 , mypolls 0 +myconn 0 connecting thr ccbb2880 , thread 5363 , mypolls 0 +thr ccbb2a00 , status 1 +connecting thr ccbb2a00 , thread 5364 , mypolls 0 +myconn 0 connecting thr ccbb2a00 , thread 5364 , mypolls 0 +thr ccbb2b80 , status 1 +connecting thr ccbb2b80 , thread 5365 , mypolls 0 +myconn 0 connecting thr ccbb2b80 , thread 5365 , mypolls 0 +thr ccbb2d00 , status 1 +connecting thr ccbb2d00 , thread 5366 , mypolls 0 +myconn 0 connecting thr ccbb2d00 , thread 5366 , mypolls 0 +thr ccbb2e80 , status 1 +connecting thr ccbb2e80 , thread 5367 , mypolls 0 +myconn 0 connecting thr ccbb2e80 , thread 5367 , mypolls 0 +thr cc9f8000 , status 1 +connecting thr cc9f8000 , thread 5368 , mypolls 0 +myconn 0 connecting thr cc9f8000 , thread 5368 , mypolls 0 +thr cc9f8180 , status 1 +connecting thr cc9f8180 , thread 5369 , mypolls 0 +myconn 0 connecting thr cc9f8180 , thread 5369 , mypolls 0 +thr cc9f8300 , status 1 +connecting thr cc9f8300 , thread 5370 , mypolls 0 +myconn 0 connecting thr cc9f8300 , thread 5370 , mypolls 0 +thr cc9f8480 , status 1 +connecting thr cc9f8480 , thread 5371 , mypolls 0 +myconn 0 connecting thr cc9f8480 , thread 5371 , mypolls 0 +thr cc9f8600 , status 1 +connecting thr cc9f8600 , thread 5372 , mypolls 0 +myconn 0 connecting thr cc9f8600 , thread 5372 , mypolls 0 +thr cc9f8780 , status 1 +connecting thr cc9f8780 , thread 5373 , mypolls 0 +myconn 0 connecting thr cc9f8780 , thread 5373 , mypolls 0 +thr cc9f8900 , status 1 +connecting thr cc9f8900 , thread 5374 , mypolls 0 +myconn 0 connecting thr cc9f8900 , thread 5374 , mypolls 0 +thr cc9f8a80 , status 1 +connecting thr cc9f8a80 , thread 5375 , mypolls 0 +myconn 0 connecting thr cc9f8a80 , thread 5375 , mypolls 0 +thr cc9f8c00 , status 1 +connecting thr cc9f8c00 , thread 5376 , mypolls 0 +myconn 0 connecting thr cc9f8c00 , thread 5376 , mypolls 0 +thr cc9f8d80 , status 1 +connecting thr cc9f8d80 , thread 5377 , mypolls 0 +myconn 0 connecting thr cc9f8d80 , thread 5377 , mypolls 0 +thr cc9f8f00 , status 1 +connecting thr cc9f8f00 , thread 5378 , mypolls 0 +myconn 0 connecting thr cc9f8f00 , thread 5378 , mypolls 0 +thr cc9f9080 , status 1 +connecting thr cc9f9080 , thread 5379 , mypolls 0 +myconn 0 connecting thr cc9f9080 , thread 5379 , mypolls 0 +thr cc9f9200 , status 1 +connecting thr cc9f9200 , thread 5380 , mypolls 0 +myconn 0 connecting thr cc9f9200 , thread 5380 , mypolls 0 +thr cc9f9380 , status 1 +connecting thr cc9f9380 , thread 5381 , mypolls 0 +myconn 0 connecting thr cc9f9380 , thread 5381 , mypolls 0 +thr cc9f9500 , status 1 +connecting thr cc9f9500 , thread 5382 , mypolls 0 +myconn 0 connecting thr cc9f9500 , thread 5382 , mypolls 0 +thr cc9f9680 , status 1 +connecting thr cc9f9680 , thread 5383 , mypolls 0 +myconn 0 connecting thr cc9f9680 , thread 5383 , mypolls 0 +thr cc9f9800 , status 1 +connecting thr cc9f9800 , thread 5384 , mypolls 0 +myconn 0 connecting thr cc9f9800 , thread 5384 , mypolls 0 +thr cc9f9980 , status 1 +connecting thr cc9f9980 , thread 5385 , mypolls 0 +myconn 0 connecting thr cc9f9980 , thread 5385 , mypolls 0 +thr cc9f9b00 , status 1 +connecting thr cc9f9b00 , thread 5386 , mypolls 0 +myconn 0 connecting thr cc9f9b00 , thread 5386 , mypolls 0 +thr cc9f9c80 , status 1 +connecting thr cc9f9c80 , thread 5387 , mypolls 0 +myconn 0 connecting thr cc9f9c80 , thread 5387 , mypolls 0 +thr cc9f9e00 , status 1 +connecting thr cc9f9e00 , thread 5388 , mypolls 0 +myconn 0 connecting thr cc9f9e00 , thread 5388 , mypolls 0 +thr cc9f9f80 , status 1 +connecting thr cc9f9f80 , thread 5389 , mypolls 0 +myconn 0 connecting thr cc9f9f80 , thread 5389 , mypolls 0 +thr cc9fa100 , status 1 +connecting thr cc9fa100 , thread 5390 , mypolls 0 +myconn 0 connecting thr cc9fa100 , thread 5390 , mypolls 0 +thr cc9fa280 , status 1 +connecting thr cc9fa280 , thread 5391 , mypolls 0 +myconn 0 connecting thr cc9fa280 , thread 5391 , mypolls 0 +thr cc9fa400 , status 1 +connecting thr cc9fa400 , thread 5392 , mypolls 0 +myconn 0 connecting thr cc9fa400 , thread 5392 , mypolls 0 +thr cc9fa580 , status 1 +connecting thr cc9fa580 , thread 5393 , mypolls 0 +myconn 0 connecting thr cc9fa580 , thread 5393 , mypolls 0 +thr cc9fa700 , status 1 +connecting thr cc9fa700 , thread 5394 , mypolls 0 +myconn 0 connecting thr cc9fa700 , thread 5394 , mypolls 0 +thr cc9fa880 , status 1 +connecting thr cc9fa880 , thread 5395 , mypolls 0 +myconn 0 connecting thr cc9fa880 , thread 5395 , mypolls 0 +thr cc9faa00 , status 1 +connecting thr cc9faa00 , thread 5396 , mypolls 0 +myconn 0 connecting thr cc9faa00 , thread 5396 , mypolls 0 +thr cc9fab80 , status 1 +connecting thr cc9fab80 , thread 5397 , mypolls 0 +myconn 0 connecting thr cc9fab80 , thread 5397 , mypolls 0 +thr cc9fad00 , status 1 +connecting thr cc9fad00 , thread 5398 , mypolls 0 +myconn 0 connecting thr cc9fad00 , thread 5398 , mypolls 0 +thr cc9fae80 , status 1 +connecting thr cc9fae80 , thread 5399 , mypolls 0 +myconn 0 connecting thr cc9fae80 , thread 5399 , mypolls 0 +thr cc7fc000 , status 1 +connecting thr cc7fc000 , thread 5400 , mypolls 0 +myconn 0 connecting thr cc7fc000 , thread 5400 , mypolls 0 +thr cc7fc180 , status 1 +connecting thr cc7fc180 , thread 5401 , mypolls 0 +myconn 0 connecting thr cc7fc180 , thread 5401 , mypolls 0 +thr cc7fc300 , status 1 +connecting thr cc7fc300 , thread 5402 , mypolls 0 +myconn 0 connecting thr cc7fc300 , thread 5402 , mypolls 0 +thr cc7fc480 , status 1 +connecting thr cc7fc480 , thread 5403 , mypolls 0 +myconn 0 connecting thr cc7fc480 , thread 5403 , mypolls 0 +thr cc7fc600 , status 1 +connecting thr cc7fc600 , thread 5404 , mypolls 0 +myconn 0 connecting thr cc7fc600 , thread 5404 , mypolls 0 +thr cc7fc780 , status 1 +connecting thr cc7fc780 , thread 5405 , mypolls 0 +myconn 0 connecting thr cc7fc780 , thread 5405 , mypolls 0 +thr cc7fc900 , status 1 +connecting thr cc7fc900 , thread 5406 , mypolls 0 +myconn 0 connecting thr cc7fc900 , thread 5406 , mypolls 0 +thr cc7fca80 , status 1 +connecting thr cc7fca80 , thread 5407 , mypolls 0 +myconn 0 connecting thr cc7fca80 , thread 5407 , mypolls 0 +thr cc7fcc00 , status 1 +connecting thr cc7fcc00 , thread 5408 , mypolls 0 +myconn 0 connecting thr cc7fcc00 , thread 5408 , mypolls 0 +thr cc7fcd80 , status 1 +connecting thr cc7fcd80 , thread 5409 , mypolls 0 +myconn 0 connecting thr cc7fcd80 , thread 5409 , mypolls 0 +thr cc7fcf00 , status 1 +connecting thr cc7fcf00 , thread 5410 , mypolls 0 +myconn 0 connecting thr cc7fcf00 , thread 5410 , mypolls 0 +thr cc7fd080 , status 1 +connecting thr cc7fd080 , thread 5411 , mypolls 0 +myconn 0 connecting thr cc7fd080 , thread 5411 , mypolls 0 +thr cc7fd200 , status 1 +connecting thr cc7fd200 , thread 5412 , mypolls 0 +myconn 0 connecting thr cc7fd200 , thread 5412 , mypolls 0 +thr cc7fd380 , status 1 +connecting thr cc7fd380 , thread 5413 , mypolls 0 +myconn 0 connecting thr cc7fd380 , thread 5413 , mypolls 0 +thr cc7fd500 , status 1 +connecting thr cc7fd500 , thread 5414 , mypolls 0 +myconn 0 connecting thr cc7fd500 , thread 5414 , mypolls 0 +thr cc7fd680 , status 1 +connecting thr cc7fd680 , thread 5415 , mypolls 0 +myconn 0 connecting thr cc7fd680 , thread 5415 , mypolls 0 +thr cc7fd800 , status 1 +connecting thr cc7fd800 , thread 5416 , mypolls 0 +myconn 0 connecting thr cc7fd800 , thread 5416 , mypolls 0 +thr cc7fd980 , status 1 +connecting thr cc7fd980 , thread 5417 , mypolls 0 +myconn 0 connecting thr cc7fd980 , thread 5417 , mypolls 0 +thr cc7fdb00 , status 1 +connecting thr cc7fdb00 , thread 5418 , mypolls 0 +myconn 0 connecting thr cc7fdb00 , thread 5418 , mypolls 0 +thr cc7fdc80 , status 1 +connecting thr cc7fdc80 , thread 5419 , mypolls 0 +myconn 0 connecting thr cc7fdc80 , thread 5419 , mypolls 0 +thr cc7fde00 , status 1 +connecting thr cc7fde00 , thread 5420 , mypolls 0 +myconn 0 connecting thr cc7fde00 , thread 5420 , mypolls 0 +thr cc7fdf80 , status 1 +connecting thr cc7fdf80 , thread 5421 , mypolls 0 +myconn 0 connecting thr cc7fdf80 , thread 5421 , mypolls 0 +thr cc7fe100 , status 1 +connecting thr cc7fe100 , thread 5422 , mypolls 0 +myconn 0 connecting thr cc7fe100 , thread 5422 , mypolls 0 +thr cc7fe280 , status 1 +connecting thr cc7fe280 , thread 5423 , mypolls 0 +myconn 0 connecting thr cc7fe280 , thread 5423 , mypolls 0 +thr cc7fe400 , status 1 +connecting thr cc7fe400 , thread 5424 , mypolls 0 +myconn 0 connecting thr cc7fe400 , thread 5424 , mypolls 0 +thr cc7fe580 , status 1 +connecting thr cc7fe580 , thread 5425 , mypolls 0 +myconn 0 connecting thr cc7fe580 , thread 5425 , mypolls 0 +thr cc7fe700 , status 1 +connecting thr cc7fe700 , thread 5426 , mypolls 0 +myconn 0 connecting thr cc7fe700 , thread 5426 , mypolls 0 +thr cc7fe880 , status 1 +connecting thr cc7fe880 , thread 5427 , mypolls 0 +myconn 0 connecting thr cc7fe880 , thread 5427 , mypolls 0 +thr cc7fea00 , status 1 +connecting thr cc7fea00 , thread 5428 , mypolls 0 +myconn 0 connecting thr cc7fea00 , thread 5428 , mypolls 0 +thr cc7feb80 , status 1 +connecting thr cc7feb80 , thread 5429 , mypolls 0 +myconn 0 connecting thr cc7feb80 , thread 5429 , mypolls 0 +thr cc7fed00 , status 1 +connecting thr cc7fed00 , thread 5430 , mypolls 0 +myconn 0 connecting thr cc7fed00 , thread 5430 , mypolls 0 +thr cc7fee80 , status 1 +connecting thr cc7fee80 , thread 5431 , mypolls 0 +myconn 0 connecting thr cc7fee80 , thread 5431 , mypolls 0 +thr cc5fc000 , status 1 +connecting thr cc5fc000 , thread 5432 , mypolls 0 +myconn 0 connecting thr cc5fc000 , thread 5432 , mypolls 0 +thr cc5fc180 , status 1 +connecting thr cc5fc180 , thread 5433 , mypolls 0 +myconn 0 connecting thr cc5fc180 , thread 5433 , mypolls 0 +thr cc5fc300 , status 1 +connecting thr cc5fc300 , thread 5434 , mypolls 0 +myconn 0 connecting thr cc5fc300 , thread 5434 , mypolls 0 +thr cc5fc480 , status 1 +connecting thr cc5fc480 , thread 5435 , mypolls 0 +myconn 0 connecting thr cc5fc480 , thread 5435 , mypolls 0 +thr cc5fc600 , status 1 +connecting thr cc5fc600 , thread 5436 , mypolls 0 +myconn 0 connecting thr cc5fc600 , thread 5436 , mypolls 0 +thr cc5fc780 , status 1 +connecting thr cc5fc780 , thread 5437 , mypolls 0 +myconn 0 connecting thr cc5fc780 , thread 5437 , mypolls 0 +thr cc5fc900 , status 1 +connecting thr cc5fc900 , thread 5438 , mypolls 0 +myconn 0 connecting thr cc5fc900 , thread 5438 , mypolls 0 +thr cc5fca80 , status 1 +connecting thr cc5fca80 , thread 5439 , mypolls 0 +myconn 0 connecting thr cc5fca80 , thread 5439 , mypolls 0 +thr cc5fcc00 , status 1 +connecting thr cc5fcc00 , thread 5440 , mypolls 0 +myconn 0 connecting thr cc5fcc00 , thread 5440 , mypolls 0 +thr cc5fcd80 , status 1 +connecting thr cc5fcd80 , thread 5441 , mypolls 0 +myconn 0 connecting thr cc5fcd80 , thread 5441 , mypolls 0 +thr cc5fcf00 , status 1 +connecting thr cc5fcf00 , thread 5442 , mypolls 0 +myconn 0 connecting thr cc5fcf00 , thread 5442 , mypolls 0 +thr cc5fd080 , status 1 +connecting thr cc5fd080 , thread 5443 , mypolls 0 +myconn 0 connecting thr cc5fd080 , thread 5443 , mypolls 0 +thr cc5fd200 , status 1 +connecting thr cc5fd200 , thread 5444 , mypolls 0 +myconn 0 connecting thr cc5fd200 , thread 5444 , mypolls 0 +thr cc5fd380 , status 1 +connecting thr cc5fd380 , thread 5445 , mypolls 0 +myconn 0 connecting thr cc5fd380 , thread 5445 , mypolls 0 +thr cc5fd500 , status 1 +connecting thr cc5fd500 , thread 5446 , mypolls 0 +myconn 0 connecting thr cc5fd500 , thread 5446 , mypolls 0 +thr cc5fd680 , status 1 +connecting thr cc5fd680 , thread 5447 , mypolls 0 +myconn 0 connecting thr cc5fd680 , thread 5447 , mypolls 0 +thr cc5fd800 , status 1 +connecting thr cc5fd800 , thread 5448 , mypolls 0 +myconn 0 connecting thr cc5fd800 , thread 5448 , mypolls 0 +thr cc5fd980 , status 1 +connecting thr cc5fd980 , thread 5449 , mypolls 0 +myconn 0 connecting thr cc5fd980 , thread 5449 , mypolls 0 +thr cc5fdb00 , status 1 +connecting thr cc5fdb00 , thread 5450 , mypolls 0 +myconn 0 connecting thr cc5fdb00 , thread 5450 , mypolls 0 +thr cc5fdc80 , status 1 +connecting thr cc5fdc80 , thread 5451 , mypolls 0 +myconn 0 connecting thr cc5fdc80 , thread 5451 , mypolls 0 +thr cc5fde00 , status 1 +connecting thr cc5fde00 , thread 5452 , mypolls 0 +myconn 0 connecting thr cc5fde00 , thread 5452 , mypolls 0 +thr cc5fdf80 , status 1 +connecting thr cc5fdf80 , thread 5453 , mypolls 0 +myconn 0 connecting thr cc5fdf80 , thread 5453 , mypolls 0 +thr cc5fe100 , status 1 +connecting thr cc5fe100 , thread 5454 , mypolls 0 +myconn 0 connecting thr cc5fe100 , thread 5454 , mypolls 0 +thr cc5fe280 , status 1 +connecting thr cc5fe280 , thread 5455 , mypolls 0 +myconn 0 connecting thr cc5fe280 , thread 5455 , mypolls 0 +thr cc5fe400 , status 1 +connecting thr cc5fe400 , thread 5456 , mypolls 0 +myconn 0 connecting thr cc5fe400 , thread 5456 , mypolls 0 +thr cc5fe580 , status 1 +connecting thr cc5fe580 , thread 5457 , mypolls 0 +myconn 0 connecting thr cc5fe580 , thread 5457 , mypolls 0 +thr cc5fe700 , status 1 +connecting thr cc5fe700 , thread 5458 , mypolls 0 +myconn 0 connecting thr cc5fe700 , thread 5458 , mypolls 0 +thr cc5fe880 , status 1 +connecting thr cc5fe880 , thread 5459 , mypolls 0 +myconn 0 connecting thr cc5fe880 , thread 5459 , mypolls 0 +thr cc5fea00 , status 1 +connecting thr cc5fea00 , thread 5460 , mypolls 0 +myconn 0 connecting thr cc5fea00 , thread 5460 , mypolls 0 +thr cc5feb80 , status 1 +connecting thr cc5feb80 , thread 5461 , mypolls 0 +myconn 0 connecting thr cc5feb80 , thread 5461 , mypolls 0 +thr cc5fed00 , status 1 +connecting thr cc5fed00 , thread 5462 , mypolls 0 +myconn 0 connecting thr cc5fed00 , thread 5462 , mypolls 0 +thr cc5fee80 , status 1 +connecting thr cc5fee80 , thread 5463 , mypolls 0 +myconn 0 connecting thr cc5fee80 , thread 5463 , mypolls 0 +thr cc14d000 , status 1 +connecting thr cc14d000 , thread 5464 , mypolls 0 +myconn 0 connecting thr cc14d000 , thread 5464 , mypolls 0 +thr cc14d180 , status 1 +connecting thr cc14d180 , thread 5465 , mypolls 0 +myconn 0 connecting thr cc14d180 , thread 5465 , mypolls 0 +thr cc14d300 , status 1 +connecting thr cc14d300 , thread 5466 , mypolls 0 +myconn 0 connecting thr cc14d300 , thread 5466 , mypolls 0 +thr cc14d480 , status 1 +connecting thr cc14d480 , thread 5467 , mypolls 0 +myconn 0 connecting thr cc14d480 , thread 5467 , mypolls 0 +thr cc14d600 , status 1 +connecting thr cc14d600 , thread 5468 , mypolls 0 +myconn 0 connecting thr cc14d600 , thread 5468 , mypolls 0 +thr cc14d780 , status 1 +connecting thr cc14d780 , thread 5469 , mypolls 0 +myconn 0 connecting thr cc14d780 , thread 5469 , mypolls 0 +thr cc14d900 , status 1 +connecting thr cc14d900 , thread 5470 , mypolls 0 +myconn 0 connecting thr cc14d900 , thread 5470 , mypolls 0 +thr cc14da80 , status 1 +connecting thr cc14da80 , thread 5471 , mypolls 0 +myconn 0 connecting thr cc14da80 , thread 5471 , mypolls 0 +thr cc14dc00 , status 1 +connecting thr cc14dc00 , thread 5472 , mypolls 0 +myconn 0 connecting thr cc14dc00 , thread 5472 , mypolls 0 +thr cc14dd80 , status 1 +connecting thr cc14dd80 , thread 5473 , mypolls 0 +myconn 0 connecting thr cc14dd80 , thread 5473 , mypolls 0 +thr cc14df00 , status 1 +connecting thr cc14df00 , thread 5474 , mypolls 0 +myconn 0 connecting thr cc14df00 , thread 5474 , mypolls 0 +thr cc14e080 , status 1 +connecting thr cc14e080 , thread 5475 , mypolls 0 +myconn 0 connecting thr cc14e080 , thread 5475 , mypolls 0 +thr cc14e200 , status 1 +connecting thr cc14e200 , thread 5476 , mypolls 0 +myconn 0 connecting thr cc14e200 , thread 5476 , mypolls 0 +thr cc14e380 , status 1 +connecting thr cc14e380 , thread 5477 , mypolls 0 +myconn 0 connecting thr cc14e380 , thread 5477 , mypolls 0 +thr cc14e500 , status 1 +connecting thr cc14e500 , thread 5478 , mypolls 0 +myconn 0 connecting thr cc14e500 , thread 5478 , mypolls 0 +thr cc14e680 , status 1 +connecting thr cc14e680 , thread 5479 , mypolls 0 +myconn 0 connecting thr cc14e680 , thread 5479 , mypolls 0 +thr cc14e800 , status 1 +connecting thr cc14e800 , thread 5480 , mypolls 0 +myconn 0 connecting thr cc14e800 , thread 5480 , mypolls 0 +thr cc14e980 , status 1 +connecting thr cc14e980 , thread 5481 , mypolls 0 +myconn 0 connecting thr cc14e980 , thread 5481 , mypolls 0 +thr cc14eb00 , status 1 +connecting thr cc14eb00 , thread 5482 , mypolls 0 +myconn 0 connecting thr cc14eb00 , thread 5482 , mypolls 0 +thr cc14ec80 , status 1 +connecting thr cc14ec80 , thread 5483 , mypolls 0 +myconn 0 connecting thr cc14ec80 , thread 5483 , mypolls 0 +thr cc14ee00 , status 1 +connecting thr cc14ee00 , thread 5484 , mypolls 0 +myconn 0 connecting thr cc14ee00 , thread 5484 , mypolls 0 +thr cc14ef80 , status 1 +connecting thr cc14ef80 , thread 5485 , mypolls 0 +myconn 0 connecting thr cc14ef80 , thread 5485 , mypolls 0 +thr cc14f100 , status 1 +connecting thr cc14f100 , thread 5486 , mypolls 0 +myconn 0 connecting thr cc14f100 , thread 5486 , mypolls 0 +thr cc14f280 , status 1 +connecting thr cc14f280 , thread 5487 , mypolls 0 +myconn 0 connecting thr cc14f280 , thread 5487 , mypolls 0 +thr cc14f400 , status 1 +connecting thr cc14f400 , thread 5488 , mypolls 0 +myconn 0 connecting thr cc14f400 , thread 5488 , mypolls 0 +thr cc14f580 , status 1 +connecting thr cc14f580 , thread 5489 , mypolls 0 +myconn 0 connecting thr cc14f580 , thread 5489 , mypolls 0 +thr cc14f700 , status 1 +connecting thr cc14f700 , thread 5490 , mypolls 0 +myconn 0 connecting thr cc14f700 , thread 5490 , mypolls 0 +thr cc14f880 , status 1 +connecting thr cc14f880 , thread 5491 , mypolls 0 +myconn 0 connecting thr cc14f880 , thread 5491 , mypolls 0 +thr cc14fa00 , status 1 +connecting thr cc14fa00 , thread 5492 , mypolls 0 +myconn 0 connecting thr cc14fa00 , thread 5492 , mypolls 0 +thr cc14fb80 , status 1 +connecting thr cc14fb80 , thread 5493 , mypolls 0 +myconn 0 connecting thr cc14fb80 , thread 5493 , mypolls 0 +thr cc14fd00 , status 1 +connecting thr cc14fd00 , thread 5494 , mypolls 0 +myconn 0 connecting thr cc14fd00 , thread 5494 , mypolls 0 +thr cc14fe80 , status 1 +connecting thr cc14fe80 , thread 5495 , mypolls 0 +myconn 0 connecting thr cc14fe80 , thread 5495 , mypolls 0 +thr cbfab000 , status 1 +connecting thr cbfab000 , thread 5496 , mypolls 0 +myconn 0 connecting thr cbfab000 , thread 5496 , mypolls 0 +thr cbfab180 , status 1 +connecting thr cbfab180 , thread 5497 , mypolls 0 +myconn 0 connecting thr cbfab180 , thread 5497 , mypolls 0 +thr cbfab300 , status 1 +connecting thr cbfab300 , thread 5498 , mypolls 0 +myconn 0 connecting thr cbfab300 , thread 5498 , mypolls 0 +thr cbfab480 , status 1 +connecting thr cbfab480 , thread 5499 , mypolls 0 +myconn 0 connecting thr cbfab480 , thread 5499 , mypolls 0 +thr cbfab600 , status 1 +connecting thr cbfab600 , thread 5500 , mypolls 0 +myconn 0 connecting thr cbfab600 , thread 5500 , mypolls 0 +thr cbfab780 , status 1 +connecting thr cbfab780 , thread 5501 , mypolls 0 +myconn 0 connecting thr cbfab780 , thread 5501 , mypolls 0 +thr cbfab900 , status 1 +connecting thr cbfab900 , thread 5502 , mypolls 0 +myconn 0 connecting thr cbfab900 , thread 5502 , mypolls 0 +thr cbfaba80 , status 1 +connecting thr cbfaba80 , thread 5503 , mypolls 0 +myconn 0 connecting thr cbfaba80 , thread 5503 , mypolls 0 +thr cbfabc00 , status 1 +connecting thr cbfabc00 , thread 5504 , mypolls 0 +myconn 0 connecting thr cbfabc00 , thread 5504 , mypolls 0 +thr cbfabd80 , status 1 +connecting thr cbfabd80 , thread 5505 , mypolls 0 +myconn 0 connecting thr cbfabd80 , thread 5505 , mypolls 0 +thr cbfabf00 , status 1 +connecting thr cbfabf00 , thread 5506 , mypolls 0 +myconn 0 connecting thr cbfabf00 , thread 5506 , mypolls 0 +thr cbfac080 , status 1 +connecting thr cbfac080 , thread 5507 , mypolls 0 +myconn 0 connecting thr cbfac080 , thread 5507 , mypolls 0 +thr cbfac200 , status 1 +connecting thr cbfac200 , thread 5508 , mypolls 0 +myconn 0 connecting thr cbfac200 , thread 5508 , mypolls 0 +thr cbfac380 , status 1 +connecting thr cbfac380 , thread 5509 , mypolls 0 +myconn 0 connecting thr cbfac380 , thread 5509 , mypolls 0 +thr cbfac500 , status 1 +connecting thr cbfac500 , thread 5510 , mypolls 0 +myconn 0 connecting thr cbfac500 , thread 5510 , mypolls 0 +thr cbfac680 , status 1 +connecting thr cbfac680 , thread 5511 , mypolls 0 +myconn 0 connecting thr cbfac680 , thread 5511 , mypolls 0 +thr cbfac800 , status 1 +connecting thr cbfac800 , thread 5512 , mypolls 0 +myconn 0 connecting thr cbfac800 , thread 5512 , mypolls 0 +thr cbfac980 , status 1 +connecting thr cbfac980 , thread 5513 , mypolls 0 +myconn 0 connecting thr cbfac980 , thread 5513 , mypolls 0 +thr cbfacb00 , status 1 +connecting thr cbfacb00 , thread 5514 , mypolls 0 +myconn 0 connecting thr cbfacb00 , thread 5514 , mypolls 0 +thr cbfacc80 , status 1 +connecting thr cbfacc80 , thread 5515 , mypolls 0 +myconn 0 connecting thr cbfacc80 , thread 5515 , mypolls 0 +thr cbface00 , status 1 +connecting thr cbface00 , thread 5516 , mypolls 0 +myconn 0 connecting thr cbface00 , thread 5516 , mypolls 0 +thr cbfacf80 , status 1 +connecting thr cbfacf80 , thread 5517 , mypolls 0 +myconn 0 connecting thr cbfacf80 , thread 5517 , mypolls 0 +thr cbfad100 , status 1 +connecting thr cbfad100 , thread 5518 , mypolls 0 +myconn 0 connecting thr cbfad100 , thread 5518 , mypolls 0 +thr cbfad280 , status 1 +connecting thr cbfad280 , thread 5519 , mypolls 0 +myconn 0 connecting thr cbfad280 , thread 5519 , mypolls 0 +thr cbfad400 , status 1 +connecting thr cbfad400 , thread 5520 , mypolls 0 +myconn 0 connecting thr cbfad400 , thread 5520 , mypolls 0 +thr cbfad580 , status 1 +connecting thr cbfad580 , thread 5521 , mypolls 0 +myconn 0 connecting thr cbfad580 , thread 5521 , mypolls 0 +thr cbfad700 , status 1 +connecting thr cbfad700 , thread 5522 , mypolls 0 +myconn 0 connecting thr cbfad700 , thread 5522 , mypolls 0 +thr cbfad880 , status 1 +connecting thr cbfad880 , thread 5523 , mypolls 0 +myconn 0 connecting thr cbfad880 , thread 5523 , mypolls 0 +thr cbfada00 , status 1 +connecting thr cbfada00 , thread 5524 , mypolls 0 +myconn 0 connecting thr cbfada00 , thread 5524 , mypolls 0 +thr cbfadb80 , status 1 +connecting thr cbfadb80 , thread 5525 , mypolls 0 +myconn 0 connecting thr cbfadb80 , thread 5525 , mypolls 0 +thr cbfadd00 , status 1 +connecting thr cbfadd00 , thread 5526 , mypolls 0 +myconn 0 connecting thr cbfadd00 , thread 5526 , mypolls 0 +thr cbfade80 , status 1 +connecting thr cbfade80 , thread 5527 , mypolls 0 +myconn 0 connecting thr cbfade80 , thread 5527 , mypolls 0 +thr cba1f000 , status 1 +connecting thr cba1f000 , thread 5528 , mypolls 0 +myconn 0 connecting thr cba1f000 , thread 5528 , mypolls 0 +thr cba1f180 , status 1 +connecting thr cba1f180 , thread 5529 , mypolls 0 +myconn 0 connecting thr cba1f180 , thread 5529 , mypolls 0 +thr cba1f300 , status 1 +connecting thr cba1f300 , thread 5530 , mypolls 0 +myconn 0 connecting thr cba1f300 , thread 5530 , mypolls 0 +thr cba1f480 , status 1 +connecting thr cba1f480 , thread 5531 , mypolls 0 +myconn 0 connecting thr cba1f480 , thread 5531 , mypolls 0 +thr cba1f600 , status 1 +connecting thr cba1f600 , thread 5532 , mypolls 0 +myconn 0 connecting thr cba1f600 , thread 5532 , mypolls 0 +thr cba1f780 , status 1 +connecting thr cba1f780 , thread 5533 , mypolls 0 +myconn 0 connecting thr cba1f780 , thread 5533 , mypolls 0 +thr cba1f900 , status 1 +connecting thr cba1f900 , thread 5534 , mypolls 0 +myconn 0 connecting thr cba1f900 , thread 5534 , mypolls 0 +thr cba1fa80 , status 1 +connecting thr cba1fa80 , thread 5535 , mypolls 0 +myconn 0 connecting thr cba1fa80 , thread 5535 , mypolls 0 +thr cba1fc00 , status 1 +connecting thr cba1fc00 , thread 5536 , mypolls 0 +myconn 0 connecting thr cba1fc00 , thread 5536 , mypolls 0 +thr cba1fd80 , status 1 +connecting thr cba1fd80 , thread 5537 , mypolls 0 +myconn 0 connecting thr cba1fd80 , thread 5537 , mypolls 0 +thr cba1ff00 , status 1 +connecting thr cba1ff00 , thread 5538 , mypolls 0 +myconn 0 connecting thr cba1ff00 , thread 5538 , mypolls 0 +thr cba20080 , status 1 +connecting thr cba20080 , thread 5539 , mypolls 0 +myconn 0 connecting thr cba20080 , thread 5539 , mypolls 0 +thr cba20200 , status 1 +connecting thr cba20200 , thread 5540 , mypolls 0 +myconn 0 connecting thr cba20200 , thread 5540 , mypolls 0 +thr cba20380 , status 1 +connecting thr cba20380 , thread 5541 , mypolls 0 +myconn 0 connecting thr cba20380 , thread 5541 , mypolls 0 +thr cba20500 , status 1 +connecting thr cba20500 , thread 5542 , mypolls 0 +myconn 0 connecting thr cba20500 , thread 5542 , mypolls 0 +thr cba20680 , status 1 +connecting thr cba20680 , thread 5543 , mypolls 0 +myconn 0 connecting thr cba20680 , thread 5543 , mypolls 0 +thr cba20800 , status 1 +connecting thr cba20800 , thread 5544 , mypolls 0 +myconn 0 connecting thr cba20800 , thread 5544 , mypolls 0 +thr cba20980 , status 1 +connecting thr cba20980 , thread 5545 , mypolls 0 +myconn 0 connecting thr cba20980 , thread 5545 , mypolls 0 +thr cba20b00 , status 1 +connecting thr cba20b00 , thread 5546 , mypolls 0 +myconn 0 connecting thr cba20b00 , thread 5546 , mypolls 0 +thr cba20c80 , status 1 +connecting thr cba20c80 , thread 5547 , mypolls 0 +myconn 0 connecting thr cba20c80 , thread 5547 , mypolls 0 +thr cba20e00 , status 1 +connecting thr cba20e00 , thread 5548 , mypolls 0 +myconn 0 connecting thr cba20e00 , thread 5548 , mypolls 0 +thr cba20f80 , status 1 +connecting thr cba20f80 , thread 5549 , mypolls 0 +myconn 0 connecting thr cba20f80 , thread 5549 , mypolls 0 +thr cba21100 , status 1 +connecting thr cba21100 , thread 5550 , mypolls 0 +myconn 0 connecting thr cba21100 , thread 5550 , mypolls 0 +thr cba21280 , status 1 +connecting thr cba21280 , thread 5551 , mypolls 0 +myconn 0 connecting thr cba21280 , thread 5551 , mypolls 0 +thr cba21400 , status 1 +connecting thr cba21400 , thread 5552 , mypolls 0 +myconn 0 connecting thr cba21400 , thread 5552 , mypolls 0 +thr cba21580 , status 1 +connecting thr cba21580 , thread 5553 , mypolls 0 +myconn 0 connecting thr cba21580 , thread 5553 , mypolls 0 +thr cba21700 , status 1 +connecting thr cba21700 , thread 5554 , mypolls 0 +myconn 0 connecting thr cba21700 , thread 5554 , mypolls 0 +thr cba21880 , status 1 +connecting thr cba21880 , thread 5555 , mypolls 0 +myconn 0 connecting thr cba21880 , thread 5555 , mypolls 0 +thr cba21a00 , status 1 +connecting thr cba21a00 , thread 5556 , mypolls 0 +myconn 0 connecting thr cba21a00 , thread 5556 , mypolls 0 +thr cba21b80 , status 1 +connecting thr cba21b80 , thread 5557 , mypolls 0 +myconn 0 connecting thr cba21b80 , thread 5557 , mypolls 0 +thr cba21d00 , status 1 +connecting thr cba21d00 , thread 5558 , mypolls 0 +myconn 0 connecting thr cba21d00 , thread 5558 , mypolls 0 +thr cba21e80 , status 1 +connecting thr cba21e80 , thread 5559 , mypolls 0 +myconn 0 connecting thr cba21e80 , thread 5559 , mypolls 0 +thr cbbfb000 , status 1 +connecting thr cbbfb000 , thread 5560 , mypolls 0 +myconn 0 connecting thr cbbfb000 , thread 5560 , mypolls 0 +thr cbbfb180 , status 1 +connecting thr cbbfb180 , thread 5561 , mypolls 0 +myconn 0 connecting thr cbbfb180 , thread 5561 , mypolls 0 +thr cbbfb300 , status 1 +connecting thr cbbfb300 , thread 5562 , mypolls 0 +myconn 0 connecting thr cbbfb300 , thread 5562 , mypolls 0 +thr cbbfb480 , status 1 +connecting thr cbbfb480 , thread 5563 , mypolls 0 +myconn 0 connecting thr cbbfb480 , thread 5563 , mypolls 0 +thr cbbfb600 , status 1 +connecting thr cbbfb600 , thread 5564 , mypolls 0 +myconn 0 connecting thr cbbfb600 , thread 5564 , mypolls 0 +thr cbbfb780 , status 1 +connecting thr cbbfb780 , thread 5565 , mypolls 0 +myconn 0 connecting thr cbbfb780 , thread 5565 , mypolls 0 +thr cbbfb900 , status 1 +connecting thr cbbfb900 , thread 5566 , mypolls 0 +myconn 0 connecting thr cbbfb900 , thread 5566 , mypolls 0 +thr cbbfba80 , status 1 +connecting thr cbbfba80 , thread 5567 , mypolls 0 +myconn 0 connecting thr cbbfba80 , thread 5567 , mypolls 0 +thr cbbfbc00 , status 1 +connecting thr cbbfbc00 , thread 5568 , mypolls 0 +myconn 0 connecting thr cbbfbc00 , thread 5568 , mypolls 0 +thr cbbfbd80 , status 1 +connecting thr cbbfbd80 , thread 5569 , mypolls 0 +myconn 0 connecting thr cbbfbd80 , thread 5569 , mypolls 0 +thr cbbfbf00 , status 1 +connecting thr cbbfbf00 , thread 5570 , mypolls 0 +myconn 0 connecting thr cbbfbf00 , thread 5570 , mypolls 0 +thr cbbfc080 , status 1 +connecting thr cbbfc080 , thread 5571 , mypolls 0 +myconn 0 connecting thr cbbfc080 , thread 5571 , mypolls 0 +thr cbbfc200 , status 1 +connecting thr cbbfc200 , thread 5572 , mypolls 0 +myconn 0 connecting thr cbbfc200 , thread 5572 , mypolls 0 +thr cbbfc380 , status 1 +connecting thr cbbfc380 , thread 5573 , mypolls 0 +myconn 0 connecting thr cbbfc380 , thread 5573 , mypolls 0 +thr cbbfc500 , status 1 +connecting thr cbbfc500 , thread 5574 , mypolls 0 +myconn 0 connecting thr cbbfc500 , thread 5574 , mypolls 0 +thr cbbfc680 , status 1 +connecting thr cbbfc680 , thread 5575 , mypolls 0 +myconn 0 connecting thr cbbfc680 , thread 5575 , mypolls 0 +thr cbbfc800 , status 1 +connecting thr cbbfc800 , thread 5576 , mypolls 0 +myconn 0 connecting thr cbbfc800 , thread 5576 , mypolls 0 +thr cbbfc980 , status 1 +connecting thr cbbfc980 , thread 5577 , mypolls 0 +myconn 0 connecting thr cbbfc980 , thread 5577 , mypolls 0 +thr cbbfcb00 , status 1 +connecting thr cbbfcb00 , thread 5578 , mypolls 0 +myconn 0 connecting thr cbbfcb00 , thread 5578 , mypolls 0 +thr cbbfcc80 , status 1 +connecting thr cbbfcc80 , thread 5579 , mypolls 0 +myconn 0 connecting thr cbbfcc80 , thread 5579 , mypolls 0 +thr cbbfce00 , status 1 +connecting thr cbbfce00 , thread 5580 , mypolls 0 +myconn 0 connecting thr cbbfce00 , thread 5580 , mypolls 0 +thr cbbfcf80 , status 1 +connecting thr cbbfcf80 , thread 5581 , mypolls 0 +myconn 0 connecting thr cbbfcf80 , thread 5581 , mypolls 0 +thr cbbfd100 , status 1 +connecting thr cbbfd100 , thread 5582 , mypolls 0 +myconn 0 connecting thr cbbfd100 , thread 5582 , mypolls 0 +thr cbbfd280 , status 1 +connecting thr cbbfd280 , thread 5583 , mypolls 0 +myconn 0 connecting thr cbbfd280 , thread 5583 , mypolls 0 +thr cbbfd400 , status 1 +connecting thr cbbfd400 , thread 5584 , mypolls 0 +myconn 0 connecting thr cbbfd400 , thread 5584 , mypolls 0 +thr cbbfd580 , status 1 +connecting thr cbbfd580 , thread 5585 , mypolls 0 +myconn 0 connecting thr cbbfd580 , thread 5585 , mypolls 0 +thr cbbfd700 , status 1 +connecting thr cbbfd700 , thread 5586 , mypolls 0 +myconn 0 connecting thr cbbfd700 , thread 5586 , mypolls 0 +thr cbbfd880 , status 1 +connecting thr cbbfd880 , thread 5587 , mypolls 0 +myconn 0 connecting thr cbbfd880 , thread 5587 , mypolls 0 +thr cbbfda00 , status 1 +connecting thr cbbfda00 , thread 5588 , mypolls 0 +myconn 0 connecting thr cbbfda00 , thread 5588 , mypolls 0 +thr cbbfdb80 , status 1 +connecting thr cbbfdb80 , thread 5589 , mypolls 0 +myconn 0 connecting thr cbbfdb80 , thread 5589 , mypolls 0 +thr cbbfdd00 , status 1 +connecting thr cbbfdd00 , thread 5590 , mypolls 0 +myconn 0 connecting thr cbbfdd00 , thread 5590 , mypolls 0 +thr cbbfde80 , status 1 +connecting thr cbbfde80 , thread 5591 , mypolls 0 +myconn 0 connecting thr cbbfde80 , thread 5591 , mypolls 0 +thr cb6e7000 , status 1 +connecting thr cb6e7000 , thread 5592 , mypolls 0 +myconn 0 connecting thr cb6e7000 , thread 5592 , mypolls 0 +thr cb6e7180 , status 1 +connecting thr cb6e7180 , thread 5593 , mypolls 0 +myconn 0 connecting thr cb6e7180 , thread 5593 , mypolls 0 +thr cb6e7300 , status 1 +connecting thr cb6e7300 , thread 5594 , mypolls 0 +myconn 0 connecting thr cb6e7300 , thread 5594 , mypolls 0 +thr cb6e7480 , status 1 +connecting thr cb6e7480 , thread 5595 , mypolls 0 +myconn 0 connecting thr cb6e7480 , thread 5595 , mypolls 0 +thr cb6e7600 , status 1 +connecting thr cb6e7600 , thread 5596 , mypolls 0 +myconn 0 connecting thr cb6e7600 , thread 5596 , mypolls 0 +thr cb6e7780 , status 1 +connecting thr cb6e7780 , thread 5597 , mypolls 0 +myconn 0 connecting thr cb6e7780 , thread 5597 , mypolls 0 +thr cb6e7900 , status 1 +connecting thr cb6e7900 , thread 5598 , mypolls 0 +myconn 0 connecting thr cb6e7900 , thread 5598 , mypolls 0 +thr cb6e7a80 , status 1 +connecting thr cb6e7a80 , thread 5599 , mypolls 0 +myconn 0 connecting thr cb6e7a80 , thread 5599 , mypolls 0 +thr cb6e7c00 , status 1 +connecting thr cb6e7c00 , thread 5600 , mypolls 0 +myconn 0 connecting thr cb6e7c00 , thread 5600 , mypolls 0 +thr cb6e7d80 , status 1 +connecting thr cb6e7d80 , thread 5601 , mypolls 0 +myconn 0 connecting thr cb6e7d80 , thread 5601 , mypolls 0 +thr cb6e7f00 , status 1 +connecting thr cb6e7f00 , thread 5602 , mypolls 0 +myconn 0 connecting thr cb6e7f00 , thread 5602 , mypolls 0 +thr cb6e8080 , status 1 +connecting thr cb6e8080 , thread 5603 , mypolls 0 +myconn 0 connecting thr cb6e8080 , thread 5603 , mypolls 0 +thr cb6e8200 , status 1 +connecting thr cb6e8200 , thread 5604 , mypolls 0 +myconn 0 connecting thr cb6e8200 , thread 5604 , mypolls 0 +thr cb6e8380 , status 1 +connecting thr cb6e8380 , thread 5605 , mypolls 0 +myconn 0 connecting thr cb6e8380 , thread 5605 , mypolls 0 +thr cb6e8500 , status 1 +connecting thr cb6e8500 , thread 5606 , mypolls 0 +myconn 0 connecting thr cb6e8500 , thread 5606 , mypolls 0 +thr cb6e8680 , status 1 +connecting thr cb6e8680 , thread 5607 , mypolls 0 +myconn 0 connecting thr cb6e8680 , thread 5607 , mypolls 0 +thr cb6e8800 , status 1 +connecting thr cb6e8800 , thread 5608 , mypolls 0 +myconn 0 connecting thr cb6e8800 , thread 5608 , mypolls 0 +thr cb6e8980 , status 1 +connecting thr cb6e8980 , thread 5609 , mypolls 0 +myconn 0 connecting thr cb6e8980 , thread 5609 , mypolls 0 +thr cb6e8b00 , status 1 +connecting thr cb6e8b00 , thread 5610 , mypolls 0 +myconn 0 connecting thr cb6e8b00 , thread 5610 , mypolls 0 +thr cb6e8c80 , status 1 +connecting thr cb6e8c80 , thread 5611 , mypolls 0 +myconn 0 connecting thr cb6e8c80 , thread 5611 , mypolls 0 +thr cb6e8e00 , status 1 +connecting thr cb6e8e00 , thread 5612 , mypolls 0 +myconn 0 connecting thr cb6e8e00 , thread 5612 , mypolls 0 +thr cb6e8f80 , status 1 +connecting thr cb6e8f80 , thread 5613 , mypolls 0 +myconn 0 connecting thr cb6e8f80 , thread 5613 , mypolls 0 +thr cb6e9100 , status 1 +connecting thr cb6e9100 , thread 5614 , mypolls 0 +myconn 0 connecting thr cb6e9100 , thread 5614 , mypolls 0 +thr cb6e9280 , status 1 +connecting thr cb6e9280 , thread 5615 , mypolls 0 +myconn 0 connecting thr cb6e9280 , thread 5615 , mypolls 0 +thr cb6e9400 , status 1 +connecting thr cb6e9400 , thread 5616 , mypolls 0 +myconn 0 connecting thr cb6e9400 , thread 5616 , mypolls 0 +thr cb6e9580 , status 1 +connecting thr cb6e9580 , thread 5617 , mypolls 0 +myconn 0 connecting thr cb6e9580 , thread 5617 , mypolls 0 +thr cb6e9700 , status 1 +connecting thr cb6e9700 , thread 5618 , mypolls 0 +myconn 0 connecting thr cb6e9700 , thread 5618 , mypolls 0 +thr cb6e9880 , status 1 +connecting thr cb6e9880 , thread 5619 , mypolls 0 +myconn 0 connecting thr cb6e9880 , thread 5619 , mypolls 0 +thr cb6e9a00 , status 1 +connecting thr cb6e9a00 , thread 5620 , mypolls 0 +myconn 0 connecting thr cb6e9a00 , thread 5620 , mypolls 0 +thr cb6e9b80 , status 1 +connecting thr cb6e9b80 , thread 5621 , mypolls 0 +myconn 0 connecting thr cb6e9b80 , thread 5621 , mypolls 0 +thr cb6e9d00 , status 1 +connecting thr cb6e9d00 , thread 5622 , mypolls 0 +myconn 0 connecting thr cb6e9d00 , thread 5622 , mypolls 0 +thr cb6e9e80 , status 1 +connecting thr cb6e9e80 , thread 5623 , mypolls 0 +myconn 0 connecting thr cb6e9e80 , thread 5623 , mypolls 0 +thr cb549000 , status 1 +connecting thr cb549000 , thread 5624 , mypolls 0 +myconn 0 connecting thr cb549000 , thread 5624 , mypolls 0 +thr cb549180 , status 1 +connecting thr cb549180 , thread 5625 , mypolls 0 +myconn 0 connecting thr cb549180 , thread 5625 , mypolls 0 +thr cb549300 , status 1 +connecting thr cb549300 , thread 5626 , mypolls 0 +myconn 0 connecting thr cb549300 , thread 5626 , mypolls 0 +thr cb549480 , status 1 +connecting thr cb549480 , thread 5627 , mypolls 0 +myconn 0 connecting thr cb549480 , thread 5627 , mypolls 0 +thr cb549600 , status 1 +connecting thr cb549600 , thread 5628 , mypolls 0 +myconn 0 connecting thr cb549600 , thread 5628 , mypolls 0 +thr cb549780 , status 1 +connecting thr cb549780 , thread 5629 , mypolls 0 +myconn 0 connecting thr cb549780 , thread 5629 , mypolls 0 +thr cb549900 , status 1 +connecting thr cb549900 , thread 5630 , mypolls 0 +myconn 0 connecting thr cb549900 , thread 5630 , mypolls 0 +thr cb549a80 , status 1 +connecting thr cb549a80 , thread 5631 , mypolls 0 +myconn 0 connecting thr cb549a80 , thread 5631 , mypolls 0 +thr cb549c00 , status 1 +connecting thr cb549c00 , thread 5632 , mypolls 0 +myconn 0 connecting thr cb549c00 , thread 5632 , mypolls 0 +thr cb549d80 , status 1 +connecting thr cb549d80 , thread 5633 , mypolls 0 +myconn 0 connecting thr cb549d80 , thread 5633 , mypolls 0 +thr cb549f00 , status 1 +connecting thr cb549f00 , thread 5634 , mypolls 0 +myconn 0 connecting thr cb549f00 , thread 5634 , mypolls 0 +thr cb54a080 , status 1 +connecting thr cb54a080 , thread 5635 , mypolls 0 +myconn 0 connecting thr cb54a080 , thread 5635 , mypolls 0 +thr cb54a200 , status 1 +connecting thr cb54a200 , thread 5636 , mypolls 0 +myconn 0 connecting thr cb54a200 , thread 5636 , mypolls 0 +thr cb54a380 , status 1 +connecting thr cb54a380 , thread 5637 , mypolls 0 +myconn 0 connecting thr cb54a380 , thread 5637 , mypolls 0 +thr cb54a500 , status 1 +connecting thr cb54a500 , thread 5638 , mypolls 0 +myconn 0 connecting thr cb54a500 , thread 5638 , mypolls 0 +thr cb54a680 , status 1 +connecting thr cb54a680 , thread 5639 , mypolls 0 +myconn 0 connecting thr cb54a680 , thread 5639 , mypolls 0 +thr cb54a800 , status 1 +connecting thr cb54a800 , thread 5640 , mypolls 0 +myconn 0 connecting thr cb54a800 , thread 5640 , mypolls 0 +thr cb54a980 , status 1 +connecting thr cb54a980 , thread 5641 , mypolls 0 +myconn 0 connecting thr cb54a980 , thread 5641 , mypolls 0 +thr cb54ab00 , status 1 +connecting thr cb54ab00 , thread 5642 , mypolls 0 +myconn 0 connecting thr cb54ab00 , thread 5642 , mypolls 0 +thr cb54ac80 , status 1 +connecting thr cb54ac80 , thread 5643 , mypolls 0 +myconn 0 connecting thr cb54ac80 , thread 5643 , mypolls 0 +thr cb54ae00 , status 1 +connecting thr cb54ae00 , thread 5644 , mypolls 0 +myconn 0 connecting thr cb54ae00 , thread 5644 , mypolls 0 +thr cb54af80 , status 1 +connecting thr cb54af80 , thread 5645 , mypolls 0 +myconn 0 connecting thr cb54af80 , thread 5645 , mypolls 0 +thr cb54b100 , status 1 +connecting thr cb54b100 , thread 5646 , mypolls 0 +myconn 0 connecting thr cb54b100 , thread 5646 , mypolls 0 +thr cb54b280 , status 1 +connecting thr cb54b280 , thread 5647 , mypolls 0 +myconn 0 connecting thr cb54b280 , thread 5647 , mypolls 0 +thr cb54b400 , status 1 +connecting thr cb54b400 , thread 5648 , mypolls 0 +myconn 0 connecting thr cb54b400 , thread 5648 , mypolls 0 +thr cb54b580 , status 1 +connecting thr cb54b580 , thread 5649 , mypolls 0 +myconn 0 connecting thr cb54b580 , thread 5649 , mypolls 0 +thr cb54b700 , status 1 +connecting thr cb54b700 , thread 5650 , mypolls 0 +myconn 0 connecting thr cb54b700 , thread 5650 , mypolls 0 +thr cb54b880 , status 1 +connecting thr cb54b880 , thread 5651 , mypolls 0 +myconn 0 connecting thr cb54b880 , thread 5651 , mypolls 0 +thr cb54ba00 , status 1 +connecting thr cb54ba00 , thread 5652 , mypolls 0 +myconn 0 connecting thr cb54ba00 , thread 5652 , mypolls 0 +thr cb54bb80 , status 1 +connecting thr cb54bb80 , thread 5653 , mypolls 0 +myconn 0 connecting thr cb54bb80 , thread 5653 , mypolls 0 +thr cb54bd00 , status 1 +connecting thr cb54bd00 , thread 5654 , mypolls 0 +myconn 0 connecting thr cb54bd00 , thread 5654 , mypolls 0 +thr cb54be80 , status 1 +connecting thr cb54be80 , thread 5655 , mypolls 0 +myconn 0 connecting thr cb54be80 , thread 5655 , mypolls 0 +thr cb3a8000 , status 1 +connecting thr cb3a8000 , thread 5656 , mypolls 0 +myconn 0 connecting thr cb3a8000 , thread 5656 , mypolls 0 +thr cb3a8180 , status 1 +connecting thr cb3a8180 , thread 5657 , mypolls 0 +myconn 0 connecting thr cb3a8180 , thread 5657 , mypolls 0 +thr cb3a8300 , status 1 +connecting thr cb3a8300 , thread 5658 , mypolls 0 +myconn 0 connecting thr cb3a8300 , thread 5658 , mypolls 0 +thr cb3a8480 , status 1 +connecting thr cb3a8480 , thread 5659 , mypolls 0 +myconn 0 connecting thr cb3a8480 , thread 5659 , mypolls 0 +thr cb3a8600 , status 1 +connecting thr cb3a8600 , thread 5660 , mypolls 0 +myconn 0 connecting thr cb3a8600 , thread 5660 , mypolls 0 +thr cb3a8780 , status 1 +connecting thr cb3a8780 , thread 5661 , mypolls 0 +myconn 0 connecting thr cb3a8780 , thread 5661 , mypolls 0 +thr cb3a8900 , status 1 +connecting thr cb3a8900 , thread 5662 , mypolls 0 +myconn 0 connecting thr cb3a8900 , thread 5662 , mypolls 0 +thr cb3a8a80 , status 1 +connecting thr cb3a8a80 , thread 5663 , mypolls 0 +myconn 0 connecting thr cb3a8a80 , thread 5663 , mypolls 0 +thr cb3a8c00 , status 1 +connecting thr cb3a8c00 , thread 5664 , mypolls 0 +myconn 0 connecting thr cb3a8c00 , thread 5664 , mypolls 0 +thr cb3a8d80 , status 1 +connecting thr cb3a8d80 , thread 5665 , mypolls 0 +myconn 0 connecting thr cb3a8d80 , thread 5665 , mypolls 0 +thr cb3a8f00 , status 1 +connecting thr cb3a8f00 , thread 5666 , mypolls 0 +myconn 0 connecting thr cb3a8f00 , thread 5666 , mypolls 0 +thr cb3a9080 , status 1 +connecting thr cb3a9080 , thread 5667 , mypolls 0 +myconn 0 connecting thr cb3a9080 , thread 5667 , mypolls 0 +thr cb3a9200 , status 1 +connecting thr cb3a9200 , thread 5668 , mypolls 0 +myconn 0 connecting thr cb3a9200 , thread 5668 , mypolls 0 +thr cb3a9380 , status 1 +connecting thr cb3a9380 , thread 5669 , mypolls 0 +myconn 0 connecting thr cb3a9380 , thread 5669 , mypolls 0 +thr cb3a9500 , status 1 +connecting thr cb3a9500 , thread 5670 , mypolls 0 +myconn 0 connecting thr cb3a9500 , thread 5670 , mypolls 0 +thr cb3a9680 , status 1 +connecting thr cb3a9680 , thread 5671 , mypolls 0 +myconn 0 connecting thr cb3a9680 , thread 5671 , mypolls 0 +thr cb3a9800 , status 1 +connecting thr cb3a9800 , thread 5672 , mypolls 0 +myconn 0 connecting thr cb3a9800 , thread 5672 , mypolls 0 +thr cb3a9980 , status 1 +connecting thr cb3a9980 , thread 5673 , mypolls 0 +myconn 0 connecting thr cb3a9980 , thread 5673 , mypolls 0 +thr cb3a9b00 , status 1 +connecting thr cb3a9b00 , thread 5674 , mypolls 0 +myconn 0 connecting thr cb3a9b00 , thread 5674 , mypolls 0 +thr cb3a9c80 , status 1 +connecting thr cb3a9c80 , thread 5675 , mypolls 0 +myconn 0 connecting thr cb3a9c80 , thread 5675 , mypolls 0 +thr cb3a9e00 , status 1 +connecting thr cb3a9e00 , thread 5676 , mypolls 0 +myconn 0 connecting thr cb3a9e00 , thread 5676 , mypolls 0 +thr cb3a9f80 , status 1 +connecting thr cb3a9f80 , thread 5677 , mypolls 0 +myconn 0 connecting thr cb3a9f80 , thread 5677 , mypolls 0 +thr cb3aa100 , status 1 +connecting thr cb3aa100 , thread 5678 , mypolls 0 +myconn 0 connecting thr cb3aa100 , thread 5678 , mypolls 0 +thr cb3aa280 , status 1 +connecting thr cb3aa280 , thread 5679 , mypolls 0 +myconn 0 connecting thr cb3aa280 , thread 5679 , mypolls 0 +thr cb3aa400 , status 1 +connecting thr cb3aa400 , thread 5680 , mypolls 0 +myconn 0 connecting thr cb3aa400 , thread 5680 , mypolls 0 +thr cb3aa580 , status 1 +connecting thr cb3aa580 , thread 5681 , mypolls 0 +myconn 0 connecting thr cb3aa580 , thread 5681 , mypolls 0 +thr cb3aa700 , status 1 +connecting thr cb3aa700 , thread 5682 , mypolls 0 +myconn 0 connecting thr cb3aa700 , thread 5682 , mypolls 0 +thr cb3aa880 , status 1 +connecting thr cb3aa880 , thread 5683 , mypolls 0 +myconn 0 connecting thr cb3aa880 , thread 5683 , mypolls 0 +thr cb3aaa00 , status 1 +connecting thr cb3aaa00 , thread 5684 , mypolls 0 +myconn 0 connecting thr cb3aaa00 , thread 5684 , mypolls 0 +thr cb3aab80 , status 1 +connecting thr cb3aab80 , thread 5685 , mypolls 0 +myconn 0 connecting thr cb3aab80 , thread 5685 , mypolls 0 +thr cb3aad00 , status 1 +connecting thr cb3aad00 , thread 5686 , mypolls 0 +myconn 0 connecting thr cb3aad00 , thread 5686 , mypolls 0 +thr cb3aae80 , status 1 +connecting thr cb3aae80 , thread 5687 , mypolls 0 +myconn 0 connecting thr cb3aae80 , thread 5687 , mypolls 0 +thr cb1fb000 , status 1 +connecting thr cb1fb000 , thread 5688 , mypolls 0 +myconn 0 connecting thr cb1fb000 , thread 5688 , mypolls 0 +thr cb1fb180 , status 1 +connecting thr cb1fb180 , thread 5689 , mypolls 0 +myconn 0 connecting thr cb1fb180 , thread 5689 , mypolls 0 +thr cb1fb300 , status 1 +connecting thr cb1fb300 , thread 5690 , mypolls 0 +myconn 0 connecting thr cb1fb300 , thread 5690 , mypolls 0 +thr cb1fb480 , status 1 +connecting thr cb1fb480 , thread 5691 , mypolls 0 +myconn 0 connecting thr cb1fb480 , thread 5691 , mypolls 0 +thr cb1fb600 , status 1 +connecting thr cb1fb600 , thread 5692 , mypolls 0 +myconn 0 connecting thr cb1fb600 , thread 5692 , mypolls 0 +thr cb1fb780 , status 1 +connecting thr cb1fb780 , thread 5693 , mypolls 0 +myconn 0 connecting thr cb1fb780 , thread 5693 , mypolls 0 +thr cb1fb900 , status 1 +connecting thr cb1fb900 , thread 5694 , mypolls 0 +myconn 0 connecting thr cb1fb900 , thread 5694 , mypolls 0 +thr cb1fba80 , status 1 +connecting thr cb1fba80 , thread 5695 , mypolls 0 +myconn 0 connecting thr cb1fba80 , thread 5695 , mypolls 0 +thr cb1fbc00 , status 1 +connecting thr cb1fbc00 , thread 5696 , mypolls 0 +myconn 0 connecting thr cb1fbc00 , thread 5696 , mypolls 0 +thr cb1fbd80 , status 1 +connecting thr cb1fbd80 , thread 5697 , mypolls 0 +myconn 0 connecting thr cb1fbd80 , thread 5697 , mypolls 0 +thr cb1fbf00 , status 1 +connecting thr cb1fbf00 , thread 5698 , mypolls 0 +myconn 0 connecting thr cb1fbf00 , thread 5698 , mypolls 0 +thr cb1fc080 , status 1 +connecting thr cb1fc080 , thread 5699 , mypolls 0 +myconn 0 connecting thr cb1fc080 , thread 5699 , mypolls 0 +thr cb1fc200 , status 1 +connecting thr cb1fc200 , thread 5700 , mypolls 0 +myconn 0 connecting thr cb1fc200 , thread 5700 , mypolls 0 +thr cb1fc380 , status 1 +connecting thr cb1fc380 , thread 5701 , mypolls 0 +myconn 0 connecting thr cb1fc380 , thread 5701 , mypolls 0 +thr cb1fc500 , status 1 +connecting thr cb1fc500 , thread 5702 , mypolls 0 +myconn 0 connecting thr cb1fc500 , thread 5702 , mypolls 0 +thr cb1fc680 , status 1 +connecting thr cb1fc680 , thread 5703 , mypolls 0 +myconn 0 connecting thr cb1fc680 , thread 5703 , mypolls 0 +thr cb1fc800 , status 1 +connecting thr cb1fc800 , thread 5704 , mypolls 0 +myconn 0 connecting thr cb1fc800 , thread 5704 , mypolls 0 +thr cb1fc980 , status 1 +connecting thr cb1fc980 , thread 5705 , mypolls 0 +myconn 0 connecting thr cb1fc980 , thread 5705 , mypolls 0 +thr cb1fcb00 , status 1 +connecting thr cb1fcb00 , thread 5706 , mypolls 0 +myconn 0 connecting thr cb1fcb00 , thread 5706 , mypolls 0 +thr cb1fcc80 , status 1 +connecting thr cb1fcc80 , thread 5707 , mypolls 0 +myconn 0 connecting thr cb1fcc80 , thread 5707 , mypolls 0 +thr cb1fce00 , status 1 +connecting thr cb1fce00 , thread 5708 , mypolls 0 +myconn 0 connecting thr cb1fce00 , thread 5708 , mypolls 0 +thr cb1fcf80 , status 1 +connecting thr cb1fcf80 , thread 5709 , mypolls 0 +myconn 0 connecting thr cb1fcf80 , thread 5709 , mypolls 0 +thr cb1fd100 , status 1 +connecting thr cb1fd100 , thread 5710 , mypolls 0 +myconn 0 connecting thr cb1fd100 , thread 5710 , mypolls 0 +thr cb1fd280 , status 1 +connecting thr cb1fd280 , thread 5711 , mypolls 0 +myconn 0 connecting thr cb1fd280 , thread 5711 , mypolls 0 +thr cb1fd400 , status 1 +connecting thr cb1fd400 , thread 5712 , mypolls 0 +myconn 0 connecting thr cb1fd400 , thread 5712 , mypolls 0 +thr cb1fd580 , status 1 +connecting thr cb1fd580 , thread 5713 , mypolls 0 +myconn 0 connecting thr cb1fd580 , thread 5713 , mypolls 0 +thr cb1fd700 , status 1 +connecting thr cb1fd700 , thread 5714 , mypolls 0 +myconn 0 connecting thr cb1fd700 , thread 5714 , mypolls 0 +thr cb1fd880 , status 1 +connecting thr cb1fd880 , thread 5715 , mypolls 0 +myconn 0 connecting thr cb1fd880 , thread 5715 , mypolls 0 +thr cb1fda00 , status 1 +connecting thr cb1fda00 , thread 5716 , mypolls 0 +myconn 0 connecting thr cb1fda00 , thread 5716 , mypolls 0 +thr cb1fdb80 , status 1 +connecting thr cb1fdb80 , thread 5717 , mypolls 0 +myconn 0 connecting thr cb1fdb80 , thread 5717 , mypolls 0 +thr cb1fdd00 , status 1 +connecting thr cb1fdd00 , thread 5718 , mypolls 0 +myconn 0 connecting thr cb1fdd00 , thread 5718 , mypolls 0 +thr cb1fde80 , status 1 +connecting thr cb1fde80 , thread 5719 , mypolls 0 +myconn 0 connecting thr cb1fde80 , thread 5719 , mypolls 0 +thr cac7a000 , status 1 +connecting thr cac7a000 , thread 5720 , mypolls 0 +myconn 0 connecting thr cac7a000 , thread 5720 , mypolls 0 +thr cac7a180 , status 1 +connecting thr cac7a180 , thread 5721 , mypolls 0 +myconn 0 connecting thr cac7a180 , thread 5721 , mypolls 0 +thr cac7a300 , status 1 +connecting thr cac7a300 , thread 5722 , mypolls 0 +myconn 0 connecting thr cac7a300 , thread 5722 , mypolls 0 +thr cac7a480 , status 1 +connecting thr cac7a480 , thread 5723 , mypolls 0 +myconn 0 connecting thr cac7a480 , thread 5723 , mypolls 0 +thr cac7a600 , status 1 +connecting thr cac7a600 , thread 5724 , mypolls 0 +myconn 0 connecting thr cac7a600 , thread 5724 , mypolls 0 +thr cac7a780 , status 1 +connecting thr cac7a780 , thread 5725 , mypolls 0 +myconn 0 connecting thr cac7a780 , thread 5725 , mypolls 0 +thr cac7a900 , status 1 +connecting thr cac7a900 , thread 5726 , mypolls 0 +myconn 0 connecting thr cac7a900 , thread 5726 , mypolls 0 +thr cac7aa80 , status 1 +connecting thr cac7aa80 , thread 5727 , mypolls 0 +myconn 0 connecting thr cac7aa80 , thread 5727 , mypolls 0 +thr cac7ac00 , status 1 +connecting thr cac7ac00 , thread 5728 , mypolls 0 +myconn 0 connecting thr cac7ac00 , thread 5728 , mypolls 0 +thr cac7ad80 , status 1 +connecting thr cac7ad80 , thread 5729 , mypolls 0 +myconn 0 connecting thr cac7ad80 , thread 5729 , mypolls 0 +thr cac7af00 , status 1 +connecting thr cac7af00 , thread 5730 , mypolls 0 +myconn 0 connecting thr cac7af00 , thread 5730 , mypolls 0 +thr cac7b080 , status 1 +connecting thr cac7b080 , thread 5731 , mypolls 0 +myconn 0 connecting thr cac7b080 , thread 5731 , mypolls 0 +thr cac7b200 , status 1 +connecting thr cac7b200 , thread 5732 , mypolls 0 +myconn 0 connecting thr cac7b200 , thread 5732 , mypolls 0 +thr cac7b380 , status 1 +connecting thr cac7b380 , thread 5733 , mypolls 0 +myconn 0 connecting thr cac7b380 , thread 5733 , mypolls 0 +thr cac7b500 , status 1 +connecting thr cac7b500 , thread 5734 , mypolls 0 +myconn 0 connecting thr cac7b500 , thread 5734 , mypolls 0 +thr cac7b680 , status 1 +connecting thr cac7b680 , thread 5735 , mypolls 0 +myconn 0 connecting thr cac7b680 , thread 5735 , mypolls 0 +thr cac7b800 , status 1 +connecting thr cac7b800 , thread 5736 , mypolls 0 +myconn 0 connecting thr cac7b800 , thread 5736 , mypolls 0 +thr cac7b980 , status 1 +connecting thr cac7b980 , thread 5737 , mypolls 0 +myconn 0 connecting thr cac7b980 , thread 5737 , mypolls 0 +thr cac7bb00 , status 1 +connecting thr cac7bb00 , thread 5738 , mypolls 0 +myconn 0 connecting thr cac7bb00 , thread 5738 , mypolls 0 +thr cac7bc80 , status 1 +connecting thr cac7bc80 , thread 5739 , mypolls 0 +myconn 0 connecting thr cac7bc80 , thread 5739 , mypolls 0 +thr cac7be00 , status 1 +connecting thr cac7be00 , thread 5740 , mypolls 0 +myconn 0 connecting thr cac7be00 , thread 5740 , mypolls 0 +thr cac7bf80 , status 1 +connecting thr cac7bf80 , thread 5741 , mypolls 0 +myconn 0 connecting thr cac7bf80 , thread 5741 , mypolls 0 +thr cac7c100 , status 1 +connecting thr cac7c100 , thread 5742 , mypolls 0 +myconn 0 connecting thr cac7c100 , thread 5742 , mypolls 0 +thr cac7c280 , status 1 +connecting thr cac7c280 , thread 5743 , mypolls 0 +myconn 0 connecting thr cac7c280 , thread 5743 , mypolls 0 +thr cac7c400 , status 1 +connecting thr cac7c400 , thread 5744 , mypolls 0 +myconn 0 connecting thr cac7c400 , thread 5744 , mypolls 0 +thr cac7c580 , status 1 +connecting thr cac7c580 , thread 5745 , mypolls 0 +myconn 0 connecting thr cac7c580 , thread 5745 , mypolls 0 +thr cac7c700 , status 1 +connecting thr cac7c700 , thread 5746 , mypolls 0 +myconn 0 connecting thr cac7c700 , thread 5746 , mypolls 0 +thr cac7c880 , status 1 +connecting thr cac7c880 , thread 5747 , mypolls 0 +myconn 0 connecting thr cac7c880 , thread 5747 , mypolls 0 +thr cac7ca00 , status 1 +connecting thr cac7ca00 , thread 5748 , mypolls 0 +myconn 0 connecting thr cac7ca00 , thread 5748 , mypolls 0 +thr cac7cb80 , status 1 +connecting thr cac7cb80 , thread 5749 , mypolls 0 +myconn 0 connecting thr cac7cb80 , thread 5749 , mypolls 0 +thr cac7cd00 , status 1 +connecting thr cac7cd00 , thread 5750 , mypolls 0 +myconn 0 connecting thr cac7cd00 , thread 5750 , mypolls 0 +thr cac7ce80 , status 1 +connecting thr cac7ce80 , thread 5751 , mypolls 0 +myconn 0 connecting thr cac7ce80 , thread 5751 , mypolls 0 +thr caadc000 , status 1 +connecting thr caadc000 , thread 5752 , mypolls 0 +myconn 0 connecting thr caadc000 , thread 5752 , mypolls 0 +thr caadc180 , status 1 +connecting thr caadc180 , thread 5753 , mypolls 0 +myconn 0 connecting thr caadc180 , thread 5753 , mypolls 0 +thr caadc300 , status 1 +connecting thr caadc300 , thread 5754 , mypolls 0 +myconn 0 connecting thr caadc300 , thread 5754 , mypolls 0 +thr caadc480 , status 1 +connecting thr caadc480 , thread 5755 , mypolls 0 +myconn 0 connecting thr caadc480 , thread 5755 , mypolls 0 +thr caadc600 , status 1 +connecting thr caadc600 , thread 5756 , mypolls 0 +myconn 0 connecting thr caadc600 , thread 5756 , mypolls 0 +thr caadc780 , status 1 +connecting thr caadc780 , thread 5757 , mypolls 0 +myconn 0 connecting thr caadc780 , thread 5757 , mypolls 0 +thr caadc900 , status 1 +connecting thr caadc900 , thread 5758 , mypolls 0 +myconn 0 connecting thr caadc900 , thread 5758 , mypolls 0 +thr caadca80 , status 1 +connecting thr caadca80 , thread 5759 , mypolls 0 +myconn 0 connecting thr caadca80 , thread 5759 , mypolls 0 +thr caadcc00 , status 1 +connecting thr caadcc00 , thread 5760 , mypolls 0 +myconn 0 connecting thr caadcc00 , thread 5760 , mypolls 0 +thr caadcd80 , status 1 +connecting thr caadcd80 , thread 5761 , mypolls 0 +myconn 0 connecting thr caadcd80 , thread 5761 , mypolls 0 +thr caadcf00 , status 1 +connecting thr caadcf00 , thread 5762 , mypolls 0 +myconn 0 connecting thr caadcf00 , thread 5762 , mypolls 0 +thr caadd080 , status 1 +connecting thr caadd080 , thread 5763 , mypolls 0 +myconn 0 connecting thr caadd080 , thread 5763 , mypolls 0 +thr caadd200 , status 1 +connecting thr caadd200 , thread 5764 , mypolls 0 +myconn 0 connecting thr caadd200 , thread 5764 , mypolls 0 +thr caadd380 , status 1 +connecting thr caadd380 , thread 5765 , mypolls 0 +myconn 0 connecting thr caadd380 , thread 5765 , mypolls 0 +thr caadd500 , status 1 +connecting thr caadd500 , thread 5766 , mypolls 0 +myconn 0 connecting thr caadd500 , thread 5766 , mypolls 0 +thr caadd680 , status 1 +connecting thr caadd680 , thread 5767 , mypolls 0 +myconn 0 connecting thr caadd680 , thread 5767 , mypolls 0 +thr caadd800 , status 1 +connecting thr caadd800 , thread 5768 , mypolls 0 +myconn 0 connecting thr caadd800 , thread 5768 , mypolls 0 +thr caadd980 , status 1 +connecting thr caadd980 , thread 5769 , mypolls 0 +myconn 0 connecting thr caadd980 , thread 5769 , mypolls 0 +thr caaddb00 , status 1 +connecting thr caaddb00 , thread 5770 , mypolls 0 +myconn 0 connecting thr caaddb00 , thread 5770 , mypolls 0 +thr caaddc80 , status 1 +connecting thr caaddc80 , thread 5771 , mypolls 0 +myconn 0 connecting thr caaddc80 , thread 5771 , mypolls 0 +thr caadde00 , status 1 +connecting thr caadde00 , thread 5772 , mypolls 0 +myconn 0 connecting thr caadde00 , thread 5772 , mypolls 0 +thr caaddf80 , status 1 +connecting thr caaddf80 , thread 5773 , mypolls 0 +myconn 0 connecting thr caaddf80 , thread 5773 , mypolls 0 +thr caade100 , status 1 +connecting thr caade100 , thread 5774 , mypolls 0 +myconn 0 connecting thr caade100 , thread 5774 , mypolls 0 +thr caade280 , status 1 +connecting thr caade280 , thread 5775 , mypolls 0 +myconn 0 connecting thr caade280 , thread 5775 , mypolls 0 +thr caade400 , status 1 +connecting thr caade400 , thread 5776 , mypolls 0 +myconn 0 connecting thr caade400 , thread 5776 , mypolls 0 +thr caade580 , status 1 +connecting thr caade580 , thread 5777 , mypolls 0 +myconn 0 connecting thr caade580 , thread 5777 , mypolls 0 +thr caade700 , status 1 +connecting thr caade700 , thread 5778 , mypolls 0 +myconn 0 connecting thr caade700 , thread 5778 , mypolls 0 +thr caade880 , status 1 +connecting thr caade880 , thread 5779 , mypolls 0 +myconn 0 connecting thr caade880 , thread 5779 , mypolls 0 +thr caadea00 , status 1 +connecting thr caadea00 , thread 5780 , mypolls 0 +myconn 0 connecting thr caadea00 , thread 5780 , mypolls 0 +thr caadeb80 , status 1 +connecting thr caadeb80 , thread 5781 , mypolls 0 +myconn 0 connecting thr caadeb80 , thread 5781 , mypolls 0 +thr caaded00 , status 1 +connecting thr caaded00 , thread 5782 , mypolls 0 +myconn 0 connecting thr caaded00 , thread 5782 , mypolls 0 +thr caadee80 , status 1 +connecting thr caadee80 , thread 5783 , mypolls 0 +myconn 0 connecting thr caadee80 , thread 5783 , mypolls 0 +thr ca93f000 , status 1 +connecting thr ca93f000 , thread 5784 , mypolls 0 +myconn 0 connecting thr ca93f000 , thread 5784 , mypolls 0 +thr ca93f180 , status 1 +connecting thr ca93f180 , thread 5785 , mypolls 0 +myconn 0 connecting thr ca93f180 , thread 5785 , mypolls 0 +thr ca93f300 , status 1 +connecting thr ca93f300 , thread 5786 , mypolls 0 +myconn 0 connecting thr ca93f300 , thread 5786 , mypolls 0 +thr ca93f480 , status 1 +connecting thr ca93f480 , thread 5787 , mypolls 0 +myconn 0 connecting thr ca93f480 , thread 5787 , mypolls 0 +thr ca93f600 , status 1 +connecting thr ca93f600 , thread 5788 , mypolls 0 +myconn 0 connecting thr ca93f600 , thread 5788 , mypolls 0 +thr ca93f780 , status 1 +connecting thr ca93f780 , thread 5789 , mypolls 0 +myconn 0 connecting thr ca93f780 , thread 5789 , mypolls 0 +thr ca93f900 , status 1 +connecting thr ca93f900 , thread 5790 , mypolls 0 +myconn 0 connecting thr ca93f900 , thread 5790 , mypolls 0 +thr ca93fa80 , status 1 +connecting thr ca93fa80 , thread 5791 , mypolls 0 +myconn 0 connecting thr ca93fa80 , thread 5791 , mypolls 0 +thr ca93fc00 , status 1 +connecting thr ca93fc00 , thread 5792 , mypolls 0 +myconn 0 connecting thr ca93fc00 , thread 5792 , mypolls 0 +thr ca93fd80 , status 1 +connecting thr ca93fd80 , thread 5793 , mypolls 0 +myconn 0 connecting thr ca93fd80 , thread 5793 , mypolls 0 +thr ca93ff00 , status 1 +connecting thr ca93ff00 , thread 5794 , mypolls 0 +myconn 0 connecting thr ca93ff00 , thread 5794 , mypolls 0 +thr ca940080 , status 1 +connecting thr ca940080 , thread 5795 , mypolls 0 +myconn 0 connecting thr ca940080 , thread 5795 , mypolls 0 +thr ca940200 , status 1 +connecting thr ca940200 , thread 5796 , mypolls 0 +myconn 0 connecting thr ca940200 , thread 5796 , mypolls 0 +thr ca940380 , status 1 +connecting thr ca940380 , thread 5797 , mypolls 0 +myconn 0 connecting thr ca940380 , thread 5797 , mypolls 0 +thr ca940500 , status 1 +connecting thr ca940500 , thread 5798 , mypolls 0 +myconn 0 connecting thr ca940500 , thread 5798 , mypolls 0 +thr ca940680 , status 1 +connecting thr ca940680 , thread 5799 , mypolls 0 +myconn 0 connecting thr ca940680 , thread 5799 , mypolls 0 +thr ca940800 , status 1 +connecting thr ca940800 , thread 5800 , mypolls 0 +myconn 0 connecting thr ca940800 , thread 5800 , mypolls 0 +thr ca940980 , status 1 +connecting thr ca940980 , thread 5801 , mypolls 0 +myconn 0 connecting thr ca940980 , thread 5801 , mypolls 0 +thr ca940b00 , status 1 +connecting thr ca940b00 , thread 5802 , mypolls 0 +myconn 0 connecting thr ca940b00 , thread 5802 , mypolls 0 +thr ca940c80 , status 1 +connecting thr ca940c80 , thread 5803 , mypolls 0 +myconn 0 connecting thr ca940c80 , thread 5803 , mypolls 0 +thr ca940e00 , status 1 +connecting thr ca940e00 , thread 5804 , mypolls 0 +myconn 0 connecting thr ca940e00 , thread 5804 , mypolls 0 +thr ca940f80 , status 1 +connecting thr ca940f80 , thread 5805 , mypolls 0 +myconn 0 connecting thr ca940f80 , thread 5805 , mypolls 0 +thr ca941100 , status 1 +connecting thr ca941100 , thread 5806 , mypolls 0 +myconn 0 connecting thr ca941100 , thread 5806 , mypolls 0 +thr ca941280 , status 1 +connecting thr ca941280 , thread 5807 , mypolls 0 +myconn 0 connecting thr ca941280 , thread 5807 , mypolls 0 +thr ca941400 , status 1 +connecting thr ca941400 , thread 5808 , mypolls 0 +myconn 0 connecting thr ca941400 , thread 5808 , mypolls 0 +thr ca941580 , status 1 +connecting thr ca941580 , thread 5809 , mypolls 0 +myconn 0 connecting thr ca941580 , thread 5809 , mypolls 0 +thr ca941700 , status 1 +connecting thr ca941700 , thread 5810 , mypolls 0 +myconn 0 connecting thr ca941700 , thread 5810 , mypolls 0 +thr ca941880 , status 1 +connecting thr ca941880 , thread 5811 , mypolls 0 +myconn 0 connecting thr ca941880 , thread 5811 , mypolls 0 +thr ca941a00 , status 1 +connecting thr ca941a00 , thread 5812 , mypolls 0 +myconn 0 connecting thr ca941a00 , thread 5812 , mypolls 0 +thr ca941b80 , status 1 +connecting thr ca941b80 , thread 5813 , mypolls 0 +myconn 0 connecting thr ca941b80 , thread 5813 , mypolls 0 +thr ca941d00 , status 1 +connecting thr ca941d00 , thread 5814 , mypolls 0 +myconn 0 connecting thr ca941d00 , thread 5814 , mypolls 0 +thr ca941e80 , status 1 +connecting thr ca941e80 , thread 5815 , mypolls 0 +myconn 0 connecting thr ca941e80 , thread 5815 , mypolls 0 +thr ca7a0000 , status 1 +connecting thr ca7a0000 , thread 5816 , mypolls 0 +myconn 0 connecting thr ca7a0000 , thread 5816 , mypolls 0 +thr ca7a0180 , status 1 +connecting thr ca7a0180 , thread 5817 , mypolls 0 +myconn 0 connecting thr ca7a0180 , thread 5817 , mypolls 0 +thr ca7a0300 , status 1 +connecting thr ca7a0300 , thread 5818 , mypolls 0 +myconn 0 connecting thr ca7a0300 , thread 5818 , mypolls 0 +thr ca7a0480 , status 1 +connecting thr ca7a0480 , thread 5819 , mypolls 0 +myconn 0 connecting thr ca7a0480 , thread 5819 , mypolls 0 +thr ca7a0600 , status 1 +connecting thr ca7a0600 , thread 5820 , mypolls 0 +myconn 0 connecting thr ca7a0600 , thread 5820 , mypolls 0 +thr ca7a0780 , status 1 +connecting thr ca7a0780 , thread 5821 , mypolls 0 +myconn 0 connecting thr ca7a0780 , thread 5821 , mypolls 0 +thr ca7a0900 , status 1 +connecting thr ca7a0900 , thread 5822 , mypolls 0 +myconn 0 connecting thr ca7a0900 , thread 5822 , mypolls 0 +thr ca7a0a80 , status 1 +connecting thr ca7a0a80 , thread 5823 , mypolls 0 +myconn 0 connecting thr ca7a0a80 , thread 5823 , mypolls 0 +thr ca7a0c00 , status 1 +connecting thr ca7a0c00 , thread 5824 , mypolls 0 +myconn 0 connecting thr ca7a0c00 , thread 5824 , mypolls 0 +thr ca7a0d80 , status 1 +connecting thr ca7a0d80 , thread 5825 , mypolls 0 +myconn 0 connecting thr ca7a0d80 , thread 5825 , mypolls 0 +thr ca7a0f00 , status 1 +connecting thr ca7a0f00 , thread 5826 , mypolls 0 +myconn 0 connecting thr ca7a0f00 , thread 5826 , mypolls 0 +thr ca7a1080 , status 1 +connecting thr ca7a1080 , thread 5827 , mypolls 0 +myconn 0 connecting thr ca7a1080 , thread 5827 , mypolls 0 +thr ca7a1200 , status 1 +connecting thr ca7a1200 , thread 5828 , mypolls 0 +myconn 0 connecting thr ca7a1200 , thread 5828 , mypolls 0 +thr ca7a1380 , status 1 +connecting thr ca7a1380 , thread 5829 , mypolls 0 +myconn 0 connecting thr ca7a1380 , thread 5829 , mypolls 0 +thr ca7a1500 , status 1 +connecting thr ca7a1500 , thread 5830 , mypolls 0 +myconn 0 connecting thr ca7a1500 , thread 5830 , mypolls 0 +thr ca7a1680 , status 1 +connecting thr ca7a1680 , thread 5831 , mypolls 0 +myconn 0 connecting thr ca7a1680 , thread 5831 , mypolls 0 +thr ca7a1800 , status 1 +connecting thr ca7a1800 , thread 5832 , mypolls 0 +myconn 0 connecting thr ca7a1800 , thread 5832 , mypolls 0 +thr ca7a1980 , status 1 +connecting thr ca7a1980 , thread 5833 , mypolls 0 +myconn 0 connecting thr ca7a1980 , thread 5833 , mypolls 0 +thr ca7a1b00 , status 1 +connecting thr ca7a1b00 , thread 5834 , mypolls 0 +myconn 0 connecting thr ca7a1b00 , thread 5834 , mypolls 0 +thr ca7a1c80 , status 1 +connecting thr ca7a1c80 , thread 5835 , mypolls 0 +myconn 0 connecting thr ca7a1c80 , thread 5835 , mypolls 0 +thr ca7a1e00 , status 1 +connecting thr ca7a1e00 , thread 5836 , mypolls 0 +myconn 0 connecting thr ca7a1e00 , thread 5836 , mypolls 0 +thr ca7a1f80 , status 1 +connecting thr ca7a1f80 , thread 5837 , mypolls 0 +myconn 0 connecting thr ca7a1f80 , thread 5837 , mypolls 0 +thr ca7a2100 , status 1 +connecting thr ca7a2100 , thread 5838 , mypolls 0 +myconn 0 connecting thr ca7a2100 , thread 5838 , mypolls 0 +thr ca7a2280 , status 1 +connecting thr ca7a2280 , thread 5839 , mypolls 0 +myconn 0 connecting thr ca7a2280 , thread 5839 , mypolls 0 +thr ca7a2400 , status 1 +connecting thr ca7a2400 , thread 5840 , mypolls 0 +myconn 0 connecting thr ca7a2400 , thread 5840 , mypolls 0 +thr ca7a2580 , status 1 +connecting thr ca7a2580 , thread 5841 , mypolls 0 +myconn 0 connecting thr ca7a2580 , thread 5841 , mypolls 0 +thr ca7a2700 , status 1 +connecting thr ca7a2700 , thread 5842 , mypolls 0 +myconn 0 connecting thr ca7a2700 , thread 5842 , mypolls 0 +thr ca7a2880 , status 1 +connecting thr ca7a2880 , thread 5843 , mypolls 0 +myconn 0 connecting thr ca7a2880 , thread 5843 , mypolls 0 +thr ca7a2a00 , status 1 +connecting thr ca7a2a00 , thread 5844 , mypolls 0 +myconn 0 connecting thr ca7a2a00 , thread 5844 , mypolls 0 +thr ca7a2b80 , status 1 +connecting thr ca7a2b80 , thread 5845 , mypolls 0 +myconn 0 connecting thr ca7a2b80 , thread 5845 , mypolls 0 +thr ca7a2d00 , status 1 +connecting thr ca7a2d00 , thread 5846 , mypolls 0 +myconn 0 connecting thr ca7a2d00 , thread 5846 , mypolls 0 +thr ca7a2e80 , status 1 +connecting thr ca7a2e80 , thread 5847 , mypolls 0 +myconn 0 connecting thr ca7a2e80 , thread 5847 , mypolls 0 +thr ca5f8000 , status 1 +connecting thr ca5f8000 , thread 5848 , mypolls 0 +myconn 0 connecting thr ca5f8000 , thread 5848 , mypolls 0 +thr ca5f8180 , status 1 +connecting thr ca5f8180 , thread 5849 , mypolls 0 +myconn 0 connecting thr ca5f8180 , thread 5849 , mypolls 0 +thr ca5f8300 , status 1 +connecting thr ca5f8300 , thread 5850 , mypolls 0 +myconn 0 connecting thr ca5f8300 , thread 5850 , mypolls 0 +thr ca5f8480 , status 1 +connecting thr ca5f8480 , thread 5851 , mypolls 0 +myconn 0 connecting thr ca5f8480 , thread 5851 , mypolls 0 +thr ca5f8600 , status 1 +connecting thr ca5f8600 , thread 5852 , mypolls 0 +myconn 0 connecting thr ca5f8600 , thread 5852 , mypolls 0 +thr ca5f8780 , status 1 +connecting thr ca5f8780 , thread 5853 , mypolls 0 +myconn 0 connecting thr ca5f8780 , thread 5853 , mypolls 0 +thr ca5f8900 , status 1 +connecting thr ca5f8900 , thread 5854 , mypolls 0 +myconn 0 connecting thr ca5f8900 , thread 5854 , mypolls 0 +thr ca5f8a80 , status 1 +connecting thr ca5f8a80 , thread 5855 , mypolls 0 +myconn 0 connecting thr ca5f8a80 , thread 5855 , mypolls 0 +thr ca5f8c00 , status 1 +connecting thr ca5f8c00 , thread 5856 , mypolls 0 +myconn 0 connecting thr ca5f8c00 , thread 5856 , mypolls 0 +thr ca5f8d80 , status 1 +connecting thr ca5f8d80 , thread 5857 , mypolls 0 +myconn 0 connecting thr ca5f8d80 , thread 5857 , mypolls 0 +thr ca5f8f00 , status 1 +connecting thr ca5f8f00 , thread 5858 , mypolls 0 +myconn 0 connecting thr ca5f8f00 , thread 5858 , mypolls 0 +thr ca5f9080 , status 1 +connecting thr ca5f9080 , thread 5859 , mypolls 0 +myconn 0 connecting thr ca5f9080 , thread 5859 , mypolls 0 +thr ca5f9200 , status 1 +connecting thr ca5f9200 , thread 5860 , mypolls 0 +myconn 0 connecting thr ca5f9200 , thread 5860 , mypolls 0 +thr ca5f9380 , status 1 +connecting thr ca5f9380 , thread 5861 , mypolls 0 +myconn 0 connecting thr ca5f9380 , thread 5861 , mypolls 0 +thr ca5f9500 , status 1 +connecting thr ca5f9500 , thread 5862 , mypolls 0 +myconn 0 connecting thr ca5f9500 , thread 5862 , mypolls 0 +thr ca5f9680 , status 1 +connecting thr ca5f9680 , thread 5863 , mypolls 0 +myconn 0 connecting thr ca5f9680 , thread 5863 , mypolls 0 +thr ca5f9800 , status 1 +connecting thr ca5f9800 , thread 5864 , mypolls 0 +myconn 0 connecting thr ca5f9800 , thread 5864 , mypolls 0 +thr ca5f9980 , status 1 +connecting thr ca5f9980 , thread 5865 , mypolls 0 +myconn 0 connecting thr ca5f9980 , thread 5865 , mypolls 0 +thr ca5f9b00 , status 1 +connecting thr ca5f9b00 , thread 5866 , mypolls 0 +myconn 0 connecting thr ca5f9b00 , thread 5866 , mypolls 0 +thr ca5f9c80 , status 1 +connecting thr ca5f9c80 , thread 5867 , mypolls 0 +myconn 0 connecting thr ca5f9c80 , thread 5867 , mypolls 0 +thr ca5f9e00 , status 1 +connecting thr ca5f9e00 , thread 5868 , mypolls 0 +myconn 0 connecting thr ca5f9e00 , thread 5868 , mypolls 0 +thr ca5f9f80 , status 1 +connecting thr ca5f9f80 , thread 5869 , mypolls 0 +myconn 0 connecting thr ca5f9f80 , thread 5869 , mypolls 0 +thr ca5fa100 , status 1 +connecting thr ca5fa100 , thread 5870 , mypolls 0 +myconn 0 connecting thr ca5fa100 , thread 5870 , mypolls 0 +thr ca5fa280 , status 1 +connecting thr ca5fa280 , thread 5871 , mypolls 0 +myconn 0 connecting thr ca5fa280 , thread 5871 , mypolls 0 +thr ca5fa400 , status 1 +connecting thr ca5fa400 , thread 5872 , mypolls 0 +myconn 0 connecting thr ca5fa400 , thread 5872 , mypolls 0 +thr ca5fa580 , status 1 +connecting thr ca5fa580 , thread 5873 , mypolls 0 +myconn 0 connecting thr ca5fa580 , thread 5873 , mypolls 0 +thr ca5fa700 , status 1 +connecting thr ca5fa700 , thread 5874 , mypolls 0 +myconn 0 connecting thr ca5fa700 , thread 5874 , mypolls 0 +thr ca5fa880 , status 1 +connecting thr ca5fa880 , thread 5875 , mypolls 0 +myconn 0 connecting thr ca5fa880 , thread 5875 , mypolls 0 +thr ca5faa00 , status 1 +connecting thr ca5faa00 , thread 5876 , mypolls 0 +myconn 0 connecting thr ca5faa00 , thread 5876 , mypolls 0 +thr ca5fab80 , status 1 +connecting thr ca5fab80 , thread 5877 , mypolls 0 +myconn 0 connecting thr ca5fab80 , thread 5877 , mypolls 0 +thr ca5fad00 , status 1 +connecting thr ca5fad00 , thread 5878 , mypolls 0 +myconn 0 connecting thr ca5fad00 , thread 5878 , mypolls 0 +thr ca5fae80 , status 1 +connecting thr ca5fae80 , thread 5879 , mypolls 0 +myconn 0 connecting thr ca5fae80 , thread 5879 , mypolls 0 +thr ca3f9000 , status 1 +connecting thr ca3f9000 , thread 5880 , mypolls 0 +myconn 0 connecting thr ca3f9000 , thread 5880 , mypolls 0 +thr ca3f9180 , status 1 +connecting thr ca3f9180 , thread 5881 , mypolls 0 +myconn 0 connecting thr ca3f9180 , thread 5881 , mypolls 0 +thr ca3f9300 , status 1 +connecting thr ca3f9300 , thread 5882 , mypolls 0 +myconn 0 connecting thr ca3f9300 , thread 5882 , mypolls 0 +thr ca3f9480 , status 1 +connecting thr ca3f9480 , thread 5883 , mypolls 0 +myconn 0 connecting thr ca3f9480 , thread 5883 , mypolls 0 +thr ca3f9600 , status 1 +connecting thr ca3f9600 , thread 5884 , mypolls 0 +myconn 0 connecting thr ca3f9600 , thread 5884 , mypolls 0 +thr ca3f9780 , status 1 +connecting thr ca3f9780 , thread 5885 , mypolls 0 +myconn 0 connecting thr ca3f9780 , thread 5885 , mypolls 0 +thr ca3f9900 , status 1 +connecting thr ca3f9900 , thread 5886 , mypolls 0 +myconn 0 connecting thr ca3f9900 , thread 5886 , mypolls 0 +thr ca3f9a80 , status 1 +connecting thr ca3f9a80 , thread 5887 , mypolls 0 +myconn 0 connecting thr ca3f9a80 , thread 5887 , mypolls 0 +thr ca3f9c00 , status 1 +connecting thr ca3f9c00 , thread 5888 , mypolls 0 +myconn 0 connecting thr ca3f9c00 , thread 5888 , mypolls 0 +thr ca3f9d80 , status 1 +connecting thr ca3f9d80 , thread 5889 , mypolls 0 +myconn 0 connecting thr ca3f9d80 , thread 5889 , mypolls 0 +thr ca3f9f00 , status 1 +connecting thr ca3f9f00 , thread 5890 , mypolls 0 +myconn 0 connecting thr ca3f9f00 , thread 5890 , mypolls 0 +thr ca3fa080 , status 1 +connecting thr ca3fa080 , thread 5891 , mypolls 0 +myconn 0 connecting thr ca3fa080 , thread 5891 , mypolls 0 +thr ca3fa200 , status 1 +connecting thr ca3fa200 , thread 5892 , mypolls 0 +myconn 0 connecting thr ca3fa200 , thread 5892 , mypolls 0 +thr ca3fa380 , status 1 +connecting thr ca3fa380 , thread 5893 , mypolls 0 +myconn 0 connecting thr ca3fa380 , thread 5893 , mypolls 0 +thr ca3fa500 , status 1 +connecting thr ca3fa500 , thread 5894 , mypolls 0 +myconn 0 connecting thr ca3fa500 , thread 5894 , mypolls 0 +thr ca3fa680 , status 1 +connecting thr ca3fa680 , thread 5895 , mypolls 0 +myconn 0 connecting thr ca3fa680 , thread 5895 , mypolls 0 +thr ca3fa800 , status 1 +connecting thr ca3fa800 , thread 5896 , mypolls 0 +myconn 0 connecting thr ca3fa800 , thread 5896 , mypolls 0 +thr ca3fa980 , status 1 +connecting thr ca3fa980 , thread 5897 , mypolls 0 +myconn 0 connecting thr ca3fa980 , thread 5897 , mypolls 0 +thr ca3fab00 , status 1 +connecting thr ca3fab00 , thread 5898 , mypolls 0 +myconn 0 connecting thr ca3fab00 , thread 5898 , mypolls 0 +thr ca3fac80 , status 1 +connecting thr ca3fac80 , thread 5899 , mypolls 0 +myconn 0 connecting thr ca3fac80 , thread 5899 , mypolls 0 +thr ca3fae00 , status 1 +connecting thr ca3fae00 , thread 5900 , mypolls 0 +myconn 0 connecting thr ca3fae00 , thread 5900 , mypolls 0 +thr ca3faf80 , status 1 +connecting thr ca3faf80 , thread 5901 , mypolls 0 +myconn 0 connecting thr ca3faf80 , thread 5901 , mypolls 0 +thr ca3fb100 , status 1 +connecting thr ca3fb100 , thread 5902 , mypolls 0 +myconn 0 connecting thr ca3fb100 , thread 5902 , mypolls 0 +thr ca3fb280 , status 1 +connecting thr ca3fb280 , thread 5903 , mypolls 0 +myconn 0 connecting thr ca3fb280 , thread 5903 , mypolls 0 +thr ca3fb400 , status 1 +connecting thr ca3fb400 , thread 5904 , mypolls 0 +myconn 0 connecting thr ca3fb400 , thread 5904 , mypolls 0 +thr ca3fb580 , status 1 +connecting thr ca3fb580 , thread 5905 , mypolls 0 +myconn 0 connecting thr ca3fb580 , thread 5905 , mypolls 0 +thr ca3fb700 , status 1 +connecting thr ca3fb700 , thread 5906 , mypolls 0 +myconn 0 connecting thr ca3fb700 , thread 5906 , mypolls 0 +thr ca3fb880 , status 1 +connecting thr ca3fb880 , thread 5907 , mypolls 0 +myconn 0 connecting thr ca3fb880 , thread 5907 , mypolls 0 +thr ca3fba00 , status 1 +connecting thr ca3fba00 , thread 5908 , mypolls 0 +myconn 0 connecting thr ca3fba00 , thread 5908 , mypolls 0 +thr ca3fbb80 , status 1 +connecting thr ca3fbb80 , thread 5909 , mypolls 0 +myconn 0 connecting thr ca3fbb80 , thread 5909 , mypolls 0 +thr ca3fbd00 , status 1 +connecting thr ca3fbd00 , thread 5910 , mypolls 0 +myconn 0 connecting thr ca3fbd00 , thread 5910 , mypolls 0 +thr ca3fbe80 , status 1 +connecting thr ca3fbe80 , thread 5911 , mypolls 0 +myconn 0 connecting thr ca3fbe80 , thread 5911 , mypolls 0 +thr ca1fc000 , status 1 +connecting thr ca1fc000 , thread 5912 , mypolls 0 +myconn 0 connecting thr ca1fc000 , thread 5912 , mypolls 0 +thr ca1fc180 , status 1 +connecting thr ca1fc180 , thread 5913 , mypolls 0 +myconn 0 connecting thr ca1fc180 , thread 5913 , mypolls 0 +thr ca1fc300 , status 1 +connecting thr ca1fc300 , thread 5914 , mypolls 0 +myconn 0 connecting thr ca1fc300 , thread 5914 , mypolls 0 +thr ca1fc480 , status 1 +connecting thr ca1fc480 , thread 5915 , mypolls 0 +myconn 0 connecting thr ca1fc480 , thread 5915 , mypolls 0 +thr ca1fc600 , status 1 +connecting thr ca1fc600 , thread 5916 , mypolls 0 +myconn 0 connecting thr ca1fc600 , thread 5916 , mypolls 0 +thr ca1fc780 , status 1 +connecting thr ca1fc780 , thread 5917 , mypolls 0 +myconn 0 connecting thr ca1fc780 , thread 5917 , mypolls 0 +thr ca1fc900 , status 1 +connecting thr ca1fc900 , thread 5918 , mypolls 0 +myconn 0 connecting thr ca1fc900 , thread 5918 , mypolls 0 +thr ca1fca80 , status 1 +connecting thr ca1fca80 , thread 5919 , mypolls 0 +myconn 0 connecting thr ca1fca80 , thread 5919 , mypolls 0 +thr ca1fcc00 , status 1 +connecting thr ca1fcc00 , thread 5920 , mypolls 0 +myconn 0 connecting thr ca1fcc00 , thread 5920 , mypolls 0 +thr ca1fcd80 , status 1 +connecting thr ca1fcd80 , thread 5921 , mypolls 0 +myconn 0 connecting thr ca1fcd80 , thread 5921 , mypolls 0 +thr ca1fcf00 , status 1 +connecting thr ca1fcf00 , thread 5922 , mypolls 0 +myconn 0 connecting thr ca1fcf00 , thread 5922 , mypolls 0 +thr ca1fd080 , status 1 +connecting thr ca1fd080 , thread 5923 , mypolls 0 +myconn 0 connecting thr ca1fd080 , thread 5923 , mypolls 0 +thr ca1fd200 , status 1 +connecting thr ca1fd200 , thread 5924 , mypolls 0 +myconn 0 connecting thr ca1fd200 , thread 5924 , mypolls 0 +thr ca1fd380 , status 1 +connecting thr ca1fd380 , thread 5925 , mypolls 0 +myconn 0 connecting thr ca1fd380 , thread 5925 , mypolls 0 +thr ca1fd500 , status 1 +connecting thr ca1fd500 , thread 5926 , mypolls 0 +myconn 0 connecting thr ca1fd500 , thread 5926 , mypolls 0 +thr ca1fd680 , status 1 +connecting thr ca1fd680 , thread 5927 , mypolls 0 +myconn 0 connecting thr ca1fd680 , thread 5927 , mypolls 0 +thr ca1fd800 , status 1 +connecting thr ca1fd800 , thread 5928 , mypolls 0 +myconn 0 connecting thr ca1fd800 , thread 5928 , mypolls 0 +thr ca1fd980 , status 1 +connecting thr ca1fd980 , thread 5929 , mypolls 0 +myconn 0 connecting thr ca1fd980 , thread 5929 , mypolls 0 +thr ca1fdb00 , status 1 +connecting thr ca1fdb00 , thread 5930 , mypolls 0 +myconn 0 connecting thr ca1fdb00 , thread 5930 , mypolls 0 +thr ca1fdc80 , status 1 +connecting thr ca1fdc80 , thread 5931 , mypolls 0 +myconn 0 connecting thr ca1fdc80 , thread 5931 , mypolls 0 +thr ca1fde00 , status 1 +connecting thr ca1fde00 , thread 5932 , mypolls 0 +myconn 0 connecting thr ca1fde00 , thread 5932 , mypolls 0 +thr ca1fdf80 , status 1 +connecting thr ca1fdf80 , thread 5933 , mypolls 0 +myconn 0 connecting thr ca1fdf80 , thread 5933 , mypolls 0 +thr ca1fe100 , status 1 +connecting thr ca1fe100 , thread 5934 , mypolls 0 +myconn 0 connecting thr ca1fe100 , thread 5934 , mypolls 0 +thr ca1fe280 , status 1 +connecting thr ca1fe280 , thread 5935 , mypolls 0 +myconn 0 connecting thr ca1fe280 , thread 5935 , mypolls 0 +thr ca1fe400 , status 1 +connecting thr ca1fe400 , thread 5936 , mypolls 0 +myconn 0 connecting thr ca1fe400 , thread 5936 , mypolls 0 +thr ca1fe580 , status 1 +connecting thr ca1fe580 , thread 5937 , mypolls 0 +myconn 0 connecting thr ca1fe580 , thread 5937 , mypolls 0 +thr ca1fe700 , status 1 +connecting thr ca1fe700 , thread 5938 , mypolls 0 +myconn 0 connecting thr ca1fe700 , thread 5938 , mypolls 0 +thr ca1fe880 , status 1 +connecting thr ca1fe880 , thread 5939 , mypolls 0 +myconn 0 connecting thr ca1fe880 , thread 5939 , mypolls 0 +thr ca1fea00 , status 1 +connecting thr ca1fea00 , thread 5940 , mypolls 0 +myconn 0 connecting thr ca1fea00 , thread 5940 , mypolls 0 +thr ca1feb80 , status 1 +connecting thr ca1feb80 , thread 5941 , mypolls 0 +myconn 0 connecting thr ca1feb80 , thread 5941 , mypolls 0 +thr ca1fed00 , status 1 +connecting thr ca1fed00 , thread 5942 , mypolls 0 +myconn 0 connecting thr ca1fed00 , thread 5942 , mypolls 0 +thr ca1fee80 , status 1 +connecting thr ca1fee80 , thread 5943 , mypolls 0 +myconn 0 connecting thr ca1fee80 , thread 5943 , mypolls 0 +thr c9d39000 , status 1 +connecting thr c9d39000 , thread 5944 , mypolls 0 +myconn 0 connecting thr c9d39000 , thread 5944 , mypolls 0 +thr c9d39180 , status 1 +connecting thr c9d39180 , thread 5945 , mypolls 0 +myconn 0 connecting thr c9d39180 , thread 5945 , mypolls 0 +thr c9d39300 , status 1 +connecting thr c9d39300 , thread 5946 , mypolls 0 +myconn 0 connecting thr c9d39300 , thread 5946 , mypolls 0 +thr c9d39480 , status 1 +connecting thr c9d39480 , thread 5947 , mypolls 0 +myconn 0 connecting thr c9d39480 , thread 5947 , mypolls 0 +thr c9d39600 , status 1 +connecting thr c9d39600 , thread 5948 , mypolls 0 +myconn 0 connecting thr c9d39600 , thread 5948 , mypolls 0 +thr c9d39780 , status 1 +connecting thr c9d39780 , thread 5949 , mypolls 0 +myconn 0 connecting thr c9d39780 , thread 5949 , mypolls 0 +thr c9d39900 , status 1 +connecting thr c9d39900 , thread 5950 , mypolls 0 +myconn 0 connecting thr c9d39900 , thread 5950 , mypolls 0 +thr c9d39a80 , status 1 +connecting thr c9d39a80 , thread 5951 , mypolls 0 +myconn 0 connecting thr c9d39a80 , thread 5951 , mypolls 0 +thr c9d39c00 , status 1 +connecting thr c9d39c00 , thread 5952 , mypolls 0 +myconn 0 connecting thr c9d39c00 , thread 5952 , mypolls 0 +thr c9d39d80 , status 1 +connecting thr c9d39d80 , thread 5953 , mypolls 0 +myconn 0 connecting thr c9d39d80 , thread 5953 , mypolls 0 +thr c9d39f00 , status 1 +connecting thr c9d39f00 , thread 5954 , mypolls 0 +myconn 0 connecting thr c9d39f00 , thread 5954 , mypolls 0 +thr c9d3a080 , status 1 +connecting thr c9d3a080 , thread 5955 , mypolls 0 +myconn 0 connecting thr c9d3a080 , thread 5955 , mypolls 0 +thr c9d3a200 , status 1 +connecting thr c9d3a200 , thread 5956 , mypolls 0 +myconn 0 connecting thr c9d3a200 , thread 5956 , mypolls 0 +thr c9d3a380 , status 1 +connecting thr c9d3a380 , thread 5957 , mypolls 0 +myconn 0 connecting thr c9d3a380 , thread 5957 , mypolls 0 +thr c9d3a500 , status 1 +connecting thr c9d3a500 , thread 5958 , mypolls 0 +myconn 0 connecting thr c9d3a500 , thread 5958 , mypolls 0 +thr c9d3a680 , status 1 +connecting thr c9d3a680 , thread 5959 , mypolls 0 +myconn 0 connecting thr c9d3a680 , thread 5959 , mypolls 0 +thr c9d3a800 , status 1 +connecting thr c9d3a800 , thread 5960 , mypolls 0 +myconn 0 connecting thr c9d3a800 , thread 5960 , mypolls 0 +thr c9d3a980 , status 1 +connecting thr c9d3a980 , thread 5961 , mypolls 0 +myconn 0 connecting thr c9d3a980 , thread 5961 , mypolls 0 +thr c9d3ab00 , status 1 +connecting thr c9d3ab00 , thread 5962 , mypolls 0 +myconn 0 connecting thr c9d3ab00 , thread 5962 , mypolls 0 +thr c9d3ac80 , status 1 +connecting thr c9d3ac80 , thread 5963 , mypolls 0 +myconn 0 connecting thr c9d3ac80 , thread 5963 , mypolls 0 +thr c9d3ae00 , status 1 +connecting thr c9d3ae00 , thread 5964 , mypolls 0 +myconn 0 connecting thr c9d3ae00 , thread 5964 , mypolls 0 +thr c9d3af80 , status 1 +connecting thr c9d3af80 , thread 5965 , mypolls 0 +myconn 0 connecting thr c9d3af80 , thread 5965 , mypolls 0 +thr c9d3b100 , status 1 +connecting thr c9d3b100 , thread 5966 , mypolls 0 +myconn 0 connecting thr c9d3b100 , thread 5966 , mypolls 0 +thr c9d3b280 , status 1 +connecting thr c9d3b280 , thread 5967 , mypolls 0 +myconn 0 connecting thr c9d3b280 , thread 5967 , mypolls 0 +thr c9d3b400 , status 1 +connecting thr c9d3b400 , thread 5968 , mypolls 0 +myconn 0 connecting thr c9d3b400 , thread 5968 , mypolls 0 +thr c9d3b580 , status 1 +connecting thr c9d3b580 , thread 5969 , mypolls 0 +myconn 0 connecting thr c9d3b580 , thread 5969 , mypolls 0 +thr c9d3b700 , status 1 +connecting thr c9d3b700 , thread 5970 , mypolls 0 +myconn 0 connecting thr c9d3b700 , thread 5970 , mypolls 0 +thr c9d3b880 , status 1 +connecting thr c9d3b880 , thread 5971 , mypolls 0 +myconn 0 connecting thr c9d3b880 , thread 5971 , mypolls 0 +thr c9d3ba00 , status 1 +connecting thr c9d3ba00 , thread 5972 , mypolls 0 +myconn 0 connecting thr c9d3ba00 , thread 5972 , mypolls 0 +thr c9d3bb80 , status 1 +connecting thr c9d3bb80 , thread 5973 , mypolls 0 +myconn 0 connecting thr c9d3bb80 , thread 5973 , mypolls 0 +thr c9d3bd00 , status 1 +connecting thr c9d3bd00 , thread 5974 , mypolls 0 +myconn 0 connecting thr c9d3bd00 , thread 5974 , mypolls 0 +thr c9d3be80 , status 1 +connecting thr c9d3be80 , thread 5975 , mypolls 0 +myconn 0 connecting thr c9d3be80 , thread 5975 , mypolls 0 +thr c9b9d000 , status 1 +connecting thr c9b9d000 , thread 5976 , mypolls 0 +myconn 0 connecting thr c9b9d000 , thread 5976 , mypolls 0 +thr c9b9d180 , status 1 +connecting thr c9b9d180 , thread 5977 , mypolls 0 +myconn 0 connecting thr c9b9d180 , thread 5977 , mypolls 0 +thr c9b9d300 , status 1 +connecting thr c9b9d300 , thread 5978 , mypolls 0 +myconn 0 connecting thr c9b9d300 , thread 5978 , mypolls 0 +thr c9b9d480 , status 1 +connecting thr c9b9d480 , thread 5979 , mypolls 0 +myconn 0 connecting thr c9b9d480 , thread 5979 , mypolls 0 +thr c9b9d600 , status 1 +connecting thr c9b9d600 , thread 5980 , mypolls 0 +myconn 0 connecting thr c9b9d600 , thread 5980 , mypolls 0 +thr c9b9d780 , status 1 +connecting thr c9b9d780 , thread 5981 , mypolls 0 +myconn 0 connecting thr c9b9d780 , thread 5981 , mypolls 0 +thr c9b9d900 , status 1 +connecting thr c9b9d900 , thread 5982 , mypolls 0 +myconn 0 connecting thr c9b9d900 , thread 5982 , mypolls 0 +thr c9b9da80 , status 1 +connecting thr c9b9da80 , thread 5983 , mypolls 0 +myconn 0 connecting thr c9b9da80 , thread 5983 , mypolls 0 +thr c9b9dc00 , status 1 +connecting thr c9b9dc00 , thread 5984 , mypolls 0 +myconn 0 connecting thr c9b9dc00 , thread 5984 , mypolls 0 +thr c9b9dd80 , status 1 +connecting thr c9b9dd80 , thread 5985 , mypolls 0 +myconn 0 connecting thr c9b9dd80 , thread 5985 , mypolls 0 +thr c9b9df00 , status 1 +connecting thr c9b9df00 , thread 5986 , mypolls 0 +myconn 0 connecting thr c9b9df00 , thread 5986 , mypolls 0 +thr c9b9e080 , status 1 +connecting thr c9b9e080 , thread 5987 , mypolls 0 +myconn 0 connecting thr c9b9e080 , thread 5987 , mypolls 0 +thr c9b9e200 , status 1 +connecting thr c9b9e200 , thread 5988 , mypolls 0 +myconn 0 connecting thr c9b9e200 , thread 5988 , mypolls 0 +thr c9b9e380 , status 1 +connecting thr c9b9e380 , thread 5989 , mypolls 0 +myconn 0 connecting thr c9b9e380 , thread 5989 , mypolls 0 +thr c9b9e500 , status 1 +connecting thr c9b9e500 , thread 5990 , mypolls 0 +myconn 0 connecting thr c9b9e500 , thread 5990 , mypolls 0 +thr c9b9e680 , status 1 +connecting thr c9b9e680 , thread 5991 , mypolls 0 +myconn 0 connecting thr c9b9e680 , thread 5991 , mypolls 0 +thr c9b9e800 , status 1 +connecting thr c9b9e800 , thread 5992 , mypolls 0 +myconn 0 connecting thr c9b9e800 , thread 5992 , mypolls 0 +thr c9b9e980 , status 1 +connecting thr c9b9e980 , thread 5993 , mypolls 0 +myconn 0 connecting thr c9b9e980 , thread 5993 , mypolls 0 +thr c9b9eb00 , status 1 +connecting thr c9b9eb00 , thread 5994 , mypolls 0 +myconn 0 connecting thr c9b9eb00 , thread 5994 , mypolls 0 +thr c9b9ec80 , status 1 +connecting thr c9b9ec80 , thread 5995 , mypolls 0 +myconn 0 connecting thr c9b9ec80 , thread 5995 , mypolls 0 +thr c9b9ee00 , status 1 +connecting thr c9b9ee00 , thread 5996 , mypolls 0 +myconn 0 connecting thr c9b9ee00 , thread 5996 , mypolls 0 +thr c9b9ef80 , status 1 +connecting thr c9b9ef80 , thread 5997 , mypolls 0 +myconn 0 connecting thr c9b9ef80 , thread 5997 , mypolls 0 +thr c9b9f100 , status 1 +connecting thr c9b9f100 , thread 5998 , mypolls 0 +myconn 0 connecting thr c9b9f100 , thread 5998 , mypolls 0 +thr c9b9f280 , status 1 +connecting thr c9b9f280 , thread 5999 , mypolls 0 +myconn 0 connecting thr c9b9f280 , thread 5999 , mypolls 0 +thr c9b9f400 , status 1 +connecting thr c9b9f400 , thread 6000 , mypolls 0 +myconn 0 connecting thr c9b9f400 , thread 6000 , mypolls 0 +thr c9b9f580 , status 1 +connecting thr c9b9f580 , thread 6001 , mypolls 0 +myconn 0 connecting thr c9b9f580 , thread 6001 , mypolls 0 +thr c9b9f700 , status 1 +connecting thr c9b9f700 , thread 6002 , mypolls 0 +myconn 0 connecting thr c9b9f700 , thread 6002 , mypolls 0 +thr c9b9f880 , status 1 +connecting thr c9b9f880 , thread 6003 , mypolls 0 +myconn 0 connecting thr c9b9f880 , thread 6003 , mypolls 0 +thr c9b9fa00 , status 1 +connecting thr c9b9fa00 , thread 6004 , mypolls 0 +myconn 0 connecting thr c9b9fa00 , thread 6004 , mypolls 0 +thr c9b9fb80 , status 1 +connecting thr c9b9fb80 , thread 6005 , mypolls 0 +myconn 0 connecting thr c9b9fb80 , thread 6005 , mypolls 0 +thr c9b9fd00 , status 1 +connecting thr c9b9fd00 , thread 6006 , mypolls 0 +myconn 0 connecting thr c9b9fd00 , thread 6006 , mypolls 0 +thr c9b9fe80 , status 1 +connecting thr c9b9fe80 , thread 6007 , mypolls 0 +myconn 0 connecting thr c9b9fe80 , thread 6007 , mypolls 0 +thr c99fd000 , status 1 +connecting thr c99fd000 , thread 6008 , mypolls 0 +myconn 0 connecting thr c99fd000 , thread 6008 , mypolls 0 +thr c99fd180 , status 1 +connecting thr c99fd180 , thread 6009 , mypolls 0 +myconn 0 connecting thr c99fd180 , thread 6009 , mypolls 0 +thr c99fd300 , status 1 +connecting thr c99fd300 , thread 6010 , mypolls 0 +myconn 0 connecting thr c99fd300 , thread 6010 , mypolls 0 +thr c99fd480 , status 1 +connecting thr c99fd480 , thread 6011 , mypolls 0 +myconn 0 connecting thr c99fd480 , thread 6011 , mypolls 0 +thr c99fd600 , status 1 +connecting thr c99fd600 , thread 6012 , mypolls 0 +myconn 0 connecting thr c99fd600 , thread 6012 , mypolls 0 +thr c99fd780 , status 1 +connecting thr c99fd780 , thread 6013 , mypolls 0 +myconn 0 connecting thr c99fd780 , thread 6013 , mypolls 0 +thr c99fd900 , status 1 +connecting thr c99fd900 , thread 6014 , mypolls 0 +myconn 0 connecting thr c99fd900 , thread 6014 , mypolls 0 +thr c99fda80 , status 1 +connecting thr c99fda80 , thread 6015 , mypolls 0 +myconn 0 connecting thr c99fda80 , thread 6015 , mypolls 0 +thr c99fdc00 , status 1 +connecting thr c99fdc00 , thread 6016 , mypolls 0 +myconn 0 connecting thr c99fdc00 , thread 6016 , mypolls 0 +thr c99fdd80 , status 1 +connecting thr c99fdd80 , thread 6017 , mypolls 0 +myconn 0 connecting thr c99fdd80 , thread 6017 , mypolls 0 +thr c99fdf00 , status 1 +connecting thr c99fdf00 , thread 6018 , mypolls 0 +myconn 0 connecting thr c99fdf00 , thread 6018 , mypolls 0 +thr c99fe080 , status 1 +connecting thr c99fe080 , thread 6019 , mypolls 0 +myconn 0 connecting thr c99fe080 , thread 6019 , mypolls 0 +thr c99fe200 , status 1 +connecting thr c99fe200 , thread 6020 , mypolls 0 +myconn 0 connecting thr c99fe200 , thread 6020 , mypolls 0 +thr c99fe380 , status 1 +connecting thr c99fe380 , thread 6021 , mypolls 0 +myconn 0 connecting thr c99fe380 , thread 6021 , mypolls 0 +thr c99fe500 , status 1 +connecting thr c99fe500 , thread 6022 , mypolls 0 +myconn 0 connecting thr c99fe500 , thread 6022 , mypolls 0 +thr c99fe680 , status 1 +connecting thr c99fe680 , thread 6023 , mypolls 0 +myconn 0 connecting thr c99fe680 , thread 6023 , mypolls 0 +thr c99fe800 , status 1 +connecting thr c99fe800 , thread 6024 , mypolls 0 +myconn 0 connecting thr c99fe800 , thread 6024 , mypolls 0 +thr c99fe980 , status 1 +connecting thr c99fe980 , thread 6025 , mypolls 0 +myconn 0 connecting thr c99fe980 , thread 6025 , mypolls 0 +thr c99feb00 , status 1 +connecting thr c99feb00 , thread 6026 , mypolls 0 +myconn 0 connecting thr c99feb00 , thread 6026 , mypolls 0 +thr c99fec80 , status 1 +connecting thr c99fec80 , thread 6027 , mypolls 0 +myconn 0 connecting thr c99fec80 , thread 6027 , mypolls 0 +thr c99fee00 , status 1 +connecting thr c99fee00 , thread 6028 , mypolls 0 +myconn 0 connecting thr c99fee00 , thread 6028 , mypolls 0 +thr c99fef80 , status 1 +connecting thr c99fef80 , thread 6029 , mypolls 0 +myconn 0 connecting thr c99fef80 , thread 6029 , mypolls 0 +thr c99ff100 , status 1 +connecting thr c99ff100 , thread 6030 , mypolls 0 +myconn 0 connecting thr c99ff100 , thread 6030 , mypolls 0 +thr c99ff280 , status 1 +connecting thr c99ff280 , thread 6031 , mypolls 0 +myconn 0 connecting thr c99ff280 , thread 6031 , mypolls 0 +thr c99ff400 , status 1 +connecting thr c99ff400 , thread 6032 , mypolls 0 +myconn 0 connecting thr c99ff400 , thread 6032 , mypolls 0 +thr c99ff580 , status 1 +connecting thr c99ff580 , thread 6033 , mypolls 0 +myconn 0 connecting thr c99ff580 , thread 6033 , mypolls 0 +thr c99ff700 , status 1 +connecting thr c99ff700 , thread 6034 , mypolls 0 +myconn 0 connecting thr c99ff700 , thread 6034 , mypolls 0 +thr c99ff880 , status 1 +connecting thr c99ff880 , thread 6035 , mypolls 0 +myconn 0 connecting thr c99ff880 , thread 6035 , mypolls 0 +thr c99ffa00 , status 1 +connecting thr c99ffa00 , thread 6036 , mypolls 0 +myconn 0 connecting thr c99ffa00 , thread 6036 , mypolls 0 +thr c99ffb80 , status 1 +connecting thr c99ffb80 , thread 6037 , mypolls 0 +myconn 0 connecting thr c99ffb80 , thread 6037 , mypolls 0 +thr c99ffd00 , status 1 +connecting thr c99ffd00 , thread 6038 , mypolls 0 +myconn 0 connecting thr c99ffd00 , thread 6038 , mypolls 0 +thr c99ffe80 , status 1 +connecting thr c99ffe80 , thread 6039 , mypolls 0 +myconn 0 connecting thr c99ffe80 , thread 6039 , mypolls 0 +thr c9470000 , status 1 +connecting thr c9470000 , thread 6040 , mypolls 0 +myconn 0 connecting thr c9470000 , thread 6040 , mypolls 0 +thr c9470180 , status 1 +connecting thr c9470180 , thread 6041 , mypolls 0 +myconn 0 connecting thr c9470180 , thread 6041 , mypolls 0 +thr c9470300 , status 1 +connecting thr c9470300 , thread 6042 , mypolls 0 +myconn 0 connecting thr c9470300 , thread 6042 , mypolls 0 +thr c9470480 , status 1 +connecting thr c9470480 , thread 6043 , mypolls 0 +myconn 0 connecting thr c9470480 , thread 6043 , mypolls 0 +thr c9470600 , status 1 +connecting thr c9470600 , thread 6044 , mypolls 0 +myconn 0 connecting thr c9470600 , thread 6044 , mypolls 0 +thr c9470780 , status 1 +connecting thr c9470780 , thread 6045 , mypolls 0 +myconn 0 connecting thr c9470780 , thread 6045 , mypolls 0 +thr c9470900 , status 1 +connecting thr c9470900 , thread 6046 , mypolls 0 +myconn 0 connecting thr c9470900 , thread 6046 , mypolls 0 +thr c9470a80 , status 1 +connecting thr c9470a80 , thread 6047 , mypolls 0 +myconn 0 connecting thr c9470a80 , thread 6047 , mypolls 0 +thr c9470c00 , status 1 +connecting thr c9470c00 , thread 6048 , mypolls 0 +myconn 0 connecting thr c9470c00 , thread 6048 , mypolls 0 +thr c9470d80 , status 1 +connecting thr c9470d80 , thread 6049 , mypolls 0 +myconn 0 connecting thr c9470d80 , thread 6049 , mypolls 0 +thr c9470f00 , status 1 +connecting thr c9470f00 , thread 6050 , mypolls 0 +myconn 0 connecting thr c9470f00 , thread 6050 , mypolls 0 +thr c9471080 , status 1 +connecting thr c9471080 , thread 6051 , mypolls 0 +myconn 0 connecting thr c9471080 , thread 6051 , mypolls 0 +thr c9471200 , status 1 +connecting thr c9471200 , thread 6052 , mypolls 0 +myconn 0 connecting thr c9471200 , thread 6052 , mypolls 0 +thr c9471380 , status 1 +connecting thr c9471380 , thread 6053 , mypolls 0 +myconn 0 connecting thr c9471380 , thread 6053 , mypolls 0 +thr c9471500 , status 1 +connecting thr c9471500 , thread 6054 , mypolls 0 +myconn 0 connecting thr c9471500 , thread 6054 , mypolls 0 +thr c9471680 , status 1 +connecting thr c9471680 , thread 6055 , mypolls 0 +myconn 0 connecting thr c9471680 , thread 6055 , mypolls 0 +thr c9471800 , status 1 +connecting thr c9471800 , thread 6056 , mypolls 0 +myconn 0 connecting thr c9471800 , thread 6056 , mypolls 0 +thr c9471980 , status 1 +connecting thr c9471980 , thread 6057 , mypolls 0 +myconn 0 connecting thr c9471980 , thread 6057 , mypolls 0 +thr c9471b00 , status 1 +connecting thr c9471b00 , thread 6058 , mypolls 0 +myconn 0 connecting thr c9471b00 , thread 6058 , mypolls 0 +thr c9471c80 , status 1 +connecting thr c9471c80 , thread 6059 , mypolls 0 +myconn 0 connecting thr c9471c80 , thread 6059 , mypolls 0 +thr c9471e00 , status 1 +connecting thr c9471e00 , thread 6060 , mypolls 0 +myconn 0 connecting thr c9471e00 , thread 6060 , mypolls 0 +thr c9471f80 , status 1 +connecting thr c9471f80 , thread 6061 , mypolls 0 +myconn 0 connecting thr c9471f80 , thread 6061 , mypolls 0 +thr c9472100 , status 1 +connecting thr c9472100 , thread 6062 , mypolls 0 +myconn 0 connecting thr c9472100 , thread 6062 , mypolls 0 +thr c9472280 , status 1 +connecting thr c9472280 , thread 6063 , mypolls 0 +myconn 0 connecting thr c9472280 , thread 6063 , mypolls 0 +thr c9472400 , status 1 +connecting thr c9472400 , thread 6064 , mypolls 0 +myconn 0 connecting thr c9472400 , thread 6064 , mypolls 0 +thr c9472580 , status 1 +connecting thr c9472580 , thread 6065 , mypolls 0 +myconn 0 connecting thr c9472580 , thread 6065 , mypolls 0 +thr c9472700 , status 1 +connecting thr c9472700 , thread 6066 , mypolls 0 +myconn 0 connecting thr c9472700 , thread 6066 , mypolls 0 +thr c9472880 , status 1 +connecting thr c9472880 , thread 6067 , mypolls 0 +myconn 0 connecting thr c9472880 , thread 6067 , mypolls 0 +thr c9472a00 , status 1 +connecting thr c9472a00 , thread 6068 , mypolls 0 +myconn 0 connecting thr c9472a00 , thread 6068 , mypolls 0 +thr c9472b80 , status 1 +connecting thr c9472b80 , thread 6069 , mypolls 0 +myconn 0 connecting thr c9472b80 , thread 6069 , mypolls 0 +thr c9472d00 , status 1 +connecting thr c9472d00 , thread 6070 , mypolls 0 +myconn 0 connecting thr c9472d00 , thread 6070 , mypolls 0 +thr c9472e80 , status 1 +connecting thr c9472e80 , thread 6071 , mypolls 0 +myconn 0 connecting thr c9472e80 , thread 6071 , mypolls 0 +thr c95fb000 , status 1 +connecting thr c95fb000 , thread 6072 , mypolls 0 +myconn 0 connecting thr c95fb000 , thread 6072 , mypolls 0 +thr c95fb180 , status 1 +connecting thr c95fb180 , thread 6073 , mypolls 0 +myconn 0 connecting thr c95fb180 , thread 6073 , mypolls 0 +thr c95fb300 , status 1 +connecting thr c95fb300 , thread 6074 , mypolls 0 +myconn 0 connecting thr c95fb300 , thread 6074 , mypolls 0 +thr c95fb480 , status 1 +connecting thr c95fb480 , thread 6075 , mypolls 0 +myconn 0 connecting thr c95fb480 , thread 6075 , mypolls 0 +thr c95fb600 , status 1 +connecting thr c95fb600 , thread 6076 , mypolls 0 +myconn 0 connecting thr c95fb600 , thread 6076 , mypolls 0 +thr c95fb780 , status 1 +connecting thr c95fb780 , thread 6077 , mypolls 0 +myconn 0 connecting thr c95fb780 , thread 6077 , mypolls 0 +thr c95fb900 , status 1 +connecting thr c95fb900 , thread 6078 , mypolls 0 +myconn 0 connecting thr c95fb900 , thread 6078 , mypolls 0 +thr c95fba80 , status 1 +connecting thr c95fba80 , thread 6079 , mypolls 0 +myconn 0 connecting thr c95fba80 , thread 6079 , mypolls 0 +thr c95fbc00 , status 1 +connecting thr c95fbc00 , thread 6080 , mypolls 0 +myconn 0 connecting thr c95fbc00 , thread 6080 , mypolls 0 +thr c95fbd80 , status 1 +connecting thr c95fbd80 , thread 6081 , mypolls 0 +myconn 0 connecting thr c95fbd80 , thread 6081 , mypolls 0 +thr c95fbf00 , status 1 +connecting thr c95fbf00 , thread 6082 , mypolls 0 +myconn 0 connecting thr c95fbf00 , thread 6082 , mypolls 0 +thr c95fc080 , status 1 +connecting thr c95fc080 , thread 6083 , mypolls 0 +myconn 0 connecting thr c95fc080 , thread 6083 , mypolls 0 +thr c95fc200 , status 1 +connecting thr c95fc200 , thread 6084 , mypolls 0 +myconn 0 connecting thr c95fc200 , thread 6084 , mypolls 0 +thr c95fc380 , status 1 +connecting thr c95fc380 , thread 6085 , mypolls 0 +myconn 0 connecting thr c95fc380 , thread 6085 , mypolls 0 +thr c95fc500 , status 1 +connecting thr c95fc500 , thread 6086 , mypolls 0 +myconn 0 connecting thr c95fc500 , thread 6086 , mypolls 0 +thr c95fc680 , status 1 +connecting thr c95fc680 , thread 6087 , mypolls 0 +myconn 0 connecting thr c95fc680 , thread 6087 , mypolls 0 +thr c95fc800 , status 1 +connecting thr c95fc800 , thread 6088 , mypolls 0 +myconn 0 connecting thr c95fc800 , thread 6088 , mypolls 0 +thr c95fc980 , status 1 +connecting thr c95fc980 , thread 6089 , mypolls 0 +myconn 0 connecting thr c95fc980 , thread 6089 , mypolls 0 +thr c95fcb00 , status 1 +connecting thr c95fcb00 , thread 6090 , mypolls 0 +myconn 0 connecting thr c95fcb00 , thread 6090 , mypolls 0 +thr c95fcc80 , status 1 +connecting thr c95fcc80 , thread 6091 , mypolls 0 +myconn 0 connecting thr c95fcc80 , thread 6091 , mypolls 0 +thr c95fce00 , status 1 +connecting thr c95fce00 , thread 6092 , mypolls 0 +myconn 0 connecting thr c95fce00 , thread 6092 , mypolls 0 +thr c95fcf80 , status 1 +connecting thr c95fcf80 , thread 6093 , mypolls 0 +myconn 0 connecting thr c95fcf80 , thread 6093 , mypolls 0 +thr c95fd100 , status 1 +connecting thr c95fd100 , thread 6094 , mypolls 0 +myconn 0 connecting thr c95fd100 , thread 6094 , mypolls 0 +thr c95fd280 , status 1 +connecting thr c95fd280 , thread 6095 , mypolls 0 +myconn 0 connecting thr c95fd280 , thread 6095 , mypolls 0 +thr c95fd400 , status 1 +connecting thr c95fd400 , thread 6096 , mypolls 0 +myconn 0 connecting thr c95fd400 , thread 6096 , mypolls 0 +thr c95fd580 , status 1 +connecting thr c95fd580 , thread 6097 , mypolls 0 +myconn 0 connecting thr c95fd580 , thread 6097 , mypolls 0 +thr c95fd700 , status 1 +connecting thr c95fd700 , thread 6098 , mypolls 0 +myconn 0 connecting thr c95fd700 , thread 6098 , mypolls 0 +thr c95fd880 , status 1 +connecting thr c95fd880 , thread 6099 , mypolls 0 +myconn 0 connecting thr c95fd880 , thread 6099 , mypolls 0 +thr c95fda00 , status 1 +connecting thr c95fda00 , thread 6100 , mypolls 0 +myconn 0 connecting thr c95fda00 , thread 6100 , mypolls 0 +thr c95fdb80 , status 1 +connecting thr c95fdb80 , thread 6101 , mypolls 0 +myconn 0 connecting thr c95fdb80 , thread 6101 , mypolls 0 +thr c95fdd00 , status 1 +connecting thr c95fdd00 , thread 6102 , mypolls 0 +myconn 0 connecting thr c95fdd00 , thread 6102 , mypolls 0 +thr c95fde80 , status 1 +connecting thr c95fde80 , thread 6103 , mypolls 0 +myconn 0 connecting thr c95fde80 , thread 6103 , mypolls 0 +thr c9132000 , status 1 +connecting thr c9132000 , thread 6104 , mypolls 0 +myconn 0 connecting thr c9132000 , thread 6104 , mypolls 0 +thr c9132180 , status 1 +connecting thr c9132180 , thread 6105 , mypolls 0 +myconn 0 connecting thr c9132180 , thread 6105 , mypolls 0 +thr c9132300 , status 1 +connecting thr c9132300 , thread 6106 , mypolls 0 +myconn 0 connecting thr c9132300 , thread 6106 , mypolls 0 +thr c9132480 , status 1 +connecting thr c9132480 , thread 6107 , mypolls 0 +myconn 0 connecting thr c9132480 , thread 6107 , mypolls 0 +thr c9132600 , status 1 +connecting thr c9132600 , thread 6108 , mypolls 0 +myconn 0 connecting thr c9132600 , thread 6108 , mypolls 0 +thr c9132780 , status 1 +connecting thr c9132780 , thread 6109 , mypolls 0 +myconn 0 connecting thr c9132780 , thread 6109 , mypolls 0 +thr c9132900 , status 1 +connecting thr c9132900 , thread 6110 , mypolls 0 +myconn 0 connecting thr c9132900 , thread 6110 , mypolls 0 +thr c9132a80 , status 1 +connecting thr c9132a80 , thread 6111 , mypolls 0 +myconn 0 connecting thr c9132a80 , thread 6111 , mypolls 0 +thr c9132c00 , status 1 +connecting thr c9132c00 , thread 6112 , mypolls 0 +myconn 0 connecting thr c9132c00 , thread 6112 , mypolls 0 +thr c9132d80 , status 1 +connecting thr c9132d80 , thread 6113 , mypolls 0 +myconn 0 connecting thr c9132d80 , thread 6113 , mypolls 0 +thr c9132f00 , status 1 +connecting thr c9132f00 , thread 6114 , mypolls 0 +myconn 0 connecting thr c9132f00 , thread 6114 , mypolls 0 +thr c9133080 , status 1 +connecting thr c9133080 , thread 6115 , mypolls 0 +myconn 0 connecting thr c9133080 , thread 6115 , mypolls 0 +thr c9133200 , status 1 +connecting thr c9133200 , thread 6116 , mypolls 0 +myconn 0 connecting thr c9133200 , thread 6116 , mypolls 0 +thr c9133380 , status 1 +connecting thr c9133380 , thread 6117 , mypolls 0 +myconn 0 connecting thr c9133380 , thread 6117 , mypolls 0 +thr c9133500 , status 1 +connecting thr c9133500 , thread 6118 , mypolls 0 +myconn 0 connecting thr c9133500 , thread 6118 , mypolls 0 +thr c9133680 , status 1 +connecting thr c9133680 , thread 6119 , mypolls 0 +myconn 0 connecting thr c9133680 , thread 6119 , mypolls 0 +thr c9133800 , status 1 +connecting thr c9133800 , thread 6120 , mypolls 0 +myconn 0 connecting thr c9133800 , thread 6120 , mypolls 0 +thr c9133980 , status 1 +connecting thr c9133980 , thread 6121 , mypolls 0 +myconn 0 connecting thr c9133980 , thread 6121 , mypolls 0 +thr c9133b00 , status 1 +connecting thr c9133b00 , thread 6122 , mypolls 0 +myconn 0 connecting thr c9133b00 , thread 6122 , mypolls 0 +thr c9133c80 , status 1 +connecting thr c9133c80 , thread 6123 , mypolls 0 +myconn 0 connecting thr c9133c80 , thread 6123 , mypolls 0 +thr c9133e00 , status 1 +connecting thr c9133e00 , thread 6124 , mypolls 0 +myconn 0 connecting thr c9133e00 , thread 6124 , mypolls 0 +thr c9133f80 , status 1 +connecting thr c9133f80 , thread 6125 , mypolls 0 +myconn 0 connecting thr c9133f80 , thread 6125 , mypolls 0 +thr c9134100 , status 1 +connecting thr c9134100 , thread 6126 , mypolls 0 +myconn 0 connecting thr c9134100 , thread 6126 , mypolls 0 +thr c9134280 , status 1 +connecting thr c9134280 , thread 6127 , mypolls 0 +myconn 0 connecting thr c9134280 , thread 6127 , mypolls 0 +thr c9134400 , status 1 +connecting thr c9134400 , thread 6128 , mypolls 0 +myconn 0 connecting thr c9134400 , thread 6128 , mypolls 0 +thr c9134580 , status 1 +connecting thr c9134580 , thread 6129 , mypolls 0 +myconn 0 connecting thr c9134580 , thread 6129 , mypolls 0 +thr c9134700 , status 1 +connecting thr c9134700 , thread 6130 , mypolls 0 +myconn 0 connecting thr c9134700 , thread 6130 , mypolls 0 +thr c9134880 , status 1 +connecting thr c9134880 , thread 6131 , mypolls 0 +myconn 0 connecting thr c9134880 , thread 6131 , mypolls 0 +thr c9134a00 , status 1 +connecting thr c9134a00 , thread 6132 , mypolls 0 +myconn 0 connecting thr c9134a00 , thread 6132 , mypolls 0 +thr c9134b80 , status 1 +connecting thr c9134b80 , thread 6133 , mypolls 0 +myconn 0 connecting thr c9134b80 , thread 6133 , mypolls 0 +thr c9134d00 , status 1 +connecting thr c9134d00 , thread 6134 , mypolls 0 +myconn 0 connecting thr c9134d00 , thread 6134 , mypolls 0 +thr c9134e80 , status 1 +connecting thr c9134e80 , thread 6135 , mypolls 0 +myconn 0 connecting thr c9134e80 , thread 6135 , mypolls 0 +thr c8f94000 , status 1 +connecting thr c8f94000 , thread 6136 , mypolls 0 +myconn 0 connecting thr c8f94000 , thread 6136 , mypolls 0 +thr c8f94180 , status 1 +connecting thr c8f94180 , thread 6137 , mypolls 0 +myconn 0 connecting thr c8f94180 , thread 6137 , mypolls 0 +thr c8f94300 , status 1 +connecting thr c8f94300 , thread 6138 , mypolls 0 +myconn 0 connecting thr c8f94300 , thread 6138 , mypolls 0 +thr c8f94480 , status 1 +connecting thr c8f94480 , thread 6139 , mypolls 0 +myconn 0 connecting thr c8f94480 , thread 6139 , mypolls 0 +thr c8f94600 , status 1 +connecting thr c8f94600 , thread 6140 , mypolls 0 +myconn 0 connecting thr c8f94600 , thread 6140 , mypolls 0 +thr c8f94780 , status 1 +connecting thr c8f94780 , thread 6141 , mypolls 0 +myconn 0 connecting thr c8f94780 , thread 6141 , mypolls 0 +thr c8f94900 , status 1 +connecting thr c8f94900 , thread 6142 , mypolls 0 +myconn 0 connecting thr c8f94900 , thread 6142 , mypolls 0 +thr c8f94a80 , status 1 +connecting thr c8f94a80 , thread 6143 , mypolls 0 +myconn 0 connecting thr c8f94a80 , thread 6143 , mypolls 0 +thr c8f94c00 , status 1 +connecting thr c8f94c00 , thread 6144 , mypolls 0 +myconn 0 connecting thr c8f94c00 , thread 6144 , mypolls 0 +thr c8f94d80 , status 1 +connecting thr c8f94d80 , thread 6145 , mypolls 0 +myconn 0 connecting thr c8f94d80 , thread 6145 , mypolls 0 +thr c8f94f00 , status 1 +connecting thr c8f94f00 , thread 6146 , mypolls 0 +myconn 0 connecting thr c8f94f00 , thread 6146 , mypolls 0 +thr c8f95080 , status 1 +connecting thr c8f95080 , thread 6147 , mypolls 0 +myconn 0 connecting thr c8f95080 , thread 6147 , mypolls 0 +thr c8f95200 , status 1 +connecting thr c8f95200 , thread 6148 , mypolls 0 +myconn 0 connecting thr c8f95200 , thread 6148 , mypolls 0 +thr c8f95380 , status 1 +connecting thr c8f95380 , thread 6149 , mypolls 0 +myconn 0 connecting thr c8f95380 , thread 6149 , mypolls 0 +thr c8f95500 , status 1 +connecting thr c8f95500 , thread 6150 , mypolls 0 +myconn 0 connecting thr c8f95500 , thread 6150 , mypolls 0 +thr c8f95680 , status 1 +connecting thr c8f95680 , thread 6151 , mypolls 0 +myconn 0 connecting thr c8f95680 , thread 6151 , mypolls 0 +thr c8f95800 , status 1 +connecting thr c8f95800 , thread 6152 , mypolls 0 +myconn 0 connecting thr c8f95800 , thread 6152 , mypolls 0 +thr c8f95980 , status 1 +connecting thr c8f95980 , thread 6153 , mypolls 0 +myconn 0 connecting thr c8f95980 , thread 6153 , mypolls 0 +thr c8f95b00 , status 1 +connecting thr c8f95b00 , thread 6154 , mypolls 0 +myconn 0 connecting thr c8f95b00 , thread 6154 , mypolls 0 +thr c8f95c80 , status 1 +connecting thr c8f95c80 , thread 6155 , mypolls 0 +myconn 0 connecting thr c8f95c80 , thread 6155 , mypolls 0 +thr c8f95e00 , status 1 +connecting thr c8f95e00 , thread 6156 , mypolls 0 +myconn 0 connecting thr c8f95e00 , thread 6156 , mypolls 0 +thr c8f95f80 , status 1 +connecting thr c8f95f80 , thread 6157 , mypolls 0 +myconn 0 connecting thr c8f95f80 , thread 6157 , mypolls 0 +thr c8f96100 , status 1 +connecting thr c8f96100 , thread 6158 , mypolls 0 +myconn 0 connecting thr c8f96100 , thread 6158 , mypolls 0 +thr c8f96280 , status 1 +connecting thr c8f96280 , thread 6159 , mypolls 0 +myconn 0 connecting thr c8f96280 , thread 6159 , mypolls 0 +thr c8f96400 , status 1 +connecting thr c8f96400 , thread 6160 , mypolls 0 +myconn 0 connecting thr c8f96400 , thread 6160 , mypolls 0 +thr c8f96580 , status 1 +connecting thr c8f96580 , thread 6161 , mypolls 0 +myconn 0 connecting thr c8f96580 , thread 6161 , mypolls 0 +thr c8f96700 , status 1 +connecting thr c8f96700 , thread 6162 , mypolls 0 +myconn 0 connecting thr c8f96700 , thread 6162 , mypolls 0 +thr c8f96880 , status 1 +connecting thr c8f96880 , thread 6163 , mypolls 0 +myconn 0 connecting thr c8f96880 , thread 6163 , mypolls 0 +thr c8f96a00 , status 1 +connecting thr c8f96a00 , thread 6164 , mypolls 0 +myconn 0 connecting thr c8f96a00 , thread 6164 , mypolls 0 +thr c8f96b80 , status 1 +connecting thr c8f96b80 , thread 6165 , mypolls 0 +myconn 0 connecting thr c8f96b80 , thread 6165 , mypolls 0 +thr c8f96d00 , status 1 +connecting thr c8f96d00 , thread 6166 , mypolls 0 +myconn 0 connecting thr c8f96d00 , thread 6166 , mypolls 0 +thr c8f96e80 , status 1 +connecting thr c8f96e80 , thread 6167 , mypolls 0 +myconn 0 connecting thr c8f96e80 , thread 6167 , mypolls 0 +thr c8df4000 , status 1 +connecting thr c8df4000 , thread 6168 , mypolls 0 +myconn 0 connecting thr c8df4000 , thread 6168 , mypolls 0 +thr c8df4180 , status 1 +connecting thr c8df4180 , thread 6169 , mypolls 0 +myconn 0 connecting thr c8df4180 , thread 6169 , mypolls 0 +thr c8df4300 , status 1 +connecting thr c8df4300 , thread 6170 , mypolls 0 +myconn 0 connecting thr c8df4300 , thread 6170 , mypolls 0 +thr c8df4480 , status 1 +connecting thr c8df4480 , thread 6171 , mypolls 0 +myconn 0 connecting thr c8df4480 , thread 6171 , mypolls 0 +thr c8df4600 , status 1 +connecting thr c8df4600 , thread 6172 , mypolls 0 +myconn 0 connecting thr c8df4600 , thread 6172 , mypolls 0 +thr c8df4780 , status 1 +connecting thr c8df4780 , thread 6173 , mypolls 0 +myconn 0 connecting thr c8df4780 , thread 6173 , mypolls 0 +thr c8df4900 , status 1 +connecting thr c8df4900 , thread 6174 , mypolls 0 +myconn 0 connecting thr c8df4900 , thread 6174 , mypolls 0 +thr c8df4a80 , status 1 +connecting thr c8df4a80 , thread 6175 , mypolls 0 +myconn 0 connecting thr c8df4a80 , thread 6175 , mypolls 0 +thr c8df4c00 , status 1 +connecting thr c8df4c00 , thread 6176 , mypolls 0 +myconn 0 connecting thr c8df4c00 , thread 6176 , mypolls 0 +thr c8df4d80 , status 1 +connecting thr c8df4d80 , thread 6177 , mypolls 0 +myconn 0 connecting thr c8df4d80 , thread 6177 , mypolls 0 +thr c8df4f00 , status 1 +connecting thr c8df4f00 , thread 6178 , mypolls 0 +myconn 0 connecting thr c8df4f00 , thread 6178 , mypolls 0 +thr c8df5080 , status 1 +connecting thr c8df5080 , thread 6179 , mypolls 0 +myconn 0 connecting thr c8df5080 , thread 6179 , mypolls 0 +thr c8df5200 , status 1 +connecting thr c8df5200 , thread 6180 , mypolls 0 +myconn 0 connecting thr c8df5200 , thread 6180 , mypolls 0 +thr c8df5380 , status 1 +connecting thr c8df5380 , thread 6181 , mypolls 0 +myconn 0 connecting thr c8df5380 , thread 6181 , mypolls 0 +thr c8df5500 , status 1 +connecting thr c8df5500 , thread 6182 , mypolls 0 +myconn 0 connecting thr c8df5500 , thread 6182 , mypolls 0 +thr c8df5680 , status 1 +connecting thr c8df5680 , thread 6183 , mypolls 0 +myconn 0 connecting thr c8df5680 , thread 6183 , mypolls 0 +thr c8df5800 , status 1 +connecting thr c8df5800 , thread 6184 , mypolls 0 +myconn 0 connecting thr c8df5800 , thread 6184 , mypolls 0 +thr c8df5980 , status 1 +connecting thr c8df5980 , thread 6185 , mypolls 0 +myconn 0 connecting thr c8df5980 , thread 6185 , mypolls 0 +thr c8df5b00 , status 1 +connecting thr c8df5b00 , thread 6186 , mypolls 0 +myconn 0 connecting thr c8df5b00 , thread 6186 , mypolls 0 +thr c8df5c80 , status 1 +connecting thr c8df5c80 , thread 6187 , mypolls 0 +myconn 0 connecting thr c8df5c80 , thread 6187 , mypolls 0 +thr c8df5e00 , status 1 +connecting thr c8df5e00 , thread 6188 , mypolls 0 +myconn 0 connecting thr c8df5e00 , thread 6188 , mypolls 0 +thr c8df5f80 , status 1 +connecting thr c8df5f80 , thread 6189 , mypolls 0 +myconn 0 connecting thr c8df5f80 , thread 6189 , mypolls 0 +thr c8df6100 , status 1 +connecting thr c8df6100 , thread 6190 , mypolls 0 +myconn 0 connecting thr c8df6100 , thread 6190 , mypolls 0 +thr c8df6280 , status 1 +connecting thr c8df6280 , thread 6191 , mypolls 0 +myconn 0 connecting thr c8df6280 , thread 6191 , mypolls 0 +thr c8df6400 , status 1 +connecting thr c8df6400 , thread 6192 , mypolls 0 +myconn 0 connecting thr c8df6400 , thread 6192 , mypolls 0 +thr c8df6580 , status 1 +connecting thr c8df6580 , thread 6193 , mypolls 0 +myconn 0 connecting thr c8df6580 , thread 6193 , mypolls 0 +thr c8df6700 , status 1 +connecting thr c8df6700 , thread 6194 , mypolls 0 +myconn 0 connecting thr c8df6700 , thread 6194 , mypolls 0 +thr c8df6880 , status 1 +connecting thr c8df6880 , thread 6195 , mypolls 0 +myconn 0 connecting thr c8df6880 , thread 6195 , mypolls 0 +thr c8df6a00 , status 1 +connecting thr c8df6a00 , thread 6196 , mypolls 0 +myconn 0 connecting thr c8df6a00 , thread 6196 , mypolls 0 +thr c8df6b80 , status 1 +connecting thr c8df6b80 , thread 6197 , mypolls 0 +myconn 0 connecting thr c8df6b80 , thread 6197 , mypolls 0 +thr c8df6d00 , status 1 +connecting thr c8df6d00 , thread 6198 , mypolls 0 +myconn 0 connecting thr c8df6d00 , thread 6198 , mypolls 0 +thr c8df6e80 , status 1 +connecting thr c8df6e80 , thread 6199 , mypolls 0 +myconn 0 connecting thr c8df6e80 , thread 6199 , mypolls 0 +thr c8bfa000 , status 1 +connecting thr c8bfa000 , thread 6200 , mypolls 0 +myconn 0 connecting thr c8bfa000 , thread 6200 , mypolls 0 +thr c8bfa180 , status 1 +connecting thr c8bfa180 , thread 6201 , mypolls 0 +myconn 0 connecting thr c8bfa180 , thread 6201 , mypolls 0 +thr c8bfa300 , status 1 +connecting thr c8bfa300 , thread 6202 , mypolls 0 +myconn 0 connecting thr c8bfa300 , thread 6202 , mypolls 0 +thr c8bfa480 , status 1 +connecting thr c8bfa480 , thread 6203 , mypolls 0 +myconn 0 connecting thr c8bfa480 , thread 6203 , mypolls 0 +thr c8bfa600 , status 1 +connecting thr c8bfa600 , thread 6204 , mypolls 0 +myconn 0 connecting thr c8bfa600 , thread 6204 , mypolls 0 +thr c8bfa780 , status 1 +connecting thr c8bfa780 , thread 6205 , mypolls 0 +myconn 0 connecting thr c8bfa780 , thread 6205 , mypolls 0 +thr c8bfa900 , status 1 +connecting thr c8bfa900 , thread 6206 , mypolls 0 +myconn 0 connecting thr c8bfa900 , thread 6206 , mypolls 0 +thr c8bfaa80 , status 1 +connecting thr c8bfaa80 , thread 6207 , mypolls 0 +myconn 0 connecting thr c8bfaa80 , thread 6207 , mypolls 0 +thr c8bfac00 , status 1 +connecting thr c8bfac00 , thread 6208 , mypolls 0 +myconn 0 connecting thr c8bfac00 , thread 6208 , mypolls 0 +thr c8bfad80 , status 1 +connecting thr c8bfad80 , thread 6209 , mypolls 0 +myconn 0 connecting thr c8bfad80 , thread 6209 , mypolls 0 +thr c8bfaf00 , status 1 +connecting thr c8bfaf00 , thread 6210 , mypolls 0 +myconn 0 connecting thr c8bfaf00 , thread 6210 , mypolls 0 +thr c8bfb080 , status 1 +connecting thr c8bfb080 , thread 6211 , mypolls 0 +myconn 0 connecting thr c8bfb080 , thread 6211 , mypolls 0 +thr c8bfb200 , status 1 +connecting thr c8bfb200 , thread 6212 , mypolls 0 +myconn 0 connecting thr c8bfb200 , thread 6212 , mypolls 0 +thr c8bfb380 , status 1 +connecting thr c8bfb380 , thread 6213 , mypolls 0 +myconn 0 connecting thr c8bfb380 , thread 6213 , mypolls 0 +thr c8bfb500 , status 1 +connecting thr c8bfb500 , thread 6214 , mypolls 0 +myconn 0 connecting thr c8bfb500 , thread 6214 , mypolls 0 +thr c8bfb680 , status 1 +connecting thr c8bfb680 , thread 6215 , mypolls 0 +myconn 0 connecting thr c8bfb680 , thread 6215 , mypolls 0 +thr c8bfb800 , status 1 +connecting thr c8bfb800 , thread 6216 , mypolls 0 +myconn 0 connecting thr c8bfb800 , thread 6216 , mypolls 0 +thr c8bfb980 , status 1 +connecting thr c8bfb980 , thread 6217 , mypolls 0 +myconn 0 connecting thr c8bfb980 , thread 6217 , mypolls 0 +thr c8bfbb00 , status 1 +connecting thr c8bfbb00 , thread 6218 , mypolls 0 +myconn 0 connecting thr c8bfbb00 , thread 6218 , mypolls 0 +thr c8bfbc80 , status 1 +connecting thr c8bfbc80 , thread 6219 , mypolls 0 +myconn 0 connecting thr c8bfbc80 , thread 6219 , mypolls 0 +thr c8bfbe00 , status 1 +connecting thr c8bfbe00 , thread 6220 , mypolls 0 +myconn 0 connecting thr c8bfbe00 , thread 6220 , mypolls 0 +thr c8bfbf80 , status 1 +connecting thr c8bfbf80 , thread 6221 , mypolls 0 +myconn 0 connecting thr c8bfbf80 , thread 6221 , mypolls 0 +thr c8bfc100 , status 1 +connecting thr c8bfc100 , thread 6222 , mypolls 0 +myconn 0 connecting thr c8bfc100 , thread 6222 , mypolls 0 +thr c8bfc280 , status 1 +connecting thr c8bfc280 , thread 6223 , mypolls 0 +myconn 0 connecting thr c8bfc280 , thread 6223 , mypolls 0 +thr c8bfc400 , status 1 +connecting thr c8bfc400 , thread 6224 , mypolls 0 +myconn 0 connecting thr c8bfc400 , thread 6224 , mypolls 0 +thr c8bfc580 , status 1 +connecting thr c8bfc580 , thread 6225 , mypolls 0 +myconn 0 connecting thr c8bfc580 , thread 6225 , mypolls 0 +thr c8bfc700 , status 1 +connecting thr c8bfc700 , thread 6226 , mypolls 0 +myconn 0 connecting thr c8bfc700 , thread 6226 , mypolls 0 +thr c8bfc880 , status 1 +connecting thr c8bfc880 , thread 6227 , mypolls 0 +myconn 0 connecting thr c8bfc880 , thread 6227 , mypolls 0 +thr c8bfca00 , status 1 +connecting thr c8bfca00 , thread 6228 , mypolls 0 +myconn 0 connecting thr c8bfca00 , thread 6228 , mypolls 0 +thr c8bfcb80 , status 1 +connecting thr c8bfcb80 , thread 6229 , mypolls 0 +myconn 0 connecting thr c8bfcb80 , thread 6229 , mypolls 0 +thr c8bfcd00 , status 1 +connecting thr c8bfcd00 , thread 6230 , mypolls 0 +myconn 0 connecting thr c8bfcd00 , thread 6230 , mypolls 0 +thr c8bfce80 , status 1 +connecting thr c8bfce80 , thread 6231 , mypolls 0 +myconn 0 connecting thr c8bfce80 , thread 6231 , mypolls 0 +thr c86cb000 , status 1 +connecting thr c86cb000 , thread 6232 , mypolls 0 +myconn 0 connecting thr c86cb000 , thread 6232 , mypolls 0 +thr c86cb180 , status 1 +connecting thr c86cb180 , thread 6233 , mypolls 0 +myconn 0 connecting thr c86cb180 , thread 6233 , mypolls 0 +thr c86cb300 , status 1 +connecting thr c86cb300 , thread 6234 , mypolls 0 +myconn 0 connecting thr c86cb300 , thread 6234 , mypolls 0 +thr c86cb480 , status 1 +connecting thr c86cb480 , thread 6235 , mypolls 0 +myconn 0 connecting thr c86cb480 , thread 6235 , mypolls 0 +thr c86cb600 , status 1 +connecting thr c86cb600 , thread 6236 , mypolls 0 +myconn 0 connecting thr c86cb600 , thread 6236 , mypolls 0 +thr c86cb780 , status 1 +connecting thr c86cb780 , thread 6237 , mypolls 0 +myconn 0 connecting thr c86cb780 , thread 6237 , mypolls 0 +thr c86cb900 , status 1 +connecting thr c86cb900 , thread 6238 , mypolls 0 +myconn 0 connecting thr c86cb900 , thread 6238 , mypolls 0 +thr c86cba80 , status 1 +connecting thr c86cba80 , thread 6239 , mypolls 0 +myconn 0 connecting thr c86cba80 , thread 6239 , mypolls 0 +thr c86cbc00 , status 1 +connecting thr c86cbc00 , thread 6240 , mypolls 0 +myconn 0 connecting thr c86cbc00 , thread 6240 , mypolls 0 +thr c86cbd80 , status 1 +connecting thr c86cbd80 , thread 6241 , mypolls 0 +myconn 0 connecting thr c86cbd80 , thread 6241 , mypolls 0 +thr c86cbf00 , status 1 +connecting thr c86cbf00 , thread 6242 , mypolls 0 +myconn 0 connecting thr c86cbf00 , thread 6242 , mypolls 0 +thr c86cc080 , status 1 +connecting thr c86cc080 , thread 6243 , mypolls 0 +myconn 0 connecting thr c86cc080 , thread 6243 , mypolls 0 +thr c86cc200 , status 1 +connecting thr c86cc200 , thread 6244 , mypolls 0 +myconn 0 connecting thr c86cc200 , thread 6244 , mypolls 0 +thr c86cc380 , status 1 +connecting thr c86cc380 , thread 6245 , mypolls 0 +myconn 0 connecting thr c86cc380 , thread 6245 , mypolls 0 +thr c86cc500 , status 1 +connecting thr c86cc500 , thread 6246 , mypolls 0 +myconn 0 connecting thr c86cc500 , thread 6246 , mypolls 0 +thr c86cc680 , status 1 +connecting thr c86cc680 , thread 6247 , mypolls 0 +myconn 0 connecting thr c86cc680 , thread 6247 , mypolls 0 +thr c86cc800 , status 1 +connecting thr c86cc800 , thread 6248 , mypolls 0 +myconn 0 connecting thr c86cc800 , thread 6248 , mypolls 0 +thr c86cc980 , status 1 +connecting thr c86cc980 , thread 6249 , mypolls 0 +myconn 0 connecting thr c86cc980 , thread 6249 , mypolls 0 +thr c86ccb00 , status 1 +connecting thr c86ccb00 , thread 6250 , mypolls 0 +myconn 0 connecting thr c86ccb00 , thread 6250 , mypolls 0 +thr c86ccc80 , status 1 +connecting thr c86ccc80 , thread 6251 , mypolls 0 +myconn 0 connecting thr c86ccc80 , thread 6251 , mypolls 0 +thr c86cce00 , status 1 +connecting thr c86cce00 , thread 6252 , mypolls 0 +myconn 0 connecting thr c86cce00 , thread 6252 , mypolls 0 +thr c86ccf80 , status 1 +connecting thr c86ccf80 , thread 6253 , mypolls 0 +myconn 0 connecting thr c86ccf80 , thread 6253 , mypolls 0 +thr c86cd100 , status 1 +connecting thr c86cd100 , thread 6254 , mypolls 0 +myconn 0 connecting thr c86cd100 , thread 6254 , mypolls 0 +thr c86cd280 , status 1 +connecting thr c86cd280 , thread 6255 , mypolls 0 +myconn 0 connecting thr c86cd280 , thread 6255 , mypolls 0 +thr c86cd400 , status 1 +connecting thr c86cd400 , thread 6256 , mypolls 0 +myconn 0 connecting thr c86cd400 , thread 6256 , mypolls 0 +thr c86cd580 , status 1 +connecting thr c86cd580 , thread 6257 , mypolls 0 +myconn 0 connecting thr c86cd580 , thread 6257 , mypolls 0 +thr c86cd700 , status 1 +connecting thr c86cd700 , thread 6258 , mypolls 0 +myconn 0 connecting thr c86cd700 , thread 6258 , mypolls 0 +thr c86cd880 , status 1 +connecting thr c86cd880 , thread 6259 , mypolls 0 +myconn 0 connecting thr c86cd880 , thread 6259 , mypolls 0 +thr c86cda00 , status 1 +connecting thr c86cda00 , thread 6260 , mypolls 0 +myconn 0 connecting thr c86cda00 , thread 6260 , mypolls 0 +thr c86cdb80 , status 1 +connecting thr c86cdb80 , thread 6261 , mypolls 0 +myconn 0 connecting thr c86cdb80 , thread 6261 , mypolls 0 +thr c86cdd00 , status 1 +connecting thr c86cdd00 , thread 6262 , mypolls 0 +myconn 0 connecting thr c86cdd00 , thread 6262 , mypolls 0 +thr c86cde80 , status 1 +connecting thr c86cde80 , thread 6263 , mypolls 0 +myconn 0 connecting thr c86cde80 , thread 6263 , mypolls 0 +thr c852d000 , status 1 +connecting thr c852d000 , thread 6264 , mypolls 0 +myconn 0 connecting thr c852d000 , thread 6264 , mypolls 0 +thr c852d180 , status 1 +connecting thr c852d180 , thread 6265 , mypolls 0 +myconn 0 connecting thr c852d180 , thread 6265 , mypolls 0 +thr c852d300 , status 1 +connecting thr c852d300 , thread 6266 , mypolls 0 +myconn 0 connecting thr c852d300 , thread 6266 , mypolls 0 +thr c852d480 , status 1 +connecting thr c852d480 , thread 6267 , mypolls 0 +myconn 0 connecting thr c852d480 , thread 6267 , mypolls 0 +thr c852d600 , status 1 +connecting thr c852d600 , thread 6268 , mypolls 0 +myconn 0 connecting thr c852d600 , thread 6268 , mypolls 0 +thr c852d780 , status 1 +connecting thr c852d780 , thread 6269 , mypolls 0 +myconn 0 connecting thr c852d780 , thread 6269 , mypolls 0 +thr c852d900 , status 1 +connecting thr c852d900 , thread 6270 , mypolls 0 +myconn 0 connecting thr c852d900 , thread 6270 , mypolls 0 +thr c852da80 , status 1 +connecting thr c852da80 , thread 6271 , mypolls 0 +myconn 0 connecting thr c852da80 , thread 6271 , mypolls 0 +thr c852dc00 , status 1 +connecting thr c852dc00 , thread 6272 , mypolls 0 +myconn 0 connecting thr c852dc00 , thread 6272 , mypolls 0 +thr c852dd80 , status 1 +connecting thr c852dd80 , thread 6273 , mypolls 0 +myconn 0 connecting thr c852dd80 , thread 6273 , mypolls 0 +thr c852df00 , status 1 +connecting thr c852df00 , thread 6274 , mypolls 0 +myconn 0 connecting thr c852df00 , thread 6274 , mypolls 0 +thr c852e080 , status 1 +connecting thr c852e080 , thread 6275 , mypolls 0 +myconn 0 connecting thr c852e080 , thread 6275 , mypolls 0 +thr c852e200 , status 1 +connecting thr c852e200 , thread 6276 , mypolls 0 +myconn 0 connecting thr c852e200 , thread 6276 , mypolls 0 +thr c852e380 , status 1 +connecting thr c852e380 , thread 6277 , mypolls 0 +myconn 0 connecting thr c852e380 , thread 6277 , mypolls 0 +thr c852e500 , status 1 +connecting thr c852e500 , thread 6278 , mypolls 0 +myconn 0 connecting thr c852e500 , thread 6278 , mypolls 0 +thr c852e680 , status 1 +connecting thr c852e680 , thread 6279 , mypolls 0 +myconn 0 connecting thr c852e680 , thread 6279 , mypolls 0 +thr c852e800 , status 1 +connecting thr c852e800 , thread 6280 , mypolls 0 +myconn 0 connecting thr c852e800 , thread 6280 , mypolls 0 +thr c852e980 , status 1 +connecting thr c852e980 , thread 6281 , mypolls 0 +myconn 0 connecting thr c852e980 , thread 6281 , mypolls 0 +thr c852eb00 , status 1 +connecting thr c852eb00 , thread 6282 , mypolls 0 +myconn 0 connecting thr c852eb00 , thread 6282 , mypolls 0 +thr c852ec80 , status 1 +connecting thr c852ec80 , thread 6283 , mypolls 0 +myconn 0 connecting thr c852ec80 , thread 6283 , mypolls 0 +thr c852ee00 , status 1 +connecting thr c852ee00 , thread 6284 , mypolls 0 +myconn 0 connecting thr c852ee00 , thread 6284 , mypolls 0 +thr c852ef80 , status 1 +connecting thr c852ef80 , thread 6285 , mypolls 0 +myconn 0 connecting thr c852ef80 , thread 6285 , mypolls 0 +thr c852f100 , status 1 +connecting thr c852f100 , thread 6286 , mypolls 0 +myconn 0 connecting thr c852f100 , thread 6286 , mypolls 0 +thr c852f280 , status 1 +connecting thr c852f280 , thread 6287 , mypolls 0 +myconn 0 connecting thr c852f280 , thread 6287 , mypolls 0 +thr c852f400 , status 1 +connecting thr c852f400 , thread 6288 , mypolls 0 +myconn 0 connecting thr c852f400 , thread 6288 , mypolls 0 +thr c852f580 , status 1 +connecting thr c852f580 , thread 6289 , mypolls 0 +myconn 0 connecting thr c852f580 , thread 6289 , mypolls 0 +thr c852f700 , status 1 +connecting thr c852f700 , thread 6290 , mypolls 0 +myconn 0 connecting thr c852f700 , thread 6290 , mypolls 0 +thr c852f880 , status 1 +connecting thr c852f880 , thread 6291 , mypolls 0 +myconn 0 connecting thr c852f880 , thread 6291 , mypolls 0 +thr c852fa00 , status 1 +connecting thr c852fa00 , thread 6292 , mypolls 0 +myconn 0 connecting thr c852fa00 , thread 6292 , mypolls 0 +thr c852fb80 , status 1 +connecting thr c852fb80 , thread 6293 , mypolls 0 +myconn 0 connecting thr c852fb80 , thread 6293 , mypolls 0 +thr c852fd00 , status 1 +connecting thr c852fd00 , thread 6294 , mypolls 0 +myconn 0 connecting thr c852fd00 , thread 6294 , mypolls 0 +thr c852fe80 , status 1 +connecting thr c852fe80 , thread 6295 , mypolls 0 +myconn 0 connecting thr c852fe80 , thread 6295 , mypolls 0 +thr c838f000 , status 1 +connecting thr c838f000 , thread 6296 , mypolls 0 +myconn 0 connecting thr c838f000 , thread 6296 , mypolls 0 +thr c838f180 , status 1 +connecting thr c838f180 , thread 6297 , mypolls 0 +myconn 0 connecting thr c838f180 , thread 6297 , mypolls 0 +thr c838f300 , status 1 +connecting thr c838f300 , thread 6298 , mypolls 0 +myconn 0 connecting thr c838f300 , thread 6298 , mypolls 0 +thr c838f480 , status 1 +connecting thr c838f480 , thread 6299 , mypolls 0 +myconn 0 connecting thr c838f480 , thread 6299 , mypolls 0 +thr c838f600 , status 1 +connecting thr c838f600 , thread 6300 , mypolls 0 +myconn 0 connecting thr c838f600 , thread 6300 , mypolls 0 +thr c838f780 , status 1 +connecting thr c838f780 , thread 6301 , mypolls 0 +myconn 0 connecting thr c838f780 , thread 6301 , mypolls 0 +thr c838f900 , status 1 +connecting thr c838f900 , thread 6302 , mypolls 0 +myconn 0 connecting thr c838f900 , thread 6302 , mypolls 0 +thr c838fa80 , status 1 +connecting thr c838fa80 , thread 6303 , mypolls 0 +myconn 0 connecting thr c838fa80 , thread 6303 , mypolls 0 +thr c838fc00 , status 1 +connecting thr c838fc00 , thread 6304 , mypolls 0 +myconn 0 connecting thr c838fc00 , thread 6304 , mypolls 0 +thr c838fd80 , status 1 +connecting thr c838fd80 , thread 6305 , mypolls 0 +myconn 0 connecting thr c838fd80 , thread 6305 , mypolls 0 +thr c838ff00 , status 1 +connecting thr c838ff00 , thread 6306 , mypolls 0 +myconn 0 connecting thr c838ff00 , thread 6306 , mypolls 0 +thr c8390080 , status 1 +connecting thr c8390080 , thread 6307 , mypolls 0 +myconn 0 connecting thr c8390080 , thread 6307 , mypolls 0 +thr c8390200 , status 1 +connecting thr c8390200 , thread 6308 , mypolls 0 +myconn 0 connecting thr c8390200 , thread 6308 , mypolls 0 +thr c8390380 , status 1 +connecting thr c8390380 , thread 6309 , mypolls 0 +myconn 0 connecting thr c8390380 , thread 6309 , mypolls 0 +thr c8390500 , status 1 +connecting thr c8390500 , thread 6310 , mypolls 0 +myconn 0 connecting thr c8390500 , thread 6310 , mypolls 0 +thr c8390680 , status 1 +connecting thr c8390680 , thread 6311 , mypolls 0 +myconn 0 connecting thr c8390680 , thread 6311 , mypolls 0 +thr c8390800 , status 1 +connecting thr c8390800 , thread 6312 , mypolls 0 +myconn 0 connecting thr c8390800 , thread 6312 , mypolls 0 +thr c8390980 , status 1 +connecting thr c8390980 , thread 6313 , mypolls 0 +myconn 0 connecting thr c8390980 , thread 6313 , mypolls 0 +thr c8390b00 , status 1 +connecting thr c8390b00 , thread 6314 , mypolls 0 +myconn 0 connecting thr c8390b00 , thread 6314 , mypolls 0 +thr c8390c80 , status 1 +connecting thr c8390c80 , thread 6315 , mypolls 0 +myconn 0 connecting thr c8390c80 , thread 6315 , mypolls 0 +thr c8390e00 , status 1 +connecting thr c8390e00 , thread 6316 , mypolls 0 +myconn 0 connecting thr c8390e00 , thread 6316 , mypolls 0 +thr c8390f80 , status 1 +connecting thr c8390f80 , thread 6317 , mypolls 0 +myconn 0 connecting thr c8390f80 , thread 6317 , mypolls 0 +thr c8391100 , status 1 +connecting thr c8391100 , thread 6318 , mypolls 0 +myconn 0 connecting thr c8391100 , thread 6318 , mypolls 0 +thr c8391280 , status 1 +connecting thr c8391280 , thread 6319 , mypolls 0 +myconn 0 connecting thr c8391280 , thread 6319 , mypolls 0 +thr c8391400 , status 1 +connecting thr c8391400 , thread 6320 , mypolls 0 +myconn 0 connecting thr c8391400 , thread 6320 , mypolls 0 +thr c8391580 , status 1 +connecting thr c8391580 , thread 6321 , mypolls 0 +myconn 0 connecting thr c8391580 , thread 6321 , mypolls 0 +thr c8391700 , status 1 +connecting thr c8391700 , thread 6322 , mypolls 0 +myconn 0 connecting thr c8391700 , thread 6322 , mypolls 0 +thr c8391880 , status 1 +connecting thr c8391880 , thread 6323 , mypolls 0 +myconn 0 connecting thr c8391880 , thread 6323 , mypolls 0 +thr c8391a00 , status 1 +connecting thr c8391a00 , thread 6324 , mypolls 0 +myconn 0 connecting thr c8391a00 , thread 6324 , mypolls 0 +thr c8391b80 , status 1 +connecting thr c8391b80 , thread 6325 , mypolls 0 +myconn 0 connecting thr c8391b80 , thread 6325 , mypolls 0 +thr c8391d00 , status 1 +connecting thr c8391d00 , thread 6326 , mypolls 0 +myconn 0 connecting thr c8391d00 , thread 6326 , mypolls 0 +thr c8391e80 , status 1 +connecting thr c8391e80 , thread 6327 , mypolls 0 +myconn 0 connecting thr c8391e80 , thread 6327 , mypolls 0 +thr c81f1000 , status 1 +connecting thr c81f1000 , thread 6328 , mypolls 0 +myconn 0 connecting thr c81f1000 , thread 6328 , mypolls 0 +thr c81f1180 , status 1 +connecting thr c81f1180 , thread 6329 , mypolls 0 +myconn 0 connecting thr c81f1180 , thread 6329 , mypolls 0 +thr c81f1300 , status 1 +connecting thr c81f1300 , thread 6330 , mypolls 0 +myconn 0 connecting thr c81f1300 , thread 6330 , mypolls 0 +thr c81f1480 , status 1 +connecting thr c81f1480 , thread 6331 , mypolls 0 +myconn 0 connecting thr c81f1480 , thread 6331 , mypolls 0 +thr c81f1600 , status 1 +connecting thr c81f1600 , thread 6332 , mypolls 0 +myconn 0 connecting thr c81f1600 , thread 6332 , mypolls 0 +thr c81f1780 , status 1 +connecting thr c81f1780 , thread 6333 , mypolls 0 +myconn 0 connecting thr c81f1780 , thread 6333 , mypolls 0 +thr c81f1900 , status 1 +connecting thr c81f1900 , thread 6334 , mypolls 0 +myconn 0 connecting thr c81f1900 , thread 6334 , mypolls 0 +thr c81f1a80 , status 1 +connecting thr c81f1a80 , thread 6335 , mypolls 0 +myconn 0 connecting thr c81f1a80 , thread 6335 , mypolls 0 +thr c81f1c00 , status 1 +connecting thr c81f1c00 , thread 6336 , mypolls 0 +myconn 0 connecting thr c81f1c00 , thread 6336 , mypolls 0 +thr c81f1d80 , status 1 +connecting thr c81f1d80 , thread 6337 , mypolls 0 +myconn 0 connecting thr c81f1d80 , thread 6337 , mypolls 0 +thr c81f1f00 , status 1 +connecting thr c81f1f00 , thread 6338 , mypolls 0 +myconn 0 connecting thr c81f1f00 , thread 6338 , mypolls 0 +thr c81f2080 , status 1 +connecting thr c81f2080 , thread 6339 , mypolls 0 +myconn 0 connecting thr c81f2080 , thread 6339 , mypolls 0 +thr c81f2200 , status 1 +connecting thr c81f2200 , thread 6340 , mypolls 0 +myconn 0 connecting thr c81f2200 , thread 6340 , mypolls 0 +thr c81f2380 , status 1 +connecting thr c81f2380 , thread 6341 , mypolls 0 +myconn 0 connecting thr c81f2380 , thread 6341 , mypolls 0 +thr c81f2500 , status 1 +connecting thr c81f2500 , thread 6342 , mypolls 0 +myconn 0 connecting thr c81f2500 , thread 6342 , mypolls 0 +thr c81f2680 , status 1 +connecting thr c81f2680 , thread 6343 , mypolls 0 +myconn 0 connecting thr c81f2680 , thread 6343 , mypolls 0 +thr c81f2800 , status 1 +connecting thr c81f2800 , thread 6344 , mypolls 0 +myconn 0 connecting thr c81f2800 , thread 6344 , mypolls 0 +thr c81f2980 , status 1 +connecting thr c81f2980 , thread 6345 , mypolls 0 +myconn 0 connecting thr c81f2980 , thread 6345 , mypolls 0 +thr c81f2b00 , status 1 +connecting thr c81f2b00 , thread 6346 , mypolls 0 +myconn 0 connecting thr c81f2b00 , thread 6346 , mypolls 0 +thr c81f2c80 , status 1 +connecting thr c81f2c80 , thread 6347 , mypolls 0 +myconn 0 connecting thr c81f2c80 , thread 6347 , mypolls 0 +thr c81f2e00 , status 1 +connecting thr c81f2e00 , thread 6348 , mypolls 0 +myconn 0 connecting thr c81f2e00 , thread 6348 , mypolls 0 +thr c81f2f80 , status 1 +connecting thr c81f2f80 , thread 6349 , mypolls 0 +myconn 0 connecting thr c81f2f80 , thread 6349 , mypolls 0 +thr c81f3100 , status 1 +connecting thr c81f3100 , thread 6350 , mypolls 0 +myconn 0 connecting thr c81f3100 , thread 6350 , mypolls 0 +thr c81f3280 , status 1 +connecting thr c81f3280 , thread 6351 , mypolls 0 +myconn 0 connecting thr c81f3280 , thread 6351 , mypolls 0 +thr c81f3400 , status 1 +connecting thr c81f3400 , thread 6352 , mypolls 0 +myconn 0 connecting thr c81f3400 , thread 6352 , mypolls 0 +thr c81f3580 , status 1 +connecting thr c81f3580 , thread 6353 , mypolls 0 +myconn 0 connecting thr c81f3580 , thread 6353 , mypolls 0 +thr c81f3700 , status 1 +connecting thr c81f3700 , thread 6354 , mypolls 0 +myconn 0 connecting thr c81f3700 , thread 6354 , mypolls 0 +thr c81f3880 , status 1 +connecting thr c81f3880 , thread 6355 , mypolls 0 +myconn 0 connecting thr c81f3880 , thread 6355 , mypolls 0 +thr c81f3a00 , status 1 +connecting thr c81f3a00 , thread 6356 , mypolls 0 +myconn 0 connecting thr c81f3a00 , thread 6356 , mypolls 0 +thr c81f3b80 , status 1 +connecting thr c81f3b80 , thread 6357 , mypolls 0 +myconn 0 connecting thr c81f3b80 , thread 6357 , mypolls 0 +thr c81f3d00 , status 1 +connecting thr c81f3d00 , thread 6358 , mypolls 0 +myconn 0 connecting thr c81f3d00 , thread 6358 , mypolls 0 +thr c81f3e80 , status 1 +connecting thr c81f3e80 , thread 6359 , mypolls 0 +myconn 0 connecting thr c81f3e80 , thread 6359 , mypolls 0 +thr c7c5e000 , status 1 +connecting thr c7c5e000 , thread 6360 , mypolls 0 +myconn 0 connecting thr c7c5e000 , thread 6360 , mypolls 0 +thr c7c5e180 , status 1 +connecting thr c7c5e180 , thread 6361 , mypolls 0 +myconn 0 connecting thr c7c5e180 , thread 6361 , mypolls 0 +thr c7c5e300 , status 1 +connecting thr c7c5e300 , thread 6362 , mypolls 0 +myconn 0 connecting thr c7c5e300 , thread 6362 , mypolls 0 +thr c7c5e480 , status 1 +connecting thr c7c5e480 , thread 6363 , mypolls 0 +myconn 0 connecting thr c7c5e480 , thread 6363 , mypolls 0 +thr c7c5e600 , status 1 +connecting thr c7c5e600 , thread 6364 , mypolls 0 +myconn 0 connecting thr c7c5e600 , thread 6364 , mypolls 0 +thr c7c5e780 , status 1 +connecting thr c7c5e780 , thread 6365 , mypolls 0 +myconn 0 connecting thr c7c5e780 , thread 6365 , mypolls 0 +thr c7c5e900 , status 1 +connecting thr c7c5e900 , thread 6366 , mypolls 0 +myconn 0 connecting thr c7c5e900 , thread 6366 , mypolls 0 +thr c7c5ea80 , status 1 +connecting thr c7c5ea80 , thread 6367 , mypolls 0 +myconn 0 connecting thr c7c5ea80 , thread 6367 , mypolls 0 +thr c7c5ec00 , status 1 +connecting thr c7c5ec00 , thread 6368 , mypolls 0 +myconn 0 connecting thr c7c5ec00 , thread 6368 , mypolls 0 +thr c7c5ed80 , status 1 +connecting thr c7c5ed80 , thread 6369 , mypolls 0 +myconn 0 connecting thr c7c5ed80 , thread 6369 , mypolls 0 +thr c7c5ef00 , status 1 +connecting thr c7c5ef00 , thread 6370 , mypolls 0 +myconn 0 connecting thr c7c5ef00 , thread 6370 , mypolls 0 +thr c7c5f080 , status 1 +connecting thr c7c5f080 , thread 6371 , mypolls 0 +myconn 0 connecting thr c7c5f080 , thread 6371 , mypolls 0 +thr c7c5f200 , status 1 +connecting thr c7c5f200 , thread 6372 , mypolls 0 +myconn 0 connecting thr c7c5f200 , thread 6372 , mypolls 0 +thr c7c5f380 , status 1 +connecting thr c7c5f380 , thread 6373 , mypolls 0 +myconn 0 connecting thr c7c5f380 , thread 6373 , mypolls 0 +thr c7c5f500 , status 1 +connecting thr c7c5f500 , thread 6374 , mypolls 0 +myconn 0 connecting thr c7c5f500 , thread 6374 , mypolls 0 +thr c7c5f680 , status 1 +connecting thr c7c5f680 , thread 6375 , mypolls 0 +myconn 0 connecting thr c7c5f680 , thread 6375 , mypolls 0 +thr c7c5f800 , status 1 +connecting thr c7c5f800 , thread 6376 , mypolls 0 +myconn 0 connecting thr c7c5f800 , thread 6376 , mypolls 0 +thr c7c5f980 , status 1 +connecting thr c7c5f980 , thread 6377 , mypolls 0 +myconn 0 connecting thr c7c5f980 , thread 6377 , mypolls 0 +thr c7c5fb00 , status 1 +connecting thr c7c5fb00 , thread 6378 , mypolls 0 +myconn 0 connecting thr c7c5fb00 , thread 6378 , mypolls 0 +thr c7c5fc80 , status 1 +connecting thr c7c5fc80 , thread 6379 , mypolls 0 +myconn 0 connecting thr c7c5fc80 , thread 6379 , mypolls 0 +thr c7c5fe00 , status 1 +connecting thr c7c5fe00 , thread 6380 , mypolls 0 +myconn 0 connecting thr c7c5fe00 , thread 6380 , mypolls 0 +thr c7c5ff80 , status 1 +connecting thr c7c5ff80 , thread 6381 , mypolls 0 +myconn 0 connecting thr c7c5ff80 , thread 6381 , mypolls 0 +thr c7c60100 , status 1 +connecting thr c7c60100 , thread 6382 , mypolls 0 +myconn 0 connecting thr c7c60100 , thread 6382 , mypolls 0 +thr c7c60280 , status 1 +connecting thr c7c60280 , thread 6383 , mypolls 0 +myconn 0 connecting thr c7c60280 , thread 6383 , mypolls 0 +thr c7c60400 , status 1 +connecting thr c7c60400 , thread 6384 , mypolls 0 +myconn 0 connecting thr c7c60400 , thread 6384 , mypolls 0 +thr c7c60580 , status 1 +connecting thr c7c60580 , thread 6385 , mypolls 0 +myconn 0 connecting thr c7c60580 , thread 6385 , mypolls 0 +thr c7c60700 , status 1 +connecting thr c7c60700 , thread 6386 , mypolls 0 +myconn 0 connecting thr c7c60700 , thread 6386 , mypolls 0 +thr c7c60880 , status 1 +connecting thr c7c60880 , thread 6387 , mypolls 0 +myconn 0 connecting thr c7c60880 , thread 6387 , mypolls 0 +thr c7c60a00 , status 1 +connecting thr c7c60a00 , thread 6388 , mypolls 0 +myconn 0 connecting thr c7c60a00 , thread 6388 , mypolls 0 +thr c7c60b80 , status 1 +connecting thr c7c60b80 , thread 6389 , mypolls 0 +myconn 0 connecting thr c7c60b80 , thread 6389 , mypolls 0 +thr c7c60d00 , status 1 +connecting thr c7c60d00 , thread 6390 , mypolls 0 +myconn 0 connecting thr c7c60d00 , thread 6390 , mypolls 0 +thr c7c60e80 , status 1 +connecting thr c7c60e80 , thread 6391 , mypolls 0 +myconn 0 connecting thr c7c60e80 , thread 6391 , mypolls 0 +thr c7ac7000 , status 1 +connecting thr c7ac7000 , thread 6392 , mypolls 0 +myconn 0 connecting thr c7ac7000 , thread 6392 , mypolls 0 +thr c7ac7180 , status 1 +connecting thr c7ac7180 , thread 6393 , mypolls 0 +myconn 0 connecting thr c7ac7180 , thread 6393 , mypolls 0 +thr c7ac7300 , status 1 +connecting thr c7ac7300 , thread 6394 , mypolls 0 +myconn 0 connecting thr c7ac7300 , thread 6394 , mypolls 0 +thr c7ac7480 , status 1 +connecting thr c7ac7480 , thread 6395 , mypolls 0 +myconn 0 connecting thr c7ac7480 , thread 6395 , mypolls 0 +thr c7ac7600 , status 1 +connecting thr c7ac7600 , thread 6396 , mypolls 0 +myconn 0 connecting thr c7ac7600 , thread 6396 , mypolls 0 +thr c7ac7780 , status 1 +connecting thr c7ac7780 , thread 6397 , mypolls 0 +myconn 0 connecting thr c7ac7780 , thread 6397 , mypolls 0 +thr c7ac7900 , status 1 +connecting thr c7ac7900 , thread 6398 , mypolls 0 +myconn 0 connecting thr c7ac7900 , thread 6398 , mypolls 0 +thr c7ac7a80 , status 1 +connecting thr c7ac7a80 , thread 6399 , mypolls 0 +myconn 0 connecting thr c7ac7a80 , thread 6399 , mypolls 0 +thr c7ac7c00 , status 1 +connecting thr c7ac7c00 , thread 6400 , mypolls 0 +myconn 0 connecting thr c7ac7c00 , thread 6400 , mypolls 0 +thr c7ac7d80 , status 1 +connecting thr c7ac7d80 , thread 6401 , mypolls 0 +myconn 0 connecting thr c7ac7d80 , thread 6401 , mypolls 0 +thr c7ac7f00 , status 1 +connecting thr c7ac7f00 , thread 6402 , mypolls 0 +myconn 0 connecting thr c7ac7f00 , thread 6402 , mypolls 0 +thr c7ac8080 , status 1 +connecting thr c7ac8080 , thread 6403 , mypolls 0 +myconn 0 connecting thr c7ac8080 , thread 6403 , mypolls 0 +thr c7ac8200 , status 1 +connecting thr c7ac8200 , thread 6404 , mypolls 0 +myconn 0 connecting thr c7ac8200 , thread 6404 , mypolls 0 +thr c7ac8380 , status 1 +connecting thr c7ac8380 , thread 6405 , mypolls 0 +myconn 0 connecting thr c7ac8380 , thread 6405 , mypolls 0 +thr c7ac8500 , status 1 +connecting thr c7ac8500 , thread 6406 , mypolls 0 +myconn 0 connecting thr c7ac8500 , thread 6406 , mypolls 0 +thr c7ac8680 , status 1 +connecting thr c7ac8680 , thread 6407 , mypolls 0 +myconn 0 connecting thr c7ac8680 , thread 6407 , mypolls 0 +thr c7ac8800 , status 1 +connecting thr c7ac8800 , thread 6408 , mypolls 0 +myconn 0 connecting thr c7ac8800 , thread 6408 , mypolls 0 +thr c7ac8980 , status 1 +connecting thr c7ac8980 , thread 6409 , mypolls 0 +myconn 0 connecting thr c7ac8980 , thread 6409 , mypolls 0 +thr c7ac8b00 , status 1 +connecting thr c7ac8b00 , thread 6410 , mypolls 0 +myconn 0 connecting thr c7ac8b00 , thread 6410 , mypolls 0 +thr c7ac8c80 , status 1 +connecting thr c7ac8c80 , thread 6411 , mypolls 0 +myconn 0 connecting thr c7ac8c80 , thread 6411 , mypolls 0 +thr c7ac8e00 , status 1 +connecting thr c7ac8e00 , thread 6412 , mypolls 0 +myconn 0 connecting thr c7ac8e00 , thread 6412 , mypolls 0 +thr c7ac8f80 , status 1 +connecting thr c7ac8f80 , thread 6413 , mypolls 0 +myconn 0 connecting thr c7ac8f80 , thread 6413 , mypolls 0 +thr c7ac9100 , status 1 +connecting thr c7ac9100 , thread 6414 , mypolls 0 +myconn 0 connecting thr c7ac9100 , thread 6414 , mypolls 0 +thr c7ac9280 , status 1 +connecting thr c7ac9280 , thread 6415 , mypolls 0 +myconn 0 connecting thr c7ac9280 , thread 6415 , mypolls 0 +thr c7ac9400 , status 1 +connecting thr c7ac9400 , thread 6416 , mypolls 0 +myconn 0 connecting thr c7ac9400 , thread 6416 , mypolls 0 +thr c7ac9580 , status 1 +connecting thr c7ac9580 , thread 6417 , mypolls 0 +myconn 0 connecting thr c7ac9580 , thread 6417 , mypolls 0 +thr c7ac9700 , status 1 +connecting thr c7ac9700 , thread 6418 , mypolls 0 +myconn 0 connecting thr c7ac9700 , thread 6418 , mypolls 0 +thr c7ac9880 , status 1 +connecting thr c7ac9880 , thread 6419 , mypolls 0 +myconn 0 connecting thr c7ac9880 , thread 6419 , mypolls 0 +thr c7ac9a00 , status 1 +connecting thr c7ac9a00 , thread 6420 , mypolls 0 +myconn 0 connecting thr c7ac9a00 , thread 6420 , mypolls 0 +thr c7ac9b80 , status 1 +connecting thr c7ac9b80 , thread 6421 , mypolls 0 +myconn 0 connecting thr c7ac9b80 , thread 6421 , mypolls 0 +thr c7ac9d00 , status 1 +connecting thr c7ac9d00 , thread 6422 , mypolls 0 +myconn 0 connecting thr c7ac9d00 , thread 6422 , mypolls 0 +thr c7ac9e80 , status 1 +connecting thr c7ac9e80 , thread 6423 , mypolls 0 +myconn 0 connecting thr c7ac9e80 , thread 6423 , mypolls 0 +thr c7929000 , status 1 +connecting thr c7929000 , thread 6424 , mypolls 0 +myconn 0 connecting thr c7929000 , thread 6424 , mypolls 0 +thr c7929180 , status 1 +connecting thr c7929180 , thread 6425 , mypolls 0 +myconn 0 connecting thr c7929180 , thread 6425 , mypolls 0 +thr c7929300 , status 1 +connecting thr c7929300 , thread 6426 , mypolls 0 +myconn 0 connecting thr c7929300 , thread 6426 , mypolls 0 +thr c7929480 , status 1 +connecting thr c7929480 , thread 6427 , mypolls 0 +myconn 0 connecting thr c7929480 , thread 6427 , mypolls 0 +thr c7929600 , status 1 +connecting thr c7929600 , thread 6428 , mypolls 0 +myconn 0 connecting thr c7929600 , thread 6428 , mypolls 0 +thr c7929780 , status 1 +connecting thr c7929780 , thread 6429 , mypolls 0 +myconn 0 connecting thr c7929780 , thread 6429 , mypolls 0 +thr c7929900 , status 1 +connecting thr c7929900 , thread 6430 , mypolls 0 +myconn 0 connecting thr c7929900 , thread 6430 , mypolls 0 +thr c7929a80 , status 1 +connecting thr c7929a80 , thread 6431 , mypolls 0 +myconn 0 connecting thr c7929a80 , thread 6431 , mypolls 0 +thr c7929c00 , status 1 +connecting thr c7929c00 , thread 6432 , mypolls 0 +myconn 0 connecting thr c7929c00 , thread 6432 , mypolls 0 +thr c7929d80 , status 1 +connecting thr c7929d80 , thread 6433 , mypolls 0 +myconn 0 connecting thr c7929d80 , thread 6433 , mypolls 0 +thr c7929f00 , status 1 +connecting thr c7929f00 , thread 6434 , mypolls 0 +myconn 0 connecting thr c7929f00 , thread 6434 , mypolls 0 +thr c792a080 , status 1 +connecting thr c792a080 , thread 6435 , mypolls 0 +myconn 0 connecting thr c792a080 , thread 6435 , mypolls 0 +thr c792a200 , status 1 +connecting thr c792a200 , thread 6436 , mypolls 0 +myconn 0 connecting thr c792a200 , thread 6436 , mypolls 0 +thr c792a380 , status 1 +connecting thr c792a380 , thread 6437 , mypolls 0 +myconn 0 connecting thr c792a380 , thread 6437 , mypolls 0 +thr c792a500 , status 1 +connecting thr c792a500 , thread 6438 , mypolls 0 +myconn 0 connecting thr c792a500 , thread 6438 , mypolls 0 +thr c792a680 , status 1 +connecting thr c792a680 , thread 6439 , mypolls 0 +myconn 0 connecting thr c792a680 , thread 6439 , mypolls 0 +thr c792a800 , status 1 +connecting thr c792a800 , thread 6440 , mypolls 0 +myconn 0 connecting thr c792a800 , thread 6440 , mypolls 0 +thr c792a980 , status 1 +connecting thr c792a980 , thread 6441 , mypolls 0 +myconn 0 connecting thr c792a980 , thread 6441 , mypolls 0 +thr c792ab00 , status 1 +connecting thr c792ab00 , thread 6442 , mypolls 0 +myconn 0 connecting thr c792ab00 , thread 6442 , mypolls 0 +thr c792ac80 , status 1 +connecting thr c792ac80 , thread 6443 , mypolls 0 +myconn 0 connecting thr c792ac80 , thread 6443 , mypolls 0 +thr c792ae00 , status 1 +connecting thr c792ae00 , thread 6444 , mypolls 0 +myconn 0 connecting thr c792ae00 , thread 6444 , mypolls 0 +thr c792af80 , status 1 +connecting thr c792af80 , thread 6445 , mypolls 0 +myconn 0 connecting thr c792af80 , thread 6445 , mypolls 0 +thr c792b100 , status 1 +connecting thr c792b100 , thread 6446 , mypolls 0 +myconn 0 connecting thr c792b100 , thread 6446 , mypolls 0 +thr c792b280 , status 1 +connecting thr c792b280 , thread 6447 , mypolls 0 +myconn 0 connecting thr c792b280 , thread 6447 , mypolls 0 +thr c792b400 , status 1 +connecting thr c792b400 , thread 6448 , mypolls 0 +myconn 0 connecting thr c792b400 , thread 6448 , mypolls 0 +thr c792b580 , status 1 +connecting thr c792b580 , thread 6449 , mypolls 0 +myconn 0 connecting thr c792b580 , thread 6449 , mypolls 0 +thr c792b700 , status 1 +connecting thr c792b700 , thread 6450 , mypolls 0 +myconn 0 connecting thr c792b700 , thread 6450 , mypolls 0 +thr c792b880 , status 1 +connecting thr c792b880 , thread 6451 , mypolls 0 +myconn 0 connecting thr c792b880 , thread 6451 , mypolls 0 +thr c792ba00 , status 1 +connecting thr c792ba00 , thread 6452 , mypolls 0 +myconn 0 connecting thr c792ba00 , thread 6452 , mypolls 0 +thr c792bb80 , status 1 +connecting thr c792bb80 , thread 6453 , mypolls 0 +myconn 0 connecting thr c792bb80 , thread 6453 , mypolls 0 +thr c792bd00 , status 1 +connecting thr c792bd00 , thread 6454 , mypolls 0 +myconn 0 connecting thr c792bd00 , thread 6454 , mypolls 0 +thr c792be80 , status 1 +connecting thr c792be80 , thread 6455 , mypolls 0 +myconn 0 connecting thr c792be80 , thread 6455 , mypolls 0 +thr c778c000 , status 1 +connecting thr c778c000 , thread 6456 , mypolls 0 +myconn 0 connecting thr c778c000 , thread 6456 , mypolls 0 +thr c778c180 , status 1 +connecting thr c778c180 , thread 6457 , mypolls 0 +myconn 0 connecting thr c778c180 , thread 6457 , mypolls 0 +thr c778c300 , status 1 +connecting thr c778c300 , thread 6458 , mypolls 0 +myconn 0 connecting thr c778c300 , thread 6458 , mypolls 0 +thr c778c480 , status 1 +connecting thr c778c480 , thread 6459 , mypolls 0 +myconn 0 connecting thr c778c480 , thread 6459 , mypolls 0 +thr c778c600 , status 1 +connecting thr c778c600 , thread 6460 , mypolls 0 +myconn 0 connecting thr c778c600 , thread 6460 , mypolls 0 +thr c778c780 , status 1 +connecting thr c778c780 , thread 6461 , mypolls 0 +myconn 0 connecting thr c778c780 , thread 6461 , mypolls 0 +thr c778c900 , status 1 +connecting thr c778c900 , thread 6462 , mypolls 0 +myconn 0 connecting thr c778c900 , thread 6462 , mypolls 0 +thr c778ca80 , status 1 +connecting thr c778ca80 , thread 6463 , mypolls 0 +myconn 0 connecting thr c778ca80 , thread 6463 , mypolls 0 +thr c778cc00 , status 1 +connecting thr c778cc00 , thread 6464 , mypolls 0 +myconn 0 connecting thr c778cc00 , thread 6464 , mypolls 0 +thr c778cd80 , status 1 +connecting thr c778cd80 , thread 6465 , mypolls 0 +myconn 0 connecting thr c778cd80 , thread 6465 , mypolls 0 +thr c778cf00 , status 1 +connecting thr c778cf00 , thread 6466 , mypolls 0 +myconn 0 connecting thr c778cf00 , thread 6466 , mypolls 0 +thr c778d080 , status 1 +connecting thr c778d080 , thread 6467 , mypolls 0 +myconn 0 connecting thr c778d080 , thread 6467 , mypolls 0 +thr c778d200 , status 1 +connecting thr c778d200 , thread 6468 , mypolls 0 +myconn 0 connecting thr c778d200 , thread 6468 , mypolls 0 +thr c778d380 , status 1 +connecting thr c778d380 , thread 6469 , mypolls 0 +myconn 0 connecting thr c778d380 , thread 6469 , mypolls 0 +thr c778d500 , status 1 +connecting thr c778d500 , thread 6470 , mypolls 0 +myconn 0 connecting thr c778d500 , thread 6470 , mypolls 0 +thr c778d680 , status 1 +connecting thr c778d680 , thread 6471 , mypolls 0 +myconn 0 connecting thr c778d680 , thread 6471 , mypolls 0 +thr c778d800 , status 1 +connecting thr c778d800 , thread 6472 , mypolls 0 +myconn 0 connecting thr c778d800 , thread 6472 , mypolls 0 +thr c778d980 , status 1 +connecting thr c778d980 , thread 6473 , mypolls 0 +myconn 0 connecting thr c778d980 , thread 6473 , mypolls 0 +thr c778db00 , status 1 +connecting thr c778db00 , thread 6474 , mypolls 0 +myconn 0 connecting thr c778db00 , thread 6474 , mypolls 0 +thr c778dc80 , status 1 +connecting thr c778dc80 , thread 6475 , mypolls 0 +myconn 0 connecting thr c778dc80 , thread 6475 , mypolls 0 +thr c778de00 , status 1 +connecting thr c778de00 , thread 6476 , mypolls 0 +myconn 0 connecting thr c778de00 , thread 6476 , mypolls 0 +thr c778df80 , status 1 +connecting thr c778df80 , thread 6477 , mypolls 0 +myconn 0 connecting thr c778df80 , thread 6477 , mypolls 0 +thr c778e100 , status 1 +connecting thr c778e100 , thread 6478 , mypolls 0 +myconn 0 connecting thr c778e100 , thread 6478 , mypolls 0 +thr c778e280 , status 1 +connecting thr c778e280 , thread 6479 , mypolls 0 +myconn 0 connecting thr c778e280 , thread 6479 , mypolls 0 +thr c778e400 , status 1 +connecting thr c778e400 , thread 6480 , mypolls 0 +myconn 0 connecting thr c778e400 , thread 6480 , mypolls 0 +thr c778e580 , status 1 +connecting thr c778e580 , thread 6481 , mypolls 0 +myconn 0 connecting thr c778e580 , thread 6481 , mypolls 0 +thr c778e700 , status 1 +connecting thr c778e700 , thread 6482 , mypolls 0 +myconn 0 connecting thr c778e700 , thread 6482 , mypolls 0 +thr c778e880 , status 1 +connecting thr c778e880 , thread 6483 , mypolls 0 +myconn 0 connecting thr c778e880 , thread 6483 , mypolls 0 +thr c778ea00 , status 1 +connecting thr c778ea00 , thread 6484 , mypolls 0 +myconn 0 connecting thr c778ea00 , thread 6484 , mypolls 0 +thr c778eb80 , status 1 +connecting thr c778eb80 , thread 6485 , mypolls 0 +myconn 0 connecting thr c778eb80 , thread 6485 , mypolls 0 +thr c778ed00 , status 1 +connecting thr c778ed00 , thread 6486 , mypolls 0 +myconn 0 connecting thr c778ed00 , thread 6486 , mypolls 0 +thr c778ee80 , status 1 +connecting thr c778ee80 , thread 6487 , mypolls 0 +myconn 0 connecting thr c778ee80 , thread 6487 , mypolls 0 +thr c75ee000 , status 1 +connecting thr c75ee000 , thread 6488 , mypolls 0 +myconn 0 connecting thr c75ee000 , thread 6488 , mypolls 0 +thr c75ee180 , status 1 +connecting thr c75ee180 , thread 6489 , mypolls 0 +myconn 0 connecting thr c75ee180 , thread 6489 , mypolls 0 +thr c75ee300 , status 1 +connecting thr c75ee300 , thread 6490 , mypolls 0 +myconn 0 connecting thr c75ee300 , thread 6490 , mypolls 0 +thr c75ee480 , status 1 +connecting thr c75ee480 , thread 6491 , mypolls 0 +myconn 0 connecting thr c75ee480 , thread 6491 , mypolls 0 +thr c75ee600 , status 1 +connecting thr c75ee600 , thread 6492 , mypolls 0 +myconn 0 connecting thr c75ee600 , thread 6492 , mypolls 0 +thr c75ee780 , status 1 +connecting thr c75ee780 , thread 6493 , mypolls 0 +myconn 0 connecting thr c75ee780 , thread 6493 , mypolls 0 +thr c75ee900 , status 1 +connecting thr c75ee900 , thread 6494 , mypolls 0 +myconn 0 connecting thr c75ee900 , thread 6494 , mypolls 0 +thr c75eea80 , status 1 +connecting thr c75eea80 , thread 6495 , mypolls 0 +myconn 0 connecting thr c75eea80 , thread 6495 , mypolls 0 +thr c75eec00 , status 1 +connecting thr c75eec00 , thread 6496 , mypolls 0 +myconn 0 connecting thr c75eec00 , thread 6496 , mypolls 0 +thr c75eed80 , status 1 +connecting thr c75eed80 , thread 6497 , mypolls 0 +myconn 0 connecting thr c75eed80 , thread 6497 , mypolls 0 +thr c75eef00 , status 1 +connecting thr c75eef00 , thread 6498 , mypolls 0 +myconn 0 connecting thr c75eef00 , thread 6498 , mypolls 0 +thr c75ef080 , status 1 +connecting thr c75ef080 , thread 6499 , mypolls 0 +myconn 0 connecting thr c75ef080 , thread 6499 , mypolls 0 +thr c75ef200 , status 1 +connecting thr c75ef200 , thread 6500 , mypolls 0 +myconn 0 connecting thr c75ef200 , thread 6500 , mypolls 0 +thr c75ef380 , status 1 +connecting thr c75ef380 , thread 6501 , mypolls 0 +myconn 0 connecting thr c75ef380 , thread 6501 , mypolls 0 +thr c75ef500 , status 1 +connecting thr c75ef500 , thread 6502 , mypolls 0 +myconn 0 connecting thr c75ef500 , thread 6502 , mypolls 0 +thr c75ef680 , status 1 +connecting thr c75ef680 , thread 6503 , mypolls 0 +myconn 0 connecting thr c75ef680 , thread 6503 , mypolls 0 +thr c75ef800 , status 1 +connecting thr c75ef800 , thread 6504 , mypolls 0 +myconn 0 connecting thr c75ef800 , thread 6504 , mypolls 0 +thr c75ef980 , status 1 +connecting thr c75ef980 , thread 6505 , mypolls 0 +myconn 0 connecting thr c75ef980 , thread 6505 , mypolls 0 +thr c75efb00 , status 1 +connecting thr c75efb00 , thread 6506 , mypolls 0 +myconn 0 connecting thr c75efb00 , thread 6506 , mypolls 0 +thr c75efc80 , status 1 +connecting thr c75efc80 , thread 6507 , mypolls 0 +myconn 0 connecting thr c75efc80 , thread 6507 , mypolls 0 +thr c75efe00 , status 1 +connecting thr c75efe00 , thread 6508 , mypolls 0 +myconn 0 connecting thr c75efe00 , thread 6508 , mypolls 0 +thr c75eff80 , status 1 +connecting thr c75eff80 , thread 6509 , mypolls 0 +myconn 0 connecting thr c75eff80 , thread 6509 , mypolls 0 +thr c75f0100 , status 1 +connecting thr c75f0100 , thread 6510 , mypolls 0 +myconn 0 connecting thr c75f0100 , thread 6510 , mypolls 0 +thr c75f0280 , status 1 +connecting thr c75f0280 , thread 6511 , mypolls 0 +myconn 0 connecting thr c75f0280 , thread 6511 , mypolls 0 +thr c75f0400 , status 1 +connecting thr c75f0400 , thread 6512 , mypolls 0 +myconn 0 connecting thr c75f0400 , thread 6512 , mypolls 0 +thr c75f0580 , status 1 +connecting thr c75f0580 , thread 6513 , mypolls 0 +myconn 0 connecting thr c75f0580 , thread 6513 , mypolls 0 +thr c75f0700 , status 1 +connecting thr c75f0700 , thread 6514 , mypolls 0 +myconn 0 connecting thr c75f0700 , thread 6514 , mypolls 0 +thr c75f0880 , status 1 +connecting thr c75f0880 , thread 6515 , mypolls 0 +myconn 0 connecting thr c75f0880 , thread 6515 , mypolls 0 +thr c75f0a00 , status 1 +connecting thr c75f0a00 , thread 6516 , mypolls 0 +myconn 0 connecting thr c75f0a00 , thread 6516 , mypolls 0 +thr c75f0b80 , status 1 +connecting thr c75f0b80 , thread 6517 , mypolls 0 +myconn 0 connecting thr c75f0b80 , thread 6517 , mypolls 0 +thr c75f0d00 , status 1 +connecting thr c75f0d00 , thread 6518 , mypolls 0 +myconn 0 connecting thr c75f0d00 , thread 6518 , mypolls 0 +thr c75f0e80 , status 1 +connecting thr c75f0e80 , thread 6519 , mypolls 0 +myconn 0 connecting thr c75f0e80 , thread 6519 , mypolls 0 +thr c73fd000 , status 1 +connecting thr c73fd000 , thread 6520 , mypolls 0 +myconn 0 connecting thr c73fd000 , thread 6520 , mypolls 0 +thr c73fd180 , status 1 +connecting thr c73fd180 , thread 6521 , mypolls 0 +myconn 0 connecting thr c73fd180 , thread 6521 , mypolls 0 +thr c73fd300 , status 1 +connecting thr c73fd300 , thread 6522 , mypolls 0 +myconn 0 connecting thr c73fd300 , thread 6522 , mypolls 0 +thr c73fd480 , status 1 +connecting thr c73fd480 , thread 6523 , mypolls 0 +myconn 0 connecting thr c73fd480 , thread 6523 , mypolls 0 +thr c73fd600 , status 1 +connecting thr c73fd600 , thread 6524 , mypolls 0 +myconn 0 connecting thr c73fd600 , thread 6524 , mypolls 0 +thr c73fd780 , status 1 +connecting thr c73fd780 , thread 6525 , mypolls 0 +myconn 0 connecting thr c73fd780 , thread 6525 , mypolls 0 +thr c73fd900 , status 1 +connecting thr c73fd900 , thread 6526 , mypolls 0 +myconn 0 connecting thr c73fd900 , thread 6526 , mypolls 0 +thr c73fda80 , status 1 +connecting thr c73fda80 , thread 6527 , mypolls 0 +myconn 0 connecting thr c73fda80 , thread 6527 , mypolls 0 +thr c73fdc00 , status 1 +connecting thr c73fdc00 , thread 6528 , mypolls 0 +myconn 0 connecting thr c73fdc00 , thread 6528 , mypolls 0 +thr c73fdd80 , status 1 +connecting thr c73fdd80 , thread 6529 , mypolls 0 +myconn 0 connecting thr c73fdd80 , thread 6529 , mypolls 0 +thr c73fdf00 , status 1 +connecting thr c73fdf00 , thread 6530 , mypolls 0 +myconn 0 connecting thr c73fdf00 , thread 6530 , mypolls 0 +thr c73fe080 , status 1 +connecting thr c73fe080 , thread 6531 , mypolls 0 +myconn 0 connecting thr c73fe080 , thread 6531 , mypolls 0 +thr c73fe200 , status 1 +connecting thr c73fe200 , thread 6532 , mypolls 0 +myconn 0 connecting thr c73fe200 , thread 6532 , mypolls 0 +thr c73fe380 , status 1 +connecting thr c73fe380 , thread 6533 , mypolls 0 +myconn 0 connecting thr c73fe380 , thread 6533 , mypolls 0 +thr c73fe500 , status 1 +connecting thr c73fe500 , thread 6534 , mypolls 0 +myconn 0 connecting thr c73fe500 , thread 6534 , mypolls 0 +thr c73fe680 , status 1 +connecting thr c73fe680 , thread 6535 , mypolls 0 +myconn 0 connecting thr c73fe680 , thread 6535 , mypolls 0 +thr c73fe800 , status 1 +connecting thr c73fe800 , thread 6536 , mypolls 0 +myconn 0 connecting thr c73fe800 , thread 6536 , mypolls 0 +thr c73fe980 , status 1 +connecting thr c73fe980 , thread 6537 , mypolls 0 +myconn 0 connecting thr c73fe980 , thread 6537 , mypolls 0 +thr c73feb00 , status 1 +connecting thr c73feb00 , thread 6538 , mypolls 0 +myconn 0 connecting thr c73feb00 , thread 6538 , mypolls 0 +thr c73fec80 , status 1 +connecting thr c73fec80 , thread 6539 , mypolls 0 +myconn 0 connecting thr c73fec80 , thread 6539 , mypolls 0 +thr c73fee00 , status 1 +connecting thr c73fee00 , thread 6540 , mypolls 0 +myconn 0 connecting thr c73fee00 , thread 6540 , mypolls 0 +thr c73fef80 , status 1 +connecting thr c73fef80 , thread 6541 , mypolls 0 +myconn 0 connecting thr c73fef80 , thread 6541 , mypolls 0 +thr c73ff100 , status 1 +connecting thr c73ff100 , thread 6542 , mypolls 0 +myconn 0 connecting thr c73ff100 , thread 6542 , mypolls 0 +thr c73ff280 , status 1 +connecting thr c73ff280 , thread 6543 , mypolls 0 +myconn 0 connecting thr c73ff280 , thread 6543 , mypolls 0 +thr c73ff400 , status 1 +connecting thr c73ff400 , thread 6544 , mypolls 0 +myconn 0 connecting thr c73ff400 , thread 6544 , mypolls 0 +thr c73ff580 , status 1 +connecting thr c73ff580 , thread 6545 , mypolls 0 +myconn 0 connecting thr c73ff580 , thread 6545 , mypolls 0 +thr c73ff700 , status 1 +connecting thr c73ff700 , thread 6546 , mypolls 0 +myconn 0 connecting thr c73ff700 , thread 6546 , mypolls 0 +thr c73ff880 , status 1 +connecting thr c73ff880 , thread 6547 , mypolls 0 +myconn 0 connecting thr c73ff880 , thread 6547 , mypolls 0 +thr c73ffa00 , status 1 +connecting thr c73ffa00 , thread 6548 , mypolls 0 +myconn 0 connecting thr c73ffa00 , thread 6548 , mypolls 0 +thr c73ffb80 , status 1 +connecting thr c73ffb80 , thread 6549 , mypolls 0 +myconn 0 connecting thr c73ffb80 , thread 6549 , mypolls 0 +thr c73ffd00 , status 1 +connecting thr c73ffd00 , thread 6550 , mypolls 0 +myconn 0 connecting thr c73ffd00 , thread 6550 , mypolls 0 +thr c73ffe80 , status 1 +connecting thr c73ffe80 , thread 6551 , mypolls 0 +myconn 0 connecting thr c73ffe80 , thread 6551 , mypolls 0 +thr c6cbf000 , status 1 +connecting thr c6cbf000 , thread 6552 , mypolls 0 +myconn 0 connecting thr c6cbf000 , thread 6552 , mypolls 0 +thr c6cbf180 , status 1 +connecting thr c6cbf180 , thread 6553 , mypolls 0 +myconn 0 connecting thr c6cbf180 , thread 6553 , mypolls 0 +thr c6cbf300 , status 1 +connecting thr c6cbf300 , thread 6554 , mypolls 0 +myconn 0 connecting thr c6cbf300 , thread 6554 , mypolls 0 +thr c6cbf480 , status 1 +connecting thr c6cbf480 , thread 6555 , mypolls 0 +myconn 0 connecting thr c6cbf480 , thread 6555 , mypolls 0 +thr c6cbf600 , status 1 +connecting thr c6cbf600 , thread 6556 , mypolls 0 +myconn 0 connecting thr c6cbf600 , thread 6556 , mypolls 0 +thr c6cbf780 , status 1 +connecting thr c6cbf780 , thread 6557 , mypolls 0 +myconn 0 connecting thr c6cbf780 , thread 6557 , mypolls 0 +thr c6cbf900 , status 1 +connecting thr c6cbf900 , thread 6558 , mypolls 0 +myconn 0 connecting thr c6cbf900 , thread 6558 , mypolls 0 +thr c6cbfa80 , status 1 +connecting thr c6cbfa80 , thread 6559 , mypolls 0 +myconn 0 connecting thr c6cbfa80 , thread 6559 , mypolls 0 +thr c6cbfc00 , status 1 +connecting thr c6cbfc00 , thread 6560 , mypolls 0 +myconn 0 connecting thr c6cbfc00 , thread 6560 , mypolls 0 +thr c6cbfd80 , status 1 +connecting thr c6cbfd80 , thread 6561 , mypolls 0 +myconn 0 connecting thr c6cbfd80 , thread 6561 , mypolls 0 +thr c6cbff00 , status 1 +connecting thr c6cbff00 , thread 6562 , mypolls 0 +myconn 0 connecting thr c6cbff00 , thread 6562 , mypolls 0 +thr c6cc0080 , status 1 +connecting thr c6cc0080 , thread 6563 , mypolls 0 +myconn 0 connecting thr c6cc0080 , thread 6563 , mypolls 0 +thr c6cc0200 , status 1 +connecting thr c6cc0200 , thread 6564 , mypolls 0 +myconn 0 connecting thr c6cc0200 , thread 6564 , mypolls 0 +thr c6cc0380 , status 1 +connecting thr c6cc0380 , thread 6565 , mypolls 0 +myconn 0 connecting thr c6cc0380 , thread 6565 , mypolls 0 +thr c6cc0500 , status 1 +connecting thr c6cc0500 , thread 6566 , mypolls 0 +myconn 0 connecting thr c6cc0500 , thread 6566 , mypolls 0 +thr c6cc0680 , status 1 +connecting thr c6cc0680 , thread 6567 , mypolls 0 +myconn 0 connecting thr c6cc0680 , thread 6567 , mypolls 0 +thr c6cc0800 , status 1 +connecting thr c6cc0800 , thread 6568 , mypolls 0 +myconn 0 connecting thr c6cc0800 , thread 6568 , mypolls 0 +thr c6cc0980 , status 1 +connecting thr c6cc0980 , thread 6569 , mypolls 0 +myconn 0 connecting thr c6cc0980 , thread 6569 , mypolls 0 +thr c6cc0b00 , status 1 +connecting thr c6cc0b00 , thread 6570 , mypolls 0 +myconn 0 connecting thr c6cc0b00 , thread 6570 , mypolls 0 +thr c6cc0c80 , status 1 +connecting thr c6cc0c80 , thread 6571 , mypolls 0 +myconn 0 connecting thr c6cc0c80 , thread 6571 , mypolls 0 +thr c6cc0e00 , status 1 +connecting thr c6cc0e00 , thread 6572 , mypolls 0 +myconn 0 connecting thr c6cc0e00 , thread 6572 , mypolls 0 +thr c6cc0f80 , status 1 +connecting thr c6cc0f80 , thread 6573 , mypolls 0 +myconn 0 connecting thr c6cc0f80 , thread 6573 , mypolls 0 +thr c6cc1100 , status 1 +connecting thr c6cc1100 , thread 6574 , mypolls 0 +myconn 0 connecting thr c6cc1100 , thread 6574 , mypolls 0 +thr c6cc1280 , status 1 +connecting thr c6cc1280 , thread 6575 , mypolls 0 +myconn 0 connecting thr c6cc1280 , thread 6575 , mypolls 0 +thr c6cc1400 , status 1 +connecting thr c6cc1400 , thread 6576 , mypolls 0 +myconn 0 connecting thr c6cc1400 , thread 6576 , mypolls 0 +thr c6cc1580 , status 1 +connecting thr c6cc1580 , thread 6577 , mypolls 0 +myconn 0 connecting thr c6cc1580 , thread 6577 , mypolls 0 +thr c6cc1700 , status 1 +connecting thr c6cc1700 , thread 6578 , mypolls 0 +myconn 0 connecting thr c6cc1700 , thread 6578 , mypolls 0 +thr c6cc1880 , status 1 +connecting thr c6cc1880 , thread 6579 , mypolls 0 +myconn 0 connecting thr c6cc1880 , thread 6579 , mypolls 0 +thr c6cc1a00 , status 1 +connecting thr c6cc1a00 , thread 6580 , mypolls 0 +myconn 0 connecting thr c6cc1a00 , thread 6580 , mypolls 0 +thr c6cc1b80 , status 1 +connecting thr c6cc1b80 , thread 6581 , mypolls 0 +myconn 0 connecting thr c6cc1b80 , thread 6581 , mypolls 0 +thr c6cc1d00 , status 1 +connecting thr c6cc1d00 , thread 6582 , mypolls 0 +myconn 0 connecting thr c6cc1d00 , thread 6582 , mypolls 0 +thr c6cc1e80 , status 1 +connecting thr c6cc1e80 , thread 6583 , mypolls 0 +myconn 0 connecting thr c6cc1e80 , thread 6583 , mypolls 0 +thr c6b20000 , status 1 +connecting thr c6b20000 , thread 6584 , mypolls 0 +myconn 0 connecting thr c6b20000 , thread 6584 , mypolls 0 +thr c6b20180 , status 1 +connecting thr c6b20180 , thread 6585 , mypolls 0 +myconn 0 connecting thr c6b20180 , thread 6585 , mypolls 0 +thr c6b20300 , status 1 +connecting thr c6b20300 , thread 6586 , mypolls 0 +myconn 0 connecting thr c6b20300 , thread 6586 , mypolls 0 +thr c6b20480 , status 1 +connecting thr c6b20480 , thread 6587 , mypolls 0 +myconn 0 connecting thr c6b20480 , thread 6587 , mypolls 0 +thr c6b20600 , status 1 +connecting thr c6b20600 , thread 6588 , mypolls 0 +myconn 0 connecting thr c6b20600 , thread 6588 , mypolls 0 +thr c6b20780 , status 1 +connecting thr c6b20780 , thread 6589 , mypolls 0 +myconn 0 connecting thr c6b20780 , thread 6589 , mypolls 0 +thr c6b20900 , status 1 +connecting thr c6b20900 , thread 6590 , mypolls 0 +myconn 0 connecting thr c6b20900 , thread 6590 , mypolls 0 +thr c6b20a80 , status 1 +connecting thr c6b20a80 , thread 6591 , mypolls 0 +myconn 0 connecting thr c6b20a80 , thread 6591 , mypolls 0 +thr c6b20c00 , status 1 +connecting thr c6b20c00 , thread 6592 , mypolls 0 +myconn 0 connecting thr c6b20c00 , thread 6592 , mypolls 0 +thr c6b20d80 , status 1 +connecting thr c6b20d80 , thread 6593 , mypolls 0 +myconn 0 connecting thr c6b20d80 , thread 6593 , mypolls 0 +thr c6b20f00 , status 1 +connecting thr c6b20f00 , thread 6594 , mypolls 0 +myconn 0 connecting thr c6b20f00 , thread 6594 , mypolls 0 +thr c6b21080 , status 1 +connecting thr c6b21080 , thread 6595 , mypolls 0 +myconn 0 connecting thr c6b21080 , thread 6595 , mypolls 0 +thr c6b21200 , status 1 +connecting thr c6b21200 , thread 6596 , mypolls 0 +myconn 0 connecting thr c6b21200 , thread 6596 , mypolls 0 +thr c6b21380 , status 1 +connecting thr c6b21380 , thread 6597 , mypolls 0 +myconn 0 connecting thr c6b21380 , thread 6597 , mypolls 0 +thr c6b21500 , status 1 +connecting thr c6b21500 , thread 6598 , mypolls 0 +myconn 0 connecting thr c6b21500 , thread 6598 , mypolls 0 +thr c6b21680 , status 1 +connecting thr c6b21680 , thread 6599 , mypolls 0 +myconn 0 connecting thr c6b21680 , thread 6599 , mypolls 0 +thr c6b21800 , status 1 +connecting thr c6b21800 , thread 6600 , mypolls 0 +myconn 0 connecting thr c6b21800 , thread 6600 , mypolls 0 +thr c6b21980 , status 1 +connecting thr c6b21980 , thread 6601 , mypolls 0 +myconn 0 connecting thr c6b21980 , thread 6601 , mypolls 0 +thr c6b21b00 , status 1 +connecting thr c6b21b00 , thread 6602 , mypolls 0 +myconn 0 connecting thr c6b21b00 , thread 6602 , mypolls 0 +thr c6b21c80 , status 1 +connecting thr c6b21c80 , thread 6603 , mypolls 0 +myconn 0 connecting thr c6b21c80 , thread 6603 , mypolls 0 +thr c6b21e00 , status 1 +connecting thr c6b21e00 , thread 6604 , mypolls 0 +myconn 0 connecting thr c6b21e00 , thread 6604 , mypolls 0 +thr c6b21f80 , status 1 +connecting thr c6b21f80 , thread 6605 , mypolls 0 +myconn 0 connecting thr c6b21f80 , thread 6605 , mypolls 0 +thr c6b22100 , status 1 +connecting thr c6b22100 , thread 6606 , mypolls 0 +myconn 0 connecting thr c6b22100 , thread 6606 , mypolls 0 +thr c6b22280 , status 1 +connecting thr c6b22280 , thread 6607 , mypolls 0 +myconn 0 connecting thr c6b22280 , thread 6607 , mypolls 0 +thr c6b22400 , status 1 +connecting thr c6b22400 , thread 6608 , mypolls 0 +myconn 0 connecting thr c6b22400 , thread 6608 , mypolls 0 +thr c6b22580 , status 1 +connecting thr c6b22580 , thread 6609 , mypolls 0 +myconn 0 connecting thr c6b22580 , thread 6609 , mypolls 0 +thr c6b22700 , status 1 +connecting thr c6b22700 , thread 6610 , mypolls 0 +myconn 0 connecting thr c6b22700 , thread 6610 , mypolls 0 +thr c6b22880 , status 1 +connecting thr c6b22880 , thread 6611 , mypolls 0 +myconn 0 connecting thr c6b22880 , thread 6611 , mypolls 0 +thr c6b22a00 , status 1 +connecting thr c6b22a00 , thread 6612 , mypolls 0 +myconn 0 connecting thr c6b22a00 , thread 6612 , mypolls 0 +thr c6b22b80 , status 1 +connecting thr c6b22b80 , thread 6613 , mypolls 0 +myconn 0 connecting thr c6b22b80 , thread 6613 , mypolls 0 +thr c6b22d00 , status 1 +connecting thr c6b22d00 , thread 6614 , mypolls 0 +myconn 0 connecting thr c6b22d00 , thread 6614 , mypolls 0 +thr c6b22e80 , status 1 +connecting thr c6b22e80 , thread 6615 , mypolls 0 +myconn 0 connecting thr c6b22e80 , thread 6615 , mypolls 0 +thr c6984000 , status 1 +connecting thr c6984000 , thread 6616 , mypolls 0 +myconn 0 connecting thr c6984000 , thread 6616 , mypolls 0 +thr c6984180 , status 1 +connecting thr c6984180 , thread 6617 , mypolls 0 +myconn 0 connecting thr c6984180 , thread 6617 , mypolls 0 +thr c6984300 , status 1 +connecting thr c6984300 , thread 6618 , mypolls 0 +myconn 0 connecting thr c6984300 , thread 6618 , mypolls 0 +thr c6984480 , status 1 +connecting thr c6984480 , thread 6619 , mypolls 0 +myconn 0 connecting thr c6984480 , thread 6619 , mypolls 0 +thr c6984600 , status 1 +connecting thr c6984600 , thread 6620 , mypolls 0 +myconn 0 connecting thr c6984600 , thread 6620 , mypolls 0 +thr c6984780 , status 1 +connecting thr c6984780 , thread 6621 , mypolls 0 +myconn 0 connecting thr c6984780 , thread 6621 , mypolls 0 +thr c6984900 , status 1 +connecting thr c6984900 , thread 6622 , mypolls 0 +myconn 0 connecting thr c6984900 , thread 6622 , mypolls 0 +thr c6984a80 , status 1 +connecting thr c6984a80 , thread 6623 , mypolls 0 +myconn 0 connecting thr c6984a80 , thread 6623 , mypolls 0 +thr c6984c00 , status 1 +connecting thr c6984c00 , thread 6624 , mypolls 0 +myconn 0 connecting thr c6984c00 , thread 6624 , mypolls 0 +thr c6984d80 , status 1 +connecting thr c6984d80 , thread 6625 , mypolls 0 +myconn 0 connecting thr c6984d80 , thread 6625 , mypolls 0 +thr c6984f00 , status 1 +connecting thr c6984f00 , thread 6626 , mypolls 0 +myconn 0 connecting thr c6984f00 , thread 6626 , mypolls 0 +thr c6985080 , status 1 +connecting thr c6985080 , thread 6627 , mypolls 0 +myconn 0 connecting thr c6985080 , thread 6627 , mypolls 0 +thr c6985200 , status 1 +connecting thr c6985200 , thread 6628 , mypolls 0 +myconn 0 connecting thr c6985200 , thread 6628 , mypolls 0 +thr c6985380 , status 1 +connecting thr c6985380 , thread 6629 , mypolls 0 +myconn 0 connecting thr c6985380 , thread 6629 , mypolls 0 +thr c6985500 , status 1 +connecting thr c6985500 , thread 6630 , mypolls 0 +myconn 0 connecting thr c6985500 , thread 6630 , mypolls 0 +thr c6985680 , status 1 +connecting thr c6985680 , thread 6631 , mypolls 0 +myconn 0 connecting thr c6985680 , thread 6631 , mypolls 0 +thr c6985800 , status 1 +connecting thr c6985800 , thread 6632 , mypolls 0 +myconn 0 connecting thr c6985800 , thread 6632 , mypolls 0 +thr c6985980 , status 1 +connecting thr c6985980 , thread 6633 , mypolls 0 +myconn 0 connecting thr c6985980 , thread 6633 , mypolls 0 +thr c6985b00 , status 1 +connecting thr c6985b00 , thread 6634 , mypolls 0 +myconn 0 connecting thr c6985b00 , thread 6634 , mypolls 0 +thr c6985c80 , status 1 +connecting thr c6985c80 , thread 6635 , mypolls 0 +myconn 0 connecting thr c6985c80 , thread 6635 , mypolls 0 +thr c6985e00 , status 1 +connecting thr c6985e00 , thread 6636 , mypolls 0 +myconn 0 connecting thr c6985e00 , thread 6636 , mypolls 0 +thr c6985f80 , status 1 +connecting thr c6985f80 , thread 6637 , mypolls 0 +myconn 0 connecting thr c6985f80 , thread 6637 , mypolls 0 +thr c6986100 , status 1 +connecting thr c6986100 , thread 6638 , mypolls 0 +myconn 0 connecting thr c6986100 , thread 6638 , mypolls 0 +thr c6986280 , status 1 +connecting thr c6986280 , thread 6639 , mypolls 0 +myconn 0 connecting thr c6986280 , thread 6639 , mypolls 0 +thr c6986400 , status 1 +connecting thr c6986400 , thread 6640 , mypolls 0 +myconn 0 connecting thr c6986400 , thread 6640 , mypolls 0 +thr c6986580 , status 1 +connecting thr c6986580 , thread 6641 , mypolls 0 +myconn 0 connecting thr c6986580 , thread 6641 , mypolls 0 +thr c6986700 , status 1 +connecting thr c6986700 , thread 6642 , mypolls 0 +myconn 0 connecting thr c6986700 , thread 6642 , mypolls 0 +thr c6986880 , status 1 +connecting thr c6986880 , thread 6643 , mypolls 0 +myconn 0 connecting thr c6986880 , thread 6643 , mypolls 0 +thr c6986a00 , status 1 +connecting thr c6986a00 , thread 6644 , mypolls 0 +myconn 0 connecting thr c6986a00 , thread 6644 , mypolls 0 +thr c6986b80 , status 1 +connecting thr c6986b80 , thread 6645 , mypolls 0 +myconn 0 connecting thr c6986b80 , thread 6645 , mypolls 0 +thr c6986d00 , status 1 +connecting thr c6986d00 , thread 6646 , mypolls 0 +myconn 0 connecting thr c6986d00 , thread 6646 , mypolls 0 +thr c6986e80 , status 1 +connecting thr c6986e80 , thread 6647 , mypolls 0 +myconn 0 connecting thr c6986e80 , thread 6647 , mypolls 0 +thr c67e5000 , status 1 +connecting thr c67e5000 , thread 6648 , mypolls 0 +myconn 0 connecting thr c67e5000 , thread 6648 , mypolls 0 +thr c67e5180 , status 1 +connecting thr c67e5180 , thread 6649 , mypolls 0 +myconn 0 connecting thr c67e5180 , thread 6649 , mypolls 0 +thr c67e5300 , status 1 +connecting thr c67e5300 , thread 6650 , mypolls 0 +myconn 0 connecting thr c67e5300 , thread 6650 , mypolls 0 +thr c67e5480 , status 1 +connecting thr c67e5480 , thread 6651 , mypolls 0 +myconn 0 connecting thr c67e5480 , thread 6651 , mypolls 0 +thr c67e5600 , status 1 +connecting thr c67e5600 , thread 6652 , mypolls 0 +myconn 0 connecting thr c67e5600 , thread 6652 , mypolls 0 +thr c67e5780 , status 1 +connecting thr c67e5780 , thread 6653 , mypolls 0 +myconn 0 connecting thr c67e5780 , thread 6653 , mypolls 0 +thr c67e5900 , status 1 +connecting thr c67e5900 , thread 6654 , mypolls 0 +myconn 0 connecting thr c67e5900 , thread 6654 , mypolls 0 +thr c67e5a80 , status 1 +connecting thr c67e5a80 , thread 6655 , mypolls 0 +myconn 0 connecting thr c67e5a80 , thread 6655 , mypolls 0 +thr c67e5c00 , status 1 +connecting thr c67e5c00 , thread 6656 , mypolls 0 +myconn 0 connecting thr c67e5c00 , thread 6656 , mypolls 0 +thr c67e5d80 , status 1 +connecting thr c67e5d80 , thread 6657 , mypolls 0 +myconn 0 connecting thr c67e5d80 , thread 6657 , mypolls 0 +thr c67e5f00 , status 1 +connecting thr c67e5f00 , thread 6658 , mypolls 0 +myconn 0 connecting thr c67e5f00 , thread 6658 , mypolls 0 +thr c67e6080 , status 1 +connecting thr c67e6080 , thread 6659 , mypolls 0 +myconn 0 connecting thr c67e6080 , thread 6659 , mypolls 0 +thr c67e6200 , status 1 +connecting thr c67e6200 , thread 6660 , mypolls 0 +myconn 0 connecting thr c67e6200 , thread 6660 , mypolls 0 +thr c67e6380 , status 1 +connecting thr c67e6380 , thread 6661 , mypolls 0 +myconn 0 connecting thr c67e6380 , thread 6661 , mypolls 0 +thr c67e6500 , status 1 +connecting thr c67e6500 , thread 6662 , mypolls 0 +myconn 0 connecting thr c67e6500 , thread 6662 , mypolls 0 +thr c67e6680 , status 1 +connecting thr c67e6680 , thread 6663 , mypolls 0 +myconn 0 connecting thr c67e6680 , thread 6663 , mypolls 0 +thr c67e6800 , status 1 +connecting thr c67e6800 , thread 6664 , mypolls 0 +myconn 0 connecting thr c67e6800 , thread 6664 , mypolls 0 +thr c67e6980 , status 1 +connecting thr c67e6980 , thread 6665 , mypolls 0 +myconn 0 connecting thr c67e6980 , thread 6665 , mypolls 0 +thr c67e6b00 , status 1 +connecting thr c67e6b00 , thread 6666 , mypolls 0 +myconn 0 connecting thr c67e6b00 , thread 6666 , mypolls 0 +thr c67e6c80 , status 1 +connecting thr c67e6c80 , thread 6667 , mypolls 0 +myconn 0 connecting thr c67e6c80 , thread 6667 , mypolls 0 +thr c67e6e00 , status 1 +connecting thr c67e6e00 , thread 6668 , mypolls 0 +myconn 0 connecting thr c67e6e00 , thread 6668 , mypolls 0 +thr c67e6f80 , status 1 +connecting thr c67e6f80 , thread 6669 , mypolls 0 +myconn 0 connecting thr c67e6f80 , thread 6669 , mypolls 0 +thr c67e7100 , status 1 +connecting thr c67e7100 , thread 6670 , mypolls 0 +myconn 0 connecting thr c67e7100 , thread 6670 , mypolls 0 +thr c67e7280 , status 1 +connecting thr c67e7280 , thread 6671 , mypolls 0 +myconn 0 connecting thr c67e7280 , thread 6671 , mypolls 0 +thr c67e7400 , status 1 +connecting thr c67e7400 , thread 6672 , mypolls 0 +myconn 0 connecting thr c67e7400 , thread 6672 , mypolls 0 +thr c67e7580 , status 1 +connecting thr c67e7580 , thread 6673 , mypolls 0 +myconn 0 connecting thr c67e7580 , thread 6673 , mypolls 0 +thr c67e7700 , status 1 +connecting thr c67e7700 , thread 6674 , mypolls 0 +myconn 0 connecting thr c67e7700 , thread 6674 , mypolls 0 +thr c67e7880 , status 1 +connecting thr c67e7880 , thread 6675 , mypolls 0 +myconn 0 connecting thr c67e7880 , thread 6675 , mypolls 0 +thr c67e7a00 , status 1 +connecting thr c67e7a00 , thread 6676 , mypolls 0 +myconn 0 connecting thr c67e7a00 , thread 6676 , mypolls 0 +thr c67e7b80 , status 1 +connecting thr c67e7b80 , thread 6677 , mypolls 0 +myconn 0 connecting thr c67e7b80 , thread 6677 , mypolls 0 +thr c67e7d00 , status 1 +connecting thr c67e7d00 , thread 6678 , mypolls 0 +myconn 0 connecting thr c67e7d00 , thread 6678 , mypolls 0 +thr c67e7e80 , status 1 +connecting thr c67e7e80 , thread 6679 , mypolls 0 +myconn 0 connecting thr c67e7e80 , thread 6679 , mypolls 0 +thr c6255000 , status 1 +connecting thr c6255000 , thread 6680 , mypolls 0 +myconn 0 connecting thr c6255000 , thread 6680 , mypolls 0 +thr c6255180 , status 1 +connecting thr c6255180 , thread 6681 , mypolls 0 +myconn 0 connecting thr c6255180 , thread 6681 , mypolls 0 +thr c6255300 , status 1 +connecting thr c6255300 , thread 6682 , mypolls 0 +myconn 0 connecting thr c6255300 , thread 6682 , mypolls 0 +thr c6255480 , status 1 +connecting thr c6255480 , thread 6683 , mypolls 0 +myconn 0 connecting thr c6255480 , thread 6683 , mypolls 0 +thr c6255600 , status 1 +connecting thr c6255600 , thread 6684 , mypolls 0 +myconn 0 connecting thr c6255600 , thread 6684 , mypolls 0 +thr c6255780 , status 1 +connecting thr c6255780 , thread 6685 , mypolls 0 +myconn 0 connecting thr c6255780 , thread 6685 , mypolls 0 +thr c6255900 , status 1 +connecting thr c6255900 , thread 6686 , mypolls 0 +myconn 0 connecting thr c6255900 , thread 6686 , mypolls 0 +thr c6255a80 , status 1 +connecting thr c6255a80 , thread 6687 , mypolls 0 +myconn 0 connecting thr c6255a80 , thread 6687 , mypolls 0 +thr c6255c00 , status 1 +connecting thr c6255c00 , thread 6688 , mypolls 0 +myconn 0 connecting thr c6255c00 , thread 6688 , mypolls 0 +thr c6255d80 , status 1 +connecting thr c6255d80 , thread 6689 , mypolls 0 +myconn 0 connecting thr c6255d80 , thread 6689 , mypolls 0 +thr c6255f00 , status 1 +connecting thr c6255f00 , thread 6690 , mypolls 0 +myconn 0 connecting thr c6255f00 , thread 6690 , mypolls 0 +thr c6256080 , status 1 +connecting thr c6256080 , thread 6691 , mypolls 0 +myconn 0 connecting thr c6256080 , thread 6691 , mypolls 0 +thr c6256200 , status 1 +connecting thr c6256200 , thread 6692 , mypolls 0 +myconn 0 connecting thr c6256200 , thread 6692 , mypolls 0 +thr c6256380 , status 1 +connecting thr c6256380 , thread 6693 , mypolls 0 +myconn 0 connecting thr c6256380 , thread 6693 , mypolls 0 +thr c6256500 , status 1 +connecting thr c6256500 , thread 6694 , mypolls 0 +myconn 0 connecting thr c6256500 , thread 6694 , mypolls 0 +thr c6256680 , status 1 +connecting thr c6256680 , thread 6695 , mypolls 0 +myconn 0 connecting thr c6256680 , thread 6695 , mypolls 0 +thr c6256800 , status 1 +connecting thr c6256800 , thread 6696 , mypolls 0 +myconn 0 connecting thr c6256800 , thread 6696 , mypolls 0 +thr c6256980 , status 1 +connecting thr c6256980 , thread 6697 , mypolls 0 +myconn 0 connecting thr c6256980 , thread 6697 , mypolls 0 +thr c6256b00 , status 1 +connecting thr c6256b00 , thread 6698 , mypolls 0 +myconn 0 connecting thr c6256b00 , thread 6698 , mypolls 0 +thr c6256c80 , status 1 +connecting thr c6256c80 , thread 6699 , mypolls 0 +myconn 0 connecting thr c6256c80 , thread 6699 , mypolls 0 +thr c6256e00 , status 1 +connecting thr c6256e00 , thread 6700 , mypolls 0 +myconn 0 connecting thr c6256e00 , thread 6700 , mypolls 0 +thr c6256f80 , status 1 +connecting thr c6256f80 , thread 6701 , mypolls 0 +myconn 0 connecting thr c6256f80 , thread 6701 , mypolls 0 +thr c6257100 , status 1 +connecting thr c6257100 , thread 6702 , mypolls 0 +myconn 0 connecting thr c6257100 , thread 6702 , mypolls 0 +thr c6257280 , status 1 +connecting thr c6257280 , thread 6703 , mypolls 0 +myconn 0 connecting thr c6257280 , thread 6703 , mypolls 0 +thr c6257400 , status 1 +connecting thr c6257400 , thread 6704 , mypolls 0 +myconn 0 connecting thr c6257400 , thread 6704 , mypolls 0 +thr c6257580 , status 1 +connecting thr c6257580 , thread 6705 , mypolls 0 +myconn 0 connecting thr c6257580 , thread 6705 , mypolls 0 +thr c6257700 , status 1 +connecting thr c6257700 , thread 6706 , mypolls 0 +myconn 0 connecting thr c6257700 , thread 6706 , mypolls 0 +thr c6257880 , status 1 +connecting thr c6257880 , thread 6707 , mypolls 0 +myconn 0 connecting thr c6257880 , thread 6707 , mypolls 0 +thr c6257a00 , status 1 +connecting thr c6257a00 , thread 6708 , mypolls 0 +myconn 0 connecting thr c6257a00 , thread 6708 , mypolls 0 +thr c6257b80 , status 1 +connecting thr c6257b80 , thread 6709 , mypolls 0 +myconn 0 connecting thr c6257b80 , thread 6709 , mypolls 0 +thr c6257d00 , status 1 +connecting thr c6257d00 , thread 6710 , mypolls 0 +myconn 0 connecting thr c6257d00 , thread 6710 , mypolls 0 +thr c6257e80 , status 1 +connecting thr c6257e80 , thread 6711 , mypolls 0 +myconn 0 connecting thr c6257e80 , thread 6711 , mypolls 0 +thr c60b8000 , status 1 +connecting thr c60b8000 , thread 6712 , mypolls 0 +myconn 0 connecting thr c60b8000 , thread 6712 , mypolls 0 +thr c60b8180 , status 1 +connecting thr c60b8180 , thread 6713 , mypolls 0 +myconn 0 connecting thr c60b8180 , thread 6713 , mypolls 0 +thr c60b8300 , status 1 +connecting thr c60b8300 , thread 6714 , mypolls 0 +myconn 0 connecting thr c60b8300 , thread 6714 , mypolls 0 +thr c60b8480 , status 1 +connecting thr c60b8480 , thread 6715 , mypolls 0 +myconn 0 connecting thr c60b8480 , thread 6715 , mypolls 0 +thr c60b8600 , status 1 +connecting thr c60b8600 , thread 6716 , mypolls 0 +myconn 0 connecting thr c60b8600 , thread 6716 , mypolls 0 +thr c60b8780 , status 1 +connecting thr c60b8780 , thread 6717 , mypolls 0 +myconn 0 connecting thr c60b8780 , thread 6717 , mypolls 0 +thr c60b8900 , status 1 +connecting thr c60b8900 , thread 6718 , mypolls 0 +myconn 0 connecting thr c60b8900 , thread 6718 , mypolls 0 +thr c60b8a80 , status 1 +connecting thr c60b8a80 , thread 6719 , mypolls 0 +myconn 0 connecting thr c60b8a80 , thread 6719 , mypolls 0 +thr c60b8c00 , status 1 +connecting thr c60b8c00 , thread 6720 , mypolls 0 +myconn 0 connecting thr c60b8c00 , thread 6720 , mypolls 0 +thr c60b8d80 , status 1 +connecting thr c60b8d80 , thread 6721 , mypolls 0 +myconn 0 connecting thr c60b8d80 , thread 6721 , mypolls 0 +thr c60b8f00 , status 1 +connecting thr c60b8f00 , thread 6722 , mypolls 0 +myconn 0 connecting thr c60b8f00 , thread 6722 , mypolls 0 +thr c60b9080 , status 1 +connecting thr c60b9080 , thread 6723 , mypolls 0 +myconn 0 connecting thr c60b9080 , thread 6723 , mypolls 0 +thr c60b9200 , status 1 +connecting thr c60b9200 , thread 6724 , mypolls 0 +myconn 0 connecting thr c60b9200 , thread 6724 , mypolls 0 +thr c60b9380 , status 1 +connecting thr c60b9380 , thread 6725 , mypolls 0 +myconn 0 connecting thr c60b9380 , thread 6725 , mypolls 0 +thr c60b9500 , status 1 +connecting thr c60b9500 , thread 6726 , mypolls 0 +myconn 0 connecting thr c60b9500 , thread 6726 , mypolls 0 +thr c60b9680 , status 1 +connecting thr c60b9680 , thread 6727 , mypolls 0 +myconn 0 connecting thr c60b9680 , thread 6727 , mypolls 0 +thr c60b9800 , status 1 +connecting thr c60b9800 , thread 6728 , mypolls 0 +myconn 0 connecting thr c60b9800 , thread 6728 , mypolls 0 +thr c60b9980 , status 1 +connecting thr c60b9980 , thread 6729 , mypolls 0 +myconn 0 connecting thr c60b9980 , thread 6729 , mypolls 0 +thr c60b9b00 , status 1 +connecting thr c60b9b00 , thread 6730 , mypolls 0 +myconn 0 connecting thr c60b9b00 , thread 6730 , mypolls 0 +thr c60b9c80 , status 1 +connecting thr c60b9c80 , thread 6731 , mypolls 0 +myconn 0 connecting thr c60b9c80 , thread 6731 , mypolls 0 +thr c60b9e00 , status 1 +connecting thr c60b9e00 , thread 6732 , mypolls 0 +myconn 0 connecting thr c60b9e00 , thread 6732 , mypolls 0 +thr c60b9f80 , status 1 +connecting thr c60b9f80 , thread 6733 , mypolls 0 +myconn 0 connecting thr c60b9f80 , thread 6733 , mypolls 0 +thr c60ba100 , status 1 +connecting thr c60ba100 , thread 6734 , mypolls 0 +myconn 0 connecting thr c60ba100 , thread 6734 , mypolls 0 +thr c60ba280 , status 1 +connecting thr c60ba280 , thread 6735 , mypolls 0 +myconn 0 connecting thr c60ba280 , thread 6735 , mypolls 0 +thr c60ba400 , status 1 +connecting thr c60ba400 , thread 6736 , mypolls 0 +myconn 0 connecting thr c60ba400 , thread 6736 , mypolls 0 +thr c60ba580 , status 1 +connecting thr c60ba580 , thread 6737 , mypolls 0 +myconn 0 connecting thr c60ba580 , thread 6737 , mypolls 0 +thr c60ba700 , status 1 +connecting thr c60ba700 , thread 6738 , mypolls 0 +myconn 0 connecting thr c60ba700 , thread 6738 , mypolls 0 +thr c60ba880 , status 1 +connecting thr c60ba880 , thread 6739 , mypolls 0 +myconn 0 connecting thr c60ba880 , thread 6739 , mypolls 0 +thr c60baa00 , status 1 +connecting thr c60baa00 , thread 6740 , mypolls 0 +myconn 0 connecting thr c60baa00 , thread 6740 , mypolls 0 +thr c60bab80 , status 1 +connecting thr c60bab80 , thread 6741 , mypolls 0 +myconn 0 connecting thr c60bab80 , thread 6741 , mypolls 0 +thr c60bad00 , status 1 +connecting thr c60bad00 , thread 6742 , mypolls 0 +myconn 0 connecting thr c60bad00 , thread 6742 , mypolls 0 +thr c60bae80 , status 1 +connecting thr c60bae80 , thread 6743 , mypolls 0 +myconn 0 connecting thr c60bae80 , thread 6743 , mypolls 0 +thr c5f1d000 , status 1 +connecting thr c5f1d000 , thread 6744 , mypolls 0 +myconn 0 connecting thr c5f1d000 , thread 6744 , mypolls 0 +thr c5f1d180 , status 1 +connecting thr c5f1d180 , thread 6745 , mypolls 0 +myconn 0 connecting thr c5f1d180 , thread 6745 , mypolls 0 +thr c5f1d300 , status 1 +connecting thr c5f1d300 , thread 6746 , mypolls 0 +myconn 0 connecting thr c5f1d300 , thread 6746 , mypolls 0 +thr c5f1d480 , status 1 +connecting thr c5f1d480 , thread 6747 , mypolls 0 +myconn 0 connecting thr c5f1d480 , thread 6747 , mypolls 0 +thr c5f1d600 , status 1 +connecting thr c5f1d600 , thread 6748 , mypolls 0 +myconn 0 connecting thr c5f1d600 , thread 6748 , mypolls 0 +thr c5f1d780 , status 1 +connecting thr c5f1d780 , thread 6749 , mypolls 0 +myconn 0 connecting thr c5f1d780 , thread 6749 , mypolls 0 +thr c5f1d900 , status 1 +connecting thr c5f1d900 , thread 6750 , mypolls 0 +myconn 0 connecting thr c5f1d900 , thread 6750 , mypolls 0 +thr c5f1da80 , status 1 +connecting thr c5f1da80 , thread 6751 , mypolls 0 +myconn 0 connecting thr c5f1da80 , thread 6751 , mypolls 0 +thr c5f1dc00 , status 1 +connecting thr c5f1dc00 , thread 6752 , mypolls 0 +myconn 0 connecting thr c5f1dc00 , thread 6752 , mypolls 0 +thr c5f1dd80 , status 1 +connecting thr c5f1dd80 , thread 6753 , mypolls 0 +myconn 0 connecting thr c5f1dd80 , thread 6753 , mypolls 0 +thr c5f1df00 , status 1 +connecting thr c5f1df00 , thread 6754 , mypolls 0 +myconn 0 connecting thr c5f1df00 , thread 6754 , mypolls 0 +thr c5f1e080 , status 1 +connecting thr c5f1e080 , thread 6755 , mypolls 0 +myconn 0 connecting thr c5f1e080 , thread 6755 , mypolls 0 +thr c5f1e200 , status 1 +connecting thr c5f1e200 , thread 6756 , mypolls 0 +myconn 0 connecting thr c5f1e200 , thread 6756 , mypolls 0 +thr c5f1e380 , status 1 +connecting thr c5f1e380 , thread 6757 , mypolls 0 +myconn 0 connecting thr c5f1e380 , thread 6757 , mypolls 0 +thr c5f1e500 , status 1 +connecting thr c5f1e500 , thread 6758 , mypolls 0 +myconn 0 connecting thr c5f1e500 , thread 6758 , mypolls 0 +thr c5f1e680 , status 1 +connecting thr c5f1e680 , thread 6759 , mypolls 0 +myconn 0 connecting thr c5f1e680 , thread 6759 , mypolls 0 +thr c5f1e800 , status 1 +connecting thr c5f1e800 , thread 6760 , mypolls 0 +myconn 0 connecting thr c5f1e800 , thread 6760 , mypolls 0 +thr c5f1e980 , status 1 +connecting thr c5f1e980 , thread 6761 , mypolls 0 +myconn 0 connecting thr c5f1e980 , thread 6761 , mypolls 0 +thr c5f1eb00 , status 1 +connecting thr c5f1eb00 , thread 6762 , mypolls 0 +myconn 0 connecting thr c5f1eb00 , thread 6762 , mypolls 0 +thr c5f1ec80 , status 1 +connecting thr c5f1ec80 , thread 6763 , mypolls 0 +myconn 0 connecting thr c5f1ec80 , thread 6763 , mypolls 0 +thr c5f1ee00 , status 1 +connecting thr c5f1ee00 , thread 6764 , mypolls 0 +myconn 0 connecting thr c5f1ee00 , thread 6764 , mypolls 0 +thr c5f1ef80 , status 1 +connecting thr c5f1ef80 , thread 6765 , mypolls 0 +myconn 0 connecting thr c5f1ef80 , thread 6765 , mypolls 0 +thr c5f1f100 , status 1 +connecting thr c5f1f100 , thread 6766 , mypolls 0 +myconn 0 connecting thr c5f1f100 , thread 6766 , mypolls 0 +thr c5f1f280 , status 1 +connecting thr c5f1f280 , thread 6767 , mypolls 0 +myconn 0 connecting thr c5f1f280 , thread 6767 , mypolls 0 +thr c5f1f400 , status 1 +connecting thr c5f1f400 , thread 6768 , mypolls 0 +myconn 0 connecting thr c5f1f400 , thread 6768 , mypolls 0 +thr c5f1f580 , status 1 +connecting thr c5f1f580 , thread 6769 , mypolls 0 +myconn 0 connecting thr c5f1f580 , thread 6769 , mypolls 0 +thr c5f1f700 , status 1 +connecting thr c5f1f700 , thread 6770 , mypolls 0 +myconn 0 connecting thr c5f1f700 , thread 6770 , mypolls 0 +thr c5f1f880 , status 1 +connecting thr c5f1f880 , thread 6771 , mypolls 0 +myconn 0 connecting thr c5f1f880 , thread 6771 , mypolls 0 +thr c5f1fa00 , status 1 +connecting thr c5f1fa00 , thread 6772 , mypolls 0 +myconn 0 connecting thr c5f1fa00 , thread 6772 , mypolls 0 +thr c5f1fb80 , status 1 +connecting thr c5f1fb80 , thread 6773 , mypolls 0 +myconn 0 connecting thr c5f1fb80 , thread 6773 , mypolls 0 +thr c5f1fd00 , status 1 +connecting thr c5f1fd00 , thread 6774 , mypolls 0 +myconn 0 connecting thr c5f1fd00 , thread 6774 , mypolls 0 +thr c5f1fe80 , status 1 +connecting thr c5f1fe80 , thread 6775 , mypolls 0 +myconn 0 connecting thr c5f1fe80 , thread 6775 , mypolls 0 +thr c5d7e000 , status 1 +connecting thr c5d7e000 , thread 6776 , mypolls 0 +myconn 0 connecting thr c5d7e000 , thread 6776 , mypolls 0 +thr c5d7e180 , status 1 +connecting thr c5d7e180 , thread 6777 , mypolls 0 +myconn 0 connecting thr c5d7e180 , thread 6777 , mypolls 0 +thr c5d7e300 , status 1 +connecting thr c5d7e300 , thread 6778 , mypolls 0 +myconn 0 connecting thr c5d7e300 , thread 6778 , mypolls 0 +thr c5d7e480 , status 1 +connecting thr c5d7e480 , thread 6779 , mypolls 0 +myconn 0 connecting thr c5d7e480 , thread 6779 , mypolls 0 +thr c5d7e600 , status 1 +connecting thr c5d7e600 , thread 6780 , mypolls 0 +myconn 0 connecting thr c5d7e600 , thread 6780 , mypolls 0 +thr c5d7e780 , status 1 +connecting thr c5d7e780 , thread 6781 , mypolls 0 +myconn 0 connecting thr c5d7e780 , thread 6781 , mypolls 0 +thr c5d7e900 , status 1 +connecting thr c5d7e900 , thread 6782 , mypolls 0 +myconn 0 connecting thr c5d7e900 , thread 6782 , mypolls 0 +thr c5d7ea80 , status 1 +connecting thr c5d7ea80 , thread 6783 , mypolls 0 +myconn 0 connecting thr c5d7ea80 , thread 6783 , mypolls 0 +thr c5d7ec00 , status 1 +connecting thr c5d7ec00 , thread 6784 , mypolls 0 +myconn 0 connecting thr c5d7ec00 , thread 6784 , mypolls 0 +thr c5d7ed80 , status 1 +connecting thr c5d7ed80 , thread 6785 , mypolls 0 +myconn 0 connecting thr c5d7ed80 , thread 6785 , mypolls 0 +thr c5d7ef00 , status 1 +connecting thr c5d7ef00 , thread 6786 , mypolls 0 +myconn 0 connecting thr c5d7ef00 , thread 6786 , mypolls 0 +thr c5d7f080 , status 1 +connecting thr c5d7f080 , thread 6787 , mypolls 0 +myconn 0 connecting thr c5d7f080 , thread 6787 , mypolls 0 +thr c5d7f200 , status 1 +connecting thr c5d7f200 , thread 6788 , mypolls 0 +myconn 0 connecting thr c5d7f200 , thread 6788 , mypolls 0 +thr c5d7f380 , status 1 +connecting thr c5d7f380 , thread 6789 , mypolls 0 +myconn 0 connecting thr c5d7f380 , thread 6789 , mypolls 0 +thr c5d7f500 , status 1 +connecting thr c5d7f500 , thread 6790 , mypolls 0 +myconn 0 connecting thr c5d7f500 , thread 6790 , mypolls 0 +thr c5d7f680 , status 1 +connecting thr c5d7f680 , thread 6791 , mypolls 0 +myconn 0 connecting thr c5d7f680 , thread 6791 , mypolls 0 +thr c5d7f800 , status 1 +connecting thr c5d7f800 , thread 6792 , mypolls 0 +myconn 0 connecting thr c5d7f800 , thread 6792 , mypolls 0 +thr c5d7f980 , status 1 +connecting thr c5d7f980 , thread 6793 , mypolls 0 +myconn 0 connecting thr c5d7f980 , thread 6793 , mypolls 0 +thr c5d7fb00 , status 1 +connecting thr c5d7fb00 , thread 6794 , mypolls 0 +myconn 0 connecting thr c5d7fb00 , thread 6794 , mypolls 0 +thr c5d7fc80 , status 1 +connecting thr c5d7fc80 , thread 6795 , mypolls 0 +myconn 0 connecting thr c5d7fc80 , thread 6795 , mypolls 0 +thr c5d7fe00 , status 1 +connecting thr c5d7fe00 , thread 6796 , mypolls 0 +myconn 0 connecting thr c5d7fe00 , thread 6796 , mypolls 0 +thr c5d7ff80 , status 1 +connecting thr c5d7ff80 , thread 6797 , mypolls 0 +myconn 0 connecting thr c5d7ff80 , thread 6797 , mypolls 0 +thr c5d80100 , status 1 +connecting thr c5d80100 , thread 6798 , mypolls 0 +myconn 0 connecting thr c5d80100 , thread 6798 , mypolls 0 +thr c5d80280 , status 1 +connecting thr c5d80280 , thread 6799 , mypolls 0 +myconn 0 connecting thr c5d80280 , thread 6799 , mypolls 0 +thr c5d80400 , status 1 +connecting thr c5d80400 , thread 6800 , mypolls 0 +myconn 0 connecting thr c5d80400 , thread 6800 , mypolls 0 +thr c5d80580 , status 1 +connecting thr c5d80580 , thread 6801 , mypolls 0 +myconn 0 connecting thr c5d80580 , thread 6801 , mypolls 0 +thr c5d80700 , status 1 +connecting thr c5d80700 , thread 6802 , mypolls 0 +myconn 0 connecting thr c5d80700 , thread 6802 , mypolls 0 +thr c5d80880 , status 1 +connecting thr c5d80880 , thread 6803 , mypolls 0 +myconn 0 connecting thr c5d80880 , thread 6803 , mypolls 0 +thr c5d80a00 , status 1 +connecting thr c5d80a00 , thread 6804 , mypolls 0 +myconn 0 connecting thr c5d80a00 , thread 6804 , mypolls 0 +thr c5d80b80 , status 1 +connecting thr c5d80b80 , thread 6805 , mypolls 0 +myconn 0 connecting thr c5d80b80 , thread 6805 , mypolls 0 +thr c5d80d00 , status 1 +connecting thr c5d80d00 , thread 6806 , mypolls 0 +myconn 0 connecting thr c5d80d00 , thread 6806 , mypolls 0 +thr c5d80e80 , status 1 +connecting thr c5d80e80 , thread 6807 , mypolls 0 +myconn 0 connecting thr c5d80e80 , thread 6807 , mypolls 0 +thr c5be1000 , status 1 +connecting thr c5be1000 , thread 6808 , mypolls 0 +myconn 0 connecting thr c5be1000 , thread 6808 , mypolls 0 +thr c5be1180 , status 1 +connecting thr c5be1180 , thread 6809 , mypolls 0 +myconn 0 connecting thr c5be1180 , thread 6809 , mypolls 0 +thr c5be1300 , status 1 +connecting thr c5be1300 , thread 6810 , mypolls 0 +myconn 0 connecting thr c5be1300 , thread 6810 , mypolls 0 +thr c5be1480 , status 1 +connecting thr c5be1480 , thread 6811 , mypolls 0 +myconn 0 connecting thr c5be1480 , thread 6811 , mypolls 0 +thr c5be1600 , status 1 +connecting thr c5be1600 , thread 6812 , mypolls 0 +myconn 0 connecting thr c5be1600 , thread 6812 , mypolls 0 +thr c5be1780 , status 1 +connecting thr c5be1780 , thread 6813 , mypolls 0 +myconn 0 connecting thr c5be1780 , thread 6813 , mypolls 0 +thr c5be1900 , status 1 +connecting thr c5be1900 , thread 6814 , mypolls 0 +myconn 0 connecting thr c5be1900 , thread 6814 , mypolls 0 +thr c5be1a80 , status 1 +connecting thr c5be1a80 , thread 6815 , mypolls 0 +myconn 0 connecting thr c5be1a80 , thread 6815 , mypolls 0 +thr c5be1c00 , status 1 +connecting thr c5be1c00 , thread 6816 , mypolls 0 +myconn 0 connecting thr c5be1c00 , thread 6816 , mypolls 0 +thr c5be1d80 , status 1 +connecting thr c5be1d80 , thread 6817 , mypolls 0 +myconn 0 connecting thr c5be1d80 , thread 6817 , mypolls 0 +thr c5be1f00 , status 1 +connecting thr c5be1f00 , thread 6818 , mypolls 0 +myconn 0 connecting thr c5be1f00 , thread 6818 , mypolls 0 +thr c5be2080 , status 1 +connecting thr c5be2080 , thread 6819 , mypolls 0 +myconn 0 connecting thr c5be2080 , thread 6819 , mypolls 0 +thr c5be2200 , status 1 +connecting thr c5be2200 , thread 6820 , mypolls 0 +myconn 0 connecting thr c5be2200 , thread 6820 , mypolls 0 +thr c5be2380 , status 1 +connecting thr c5be2380 , thread 6821 , mypolls 0 +myconn 0 connecting thr c5be2380 , thread 6821 , mypolls 0 +thr c5be2500 , status 1 +connecting thr c5be2500 , thread 6822 , mypolls 0 +myconn 0 connecting thr c5be2500 , thread 6822 , mypolls 0 +thr c5be2680 , status 1 +connecting thr c5be2680 , thread 6823 , mypolls 0 +myconn 0 connecting thr c5be2680 , thread 6823 , mypolls 0 +thr c5be2800 , status 1 +connecting thr c5be2800 , thread 6824 , mypolls 0 +myconn 0 connecting thr c5be2800 , thread 6824 , mypolls 0 +thr c5be2980 , status 1 +connecting thr c5be2980 , thread 6825 , mypolls 0 +myconn 0 connecting thr c5be2980 , thread 6825 , mypolls 0 +thr c5be2b00 , status 1 +connecting thr c5be2b00 , thread 6826 , mypolls 0 +myconn 0 connecting thr c5be2b00 , thread 6826 , mypolls 0 +thr c5be2c80 , status 1 +connecting thr c5be2c80 , thread 6827 , mypolls 0 +myconn 0 connecting thr c5be2c80 , thread 6827 , mypolls 0 +thr c5be2e00 , status 1 +connecting thr c5be2e00 , thread 6828 , mypolls 0 +myconn 0 connecting thr c5be2e00 , thread 6828 , mypolls 0 +thr c5be2f80 , status 1 +connecting thr c5be2f80 , thread 6829 , mypolls 0 +myconn 0 connecting thr c5be2f80 , thread 6829 , mypolls 0 +thr c5be3100 , status 1 +connecting thr c5be3100 , thread 6830 , mypolls 0 +myconn 0 connecting thr c5be3100 , thread 6830 , mypolls 0 +thr c5be3280 , status 1 +connecting thr c5be3280 , thread 6831 , mypolls 0 +myconn 0 connecting thr c5be3280 , thread 6831 , mypolls 0 +thr c5be3400 , status 1 +connecting thr c5be3400 , thread 6832 , mypolls 0 +myconn 0 connecting thr c5be3400 , thread 6832 , mypolls 0 +thr c5be3580 , status 1 +connecting thr c5be3580 , thread 6833 , mypolls 0 +myconn 0 connecting thr c5be3580 , thread 6833 , mypolls 0 +thr c5be3700 , status 1 +connecting thr c5be3700 , thread 6834 , mypolls 0 +myconn 0 connecting thr c5be3700 , thread 6834 , mypolls 0 +thr c5be3880 , status 1 +connecting thr c5be3880 , thread 6835 , mypolls 0 +myconn 0 connecting thr c5be3880 , thread 6835 , mypolls 0 +thr c5be3a00 , status 1 +connecting thr c5be3a00 , thread 6836 , mypolls 0 +myconn 0 connecting thr c5be3a00 , thread 6836 , mypolls 0 +thr c5be3b80 , status 1 +connecting thr c5be3b80 , thread 6837 , mypolls 0 +myconn 0 connecting thr c5be3b80 , thread 6837 , mypolls 0 +thr c5be3d00 , status 1 +connecting thr c5be3d00 , thread 6838 , mypolls 0 +myconn 0 connecting thr c5be3d00 , thread 6838 , mypolls 0 +thr c5be3e80 , status 1 +connecting thr c5be3e80 , thread 6839 , mypolls 0 +myconn 0 connecting thr c5be3e80 , thread 6839 , mypolls 0 +thr c59fa000 , status 1 +connecting thr c59fa000 , thread 6840 , mypolls 0 +myconn 0 connecting thr c59fa000 , thread 6840 , mypolls 0 +thr c59fa180 , status 1 +connecting thr c59fa180 , thread 6841 , mypolls 0 +myconn 0 connecting thr c59fa180 , thread 6841 , mypolls 0 +thr c59fa300 , status 1 +connecting thr c59fa300 , thread 6842 , mypolls 0 +myconn 0 connecting thr c59fa300 , thread 6842 , mypolls 0 +thr c59fa480 , status 1 +connecting thr c59fa480 , thread 6843 , mypolls 0 +myconn 0 connecting thr c59fa480 , thread 6843 , mypolls 0 +thr c59fa600 , status 1 +connecting thr c59fa600 , thread 6844 , mypolls 0 +myconn 0 connecting thr c59fa600 , thread 6844 , mypolls 0 +thr c59fa780 , status 1 +connecting thr c59fa780 , thread 6845 , mypolls 0 +myconn 0 connecting thr c59fa780 , thread 6845 , mypolls 0 +thr c59fa900 , status 1 +connecting thr c59fa900 , thread 6846 , mypolls 0 +myconn 0 connecting thr c59fa900 , thread 6846 , mypolls 0 +thr c59faa80 , status 1 +connecting thr c59faa80 , thread 6847 , mypolls 0 +myconn 0 connecting thr c59faa80 , thread 6847 , mypolls 0 +thr c59fac00 , status 1 +connecting thr c59fac00 , thread 6848 , mypolls 0 +myconn 0 connecting thr c59fac00 , thread 6848 , mypolls 0 +thr c59fad80 , status 1 +connecting thr c59fad80 , thread 6849 , mypolls 0 +myconn 0 connecting thr c59fad80 , thread 6849 , mypolls 0 +thr c59faf00 , status 1 +connecting thr c59faf00 , thread 6850 , mypolls 0 +myconn 0 connecting thr c59faf00 , thread 6850 , mypolls 0 +thr c59fb080 , status 1 +connecting thr c59fb080 , thread 6851 , mypolls 0 +myconn 0 connecting thr c59fb080 , thread 6851 , mypolls 0 +thr c59fb200 , status 1 +connecting thr c59fb200 , thread 6852 , mypolls 0 +myconn 0 connecting thr c59fb200 , thread 6852 , mypolls 0 +thr c59fb380 , status 1 +connecting thr c59fb380 , thread 6853 , mypolls 0 +myconn 0 connecting thr c59fb380 , thread 6853 , mypolls 0 +thr c59fb500 , status 1 +connecting thr c59fb500 , thread 6854 , mypolls 0 +myconn 0 connecting thr c59fb500 , thread 6854 , mypolls 0 +thr c59fb680 , status 1 +connecting thr c59fb680 , thread 6855 , mypolls 0 +myconn 0 connecting thr c59fb680 , thread 6855 , mypolls 0 +thr c59fb800 , status 1 +connecting thr c59fb800 , thread 6856 , mypolls 0 +myconn 0 connecting thr c59fb800 , thread 6856 , mypolls 0 +thr c59fb980 , status 1 +connecting thr c59fb980 , thread 6857 , mypolls 0 +myconn 0 connecting thr c59fb980 , thread 6857 , mypolls 0 +thr c59fbb00 , status 1 +connecting thr c59fbb00 , thread 6858 , mypolls 0 +myconn 0 connecting thr c59fbb00 , thread 6858 , mypolls 0 +thr c59fbc80 , status 1 +connecting thr c59fbc80 , thread 6859 , mypolls 0 +myconn 0 connecting thr c59fbc80 , thread 6859 , mypolls 0 +thr c59fbe00 , status 1 +connecting thr c59fbe00 , thread 6860 , mypolls 0 +myconn 0 connecting thr c59fbe00 , thread 6860 , mypolls 0 +thr c59fbf80 , status 1 +connecting thr c59fbf80 , thread 6861 , mypolls 0 +myconn 0 connecting thr c59fbf80 , thread 6861 , mypolls 0 +thr c59fc100 , status 1 +connecting thr c59fc100 , thread 6862 , mypolls 0 +myconn 0 connecting thr c59fc100 , thread 6862 , mypolls 0 +thr c59fc280 , status 1 +connecting thr c59fc280 , thread 6863 , mypolls 0 +myconn 0 connecting thr c59fc280 , thread 6863 , mypolls 0 +thr c59fc400 , status 1 +connecting thr c59fc400 , thread 6864 , mypolls 0 +myconn 0 connecting thr c59fc400 , thread 6864 , mypolls 0 +thr c59fc580 , status 1 +connecting thr c59fc580 , thread 6865 , mypolls 0 +myconn 0 connecting thr c59fc580 , thread 6865 , mypolls 0 +thr c59fc700 , status 1 +connecting thr c59fc700 , thread 6866 , mypolls 0 +myconn 0 connecting thr c59fc700 , thread 6866 , mypolls 0 +thr c59fc880 , status 1 +connecting thr c59fc880 , thread 6867 , mypolls 0 +myconn 0 connecting thr c59fc880 , thread 6867 , mypolls 0 +thr c59fca00 , status 1 +connecting thr c59fca00 , thread 6868 , mypolls 0 +myconn 0 connecting thr c59fca00 , thread 6868 , mypolls 0 +thr c59fcb80 , status 1 +connecting thr c59fcb80 , thread 6869 , mypolls 0 +myconn 0 connecting thr c59fcb80 , thread 6869 , mypolls 0 +thr c59fcd00 , status 1 +connecting thr c59fcd00 , thread 6870 , mypolls 0 +myconn 0 connecting thr c59fcd00 , thread 6870 , mypolls 0 +thr c59fce80 , status 1 +connecting thr c59fce80 , thread 6871 , mypolls 0 +myconn 0 connecting thr c59fce80 , thread 6871 , mypolls 0 +thr c54af000 , status 1 +connecting thr c54af000 , thread 6872 , mypolls 0 +myconn 0 connecting thr c54af000 , thread 6872 , mypolls 0 +thr c54af180 , status 1 +connecting thr c54af180 , thread 6873 , mypolls 0 +myconn 0 connecting thr c54af180 , thread 6873 , mypolls 0 +thr c54af300 , status 1 +connecting thr c54af300 , thread 6874 , mypolls 0 +myconn 0 connecting thr c54af300 , thread 6874 , mypolls 0 +thr c54af480 , status 1 +connecting thr c54af480 , thread 6875 , mypolls 0 +myconn 0 connecting thr c54af480 , thread 6875 , mypolls 0 +thr c54af600 , status 1 +connecting thr c54af600 , thread 6876 , mypolls 0 +myconn 0 connecting thr c54af600 , thread 6876 , mypolls 0 +thr c54af780 , status 1 +connecting thr c54af780 , thread 6877 , mypolls 0 +myconn 0 connecting thr c54af780 , thread 6877 , mypolls 0 +thr c54af900 , status 1 +connecting thr c54af900 , thread 6878 , mypolls 0 +myconn 0 connecting thr c54af900 , thread 6878 , mypolls 0 +thr c54afa80 , status 1 +connecting thr c54afa80 , thread 6879 , mypolls 0 +myconn 0 connecting thr c54afa80 , thread 6879 , mypolls 0 +thr c54afc00 , status 1 +connecting thr c54afc00 , thread 6880 , mypolls 0 +myconn 0 connecting thr c54afc00 , thread 6880 , mypolls 0 +thr c54afd80 , status 1 +connecting thr c54afd80 , thread 6881 , mypolls 0 +myconn 0 connecting thr c54afd80 , thread 6881 , mypolls 0 +thr c54aff00 , status 1 +connecting thr c54aff00 , thread 6882 , mypolls 0 +myconn 0 connecting thr c54aff00 , thread 6882 , mypolls 0 +thr c54b0080 , status 1 +connecting thr c54b0080 , thread 6883 , mypolls 0 +myconn 0 connecting thr c54b0080 , thread 6883 , mypolls 0 +thr c54b0200 , status 1 +connecting thr c54b0200 , thread 6884 , mypolls 0 +myconn 0 connecting thr c54b0200 , thread 6884 , mypolls 0 +thr c54b0380 , status 1 +connecting thr c54b0380 , thread 6885 , mypolls 0 +myconn 0 connecting thr c54b0380 , thread 6885 , mypolls 0 +thr c54b0500 , status 1 +connecting thr c54b0500 , thread 6886 , mypolls 0 +myconn 0 connecting thr c54b0500 , thread 6886 , mypolls 0 +thr c54b0680 , status 1 +connecting thr c54b0680 , thread 6887 , mypolls 0 +myconn 0 connecting thr c54b0680 , thread 6887 , mypolls 0 +thr c54b0800 , status 1 +connecting thr c54b0800 , thread 6888 , mypolls 0 +myconn 0 connecting thr c54b0800 , thread 6888 , mypolls 0 +thr c54b0980 , status 1 +connecting thr c54b0980 , thread 6889 , mypolls 0 +myconn 0 connecting thr c54b0980 , thread 6889 , mypolls 0 +thr c54b0b00 , status 1 +connecting thr c54b0b00 , thread 6890 , mypolls 0 +myconn 0 connecting thr c54b0b00 , thread 6890 , mypolls 0 +thr c54b0c80 , status 1 +connecting thr c54b0c80 , thread 6891 , mypolls 0 +myconn 0 connecting thr c54b0c80 , thread 6891 , mypolls 0 +thr c54b0e00 , status 1 +connecting thr c54b0e00 , thread 6892 , mypolls 0 +myconn 0 connecting thr c54b0e00 , thread 6892 , mypolls 0 +thr c54b0f80 , status 1 +connecting thr c54b0f80 , thread 6893 , mypolls 0 +myconn 0 connecting thr c54b0f80 , thread 6893 , mypolls 0 +thr c54b1100 , status 1 +connecting thr c54b1100 , thread 6894 , mypolls 0 +myconn 0 connecting thr c54b1100 , thread 6894 , mypolls 0 +thr c54b1280 , status 1 +connecting thr c54b1280 , thread 6895 , mypolls 0 +myconn 0 connecting thr c54b1280 , thread 6895 , mypolls 0 +thr c54b1400 , status 1 +connecting thr c54b1400 , thread 6896 , mypolls 0 +myconn 0 connecting thr c54b1400 , thread 6896 , mypolls 0 +thr c54b1580 , status 1 +connecting thr c54b1580 , thread 6897 , mypolls 0 +myconn 0 connecting thr c54b1580 , thread 6897 , mypolls 0 +thr c54b1700 , status 1 +connecting thr c54b1700 , thread 6898 , mypolls 0 +myconn 0 connecting thr c54b1700 , thread 6898 , mypolls 0 +thr c54b1880 , status 1 +connecting thr c54b1880 , thread 6899 , mypolls 0 +myconn 0 connecting thr c54b1880 , thread 6899 , mypolls 0 +thr c54b1a00 , status 1 +connecting thr c54b1a00 , thread 6900 , mypolls 0 +myconn 0 connecting thr c54b1a00 , thread 6900 , mypolls 0 +thr c54b1b80 , status 1 +connecting thr c54b1b80 , thread 6901 , mypolls 0 +myconn 0 connecting thr c54b1b80 , thread 6901 , mypolls 0 +thr c54b1d00 , status 1 +connecting thr c54b1d00 , thread 6902 , mypolls 0 +myconn 0 connecting thr c54b1d00 , thread 6902 , mypolls 0 +thr c54b1e80 , status 1 +connecting thr c54b1e80 , thread 6903 , mypolls 0 +myconn 0 connecting thr c54b1e80 , thread 6903 , mypolls 0 +thr c531b000 , status 1 +connecting thr c531b000 , thread 6904 , mypolls 0 +myconn 0 connecting thr c531b000 , thread 6904 , mypolls 0 +thr c531b180 , status 1 +connecting thr c531b180 , thread 6905 , mypolls 0 +myconn 0 connecting thr c531b180 , thread 6905 , mypolls 0 +thr c531b300 , status 1 +connecting thr c531b300 , thread 6906 , mypolls 0 +myconn 0 connecting thr c531b300 , thread 6906 , mypolls 0 +thr c531b480 , status 1 +connecting thr c531b480 , thread 6907 , mypolls 0 +myconn 0 connecting thr c531b480 , thread 6907 , mypolls 0 +thr c531b600 , status 1 +connecting thr c531b600 , thread 6908 , mypolls 0 +myconn 0 connecting thr c531b600 , thread 6908 , mypolls 0 +thr c531b780 , status 1 +connecting thr c531b780 , thread 6909 , mypolls 0 +myconn 0 connecting thr c531b780 , thread 6909 , mypolls 0 +thr c531b900 , status 1 +connecting thr c531b900 , thread 6910 , mypolls 0 +myconn 0 connecting thr c531b900 , thread 6910 , mypolls 0 +thr c531ba80 , status 1 +connecting thr c531ba80 , thread 6911 , mypolls 0 +myconn 0 connecting thr c531ba80 , thread 6911 , mypolls 0 +thr c531bc00 , status 1 +connecting thr c531bc00 , thread 6912 , mypolls 0 +myconn 0 connecting thr c531bc00 , thread 6912 , mypolls 0 +thr c531bd80 , status 1 +connecting thr c531bd80 , thread 6913 , mypolls 0 +myconn 0 connecting thr c531bd80 , thread 6913 , mypolls 0 +thr c531bf00 , status 1 +connecting thr c531bf00 , thread 6914 , mypolls 0 +myconn 0 connecting thr c531bf00 , thread 6914 , mypolls 0 +thr c531c080 , status 1 +connecting thr c531c080 , thread 6915 , mypolls 0 +myconn 0 connecting thr c531c080 , thread 6915 , mypolls 0 +thr c531c200 , status 1 +connecting thr c531c200 , thread 6916 , mypolls 0 +myconn 0 connecting thr c531c200 , thread 6916 , mypolls 0 +thr c531c380 , status 1 +connecting thr c531c380 , thread 6917 , mypolls 0 +myconn 0 connecting thr c531c380 , thread 6917 , mypolls 0 +thr c531c500 , status 1 +connecting thr c531c500 , thread 6918 , mypolls 0 +myconn 0 connecting thr c531c500 , thread 6918 , mypolls 0 +thr c531c680 , status 1 +connecting thr c531c680 , thread 6919 , mypolls 0 +myconn 0 connecting thr c531c680 , thread 6919 , mypolls 0 +thr c531c800 , status 1 +connecting thr c531c800 , thread 6920 , mypolls 0 +myconn 0 connecting thr c531c800 , thread 6920 , mypolls 0 +thr c531c980 , status 1 +connecting thr c531c980 , thread 6921 , mypolls 0 +myconn 0 connecting thr c531c980 , thread 6921 , mypolls 0 +thr c531cb00 , status 1 +connecting thr c531cb00 , thread 6922 , mypolls 0 +myconn 0 connecting thr c531cb00 , thread 6922 , mypolls 0 +thr c531cc80 , status 1 +connecting thr c531cc80 , thread 6923 , mypolls 0 +myconn 0 connecting thr c531cc80 , thread 6923 , mypolls 0 +thr c531ce00 , status 1 +connecting thr c531ce00 , thread 6924 , mypolls 0 +myconn 0 connecting thr c531ce00 , thread 6924 , mypolls 0 +thr c531cf80 , status 1 +connecting thr c531cf80 , thread 6925 , mypolls 0 +myconn 0 connecting thr c531cf80 , thread 6925 , mypolls 0 +thr c531d100 , status 1 +connecting thr c531d100 , thread 6926 , mypolls 0 +myconn 0 connecting thr c531d100 , thread 6926 , mypolls 0 +thr c531d280 , status 1 +connecting thr c531d280 , thread 6927 , mypolls 0 +myconn 0 connecting thr c531d280 , thread 6927 , mypolls 0 +thr c531d400 , status 1 +connecting thr c531d400 , thread 6928 , mypolls 0 +myconn 0 connecting thr c531d400 , thread 6928 , mypolls 0 +thr c531d580 , status 1 +connecting thr c531d580 , thread 6929 , mypolls 0 +myconn 0 connecting thr c531d580 , thread 6929 , mypolls 0 +thr c531d700 , status 1 +connecting thr c531d700 , thread 6930 , mypolls 0 +myconn 0 connecting thr c531d700 , thread 6930 , mypolls 0 +thr c531d880 , status 1 +connecting thr c531d880 , thread 6931 , mypolls 0 +myconn 0 connecting thr c531d880 , thread 6931 , mypolls 0 +thr c531da00 , status 1 +connecting thr c531da00 , thread 6932 , mypolls 0 +myconn 0 connecting thr c531da00 , thread 6932 , mypolls 0 +thr c531db80 , status 1 +connecting thr c531db80 , thread 6933 , mypolls 0 +myconn 0 connecting thr c531db80 , thread 6933 , mypolls 0 +thr c531dd00 , status 1 +connecting thr c531dd00 , thread 6934 , mypolls 0 +myconn 0 connecting thr c531dd00 , thread 6934 , mypolls 0 +thr c531de80 , status 1 +connecting thr c531de80 , thread 6935 , mypolls 0 +myconn 0 connecting thr c531de80 , thread 6935 , mypolls 0 +thr c517a000 , status 1 +connecting thr c517a000 , thread 6936 , mypolls 0 +myconn 0 connecting thr c517a000 , thread 6936 , mypolls 0 +thr c517a180 , status 1 +connecting thr c517a180 , thread 6937 , mypolls 0 +myconn 0 connecting thr c517a180 , thread 6937 , mypolls 0 +thr c517a300 , status 1 +connecting thr c517a300 , thread 6938 , mypolls 0 +myconn 0 connecting thr c517a300 , thread 6938 , mypolls 0 +thr c517a480 , status 1 +connecting thr c517a480 , thread 6939 , mypolls 0 +myconn 0 connecting thr c517a480 , thread 6939 , mypolls 0 +thr c517a600 , status 1 +connecting thr c517a600 , thread 6940 , mypolls 0 +myconn 0 connecting thr c517a600 , thread 6940 , mypolls 0 +thr c517a780 , status 1 +connecting thr c517a780 , thread 6941 , mypolls 0 +myconn 0 connecting thr c517a780 , thread 6941 , mypolls 0 +thr c517a900 , status 1 +connecting thr c517a900 , thread 6942 , mypolls 0 +myconn 0 connecting thr c517a900 , thread 6942 , mypolls 0 +thr c517aa80 , status 1 +connecting thr c517aa80 , thread 6943 , mypolls 0 +myconn 0 connecting thr c517aa80 , thread 6943 , mypolls 0 +thr c517ac00 , status 1 +connecting thr c517ac00 , thread 6944 , mypolls 0 +myconn 0 connecting thr c517ac00 , thread 6944 , mypolls 0 +thr c517ad80 , status 1 +connecting thr c517ad80 , thread 6945 , mypolls 0 +myconn 0 connecting thr c517ad80 , thread 6945 , mypolls 0 +thr c517af00 , status 1 +connecting thr c517af00 , thread 6946 , mypolls 0 +myconn 0 connecting thr c517af00 , thread 6946 , mypolls 0 +thr c517b080 , status 1 +connecting thr c517b080 , thread 6947 , mypolls 0 +myconn 0 connecting thr c517b080 , thread 6947 , mypolls 0 +thr c517b200 , status 1 +connecting thr c517b200 , thread 6948 , mypolls 0 +myconn 0 connecting thr c517b200 , thread 6948 , mypolls 0 +thr c517b380 , status 1 +connecting thr c517b380 , thread 6949 , mypolls 0 +myconn 0 connecting thr c517b380 , thread 6949 , mypolls 0 +thr c517b500 , status 1 +connecting thr c517b500 , thread 6950 , mypolls 0 +myconn 0 connecting thr c517b500 , thread 6950 , mypolls 0 +thr c517b680 , status 1 +connecting thr c517b680 , thread 6951 , mypolls 0 +myconn 0 connecting thr c517b680 , thread 6951 , mypolls 0 +thr c517b800 , status 1 +connecting thr c517b800 , thread 6952 , mypolls 0 +myconn 0 connecting thr c517b800 , thread 6952 , mypolls 0 +thr c517b980 , status 1 +connecting thr c517b980 , thread 6953 , mypolls 0 +myconn 0 connecting thr c517b980 , thread 6953 , mypolls 0 +thr c517bb00 , status 1 +connecting thr c517bb00 , thread 6954 , mypolls 0 +myconn 0 connecting thr c517bb00 , thread 6954 , mypolls 0 +thr c517bc80 , status 1 +connecting thr c517bc80 , thread 6955 , mypolls 0 +myconn 0 connecting thr c517bc80 , thread 6955 , mypolls 0 +thr c517be00 , status 1 +connecting thr c517be00 , thread 6956 , mypolls 0 +myconn 0 connecting thr c517be00 , thread 6956 , mypolls 0 +thr c517bf80 , status 1 +connecting thr c517bf80 , thread 6957 , mypolls 0 +myconn 0 connecting thr c517bf80 , thread 6957 , mypolls 0 +thr c517c100 , status 1 +connecting thr c517c100 , thread 6958 , mypolls 0 +myconn 0 connecting thr c517c100 , thread 6958 , mypolls 0 +thr c517c280 , status 1 +connecting thr c517c280 , thread 6959 , mypolls 0 +myconn 0 connecting thr c517c280 , thread 6959 , mypolls 0 +thr c517c400 , status 1 +connecting thr c517c400 , thread 6960 , mypolls 0 +myconn 0 connecting thr c517c400 , thread 6960 , mypolls 0 +thr c517c580 , status 1 +connecting thr c517c580 , thread 6961 , mypolls 0 +myconn 0 connecting thr c517c580 , thread 6961 , mypolls 0 +thr c517c700 , status 1 +connecting thr c517c700 , thread 6962 , mypolls 0 +myconn 0 connecting thr c517c700 , thread 6962 , mypolls 0 +thr c517c880 , status 1 +connecting thr c517c880 , thread 6963 , mypolls 0 +myconn 0 connecting thr c517c880 , thread 6963 , mypolls 0 +thr c517ca00 , status 1 +connecting thr c517ca00 , thread 6964 , mypolls 0 +myconn 0 connecting thr c517ca00 , thread 6964 , mypolls 0 +thr c517cb80 , status 1 +connecting thr c517cb80 , thread 6965 , mypolls 0 +myconn 0 connecting thr c517cb80 , thread 6965 , mypolls 0 +thr c517cd00 , status 1 +connecting thr c517cd00 , thread 6966 , mypolls 0 +myconn 0 connecting thr c517cd00 , thread 6966 , mypolls 0 +thr c517ce80 , status 1 +connecting thr c517ce80 , thread 6967 , mypolls 0 +myconn 0 connecting thr c517ce80 , thread 6967 , mypolls 0 +thr c4fdd000 , status 1 +connecting thr c4fdd000 , thread 6968 , mypolls 0 +myconn 0 connecting thr c4fdd000 , thread 6968 , mypolls 0 +thr c4fdd180 , status 1 +connecting thr c4fdd180 , thread 6969 , mypolls 0 +myconn 0 connecting thr c4fdd180 , thread 6969 , mypolls 0 +thr c4fdd300 , status 1 +connecting thr c4fdd300 , thread 6970 , mypolls 0 +myconn 0 connecting thr c4fdd300 , thread 6970 , mypolls 0 +thr c4fdd480 , status 1 +connecting thr c4fdd480 , thread 6971 , mypolls 0 +myconn 0 connecting thr c4fdd480 , thread 6971 , mypolls 0 +thr c4fdd600 , status 1 +connecting thr c4fdd600 , thread 6972 , mypolls 0 +myconn 0 connecting thr c4fdd600 , thread 6972 , mypolls 0 +thr c4fdd780 , status 1 +connecting thr c4fdd780 , thread 6973 , mypolls 0 +myconn 0 connecting thr c4fdd780 , thread 6973 , mypolls 0 +thr c4fdd900 , status 1 +connecting thr c4fdd900 , thread 6974 , mypolls 0 +myconn 0 connecting thr c4fdd900 , thread 6974 , mypolls 0 +thr c4fdda80 , status 1 +connecting thr c4fdda80 , thread 6975 , mypolls 0 +myconn 0 connecting thr c4fdda80 , thread 6975 , mypolls 0 +thr c4fddc00 , status 1 +connecting thr c4fddc00 , thread 6976 , mypolls 0 +myconn 0 connecting thr c4fddc00 , thread 6976 , mypolls 0 +thr c4fddd80 , status 1 +connecting thr c4fddd80 , thread 6977 , mypolls 0 +myconn 0 connecting thr c4fddd80 , thread 6977 , mypolls 0 +thr c4fddf00 , status 1 +connecting thr c4fddf00 , thread 6978 , mypolls 0 +myconn 0 connecting thr c4fddf00 , thread 6978 , mypolls 0 +thr c4fde080 , status 1 +connecting thr c4fde080 , thread 6979 , mypolls 0 +myconn 0 connecting thr c4fde080 , thread 6979 , mypolls 0 +thr c4fde200 , status 1 +connecting thr c4fde200 , thread 6980 , mypolls 0 +myconn 0 connecting thr c4fde200 , thread 6980 , mypolls 0 +thr c4fde380 , status 1 +connecting thr c4fde380 , thread 6981 , mypolls 0 +myconn 0 connecting thr c4fde380 , thread 6981 , mypolls 0 +thr c4fde500 , status 1 +connecting thr c4fde500 , thread 6982 , mypolls 0 +myconn 0 connecting thr c4fde500 , thread 6982 , mypolls 0 +thr c4fde680 , status 1 +connecting thr c4fde680 , thread 6983 , mypolls 0 +myconn 0 connecting thr c4fde680 , thread 6983 , mypolls 0 +thr c4fde800 , status 1 +connecting thr c4fde800 , thread 6984 , mypolls 0 +myconn 0 connecting thr c4fde800 , thread 6984 , mypolls 0 +thr c4fde980 , status 1 +connecting thr c4fde980 , thread 6985 , mypolls 0 +myconn 0 connecting thr c4fde980 , thread 6985 , mypolls 0 +thr c4fdeb00 , status 1 +connecting thr c4fdeb00 , thread 6986 , mypolls 0 +myconn 0 connecting thr c4fdeb00 , thread 6986 , mypolls 0 +thr c4fdec80 , status 1 +connecting thr c4fdec80 , thread 6987 , mypolls 0 +myconn 0 connecting thr c4fdec80 , thread 6987 , mypolls 0 +thr c4fdee00 , status 1 +connecting thr c4fdee00 , thread 6988 , mypolls 0 +myconn 0 connecting thr c4fdee00 , thread 6988 , mypolls 0 +thr c4fdef80 , status 1 +connecting thr c4fdef80 , thread 6989 , mypolls 0 +myconn 0 connecting thr c4fdef80 , thread 6989 , mypolls 0 +thr c4fdf100 , status 1 +connecting thr c4fdf100 , thread 6990 , mypolls 0 +myconn 0 connecting thr c4fdf100 , thread 6990 , mypolls 0 +thr c4fdf280 , status 1 +connecting thr c4fdf280 , thread 6991 , mypolls 0 +myconn 0 connecting thr c4fdf280 , thread 6991 , mypolls 0 +thr c4fdf400 , status 1 +connecting thr c4fdf400 , thread 6992 , mypolls 0 +myconn 0 connecting thr c4fdf400 , thread 6992 , mypolls 0 +thr c4fdf580 , status 1 +connecting thr c4fdf580 , thread 6993 , mypolls 0 +myconn 0 connecting thr c4fdf580 , thread 6993 , mypolls 0 +thr c4fdf700 , status 1 +connecting thr c4fdf700 , thread 6994 , mypolls 0 +myconn 0 connecting thr c4fdf700 , thread 6994 , mypolls 0 +thr c4fdf880 , status 1 +connecting thr c4fdf880 , thread 6995 , mypolls 0 +myconn 0 connecting thr c4fdf880 , thread 6995 , mypolls 0 +thr c4fdfa00 , status 1 +connecting thr c4fdfa00 , thread 6996 , mypolls 0 +myconn 0 connecting thr c4fdfa00 , thread 6996 , mypolls 0 +thr c4fdfb80 , status 1 +connecting thr c4fdfb80 , thread 6997 , mypolls 0 +myconn 0 connecting thr c4fdfb80 , thread 6997 , mypolls 0 +thr c4fdfd00 , status 1 +connecting thr c4fdfd00 , thread 6998 , mypolls 0 +myconn 0 connecting thr c4fdfd00 , thread 6998 , mypolls 0 +thr c4fdfe80 , status 1 +connecting thr c4fdfe80 , thread 6999 , mypolls 0 +myconn 0 connecting thr c4fdfe80 , thread 6999 , mypolls 0 +thr c4a4c000 , status 1 +connecting thr c4a4c000 , thread 7000 , mypolls 0 +myconn 0 connecting thr c4a4c000 , thread 7000 , mypolls 0 +thr c4a4c180 , status 1 +connecting thr c4a4c180 , thread 7001 , mypolls 0 +myconn 0 connecting thr c4a4c180 , thread 7001 , mypolls 0 +thr c4a4c300 , status 1 +connecting thr c4a4c300 , thread 7002 , mypolls 0 +myconn 0 connecting thr c4a4c300 , thread 7002 , mypolls 0 +thr c4a4c480 , status 1 +connecting thr c4a4c480 , thread 7003 , mypolls 0 +myconn 0 connecting thr c4a4c480 , thread 7003 , mypolls 0 +thr c4a4c600 , status 1 +connecting thr c4a4c600 , thread 7004 , mypolls 0 +myconn 0 connecting thr c4a4c600 , thread 7004 , mypolls 0 +thr c4a4c780 , status 1 +connecting thr c4a4c780 , thread 7005 , mypolls 0 +myconn 0 connecting thr c4a4c780 , thread 7005 , mypolls 0 +thr c4a4c900 , status 1 +connecting thr c4a4c900 , thread 7006 , mypolls 0 +myconn 0 connecting thr c4a4c900 , thread 7006 , mypolls 0 +thr c4a4ca80 , status 1 +connecting thr c4a4ca80 , thread 7007 , mypolls 0 +myconn 0 connecting thr c4a4ca80 , thread 7007 , mypolls 0 +thr c4a4cc00 , status 1 +connecting thr c4a4cc00 , thread 7008 , mypolls 0 +myconn 0 connecting thr c4a4cc00 , thread 7008 , mypolls 0 +thr c4a4cd80 , status 1 +connecting thr c4a4cd80 , thread 7009 , mypolls 0 +myconn 0 connecting thr c4a4cd80 , thread 7009 , mypolls 0 +thr c4a4cf00 , status 1 +connecting thr c4a4cf00 , thread 7010 , mypolls 0 +myconn 0 connecting thr c4a4cf00 , thread 7010 , mypolls 0 +thr c4a4d080 , status 1 +connecting thr c4a4d080 , thread 7011 , mypolls 0 +myconn 0 connecting thr c4a4d080 , thread 7011 , mypolls 0 +thr c4a4d200 , status 1 +connecting thr c4a4d200 , thread 7012 , mypolls 0 +myconn 0 connecting thr c4a4d200 , thread 7012 , mypolls 0 +thr c4a4d380 , status 1 +connecting thr c4a4d380 , thread 7013 , mypolls 0 +myconn 0 connecting thr c4a4d380 , thread 7013 , mypolls 0 +thr c4a4d500 , status 1 +connecting thr c4a4d500 , thread 7014 , mypolls 0 +myconn 0 connecting thr c4a4d500 , thread 7014 , mypolls 0 +thr c4a4d680 , status 1 +connecting thr c4a4d680 , thread 7015 , mypolls 0 +myconn 0 connecting thr c4a4d680 , thread 7015 , mypolls 0 +thr c4a4d800 , status 1 +connecting thr c4a4d800 , thread 7016 , mypolls 0 +myconn 0 connecting thr c4a4d800 , thread 7016 , mypolls 0 +thr c4a4d980 , status 1 +connecting thr c4a4d980 , thread 7017 , mypolls 0 +myconn 0 connecting thr c4a4d980 , thread 7017 , mypolls 0 +thr c4a4db00 , status 1 +connecting thr c4a4db00 , thread 7018 , mypolls 0 +myconn 0 connecting thr c4a4db00 , thread 7018 , mypolls 0 +thr c4a4dc80 , status 1 +connecting thr c4a4dc80 , thread 7019 , mypolls 0 +myconn 0 connecting thr c4a4dc80 , thread 7019 , mypolls 0 +thr c4a4de00 , status 1 +connecting thr c4a4de00 , thread 7020 , mypolls 0 +myconn 0 connecting thr c4a4de00 , thread 7020 , mypolls 0 +thr c4a4df80 , status 1 +connecting thr c4a4df80 , thread 7021 , mypolls 0 +myconn 0 connecting thr c4a4df80 , thread 7021 , mypolls 0 +thr c4a4e100 , status 1 +connecting thr c4a4e100 , thread 7022 , mypolls 0 +myconn 0 connecting thr c4a4e100 , thread 7022 , mypolls 0 +thr c4a4e280 , status 1 +connecting thr c4a4e280 , thread 7023 , mypolls 0 +myconn 0 connecting thr c4a4e280 , thread 7023 , mypolls 0 +thr c4a4e400 , status 1 +connecting thr c4a4e400 , thread 7024 , mypolls 0 +myconn 0 connecting thr c4a4e400 , thread 7024 , mypolls 0 +thr c4a4e580 , status 1 +connecting thr c4a4e580 , thread 7025 , mypolls 0 +myconn 0 connecting thr c4a4e580 , thread 7025 , mypolls 0 +thr c4a4e700 , status 1 +connecting thr c4a4e700 , thread 7026 , mypolls 0 +myconn 0 connecting thr c4a4e700 , thread 7026 , mypolls 0 +thr c4a4e880 , status 1 +connecting thr c4a4e880 , thread 7027 , mypolls 0 +myconn 0 connecting thr c4a4e880 , thread 7027 , mypolls 0 +thr c4a4ea00 , status 1 +connecting thr c4a4ea00 , thread 7028 , mypolls 0 +myconn 0 connecting thr c4a4ea00 , thread 7028 , mypolls 0 +thr c4a4eb80 , status 1 +connecting thr c4a4eb80 , thread 7029 , mypolls 0 +myconn 0 connecting thr c4a4eb80 , thread 7029 , mypolls 0 +thr c4a4ed00 , status 1 +connecting thr c4a4ed00 , thread 7030 , mypolls 0 +myconn 0 connecting thr c4a4ed00 , thread 7030 , mypolls 0 +thr c4a4ee80 , status 1 +connecting thr c4a4ee80 , thread 7031 , mypolls 0 +myconn 0 connecting thr c4a4ee80 , thread 7031 , mypolls 0 +thr c4bfc000 , status 1 +connecting thr c4bfc000 , thread 7032 , mypolls 0 +myconn 0 connecting thr c4bfc000 , thread 7032 , mypolls 0 +thr c4bfc180 , status 1 +connecting thr c4bfc180 , thread 7033 , mypolls 0 +myconn 0 connecting thr c4bfc180 , thread 7033 , mypolls 0 +thr c4bfc300 , status 1 +connecting thr c4bfc300 , thread 7034 , mypolls 0 +myconn 0 connecting thr c4bfc300 , thread 7034 , mypolls 0 +thr c4bfc480 , status 1 +connecting thr c4bfc480 , thread 7035 , mypolls 0 +myconn 0 connecting thr c4bfc480 , thread 7035 , mypolls 0 +thr c4bfc600 , status 1 +connecting thr c4bfc600 , thread 7036 , mypolls 0 +myconn 0 connecting thr c4bfc600 , thread 7036 , mypolls 0 +thr c4bfc780 , status 1 +connecting thr c4bfc780 , thread 7037 , mypolls 0 +myconn 0 connecting thr c4bfc780 , thread 7037 , mypolls 0 +thr c4bfc900 , status 1 +connecting thr c4bfc900 , thread 7038 , mypolls 0 +myconn 0 connecting thr c4bfc900 , thread 7038 , mypolls 0 +thr c4bfca80 , status 1 +connecting thr c4bfca80 , thread 7039 , mypolls 0 +myconn 0 connecting thr c4bfca80 , thread 7039 , mypolls 0 +thr c4bfcc00 , status 1 +connecting thr c4bfcc00 , thread 7040 , mypolls 0 +myconn 0 connecting thr c4bfcc00 , thread 7040 , mypolls 0 +thr c4bfcd80 , status 1 +connecting thr c4bfcd80 , thread 7041 , mypolls 0 +myconn 0 connecting thr c4bfcd80 , thread 7041 , mypolls 0 +thr c4bfcf00 , status 1 +connecting thr c4bfcf00 , thread 7042 , mypolls 0 +myconn 0 connecting thr c4bfcf00 , thread 7042 , mypolls 0 +thr c4bfd080 , status 1 +connecting thr c4bfd080 , thread 7043 , mypolls 0 +myconn 0 connecting thr c4bfd080 , thread 7043 , mypolls 0 +thr c4bfd200 , status 1 +connecting thr c4bfd200 , thread 7044 , mypolls 0 +myconn 0 connecting thr c4bfd200 , thread 7044 , mypolls 0 +thr c4bfd380 , status 1 +connecting thr c4bfd380 , thread 7045 , mypolls 0 +myconn 0 connecting thr c4bfd380 , thread 7045 , mypolls 0 +thr c4bfd500 , status 1 +connecting thr c4bfd500 , thread 7046 , mypolls 0 +myconn 0 connecting thr c4bfd500 , thread 7046 , mypolls 0 +thr c4bfd680 , status 1 +connecting thr c4bfd680 , thread 7047 , mypolls 0 +myconn 0 connecting thr c4bfd680 , thread 7047 , mypolls 0 +thr c4bfd800 , status 1 +connecting thr c4bfd800 , thread 7048 , mypolls 0 +myconn 0 connecting thr c4bfd800 , thread 7048 , mypolls 0 +thr c4bfd980 , status 1 +connecting thr c4bfd980 , thread 7049 , mypolls 0 +myconn 0 connecting thr c4bfd980 , thread 7049 , mypolls 0 +thr c4bfdb00 , status 1 +connecting thr c4bfdb00 , thread 7050 , mypolls 0 +myconn 0 connecting thr c4bfdb00 , thread 7050 , mypolls 0 +thr c4bfdc80 , status 1 +connecting thr c4bfdc80 , thread 7051 , mypolls 0 +myconn 0 connecting thr c4bfdc80 , thread 7051 , mypolls 0 +thr c4bfde00 , status 1 +connecting thr c4bfde00 , thread 7052 , mypolls 0 +myconn 0 connecting thr c4bfde00 , thread 7052 , mypolls 0 +thr c4bfdf80 , status 1 +connecting thr c4bfdf80 , thread 7053 , mypolls 0 +myconn 0 connecting thr c4bfdf80 , thread 7053 , mypolls 0 +thr c4bfe100 , status 1 +connecting thr c4bfe100 , thread 7054 , mypolls 0 +myconn 0 connecting thr c4bfe100 , thread 7054 , mypolls 0 +thr c4bfe280 , status 1 +connecting thr c4bfe280 , thread 7055 , mypolls 0 +myconn 0 connecting thr c4bfe280 , thread 7055 , mypolls 0 +thr c4bfe400 , status 1 +connecting thr c4bfe400 , thread 7056 , mypolls 0 +myconn 0 connecting thr c4bfe400 , thread 7056 , mypolls 0 +thr c4bfe580 , status 1 +connecting thr c4bfe580 , thread 7057 , mypolls 0 +myconn 0 connecting thr c4bfe580 , thread 7057 , mypolls 0 +thr c4bfe700 , status 1 +connecting thr c4bfe700 , thread 7058 , mypolls 0 +myconn 0 connecting thr c4bfe700 , thread 7058 , mypolls 0 +thr c4bfe880 , status 1 +connecting thr c4bfe880 , thread 7059 , mypolls 0 +myconn 0 connecting thr c4bfe880 , thread 7059 , mypolls 0 +thr c4bfea00 , status 1 +connecting thr c4bfea00 , thread 7060 , mypolls 0 +myconn 0 connecting thr c4bfea00 , thread 7060 , mypolls 0 +thr c4bfeb80 , status 1 +connecting thr c4bfeb80 , thread 7061 , mypolls 0 +myconn 0 connecting thr c4bfeb80 , thread 7061 , mypolls 0 +thr c4bfed00 , status 1 +connecting thr c4bfed00 , thread 7062 , mypolls 0 +myconn 0 connecting thr c4bfed00 , thread 7062 , mypolls 0 +thr c4bfee80 , status 1 +connecting thr c4bfee80 , thread 7063 , mypolls 0 +myconn 0 connecting thr c4bfee80 , thread 7063 , mypolls 0 +thr c4712000 , status 1 +connecting thr c4712000 , thread 7064 , mypolls 0 +myconn 0 connecting thr c4712000 , thread 7064 , mypolls 0 +thr c4712180 , status 1 +connecting thr c4712180 , thread 7065 , mypolls 0 +myconn 0 connecting thr c4712180 , thread 7065 , mypolls 0 +thr c4712300 , status 1 +connecting thr c4712300 , thread 7066 , mypolls 0 +myconn 0 connecting thr c4712300 , thread 7066 , mypolls 0 +thr c4712480 , status 1 +connecting thr c4712480 , thread 7067 , mypolls 0 +myconn 0 connecting thr c4712480 , thread 7067 , mypolls 0 +thr c4712600 , status 1 +connecting thr c4712600 , thread 7068 , mypolls 0 +myconn 0 connecting thr c4712600 , thread 7068 , mypolls 0 +thr c4712780 , status 1 +connecting thr c4712780 , thread 7069 , mypolls 0 +myconn 0 connecting thr c4712780 , thread 7069 , mypolls 0 +thr c4712900 , status 1 +connecting thr c4712900 , thread 7070 , mypolls 0 +myconn 0 connecting thr c4712900 , thread 7070 , mypolls 0 +thr c4712a80 , status 1 +connecting thr c4712a80 , thread 7071 , mypolls 0 +myconn 0 connecting thr c4712a80 , thread 7071 , mypolls 0 +thr c4712c00 , status 1 +connecting thr c4712c00 , thread 7072 , mypolls 0 +myconn 0 connecting thr c4712c00 , thread 7072 , mypolls 0 +thr c4712d80 , status 1 +connecting thr c4712d80 , thread 7073 , mypolls 0 +myconn 0 connecting thr c4712d80 , thread 7073 , mypolls 0 +thr c4712f00 , status 1 +connecting thr c4712f00 , thread 7074 , mypolls 0 +myconn 0 connecting thr c4712f00 , thread 7074 , mypolls 0 +thr c4713080 , status 1 +connecting thr c4713080 , thread 7075 , mypolls 0 +myconn 0 connecting thr c4713080 , thread 7075 , mypolls 0 +thr c4713200 , status 1 +connecting thr c4713200 , thread 7076 , mypolls 0 +myconn 0 connecting thr c4713200 , thread 7076 , mypolls 0 +thr c4713380 , status 1 +connecting thr c4713380 , thread 7077 , mypolls 0 +myconn 0 connecting thr c4713380 , thread 7077 , mypolls 0 +thr c4713500 , status 1 +connecting thr c4713500 , thread 7078 , mypolls 0 +myconn 0 connecting thr c4713500 , thread 7078 , mypolls 0 +thr c4713680 , status 1 +connecting thr c4713680 , thread 7079 , mypolls 0 +myconn 0 connecting thr c4713680 , thread 7079 , mypolls 0 +thr c4713800 , status 1 +connecting thr c4713800 , thread 7080 , mypolls 0 +myconn 0 connecting thr c4713800 , thread 7080 , mypolls 0 +thr c4713980 , status 1 +connecting thr c4713980 , thread 7081 , mypolls 0 +myconn 0 connecting thr c4713980 , thread 7081 , mypolls 0 +thr c4713b00 , status 1 +connecting thr c4713b00 , thread 7082 , mypolls 0 +myconn 0 connecting thr c4713b00 , thread 7082 , mypolls 0 +thr c4713c80 , status 1 +connecting thr c4713c80 , thread 7083 , mypolls 0 +myconn 0 connecting thr c4713c80 , thread 7083 , mypolls 0 +thr c4713e00 , status 1 +connecting thr c4713e00 , thread 7084 , mypolls 0 +myconn 0 connecting thr c4713e00 , thread 7084 , mypolls 0 +thr c4713f80 , status 1 +connecting thr c4713f80 , thread 7085 , mypolls 0 +myconn 0 connecting thr c4713f80 , thread 7085 , mypolls 0 +thr c4714100 , status 1 +connecting thr c4714100 , thread 7086 , mypolls 0 +myconn 0 connecting thr c4714100 , thread 7086 , mypolls 0 +thr c4714280 , status 1 +connecting thr c4714280 , thread 7087 , mypolls 0 +myconn 0 connecting thr c4714280 , thread 7087 , mypolls 0 +thr c4714400 , status 1 +connecting thr c4714400 , thread 7088 , mypolls 0 +myconn 0 connecting thr c4714400 , thread 7088 , mypolls 0 +thr c4714580 , status 1 +connecting thr c4714580 , thread 7089 , mypolls 0 +myconn 0 connecting thr c4714580 , thread 7089 , mypolls 0 +thr c4714700 , status 1 +connecting thr c4714700 , thread 7090 , mypolls 0 +myconn 0 connecting thr c4714700 , thread 7090 , mypolls 0 +thr c4714880 , status 1 +connecting thr c4714880 , thread 7091 , mypolls 0 +myconn 0 connecting thr c4714880 , thread 7091 , mypolls 0 +thr c4714a00 , status 1 +connecting thr c4714a00 , thread 7092 , mypolls 0 +myconn 0 connecting thr c4714a00 , thread 7092 , mypolls 0 +thr c4714b80 , status 1 +connecting thr c4714b80 , thread 7093 , mypolls 0 +myconn 0 connecting thr c4714b80 , thread 7093 , mypolls 0 +thr c4714d00 , status 1 +connecting thr c4714d00 , thread 7094 , mypolls 0 +myconn 0 connecting thr c4714d00 , thread 7094 , mypolls 0 +thr c4714e80 , status 1 +connecting thr c4714e80 , thread 7095 , mypolls 0 +myconn 0 connecting thr c4714e80 , thread 7095 , mypolls 0 +thr c4570000 , status 1 +connecting thr c4570000 , thread 7096 , mypolls 0 +myconn 0 connecting thr c4570000 , thread 7096 , mypolls 0 +thr c4570180 , status 1 +connecting thr c4570180 , thread 7097 , mypolls 0 +myconn 0 connecting thr c4570180 , thread 7097 , mypolls 0 +thr c4570300 , status 1 +connecting thr c4570300 , thread 7098 , mypolls 0 +myconn 0 connecting thr c4570300 , thread 7098 , mypolls 0 +thr c4570480 , status 1 +connecting thr c4570480 , thread 7099 , mypolls 0 +myconn 0 connecting thr c4570480 , thread 7099 , mypolls 0 +thr c4570600 , status 1 +connecting thr c4570600 , thread 7100 , mypolls 0 +myconn 0 connecting thr c4570600 , thread 7100 , mypolls 0 +thr c4570780 , status 1 +connecting thr c4570780 , thread 7101 , mypolls 0 +myconn 0 connecting thr c4570780 , thread 7101 , mypolls 0 +thr c4570900 , status 1 +connecting thr c4570900 , thread 7102 , mypolls 0 +myconn 0 connecting thr c4570900 , thread 7102 , mypolls 0 +thr c4570a80 , status 1 +connecting thr c4570a80 , thread 7103 , mypolls 0 +myconn 0 connecting thr c4570a80 , thread 7103 , mypolls 0 +thr c4570c00 , status 1 +connecting thr c4570c00 , thread 7104 , mypolls 0 +myconn 0 connecting thr c4570c00 , thread 7104 , mypolls 0 +thr c4570d80 , status 1 +connecting thr c4570d80 , thread 7105 , mypolls 0 +myconn 0 connecting thr c4570d80 , thread 7105 , mypolls 0 +thr c4570f00 , status 1 +connecting thr c4570f00 , thread 7106 , mypolls 0 +myconn 0 connecting thr c4570f00 , thread 7106 , mypolls 0 +thr c4571080 , status 1 +connecting thr c4571080 , thread 7107 , mypolls 0 +myconn 0 connecting thr c4571080 , thread 7107 , mypolls 0 +thr c4571200 , status 1 +connecting thr c4571200 , thread 7108 , mypolls 0 +myconn 0 connecting thr c4571200 , thread 7108 , mypolls 0 +thr c4571380 , status 1 +connecting thr c4571380 , thread 7109 , mypolls 0 +myconn 0 connecting thr c4571380 , thread 7109 , mypolls 0 +thr c4571500 , status 1 +connecting thr c4571500 , thread 7110 , mypolls 0 +myconn 0 connecting thr c4571500 , thread 7110 , mypolls 0 +thr c4571680 , status 1 +connecting thr c4571680 , thread 7111 , mypolls 0 +myconn 0 connecting thr c4571680 , thread 7111 , mypolls 0 +thr c4571800 , status 1 +connecting thr c4571800 , thread 7112 , mypolls 0 +myconn 0 connecting thr c4571800 , thread 7112 , mypolls 0 +thr c4571980 , status 1 +connecting thr c4571980 , thread 7113 , mypolls 0 +myconn 0 connecting thr c4571980 , thread 7113 , mypolls 0 +thr c4571b00 , status 1 +connecting thr c4571b00 , thread 7114 , mypolls 0 +myconn 0 connecting thr c4571b00 , thread 7114 , mypolls 0 +thr c4571c80 , status 1 +connecting thr c4571c80 , thread 7115 , mypolls 0 +myconn 0 connecting thr c4571c80 , thread 7115 , mypolls 0 +thr c4571e00 , status 1 +connecting thr c4571e00 , thread 7116 , mypolls 0 +myconn 0 connecting thr c4571e00 , thread 7116 , mypolls 0 +thr c4571f80 , status 1 +connecting thr c4571f80 , thread 7117 , mypolls 0 +myconn 0 connecting thr c4571f80 , thread 7117 , mypolls 0 +thr c4572100 , status 1 +connecting thr c4572100 , thread 7118 , mypolls 0 +myconn 0 connecting thr c4572100 , thread 7118 , mypolls 0 +thr c4572280 , status 1 +connecting thr c4572280 , thread 7119 , mypolls 0 +myconn 0 connecting thr c4572280 , thread 7119 , mypolls 0 +thr c4572400 , status 1 +connecting thr c4572400 , thread 7120 , mypolls 0 +myconn 0 connecting thr c4572400 , thread 7120 , mypolls 0 +thr c4572580 , status 1 +connecting thr c4572580 , thread 7121 , mypolls 0 +myconn 0 connecting thr c4572580 , thread 7121 , mypolls 0 +thr c4572700 , status 1 +connecting thr c4572700 , thread 7122 , mypolls 0 +myconn 0 connecting thr c4572700 , thread 7122 , mypolls 0 +thr c4572880 , status 1 +connecting thr c4572880 , thread 7123 , mypolls 0 +myconn 0 connecting thr c4572880 , thread 7123 , mypolls 0 +thr c4572a00 , status 1 +connecting thr c4572a00 , thread 7124 , mypolls 0 +myconn 0 connecting thr c4572a00 , thread 7124 , mypolls 0 +thr c4572b80 , status 1 +connecting thr c4572b80 , thread 7125 , mypolls 0 +myconn 0 connecting thr c4572b80 , thread 7125 , mypolls 0 +thr c4572d00 , status 1 +connecting thr c4572d00 , thread 7126 , mypolls 0 +myconn 0 connecting thr c4572d00 , thread 7126 , mypolls 0 +thr c4572e80 , status 1 +connecting thr c4572e80 , thread 7127 , mypolls 0 +myconn 0 connecting thr c4572e80 , thread 7127 , mypolls 0 +thr c43d2000 , status 1 +connecting thr c43d2000 , thread 7128 , mypolls 0 +myconn 0 connecting thr c43d2000 , thread 7128 , mypolls 0 +thr c43d2180 , status 1 +connecting thr c43d2180 , thread 7129 , mypolls 0 +myconn 0 connecting thr c43d2180 , thread 7129 , mypolls 0 +thr c43d2300 , status 1 +connecting thr c43d2300 , thread 7130 , mypolls 0 +myconn 0 connecting thr c43d2300 , thread 7130 , mypolls 0 +thr c43d2480 , status 1 +connecting thr c43d2480 , thread 7131 , mypolls 0 +myconn 0 connecting thr c43d2480 , thread 7131 , mypolls 0 +thr c43d2600 , status 1 +connecting thr c43d2600 , thread 7132 , mypolls 0 +myconn 0 connecting thr c43d2600 , thread 7132 , mypolls 0 +thr c43d2780 , status 1 +connecting thr c43d2780 , thread 7133 , mypolls 0 +myconn 0 connecting thr c43d2780 , thread 7133 , mypolls 0 +thr c43d2900 , status 1 +connecting thr c43d2900 , thread 7134 , mypolls 0 +myconn 0 connecting thr c43d2900 , thread 7134 , mypolls 0 +thr c43d2a80 , status 1 +connecting thr c43d2a80 , thread 7135 , mypolls 0 +myconn 0 connecting thr c43d2a80 , thread 7135 , mypolls 0 +thr c43d2c00 , status 1 +connecting thr c43d2c00 , thread 7136 , mypolls 0 +myconn 0 connecting thr c43d2c00 , thread 7136 , mypolls 0 +thr c43d2d80 , status 1 +connecting thr c43d2d80 , thread 7137 , mypolls 0 +myconn 0 connecting thr c43d2d80 , thread 7137 , mypolls 0 +thr c43d2f00 , status 1 +connecting thr c43d2f00 , thread 7138 , mypolls 0 +myconn 0 connecting thr c43d2f00 , thread 7138 , mypolls 0 +thr c43d3080 , status 1 +connecting thr c43d3080 , thread 7139 , mypolls 0 +myconn 0 connecting thr c43d3080 , thread 7139 , mypolls 0 +thr c43d3200 , status 1 +connecting thr c43d3200 , thread 7140 , mypolls 0 +myconn 0 connecting thr c43d3200 , thread 7140 , mypolls 0 +thr c43d3380 , status 1 +connecting thr c43d3380 , thread 7141 , mypolls 0 +myconn 0 connecting thr c43d3380 , thread 7141 , mypolls 0 +thr c43d3500 , status 1 +connecting thr c43d3500 , thread 7142 , mypolls 0 +myconn 0 connecting thr c43d3500 , thread 7142 , mypolls 0 +thr c43d3680 , status 1 +connecting thr c43d3680 , thread 7143 , mypolls 0 +myconn 0 connecting thr c43d3680 , thread 7143 , mypolls 0 +thr c43d3800 , status 1 +connecting thr c43d3800 , thread 7144 , mypolls 0 +myconn 0 connecting thr c43d3800 , thread 7144 , mypolls 0 +thr c43d3980 , status 1 +connecting thr c43d3980 , thread 7145 , mypolls 0 +myconn 0 connecting thr c43d3980 , thread 7145 , mypolls 0 +thr c43d3b00 , status 1 +connecting thr c43d3b00 , thread 7146 , mypolls 0 +myconn 0 connecting thr c43d3b00 , thread 7146 , mypolls 0 +thr c43d3c80 , status 1 +connecting thr c43d3c80 , thread 7147 , mypolls 0 +myconn 0 connecting thr c43d3c80 , thread 7147 , mypolls 0 +thr c43d3e00 , status 1 +connecting thr c43d3e00 , thread 7148 , mypolls 0 +myconn 0 connecting thr c43d3e00 , thread 7148 , mypolls 0 +thr c43d3f80 , status 1 +connecting thr c43d3f80 , thread 7149 , mypolls 0 +myconn 0 connecting thr c43d3f80 , thread 7149 , mypolls 0 +thr c43d4100 , status 1 +connecting thr c43d4100 , thread 7150 , mypolls 0 +myconn 0 connecting thr c43d4100 , thread 7150 , mypolls 0 +thr c43d4280 , status 1 +connecting thr c43d4280 , thread 7151 , mypolls 0 +myconn 0 connecting thr c43d4280 , thread 7151 , mypolls 0 +thr c43d4400 , status 1 +connecting thr c43d4400 , thread 7152 , mypolls 0 +myconn 0 connecting thr c43d4400 , thread 7152 , mypolls 0 +thr c43d4580 , status 1 +connecting thr c43d4580 , thread 7153 , mypolls 0 +myconn 0 connecting thr c43d4580 , thread 7153 , mypolls 0 +thr c43d4700 , status 1 +connecting thr c43d4700 , thread 7154 , mypolls 0 +myconn 0 connecting thr c43d4700 , thread 7154 , mypolls 0 +thr c43d4880 , status 1 +connecting thr c43d4880 , thread 7155 , mypolls 0 +myconn 0 connecting thr c43d4880 , thread 7155 , mypolls 0 +thr c43d4a00 , status 1 +connecting thr c43d4a00 , thread 7156 , mypolls 0 +myconn 0 connecting thr c43d4a00 , thread 7156 , mypolls 0 +thr c43d4b80 , status 1 +connecting thr c43d4b80 , thread 7157 , mypolls 0 +myconn 0 connecting thr c43d4b80 , thread 7157 , mypolls 0 +thr c43d4d00 , status 1 +connecting thr c43d4d00 , thread 7158 , mypolls 0 +myconn 0 connecting thr c43d4d00 , thread 7158 , mypolls 0 +thr c43d4e80 , status 1 +connecting thr c43d4e80 , thread 7159 , mypolls 0 +myconn 0 connecting thr c43d4e80 , thread 7159 , mypolls 0 +thr c3e43000 , status 1 +connecting thr c3e43000 , thread 7160 , mypolls 0 +myconn 0 connecting thr c3e43000 , thread 7160 , mypolls 0 +thr c3e43180 , status 1 +connecting thr c3e43180 , thread 7161 , mypolls 0 +myconn 0 connecting thr c3e43180 , thread 7161 , mypolls 0 +thr c3e43300 , status 1 +connecting thr c3e43300 , thread 7162 , mypolls 0 +myconn 0 connecting thr c3e43300 , thread 7162 , mypolls 0 +thr c3e43480 , status 1 +connecting thr c3e43480 , thread 7163 , mypolls 0 +myconn 0 connecting thr c3e43480 , thread 7163 , mypolls 0 +thr c3e43600 , status 1 +connecting thr c3e43600 , thread 7164 , mypolls 0 +myconn 0 connecting thr c3e43600 , thread 7164 , mypolls 0 +thr c3e43780 , status 1 +connecting thr c3e43780 , thread 7165 , mypolls 0 +myconn 0 connecting thr c3e43780 , thread 7165 , mypolls 0 +thr c3e43900 , status 1 +connecting thr c3e43900 , thread 7166 , mypolls 0 +myconn 0 connecting thr c3e43900 , thread 7166 , mypolls 0 +thr c3e43a80 , status 1 +connecting thr c3e43a80 , thread 7167 , mypolls 0 +myconn 0 connecting thr c3e43a80 , thread 7167 , mypolls 0 +thr c3e43c00 , status 1 +connecting thr c3e43c00 , thread 7168 , mypolls 0 +myconn 0 connecting thr c3e43c00 , thread 7168 , mypolls 0 +thr c3e43d80 , status 1 +connecting thr c3e43d80 , thread 7169 , mypolls 0 +myconn 0 connecting thr c3e43d80 , thread 7169 , mypolls 0 +thr c3e43f00 , status 1 +connecting thr c3e43f00 , thread 7170 , mypolls 0 +myconn 0 connecting thr c3e43f00 , thread 7170 , mypolls 0 +thr c3e44080 , status 1 +connecting thr c3e44080 , thread 7171 , mypolls 0 +myconn 0 connecting thr c3e44080 , thread 7171 , mypolls 0 +thr c3e44200 , status 1 +connecting thr c3e44200 , thread 7172 , mypolls 0 +myconn 0 connecting thr c3e44200 , thread 7172 , mypolls 0 +thr c3e44380 , status 1 +connecting thr c3e44380 , thread 7173 , mypolls 0 +myconn 0 connecting thr c3e44380 , thread 7173 , mypolls 0 +thr c3e44500 , status 1 +connecting thr c3e44500 , thread 7174 , mypolls 0 +myconn 0 connecting thr c3e44500 , thread 7174 , mypolls 0 +thr c3e44680 , status 1 +connecting thr c3e44680 , thread 7175 , mypolls 0 +myconn 0 connecting thr c3e44680 , thread 7175 , mypolls 0 +thr c3e44800 , status 1 +connecting thr c3e44800 , thread 7176 , mypolls 0 +myconn 0 connecting thr c3e44800 , thread 7176 , mypolls 0 +thr c3e44980 , status 1 +connecting thr c3e44980 , thread 7177 , mypolls 0 +myconn 0 connecting thr c3e44980 , thread 7177 , mypolls 0 +thr c3e44b00 , status 1 +connecting thr c3e44b00 , thread 7178 , mypolls 0 +myconn 0 connecting thr c3e44b00 , thread 7178 , mypolls 0 +thr c3e44c80 , status 1 +connecting thr c3e44c80 , thread 7179 , mypolls 0 +myconn 0 connecting thr c3e44c80 , thread 7179 , mypolls 0 +thr c3e44e00 , status 1 +connecting thr c3e44e00 , thread 7180 , mypolls 0 +myconn 0 connecting thr c3e44e00 , thread 7180 , mypolls 0 +thr c3e44f80 , status 1 +connecting thr c3e44f80 , thread 7181 , mypolls 0 +myconn 0 connecting thr c3e44f80 , thread 7181 , mypolls 0 +thr c3e45100 , status 1 +connecting thr c3e45100 , thread 7182 , mypolls 0 +myconn 0 connecting thr c3e45100 , thread 7182 , mypolls 0 +thr c3e45280 , status 1 +connecting thr c3e45280 , thread 7183 , mypolls 0 +myconn 0 connecting thr c3e45280 , thread 7183 , mypolls 0 +thr c3e45400 , status 1 +connecting thr c3e45400 , thread 7184 , mypolls 0 +myconn 0 connecting thr c3e45400 , thread 7184 , mypolls 0 +thr c3e45580 , status 1 +connecting thr c3e45580 , thread 7185 , mypolls 0 +myconn 0 connecting thr c3e45580 , thread 7185 , mypolls 0 +thr c3e45700 , status 1 +connecting thr c3e45700 , thread 7186 , mypolls 0 +myconn 0 connecting thr c3e45700 , thread 7186 , mypolls 0 +thr c3e45880 , status 1 +connecting thr c3e45880 , thread 7187 , mypolls 0 +myconn 0 connecting thr c3e45880 , thread 7187 , mypolls 0 +thr c3e45a00 , status 1 +connecting thr c3e45a00 , thread 7188 , mypolls 0 +myconn 0 connecting thr c3e45a00 , thread 7188 , mypolls 0 +thr c3e45b80 , status 1 +connecting thr c3e45b80 , thread 7189 , mypolls 0 +myconn 0 connecting thr c3e45b80 , thread 7189 , mypolls 0 +thr c3e45d00 , status 1 +connecting thr c3e45d00 , thread 7190 , mypolls 0 +myconn 0 connecting thr c3e45d00 , thread 7190 , mypolls 0 +thr c3e45e80 , status 1 +connecting thr c3e45e80 , thread 7191 , mypolls 0 +myconn 0 connecting thr c3e45e80 , thread 7191 , mypolls 0 +thr c3ca8000 , status 1 +connecting thr c3ca8000 , thread 7192 , mypolls 0 +myconn 0 connecting thr c3ca8000 , thread 7192 , mypolls 0 +thr c3ca8180 , status 1 +connecting thr c3ca8180 , thread 7193 , mypolls 0 +myconn 0 connecting thr c3ca8180 , thread 7193 , mypolls 0 +thr c3ca8300 , status 1 +connecting thr c3ca8300 , thread 7194 , mypolls 0 +myconn 0 connecting thr c3ca8300 , thread 7194 , mypolls 0 +thr c3ca8480 , status 1 +connecting thr c3ca8480 , thread 7195 , mypolls 0 +myconn 0 connecting thr c3ca8480 , thread 7195 , mypolls 0 +thr c3ca8600 , status 1 +connecting thr c3ca8600 , thread 7196 , mypolls 0 +myconn 0 connecting thr c3ca8600 , thread 7196 , mypolls 0 +thr c3ca8780 , status 1 +connecting thr c3ca8780 , thread 7197 , mypolls 0 +myconn 0 connecting thr c3ca8780 , thread 7197 , mypolls 0 +thr c3ca8900 , status 1 +connecting thr c3ca8900 , thread 7198 , mypolls 0 +myconn 0 connecting thr c3ca8900 , thread 7198 , mypolls 0 +thr c3ca8a80 , status 1 +connecting thr c3ca8a80 , thread 7199 , mypolls 0 +myconn 0 connecting thr c3ca8a80 , thread 7199 , mypolls 0 +thr c3ca8c00 , status 1 +connecting thr c3ca8c00 , thread 7200 , mypolls 0 +myconn 0 connecting thr c3ca8c00 , thread 7200 , mypolls 0 +thr c3ca8d80 , status 1 +connecting thr c3ca8d80 , thread 7201 , mypolls 0 +myconn 0 connecting thr c3ca8d80 , thread 7201 , mypolls 0 +thr c3ca8f00 , status 1 +connecting thr c3ca8f00 , thread 7202 , mypolls 0 +myconn 0 connecting thr c3ca8f00 , thread 7202 , mypolls 0 +thr c3ca9080 , status 1 +connecting thr c3ca9080 , thread 7203 , mypolls 0 +myconn 0 connecting thr c3ca9080 , thread 7203 , mypolls 0 +thr c3ca9200 , status 1 +connecting thr c3ca9200 , thread 7204 , mypolls 0 +myconn 0 connecting thr c3ca9200 , thread 7204 , mypolls 0 +thr c3ca9380 , status 1 +connecting thr c3ca9380 , thread 7205 , mypolls 0 +myconn 0 connecting thr c3ca9380 , thread 7205 , mypolls 0 +thr c3ca9500 , status 1 +connecting thr c3ca9500 , thread 7206 , mypolls 0 +myconn 0 connecting thr c3ca9500 , thread 7206 , mypolls 0 +thr c3ca9680 , status 1 +connecting thr c3ca9680 , thread 7207 , mypolls 0 +myconn 0 connecting thr c3ca9680 , thread 7207 , mypolls 0 +thr c3ca9800 , status 1 +connecting thr c3ca9800 , thread 7208 , mypolls 0 +myconn 0 connecting thr c3ca9800 , thread 7208 , mypolls 0 +thr c3ca9980 , status 1 +connecting thr c3ca9980 , thread 7209 , mypolls 0 +myconn 0 connecting thr c3ca9980 , thread 7209 , mypolls 0 +thr c3ca9b00 , status 1 +connecting thr c3ca9b00 , thread 7210 , mypolls 0 +myconn 0 connecting thr c3ca9b00 , thread 7210 , mypolls 0 +thr c3ca9c80 , status 1 +connecting thr c3ca9c80 , thread 7211 , mypolls 0 +myconn 0 connecting thr c3ca9c80 , thread 7211 , mypolls 0 +thr c3ca9e00 , status 1 +connecting thr c3ca9e00 , thread 7212 , mypolls 0 +myconn 0 connecting thr c3ca9e00 , thread 7212 , mypolls 0 +thr c3ca9f80 , status 1 +connecting thr c3ca9f80 , thread 7213 , mypolls 0 +myconn 0 connecting thr c3ca9f80 , thread 7213 , mypolls 0 +thr c3caa100 , status 1 +connecting thr c3caa100 , thread 7214 , mypolls 0 +myconn 0 connecting thr c3caa100 , thread 7214 , mypolls 0 +thr c3caa280 , status 1 +connecting thr c3caa280 , thread 7215 , mypolls 0 +myconn 0 connecting thr c3caa280 , thread 7215 , mypolls 0 +thr c3caa400 , status 1 +connecting thr c3caa400 , thread 7216 , mypolls 0 +myconn 0 connecting thr c3caa400 , thread 7216 , mypolls 0 +thr c3caa580 , status 1 +connecting thr c3caa580 , thread 7217 , mypolls 0 +myconn 0 connecting thr c3caa580 , thread 7217 , mypolls 0 +thr c3caa700 , status 1 +connecting thr c3caa700 , thread 7218 , mypolls 0 +myconn 0 connecting thr c3caa700 , thread 7218 , mypolls 0 +thr c3caa880 , status 1 +connecting thr c3caa880 , thread 7219 , mypolls 0 +myconn 0 connecting thr c3caa880 , thread 7219 , mypolls 0 +thr c3caaa00 , status 1 +connecting thr c3caaa00 , thread 7220 , mypolls 0 +myconn 0 connecting thr c3caaa00 , thread 7220 , mypolls 0 +thr c3caab80 , status 1 +connecting thr c3caab80 , thread 7221 , mypolls 0 +myconn 0 connecting thr c3caab80 , thread 7221 , mypolls 0 +thr c3caad00 , status 1 +connecting thr c3caad00 , thread 7222 , mypolls 0 +myconn 0 connecting thr c3caad00 , thread 7222 , mypolls 0 +thr c3caae80 , status 1 +connecting thr c3caae80 , thread 7223 , mypolls 0 +myconn 0 connecting thr c3caae80 , thread 7223 , mypolls 0 +thr c3b0d000 , status 1 +connecting thr c3b0d000 , thread 7224 , mypolls 0 +myconn 0 connecting thr c3b0d000 , thread 7224 , mypolls 0 +thr c3b0d180 , status 1 +connecting thr c3b0d180 , thread 7225 , mypolls 0 +myconn 0 connecting thr c3b0d180 , thread 7225 , mypolls 0 +thr c3b0d300 , status 1 +connecting thr c3b0d300 , thread 7226 , mypolls 0 +myconn 0 connecting thr c3b0d300 , thread 7226 , mypolls 0 +thr c3b0d480 , status 1 +connecting thr c3b0d480 , thread 7227 , mypolls 0 +myconn 0 connecting thr c3b0d480 , thread 7227 , mypolls 0 +thr c3b0d600 , status 1 +connecting thr c3b0d600 , thread 7228 , mypolls 0 +myconn 0 connecting thr c3b0d600 , thread 7228 , mypolls 0 +thr c3b0d780 , status 1 +connecting thr c3b0d780 , thread 7229 , mypolls 0 +myconn 0 connecting thr c3b0d780 , thread 7229 , mypolls 0 +thr c3b0d900 , status 1 +connecting thr c3b0d900 , thread 7230 , mypolls 0 +myconn 0 connecting thr c3b0d900 , thread 7230 , mypolls 0 +thr c3b0da80 , status 1 +connecting thr c3b0da80 , thread 7231 , mypolls 0 +myconn 0 connecting thr c3b0da80 , thread 7231 , mypolls 0 +thr c3b0dc00 , status 1 +connecting thr c3b0dc00 , thread 7232 , mypolls 0 +myconn 0 connecting thr c3b0dc00 , thread 7232 , mypolls 0 +thr c3b0dd80 , status 1 +connecting thr c3b0dd80 , thread 7233 , mypolls 0 +myconn 0 connecting thr c3b0dd80 , thread 7233 , mypolls 0 +thr c3b0df00 , status 1 +connecting thr c3b0df00 , thread 7234 , mypolls 0 +myconn 0 connecting thr c3b0df00 , thread 7234 , mypolls 0 +thr c3b0e080 , status 1 +connecting thr c3b0e080 , thread 7235 , mypolls 0 +myconn 0 connecting thr c3b0e080 , thread 7235 , mypolls 0 +thr c3b0e200 , status 1 +connecting thr c3b0e200 , thread 7236 , mypolls 0 +myconn 0 connecting thr c3b0e200 , thread 7236 , mypolls 0 +thr c3b0e380 , status 1 +connecting thr c3b0e380 , thread 7237 , mypolls 0 +myconn 0 connecting thr c3b0e380 , thread 7237 , mypolls 0 +thr c3b0e500 , status 1 +connecting thr c3b0e500 , thread 7238 , mypolls 0 +myconn 0 connecting thr c3b0e500 , thread 7238 , mypolls 0 +thr c3b0e680 , status 1 +connecting thr c3b0e680 , thread 7239 , mypolls 0 +myconn 0 connecting thr c3b0e680 , thread 7239 , mypolls 0 +thr c3b0e800 , status 1 +connecting thr c3b0e800 , thread 7240 , mypolls 0 +myconn 0 connecting thr c3b0e800 , thread 7240 , mypolls 0 +thr c3b0e980 , status 1 +connecting thr c3b0e980 , thread 7241 , mypolls 0 +myconn 0 connecting thr c3b0e980 , thread 7241 , mypolls 0 +thr c3b0eb00 , status 1 +connecting thr c3b0eb00 , thread 7242 , mypolls 0 +myconn 0 connecting thr c3b0eb00 , thread 7242 , mypolls 0 +thr c3b0ec80 , status 1 +connecting thr c3b0ec80 , thread 7243 , mypolls 0 +myconn 0 connecting thr c3b0ec80 , thread 7243 , mypolls 0 +thr c3b0ee00 , status 1 +connecting thr c3b0ee00 , thread 7244 , mypolls 0 +myconn 0 connecting thr c3b0ee00 , thread 7244 , mypolls 0 +thr c3b0ef80 , status 1 +connecting thr c3b0ef80 , thread 7245 , mypolls 0 +myconn 0 connecting thr c3b0ef80 , thread 7245 , mypolls 0 +thr c3b0f100 , status 1 +connecting thr c3b0f100 , thread 7246 , mypolls 0 +myconn 0 connecting thr c3b0f100 , thread 7246 , mypolls 0 +thr c3b0f280 , status 1 +connecting thr c3b0f280 , thread 7247 , mypolls 0 +myconn 0 connecting thr c3b0f280 , thread 7247 , mypolls 0 +thr c3b0f400 , status 1 +connecting thr c3b0f400 , thread 7248 , mypolls 0 +myconn 0 connecting thr c3b0f400 , thread 7248 , mypolls 0 +thr c3b0f580 , status 1 +connecting thr c3b0f580 , thread 7249 , mypolls 0 +myconn 0 connecting thr c3b0f580 , thread 7249 , mypolls 0 +thr c3b0f700 , status 1 +connecting thr c3b0f700 , thread 7250 , mypolls 0 +myconn 0 connecting thr c3b0f700 , thread 7250 , mypolls 0 +thr c3b0f880 , status 1 +connecting thr c3b0f880 , thread 7251 , mypolls 0 +myconn 0 connecting thr c3b0f880 , thread 7251 , mypolls 0 +thr c3b0fa00 , status 1 +connecting thr c3b0fa00 , thread 7252 , mypolls 0 +myconn 0 connecting thr c3b0fa00 , thread 7252 , mypolls 0 +thr c3b0fb80 , status 1 +connecting thr c3b0fb80 , thread 7253 , mypolls 0 +myconn 0 connecting thr c3b0fb80 , thread 7253 , mypolls 0 +thr c3b0fd00 , status 1 +connecting thr c3b0fd00 , thread 7254 , mypolls 0 +myconn 0 connecting thr c3b0fd00 , thread 7254 , mypolls 0 +thr c3b0fe80 , status 1 +connecting thr c3b0fe80 , thread 7255 , mypolls 0 +myconn 0 connecting thr c3b0fe80 , thread 7255 , mypolls 0 +thr c396d000 , status 1 +connecting thr c396d000 , thread 7256 , mypolls 0 +myconn 0 connecting thr c396d000 , thread 7256 , mypolls 0 +thr c396d180 , status 1 +connecting thr c396d180 , thread 7257 , mypolls 0 +myconn 0 connecting thr c396d180 , thread 7257 , mypolls 0 +thr c396d300 , status 1 +connecting thr c396d300 , thread 7258 , mypolls 0 +myconn 0 connecting thr c396d300 , thread 7258 , mypolls 0 +thr c396d480 , status 1 +connecting thr c396d480 , thread 7259 , mypolls 0 +myconn 0 connecting thr c396d480 , thread 7259 , mypolls 0 +thr c396d600 , status 1 +connecting thr c396d600 , thread 7260 , mypolls 0 +myconn 0 connecting thr c396d600 , thread 7260 , mypolls 0 +thr c396d780 , status 1 +connecting thr c396d780 , thread 7261 , mypolls 0 +myconn 0 connecting thr c396d780 , thread 7261 , mypolls 0 +thr c396d900 , status 1 +connecting thr c396d900 , thread 7262 , mypolls 0 +myconn 0 connecting thr c396d900 , thread 7262 , mypolls 0 +thr c396da80 , status 1 +connecting thr c396da80 , thread 7263 , mypolls 0 +myconn 0 connecting thr c396da80 , thread 7263 , mypolls 0 +thr c396dc00 , status 1 +connecting thr c396dc00 , thread 7264 , mypolls 0 +myconn 0 connecting thr c396dc00 , thread 7264 , mypolls 0 +thr c396dd80 , status 1 +connecting thr c396dd80 , thread 7265 , mypolls 0 +myconn 0 connecting thr c396dd80 , thread 7265 , mypolls 0 +thr c396df00 , status 1 +connecting thr c396df00 , thread 7266 , mypolls 0 +myconn 0 connecting thr c396df00 , thread 7266 , mypolls 0 +thr c396e080 , status 1 +connecting thr c396e080 , thread 7267 , mypolls 0 +myconn 0 connecting thr c396e080 , thread 7267 , mypolls 0 +thr c396e200 , status 1 +connecting thr c396e200 , thread 7268 , mypolls 0 +myconn 0 connecting thr c396e200 , thread 7268 , mypolls 0 +thr c396e380 , status 1 +connecting thr c396e380 , thread 7269 , mypolls 0 +myconn 0 connecting thr c396e380 , thread 7269 , mypolls 0 +thr c396e500 , status 1 +connecting thr c396e500 , thread 7270 , mypolls 0 +myconn 0 connecting thr c396e500 , thread 7270 , mypolls 0 +thr c396e680 , status 1 +connecting thr c396e680 , thread 7271 , mypolls 0 +myconn 0 connecting thr c396e680 , thread 7271 , mypolls 0 +thr c396e800 , status 1 +connecting thr c396e800 , thread 7272 , mypolls 0 +myconn 0 connecting thr c396e800 , thread 7272 , mypolls 0 +thr c396e980 , status 1 +connecting thr c396e980 , thread 7273 , mypolls 0 +myconn 0 connecting thr c396e980 , thread 7273 , mypolls 0 +thr c396eb00 , status 1 +connecting thr c396eb00 , thread 7274 , mypolls 0 +myconn 0 connecting thr c396eb00 , thread 7274 , mypolls 0 +thr c396ec80 , status 1 +connecting thr c396ec80 , thread 7275 , mypolls 0 +myconn 0 connecting thr c396ec80 , thread 7275 , mypolls 0 +thr c396ee00 , status 1 +connecting thr c396ee00 , thread 7276 , mypolls 0 +myconn 0 connecting thr c396ee00 , thread 7276 , mypolls 0 +thr c396ef80 , status 1 +connecting thr c396ef80 , thread 7277 , mypolls 0 +myconn 0 connecting thr c396ef80 , thread 7277 , mypolls 0 +thr c396f100 , status 1 +connecting thr c396f100 , thread 7278 , mypolls 0 +myconn 0 connecting thr c396f100 , thread 7278 , mypolls 0 +thr c396f280 , status 1 +connecting thr c396f280 , thread 7279 , mypolls 0 +myconn 0 connecting thr c396f280 , thread 7279 , mypolls 0 +thr c396f400 , status 1 +connecting thr c396f400 , thread 7280 , mypolls 0 +myconn 0 connecting thr c396f400 , thread 7280 , mypolls 0 +thr c396f580 , status 1 +connecting thr c396f580 , thread 7281 , mypolls 0 +myconn 0 connecting thr c396f580 , thread 7281 , mypolls 0 +thr c396f700 , status 1 +connecting thr c396f700 , thread 7282 , mypolls 0 +myconn 0 connecting thr c396f700 , thread 7282 , mypolls 0 +thr c396f880 , status 1 +connecting thr c396f880 , thread 7283 , mypolls 0 +myconn 0 connecting thr c396f880 , thread 7283 , mypolls 0 +thr c396fa00 , status 1 +connecting thr c396fa00 , thread 7284 , mypolls 0 +myconn 0 connecting thr c396fa00 , thread 7284 , mypolls 0 +thr c396fb80 , status 1 +connecting thr c396fb80 , thread 7285 , mypolls 0 +myconn 0 connecting thr c396fb80 , thread 7285 , mypolls 0 +thr c396fd00 , status 1 +connecting thr c396fd00 , thread 7286 , mypolls 0 +myconn 0 connecting thr c396fd00 , thread 7286 , mypolls 0 +thr c396fe80 , status 1 +connecting thr c396fe80 , thread 7287 , mypolls 0 +myconn 0 connecting thr c396fe80 , thread 7287 , mypolls 0 +thr c37ce000 , status 1 +connecting thr c37ce000 , thread 7288 , mypolls 0 +myconn 0 connecting thr c37ce000 , thread 7288 , mypolls 0 +thr c37ce180 , status 1 +connecting thr c37ce180 , thread 7289 , mypolls 0 +myconn 0 connecting thr c37ce180 , thread 7289 , mypolls 0 +thr c37ce300 , status 1 +connecting thr c37ce300 , thread 7290 , mypolls 0 +myconn 0 connecting thr c37ce300 , thread 7290 , mypolls 0 +thr c37ce480 , status 1 +connecting thr c37ce480 , thread 7291 , mypolls 0 +myconn 0 connecting thr c37ce480 , thread 7291 , mypolls 0 +thr c37ce600 , status 1 +connecting thr c37ce600 , thread 7292 , mypolls 0 +myconn 0 connecting thr c37ce600 , thread 7292 , mypolls 0 +thr c37ce780 , status 1 +connecting thr c37ce780 , thread 7293 , mypolls 0 +myconn 0 connecting thr c37ce780 , thread 7293 , mypolls 0 +thr c37ce900 , status 1 +connecting thr c37ce900 , thread 7294 , mypolls 0 +myconn 0 connecting thr c37ce900 , thread 7294 , mypolls 0 +thr c37cea80 , status 1 +connecting thr c37cea80 , thread 7295 , mypolls 0 +myconn 0 connecting thr c37cea80 , thread 7295 , mypolls 0 +thr c37cec00 , status 1 +connecting thr c37cec00 , thread 7296 , mypolls 0 +myconn 0 connecting thr c37cec00 , thread 7296 , mypolls 0 +thr c37ced80 , status 1 +connecting thr c37ced80 , thread 7297 , mypolls 0 +myconn 0 connecting thr c37ced80 , thread 7297 , mypolls 0 +thr c37cef00 , status 1 +connecting thr c37cef00 , thread 7298 , mypolls 0 +myconn 0 connecting thr c37cef00 , thread 7298 , mypolls 0 +thr c37cf080 , status 1 +connecting thr c37cf080 , thread 7299 , mypolls 0 +myconn 0 connecting thr c37cf080 , thread 7299 , mypolls 0 +thr c37cf200 , status 1 +connecting thr c37cf200 , thread 7300 , mypolls 0 +myconn 0 connecting thr c37cf200 , thread 7300 , mypolls 0 +thr c37cf380 , status 1 +connecting thr c37cf380 , thread 7301 , mypolls 0 +myconn 0 connecting thr c37cf380 , thread 7301 , mypolls 0 +thr c37cf500 , status 1 +connecting thr c37cf500 , thread 7302 , mypolls 0 +myconn 0 connecting thr c37cf500 , thread 7302 , mypolls 0 +thr c37cf680 , status 1 +connecting thr c37cf680 , thread 7303 , mypolls 0 +myconn 0 connecting thr c37cf680 , thread 7303 , mypolls 0 +thr c37cf800 , status 1 +connecting thr c37cf800 , thread 7304 , mypolls 0 +myconn 0 connecting thr c37cf800 , thread 7304 , mypolls 0 +thr c37cf980 , status 1 +connecting thr c37cf980 , thread 7305 , mypolls 0 +myconn 0 connecting thr c37cf980 , thread 7305 , mypolls 0 +thr c37cfb00 , status 1 +connecting thr c37cfb00 , thread 7306 , mypolls 0 +myconn 0 connecting thr c37cfb00 , thread 7306 , mypolls 0 +thr c37cfc80 , status 1 +connecting thr c37cfc80 , thread 7307 , mypolls 0 +myconn 0 connecting thr c37cfc80 , thread 7307 , mypolls 0 +thr c37cfe00 , status 1 +connecting thr c37cfe00 , thread 7308 , mypolls 0 +myconn 0 connecting thr c37cfe00 , thread 7308 , mypolls 0 +thr c37cff80 , status 1 +connecting thr c37cff80 , thread 7309 , mypolls 0 +myconn 0 connecting thr c37cff80 , thread 7309 , mypolls 0 +thr c37d0100 , status 1 +connecting thr c37d0100 , thread 7310 , mypolls 0 +myconn 0 connecting thr c37d0100 , thread 7310 , mypolls 0 +thr c37d0280 , status 1 +connecting thr c37d0280 , thread 7311 , mypolls 0 +myconn 0 connecting thr c37d0280 , thread 7311 , mypolls 0 +thr c37d0400 , status 1 +connecting thr c37d0400 , thread 7312 , mypolls 0 +myconn 0 connecting thr c37d0400 , thread 7312 , mypolls 0 +thr c37d0580 , status 1 +connecting thr c37d0580 , thread 7313 , mypolls 0 +myconn 0 connecting thr c37d0580 , thread 7313 , mypolls 0 +thr c37d0700 , status 1 +connecting thr c37d0700 , thread 7314 , mypolls 0 +myconn 0 connecting thr c37d0700 , thread 7314 , mypolls 0 +thr c37d0880 , status 1 +connecting thr c37d0880 , thread 7315 , mypolls 0 +myconn 0 connecting thr c37d0880 , thread 7315 , mypolls 0 +thr c37d0a00 , status 1 +connecting thr c37d0a00 , thread 7316 , mypolls 0 +myconn 0 connecting thr c37d0a00 , thread 7316 , mypolls 0 +thr c37d0b80 , status 1 +connecting thr c37d0b80 , thread 7317 , mypolls 0 +myconn 0 connecting thr c37d0b80 , thread 7317 , mypolls 0 +thr c37d0d00 , status 1 +connecting thr c37d0d00 , thread 7318 , mypolls 0 +myconn 0 connecting thr c37d0d00 , thread 7318 , mypolls 0 +thr c37d0e80 , status 1 +connecting thr c37d0e80 , thread 7319 , mypolls 0 +myconn 0 connecting thr c37d0e80 , thread 7319 , mypolls 0 +thr c35fb000 , status 1 +connecting thr c35fb000 , thread 7320 , mypolls 0 +myconn 0 connecting thr c35fb000 , thread 7320 , mypolls 0 +thr c35fb180 , status 1 +connecting thr c35fb180 , thread 7321 , mypolls 0 +myconn 0 connecting thr c35fb180 , thread 7321 , mypolls 0 +thr c35fb300 , status 1 +connecting thr c35fb300 , thread 7322 , mypolls 0 +myconn 0 connecting thr c35fb300 , thread 7322 , mypolls 0 +thr c35fb480 , status 1 +connecting thr c35fb480 , thread 7323 , mypolls 0 +myconn 0 connecting thr c35fb480 , thread 7323 , mypolls 0 +thr c35fb600 , status 1 +connecting thr c35fb600 , thread 7324 , mypolls 0 +myconn 0 connecting thr c35fb600 , thread 7324 , mypolls 0 +thr c35fb780 , status 1 +connecting thr c35fb780 , thread 7325 , mypolls 0 +myconn 0 connecting thr c35fb780 , thread 7325 , mypolls 0 +thr c35fb900 , status 1 +connecting thr c35fb900 , thread 7326 , mypolls 0 +myconn 0 connecting thr c35fb900 , thread 7326 , mypolls 0 +thr c35fba80 , status 1 +connecting thr c35fba80 , thread 7327 , mypolls 0 +myconn 0 connecting thr c35fba80 , thread 7327 , mypolls 0 +thr c35fbc00 , status 1 +connecting thr c35fbc00 , thread 7328 , mypolls 0 +myconn 0 connecting thr c35fbc00 , thread 7328 , mypolls 0 +thr c35fbd80 , status 1 +connecting thr c35fbd80 , thread 7329 , mypolls 0 +myconn 0 connecting thr c35fbd80 , thread 7329 , mypolls 0 +thr c35fbf00 , status 1 +connecting thr c35fbf00 , thread 7330 , mypolls 0 +myconn 0 connecting thr c35fbf00 , thread 7330 , mypolls 0 +thr c35fc080 , status 1 +connecting thr c35fc080 , thread 7331 , mypolls 0 +myconn 0 connecting thr c35fc080 , thread 7331 , mypolls 0 +thr c35fc200 , status 1 +connecting thr c35fc200 , thread 7332 , mypolls 0 +myconn 0 connecting thr c35fc200 , thread 7332 , mypolls 0 +thr c35fc380 , status 1 +connecting thr c35fc380 , thread 7333 , mypolls 0 +myconn 0 connecting thr c35fc380 , thread 7333 , mypolls 0 +thr c35fc500 , status 1 +connecting thr c35fc500 , thread 7334 , mypolls 0 +myconn 0 connecting thr c35fc500 , thread 7334 , mypolls 0 +thr c35fc680 , status 1 +connecting thr c35fc680 , thread 7335 , mypolls 0 +myconn 0 connecting thr c35fc680 , thread 7335 , mypolls 0 +thr c35fc800 , status 1 +connecting thr c35fc800 , thread 7336 , mypolls 0 +myconn 0 connecting thr c35fc800 , thread 7336 , mypolls 0 +thr c35fc980 , status 1 +connecting thr c35fc980 , thread 7337 , mypolls 0 +myconn 0 connecting thr c35fc980 , thread 7337 , mypolls 0 +thr c35fcb00 , status 1 +connecting thr c35fcb00 , thread 7338 , mypolls 0 +myconn 0 connecting thr c35fcb00 , thread 7338 , mypolls 0 +thr c35fcc80 , status 1 +connecting thr c35fcc80 , thread 7339 , mypolls 0 +myconn 0 connecting thr c35fcc80 , thread 7339 , mypolls 0 +thr c35fce00 , status 1 +connecting thr c35fce00 , thread 7340 , mypolls 0 +myconn 0 connecting thr c35fce00 , thread 7340 , mypolls 0 +thr c35fcf80 , status 1 +connecting thr c35fcf80 , thread 7341 , mypolls 0 +myconn 0 connecting thr c35fcf80 , thread 7341 , mypolls 0 +thr c35fd100 , status 1 +connecting thr c35fd100 , thread 7342 , mypolls 0 +myconn 0 connecting thr c35fd100 , thread 7342 , mypolls 0 +thr c35fd280 , status 1 +connecting thr c35fd280 , thread 7343 , mypolls 0 +myconn 0 connecting thr c35fd280 , thread 7343 , mypolls 0 +thr c35fd400 , status 1 +connecting thr c35fd400 , thread 7344 , mypolls 0 +myconn 0 connecting thr c35fd400 , thread 7344 , mypolls 0 +thr c35fd580 , status 1 +connecting thr c35fd580 , thread 7345 , mypolls 0 +myconn 0 connecting thr c35fd580 , thread 7345 , mypolls 0 +thr c35fd700 , status 1 +connecting thr c35fd700 , thread 7346 , mypolls 0 +myconn 0 connecting thr c35fd700 , thread 7346 , mypolls 0 +thr c35fd880 , status 1 +connecting thr c35fd880 , thread 7347 , mypolls 0 +myconn 0 connecting thr c35fd880 , thread 7347 , mypolls 0 +thr c35fda00 , status 1 +connecting thr c35fda00 , thread 7348 , mypolls 0 +myconn 0 connecting thr c35fda00 , thread 7348 , mypolls 0 +thr c35fdb80 , status 1 +connecting thr c35fdb80 , thread 7349 , mypolls 0 +myconn 0 connecting thr c35fdb80 , thread 7349 , mypolls 0 +thr c35fdd00 , status 1 +connecting thr c35fdd00 , thread 7350 , mypolls 0 +myconn 0 connecting thr c35fdd00 , thread 7350 , mypolls 0 +thr c35fde80 , status 1 +connecting thr c35fde80 , thread 7351 , mypolls 0 +myconn 0 connecting thr c35fde80 , thread 7351 , mypolls 0 +thr c33fa000 , status 1 +connecting thr c33fa000 , thread 7352 , mypolls 0 +myconn 0 connecting thr c33fa000 , thread 7352 , mypolls 0 +thr c33fa180 , status 1 +connecting thr c33fa180 , thread 7353 , mypolls 0 +myconn 0 connecting thr c33fa180 , thread 7353 , mypolls 0 +thr c33fa300 , status 1 +connecting thr c33fa300 , thread 7354 , mypolls 0 +myconn 0 connecting thr c33fa300 , thread 7354 , mypolls 0 +thr c33fa480 , status 1 +connecting thr c33fa480 , thread 7355 , mypolls 0 +myconn 0 connecting thr c33fa480 , thread 7355 , mypolls 0 +thr c33fa600 , status 1 +connecting thr c33fa600 , thread 7356 , mypolls 0 +myconn 0 connecting thr c33fa600 , thread 7356 , mypolls 0 +thr c33fa780 , status 1 +connecting thr c33fa780 , thread 7357 , mypolls 0 +myconn 0 connecting thr c33fa780 , thread 7357 , mypolls 0 +thr c33fa900 , status 1 +connecting thr c33fa900 , thread 7358 , mypolls 0 +myconn 0 connecting thr c33fa900 , thread 7358 , mypolls 0 +thr c33faa80 , status 1 +connecting thr c33faa80 , thread 7359 , mypolls 0 +myconn 0 connecting thr c33faa80 , thread 7359 , mypolls 0 +thr c33fac00 , status 1 +connecting thr c33fac00 , thread 7360 , mypolls 0 +myconn 0 connecting thr c33fac00 , thread 7360 , mypolls 0 +thr c33fad80 , status 1 +connecting thr c33fad80 , thread 7361 , mypolls 0 +myconn 0 connecting thr c33fad80 , thread 7361 , mypolls 0 +thr c33faf00 , status 1 +connecting thr c33faf00 , thread 7362 , mypolls 0 +myconn 0 connecting thr c33faf00 , thread 7362 , mypolls 0 +thr c33fb080 , status 1 +connecting thr c33fb080 , thread 7363 , mypolls 0 +myconn 0 connecting thr c33fb080 , thread 7363 , mypolls 0 +thr c33fb200 , status 1 +connecting thr c33fb200 , thread 7364 , mypolls 0 +myconn 0 connecting thr c33fb200 , thread 7364 , mypolls 0 +thr c33fb380 , status 1 +connecting thr c33fb380 , thread 7365 , mypolls 0 +myconn 0 connecting thr c33fb380 , thread 7365 , mypolls 0 +thr c33fb500 , status 1 +connecting thr c33fb500 , thread 7366 , mypolls 0 +myconn 0 connecting thr c33fb500 , thread 7366 , mypolls 0 +thr c33fb680 , status 1 +connecting thr c33fb680 , thread 7367 , mypolls 0 +myconn 0 connecting thr c33fb680 , thread 7367 , mypolls 0 +thr c33fb800 , status 1 +connecting thr c33fb800 , thread 7368 , mypolls 0 +myconn 0 connecting thr c33fb800 , thread 7368 , mypolls 0 +thr c33fb980 , status 1 +connecting thr c33fb980 , thread 7369 , mypolls 0 +myconn 0 connecting thr c33fb980 , thread 7369 , mypolls 0 +thr c33fbb00 , status 1 +connecting thr c33fbb00 , thread 7370 , mypolls 0 +myconn 0 connecting thr c33fbb00 , thread 7370 , mypolls 0 +thr c33fbc80 , status 1 +connecting thr c33fbc80 , thread 7371 , mypolls 0 +myconn 0 connecting thr c33fbc80 , thread 7371 , mypolls 0 +thr c33fbe00 , status 1 +connecting thr c33fbe00 , thread 7372 , mypolls 0 +myconn 0 connecting thr c33fbe00 , thread 7372 , mypolls 0 +thr c33fbf80 , status 1 +connecting thr c33fbf80 , thread 7373 , mypolls 0 +myconn 0 connecting thr c33fbf80 , thread 7373 , mypolls 0 +thr c33fc100 , status 1 +connecting thr c33fc100 , thread 7374 , mypolls 0 +myconn 0 connecting thr c33fc100 , thread 7374 , mypolls 0 +thr c33fc280 , status 1 +connecting thr c33fc280 , thread 7375 , mypolls 0 +myconn 0 connecting thr c33fc280 , thread 7375 , mypolls 0 +thr c33fc400 , status 1 +connecting thr c33fc400 , thread 7376 , mypolls 0 +myconn 0 connecting thr c33fc400 , thread 7376 , mypolls 0 +thr c33fc580 , status 1 +connecting thr c33fc580 , thread 7377 , mypolls 0 +myconn 0 connecting thr c33fc580 , thread 7377 , mypolls 0 +thr c33fc700 , status 1 +connecting thr c33fc700 , thread 7378 , mypolls 0 +myconn 0 connecting thr c33fc700 , thread 7378 , mypolls 0 +thr c33fc880 , status 1 +connecting thr c33fc880 , thread 7379 , mypolls 0 +myconn 0 connecting thr c33fc880 , thread 7379 , mypolls 0 +thr c33fca00 , status 1 +connecting thr c33fca00 , thread 7380 , mypolls 0 +myconn 0 connecting thr c33fca00 , thread 7380 , mypolls 0 +thr c33fcb80 , status 1 +connecting thr c33fcb80 , thread 7381 , mypolls 0 +myconn 0 connecting thr c33fcb80 , thread 7381 , mypolls 0 +thr c33fcd00 , status 1 +connecting thr c33fcd00 , thread 7382 , mypolls 0 +myconn 0 connecting thr c33fcd00 , thread 7382 , mypolls 0 +thr c33fce80 , status 1 +connecting thr c33fce80 , thread 7383 , mypolls 0 +myconn 0 connecting thr c33fce80 , thread 7383 , mypolls 0 +thr c2f05000 , status 1 +connecting thr c2f05000 , thread 7384 , mypolls 0 +myconn 0 connecting thr c2f05000 , thread 7384 , mypolls 0 +thr c2f05180 , status 1 +connecting thr c2f05180 , thread 7385 , mypolls 0 +myconn 0 connecting thr c2f05180 , thread 7385 , mypolls 0 +thr c2f05300 , status 1 +connecting thr c2f05300 , thread 7386 , mypolls 0 +myconn 0 connecting thr c2f05300 , thread 7386 , mypolls 0 +thr c2f05480 , status 1 +connecting thr c2f05480 , thread 7387 , mypolls 0 +myconn 0 connecting thr c2f05480 , thread 7387 , mypolls 0 +thr c2f05600 , status 1 +connecting thr c2f05600 , thread 7388 , mypolls 0 +myconn 0 connecting thr c2f05600 , thread 7388 , mypolls 0 +thr c2f05780 , status 1 +connecting thr c2f05780 , thread 7389 , mypolls 0 +myconn 0 connecting thr c2f05780 , thread 7389 , mypolls 0 +thr c2f05900 , status 1 +connecting thr c2f05900 , thread 7390 , mypolls 0 +myconn 0 connecting thr c2f05900 , thread 7390 , mypolls 0 +thr c2f05a80 , status 1 +connecting thr c2f05a80 , thread 7391 , mypolls 0 +myconn 0 connecting thr c2f05a80 , thread 7391 , mypolls 0 +thr c2f05c00 , status 1 +connecting thr c2f05c00 , thread 7392 , mypolls 0 +myconn 0 connecting thr c2f05c00 , thread 7392 , mypolls 0 +thr c2f05d80 , status 1 +connecting thr c2f05d80 , thread 7393 , mypolls 0 +myconn 0 connecting thr c2f05d80 , thread 7393 , mypolls 0 +thr c2f05f00 , status 1 +connecting thr c2f05f00 , thread 7394 , mypolls 0 +myconn 0 connecting thr c2f05f00 , thread 7394 , mypolls 0 +thr c2f06080 , status 1 +connecting thr c2f06080 , thread 7395 , mypolls 0 +myconn 0 connecting thr c2f06080 , thread 7395 , mypolls 0 +thr c2f06200 , status 1 +connecting thr c2f06200 , thread 7396 , mypolls 0 +myconn 0 connecting thr c2f06200 , thread 7396 , mypolls 0 +thr c2f06380 , status 1 +connecting thr c2f06380 , thread 7397 , mypolls 0 +myconn 0 connecting thr c2f06380 , thread 7397 , mypolls 0 +thr c2f06500 , status 1 +connecting thr c2f06500 , thread 7398 , mypolls 0 +myconn 0 connecting thr c2f06500 , thread 7398 , mypolls 0 +thr c2f06680 , status 1 +connecting thr c2f06680 , thread 7399 , mypolls 0 +myconn 0 connecting thr c2f06680 , thread 7399 , mypolls 0 +thr c2f06800 , status 1 +connecting thr c2f06800 , thread 7400 , mypolls 0 +myconn 0 connecting thr c2f06800 , thread 7400 , mypolls 0 +thr c2f06980 , status 1 +connecting thr c2f06980 , thread 7401 , mypolls 0 +myconn 0 connecting thr c2f06980 , thread 7401 , mypolls 0 +thr c2f06b00 , status 1 +connecting thr c2f06b00 , thread 7402 , mypolls 0 +myconn 0 connecting thr c2f06b00 , thread 7402 , mypolls 0 +thr c2f06c80 , status 1 +connecting thr c2f06c80 , thread 7403 , mypolls 0 +myconn 0 connecting thr c2f06c80 , thread 7403 , mypolls 0 +thr c2f06e00 , status 1 +connecting thr c2f06e00 , thread 7404 , mypolls 0 +myconn 0 connecting thr c2f06e00 , thread 7404 , mypolls 0 +thr c2f06f80 , status 1 +connecting thr c2f06f80 , thread 7405 , mypolls 0 +myconn 0 connecting thr c2f06f80 , thread 7405 , mypolls 0 +thr c2f07100 , status 1 +connecting thr c2f07100 , thread 7406 , mypolls 0 +myconn 0 connecting thr c2f07100 , thread 7406 , mypolls 0 +thr c2f07280 , status 1 +connecting thr c2f07280 , thread 7407 , mypolls 0 +myconn 0 connecting thr c2f07280 , thread 7407 , mypolls 0 +thr c2f07400 , status 1 +connecting thr c2f07400 , thread 7408 , mypolls 0 +myconn 0 connecting thr c2f07400 , thread 7408 , mypolls 0 +thr c2f07580 , status 1 +connecting thr c2f07580 , thread 7409 , mypolls 0 +myconn 0 connecting thr c2f07580 , thread 7409 , mypolls 0 +thr c2f07700 , status 1 +connecting thr c2f07700 , thread 7410 , mypolls 0 +myconn 0 connecting thr c2f07700 , thread 7410 , mypolls 0 +thr c2f07880 , status 1 +connecting thr c2f07880 , thread 7411 , mypolls 0 +myconn 0 connecting thr c2f07880 , thread 7411 , mypolls 0 +thr c2f07a00 , status 1 +connecting thr c2f07a00 , thread 7412 , mypolls 0 +myconn 0 connecting thr c2f07a00 , thread 7412 , mypolls 0 +thr c2f07b80 , status 1 +connecting thr c2f07b80 , thread 7413 , mypolls 0 +myconn 0 connecting thr c2f07b80 , thread 7413 , mypolls 0 +thr c2f07d00 , status 1 +connecting thr c2f07d00 , thread 7414 , mypolls 0 +myconn 0 connecting thr c2f07d00 , thread 7414 , mypolls 0 +thr c2f07e80 , status 1 +connecting thr c2f07e80 , thread 7415 , mypolls 0 +myconn 0 connecting thr c2f07e80 , thread 7415 , mypolls 0 +thr c2d6b000 , status 1 +connecting thr c2d6b000 , thread 7416 , mypolls 0 +myconn 0 connecting thr c2d6b000 , thread 7416 , mypolls 0 +thr c2d6b180 , status 1 +connecting thr c2d6b180 , thread 7417 , mypolls 0 +myconn 0 connecting thr c2d6b180 , thread 7417 , mypolls 0 +thr c2d6b300 , status 1 +connecting thr c2d6b300 , thread 7418 , mypolls 0 +myconn 0 connecting thr c2d6b300 , thread 7418 , mypolls 0 +thr c2d6b480 , status 1 +connecting thr c2d6b480 , thread 7419 , mypolls 0 +myconn 0 connecting thr c2d6b480 , thread 7419 , mypolls 0 +thr c2d6b600 , status 1 +connecting thr c2d6b600 , thread 7420 , mypolls 0 +myconn 0 connecting thr c2d6b600 , thread 7420 , mypolls 0 +thr c2d6b780 , status 1 +connecting thr c2d6b780 , thread 7421 , mypolls 0 +myconn 0 connecting thr c2d6b780 , thread 7421 , mypolls 0 +thr c2d6b900 , status 1 +connecting thr c2d6b900 , thread 7422 , mypolls 0 +myconn 0 connecting thr c2d6b900 , thread 7422 , mypolls 0 +thr c2d6ba80 , status 1 +connecting thr c2d6ba80 , thread 7423 , mypolls 0 +myconn 0 connecting thr c2d6ba80 , thread 7423 , mypolls 0 +thr c2d6bc00 , status 1 +connecting thr c2d6bc00 , thread 7424 , mypolls 0 +myconn 0 connecting thr c2d6bc00 , thread 7424 , mypolls 0 +thr c2d6bd80 , status 1 +connecting thr c2d6bd80 , thread 7425 , mypolls 0 +myconn 0 connecting thr c2d6bd80 , thread 7425 , mypolls 0 +thr c2d6bf00 , status 1 +connecting thr c2d6bf00 , thread 7426 , mypolls 0 +myconn 0 connecting thr c2d6bf00 , thread 7426 , mypolls 0 +thr c2d6c080 , status 1 +connecting thr c2d6c080 , thread 7427 , mypolls 0 +myconn 0 connecting thr c2d6c080 , thread 7427 , mypolls 0 +thr c2d6c200 , status 1 +connecting thr c2d6c200 , thread 7428 , mypolls 0 +myconn 0 connecting thr c2d6c200 , thread 7428 , mypolls 0 +thr c2d6c380 , status 1 +connecting thr c2d6c380 , thread 7429 , mypolls 0 +myconn 0 connecting thr c2d6c380 , thread 7429 , mypolls 0 +thr c2d6c500 , status 1 +connecting thr c2d6c500 , thread 7430 , mypolls 0 +myconn 0 connecting thr c2d6c500 , thread 7430 , mypolls 0 +thr c2d6c680 , status 1 +connecting thr c2d6c680 , thread 7431 , mypolls 0 +myconn 0 connecting thr c2d6c680 , thread 7431 , mypolls 0 +thr c2d6c800 , status 1 +connecting thr c2d6c800 , thread 7432 , mypolls 0 +myconn 0 connecting thr c2d6c800 , thread 7432 , mypolls 0 +thr c2d6c980 , status 1 +connecting thr c2d6c980 , thread 7433 , mypolls 0 +myconn 0 connecting thr c2d6c980 , thread 7433 , mypolls 0 +thr c2d6cb00 , status 1 +connecting thr c2d6cb00 , thread 7434 , mypolls 0 +myconn 0 connecting thr c2d6cb00 , thread 7434 , mypolls 0 +thr c2d6cc80 , status 1 +connecting thr c2d6cc80 , thread 7435 , mypolls 0 +myconn 0 connecting thr c2d6cc80 , thread 7435 , mypolls 0 +thr c2d6ce00 , status 1 +connecting thr c2d6ce00 , thread 7436 , mypolls 0 +myconn 0 connecting thr c2d6ce00 , thread 7436 , mypolls 0 +thr c2d6cf80 , status 1 +connecting thr c2d6cf80 , thread 7437 , mypolls 0 +myconn 0 connecting thr c2d6cf80 , thread 7437 , mypolls 0 +thr c2d6d100 , status 1 +connecting thr c2d6d100 , thread 7438 , mypolls 0 +myconn 0 connecting thr c2d6d100 , thread 7438 , mypolls 0 +thr c2d6d280 , status 1 +connecting thr c2d6d280 , thread 7439 , mypolls 0 +myconn 0 connecting thr c2d6d280 , thread 7439 , mypolls 0 +thr c2d6d400 , status 1 +connecting thr c2d6d400 , thread 7440 , mypolls 0 +myconn 0 connecting thr c2d6d400 , thread 7440 , mypolls 0 +thr c2d6d580 , status 1 +connecting thr c2d6d580 , thread 7441 , mypolls 0 +myconn 0 connecting thr c2d6d580 , thread 7441 , mypolls 0 +thr c2d6d700 , status 1 +connecting thr c2d6d700 , thread 7442 , mypolls 0 +myconn 0 connecting thr c2d6d700 , thread 7442 , mypolls 0 +thr c2d6d880 , status 1 +connecting thr c2d6d880 , thread 7443 , mypolls 0 +myconn 0 connecting thr c2d6d880 , thread 7443 , mypolls 0 +thr c2d6da00 , status 1 +connecting thr c2d6da00 , thread 7444 , mypolls 0 +myconn 0 connecting thr c2d6da00 , thread 7444 , mypolls 0 +thr c2d6db80 , status 1 +connecting thr c2d6db80 , thread 7445 , mypolls 0 +myconn 0 connecting thr c2d6db80 , thread 7445 , mypolls 0 +thr c2d6dd00 , status 1 +connecting thr c2d6dd00 , thread 7446 , mypolls 0 +myconn 0 connecting thr c2d6dd00 , thread 7446 , mypolls 0 +thr c2d6de80 , status 1 +connecting thr c2d6de80 , thread 7447 , mypolls 0 +myconn 0 connecting thr c2d6de80 , thread 7447 , mypolls 0 +thr c2bca000 , status 1 +connecting thr c2bca000 , thread 7448 , mypolls 0 +myconn 0 connecting thr c2bca000 , thread 7448 , mypolls 0 +thr c2bca180 , status 1 +connecting thr c2bca180 , thread 7449 , mypolls 0 +myconn 0 connecting thr c2bca180 , thread 7449 , mypolls 0 +thr c2bca300 , status 1 +connecting thr c2bca300 , thread 7450 , mypolls 0 +myconn 0 connecting thr c2bca300 , thread 7450 , mypolls 0 +thr c2bca480 , status 1 +connecting thr c2bca480 , thread 7451 , mypolls 0 +myconn 0 connecting thr c2bca480 , thread 7451 , mypolls 0 +thr c2bca600 , status 1 +connecting thr c2bca600 , thread 7452 , mypolls 0 +myconn 0 connecting thr c2bca600 , thread 7452 , mypolls 0 +thr c2bca780 , status 1 +connecting thr c2bca780 , thread 7453 , mypolls 0 +myconn 0 connecting thr c2bca780 , thread 7453 , mypolls 0 +thr c2bca900 , status 1 +connecting thr c2bca900 , thread 7454 , mypolls 0 +myconn 0 connecting thr c2bca900 , thread 7454 , mypolls 0 +thr c2bcaa80 , status 1 +connecting thr c2bcaa80 , thread 7455 , mypolls 0 +myconn 0 connecting thr c2bcaa80 , thread 7455 , mypolls 0 +thr c2bcac00 , status 1 +connecting thr c2bcac00 , thread 7456 , mypolls 0 +myconn 0 connecting thr c2bcac00 , thread 7456 , mypolls 0 +thr c2bcad80 , status 1 +connecting thr c2bcad80 , thread 7457 , mypolls 0 +myconn 0 connecting thr c2bcad80 , thread 7457 , mypolls 0 +thr c2bcaf00 , status 1 +connecting thr c2bcaf00 , thread 7458 , mypolls 0 +myconn 0 connecting thr c2bcaf00 , thread 7458 , mypolls 0 +thr c2bcb080 , status 1 +connecting thr c2bcb080 , thread 7459 , mypolls 0 +myconn 0 connecting thr c2bcb080 , thread 7459 , mypolls 0 +thr c2bcb200 , status 1 +connecting thr c2bcb200 , thread 7460 , mypolls 0 +myconn 0 connecting thr c2bcb200 , thread 7460 , mypolls 0 +thr c2bcb380 , status 1 +connecting thr c2bcb380 , thread 7461 , mypolls 0 +myconn 0 connecting thr c2bcb380 , thread 7461 , mypolls 0 +thr c2bcb500 , status 1 +connecting thr c2bcb500 , thread 7462 , mypolls 0 +myconn 0 connecting thr c2bcb500 , thread 7462 , mypolls 0 +thr c2bcb680 , status 1 +connecting thr c2bcb680 , thread 7463 , mypolls 0 +myconn 0 connecting thr c2bcb680 , thread 7463 , mypolls 0 +thr c2bcb800 , status 1 +connecting thr c2bcb800 , thread 7464 , mypolls 0 +myconn 0 connecting thr c2bcb800 , thread 7464 , mypolls 0 +thr c2bcb980 , status 1 +connecting thr c2bcb980 , thread 7465 , mypolls 0 +myconn 0 connecting thr c2bcb980 , thread 7465 , mypolls 0 +thr c2bcbb00 , status 1 +connecting thr c2bcbb00 , thread 7466 , mypolls 0 +myconn 0 connecting thr c2bcbb00 , thread 7466 , mypolls 0 +thr c2bcbc80 , status 1 +connecting thr c2bcbc80 , thread 7467 , mypolls 0 +myconn 0 connecting thr c2bcbc80 , thread 7467 , mypolls 0 +thr c2bcbe00 , status 1 +connecting thr c2bcbe00 , thread 7468 , mypolls 0 +myconn 0 connecting thr c2bcbe00 , thread 7468 , mypolls 0 +thr c2bcbf80 , status 1 +connecting thr c2bcbf80 , thread 7469 , mypolls 0 +myconn 0 connecting thr c2bcbf80 , thread 7469 , mypolls 0 +thr c2bcc100 , status 1 +connecting thr c2bcc100 , thread 7470 , mypolls 0 +myconn 0 connecting thr c2bcc100 , thread 7470 , mypolls 0 +thr c2bcc280 , status 1 +connecting thr c2bcc280 , thread 7471 , mypolls 0 +myconn 0 connecting thr c2bcc280 , thread 7471 , mypolls 0 +thr c2bcc400 , status 1 +connecting thr c2bcc400 , thread 7472 , mypolls 0 +myconn 0 connecting thr c2bcc400 , thread 7472 , mypolls 0 +thr c2bcc580 , status 1 +connecting thr c2bcc580 , thread 7473 , mypolls 0 +myconn 0 connecting thr c2bcc580 , thread 7473 , mypolls 0 +thr c2bcc700 , status 1 +connecting thr c2bcc700 , thread 7474 , mypolls 0 +myconn 0 connecting thr c2bcc700 , thread 7474 , mypolls 0 +thr c2bcc880 , status 1 +connecting thr c2bcc880 , thread 7475 , mypolls 0 +myconn 0 connecting thr c2bcc880 , thread 7475 , mypolls 0 +thr c2bcca00 , status 1 +connecting thr c2bcca00 , thread 7476 , mypolls 0 +myconn 0 connecting thr c2bcca00 , thread 7476 , mypolls 0 +thr c2bccb80 , status 1 +connecting thr c2bccb80 , thread 7477 , mypolls 0 +myconn 0 connecting thr c2bccb80 , thread 7477 , mypolls 0 +thr c2bccd00 , status 1 +connecting thr c2bccd00 , thread 7478 , mypolls 0 +myconn 0 connecting thr c2bccd00 , thread 7478 , mypolls 0 +thr c2bcce80 , status 1 +connecting thr c2bcce80 , thread 7479 , mypolls 0 +myconn 0 connecting thr c2bcce80 , thread 7479 , mypolls 0 +thr c263a000 , status 1 +connecting thr c263a000 , thread 7480 , mypolls 0 +myconn 0 connecting thr c263a000 , thread 7480 , mypolls 0 +thr c263a180 , status 1 +connecting thr c263a180 , thread 7481 , mypolls 0 +myconn 0 connecting thr c263a180 , thread 7481 , mypolls 0 +thr c263a300 , status 1 +connecting thr c263a300 , thread 7482 , mypolls 0 +myconn 0 connecting thr c263a300 , thread 7482 , mypolls 0 +thr c263a480 , status 1 +connecting thr c263a480 , thread 7483 , mypolls 0 +myconn 0 connecting thr c263a480 , thread 7483 , mypolls 0 +thr c263a600 , status 1 +connecting thr c263a600 , thread 7484 , mypolls 0 +myconn 0 connecting thr c263a600 , thread 7484 , mypolls 0 +thr c263a780 , status 1 +connecting thr c263a780 , thread 7485 , mypolls 0 +myconn 0 connecting thr c263a780 , thread 7485 , mypolls 0 +thr c263a900 , status 1 +connecting thr c263a900 , thread 7486 , mypolls 0 +myconn 0 connecting thr c263a900 , thread 7486 , mypolls 0 +thr c263aa80 , status 1 +connecting thr c263aa80 , thread 7487 , mypolls 0 +myconn 0 connecting thr c263aa80 , thread 7487 , mypolls 0 +thr c263ac00 , status 1 +connecting thr c263ac00 , thread 7488 , mypolls 0 +myconn 0 connecting thr c263ac00 , thread 7488 , mypolls 0 +thr c263ad80 , status 1 +connecting thr c263ad80 , thread 7489 , mypolls 0 +myconn 0 connecting thr c263ad80 , thread 7489 , mypolls 0 +thr c263af00 , status 1 +connecting thr c263af00 , thread 7490 , mypolls 0 +myconn 0 connecting thr c263af00 , thread 7490 , mypolls 0 +thr c263b080 , status 1 +connecting thr c263b080 , thread 7491 , mypolls 0 +myconn 0 connecting thr c263b080 , thread 7491 , mypolls 0 +thr c263b200 , status 1 +connecting thr c263b200 , thread 7492 , mypolls 0 +myconn 0 connecting thr c263b200 , thread 7492 , mypolls 0 +thr c263b380 , status 1 +connecting thr c263b380 , thread 7493 , mypolls 0 +myconn 0 connecting thr c263b380 , thread 7493 , mypolls 0 +thr c263b500 , status 1 +connecting thr c263b500 , thread 7494 , mypolls 0 +myconn 0 connecting thr c263b500 , thread 7494 , mypolls 0 +thr c263b680 , status 1 +connecting thr c263b680 , thread 7495 , mypolls 0 +myconn 0 connecting thr c263b680 , thread 7495 , mypolls 0 +thr c263b800 , status 1 +connecting thr c263b800 , thread 7496 , mypolls 0 +myconn 0 connecting thr c263b800 , thread 7496 , mypolls 0 +thr c263b980 , status 1 +connecting thr c263b980 , thread 7497 , mypolls 0 +myconn 0 connecting thr c263b980 , thread 7497 , mypolls 0 +thr c263bb00 , status 1 +connecting thr c263bb00 , thread 7498 , mypolls 0 +myconn 0 connecting thr c263bb00 , thread 7498 , mypolls 0 +thr c263bc80 , status 1 +connecting thr c263bc80 , thread 7499 , mypolls 0 +myconn 0 connecting thr c263bc80 , thread 7499 , mypolls 0 +thr c263be00 , status 1 +connecting thr c263be00 , thread 7500 , mypolls 0 +myconn 0 connecting thr c263be00 , thread 7500 , mypolls 0 +thr c263bf80 , status 1 +connecting thr c263bf80 , thread 7501 , mypolls 0 +myconn 0 connecting thr c263bf80 , thread 7501 , mypolls 0 +thr c263c100 , status 1 +connecting thr c263c100 , thread 7502 , mypolls 0 +myconn 0 connecting thr c263c100 , thread 7502 , mypolls 0 +thr c263c280 , status 1 +connecting thr c263c280 , thread 7503 , mypolls 0 +myconn 0 connecting thr c263c280 , thread 7503 , mypolls 0 +thr c263c400 , status 1 +connecting thr c263c400 , thread 7504 , mypolls 0 +myconn 0 connecting thr c263c400 , thread 7504 , mypolls 0 +thr c263c580 , status 1 +connecting thr c263c580 , thread 7505 , mypolls 0 +myconn 0 connecting thr c263c580 , thread 7505 , mypolls 0 +thr c263c700 , status 1 +connecting thr c263c700 , thread 7506 , mypolls 0 +myconn 0 connecting thr c263c700 , thread 7506 , mypolls 0 +thr c263c880 , status 1 +connecting thr c263c880 , thread 7507 , mypolls 0 +myconn 0 connecting thr c263c880 , thread 7507 , mypolls 0 +thr c263ca00 , status 1 +connecting thr c263ca00 , thread 7508 , mypolls 0 +myconn 0 connecting thr c263ca00 , thread 7508 , mypolls 0 +thr c263cb80 , status 1 +connecting thr c263cb80 , thread 7509 , mypolls 0 +myconn 0 connecting thr c263cb80 , thread 7509 , mypolls 0 +thr c263cd00 , status 1 +connecting thr c263cd00 , thread 7510 , mypolls 0 +myconn 0 connecting thr c263cd00 , thread 7510 , mypolls 0 +thr c263ce80 , status 1 +connecting thr c263ce80 , thread 7511 , mypolls 0 +myconn 0 connecting thr c263ce80 , thread 7511 , mypolls 0 +thr c249d000 , status 1 +connecting thr c249d000 , thread 7512 , mypolls 0 +myconn 0 connecting thr c249d000 , thread 7512 , mypolls 0 +thr c249d180 , status 1 +connecting thr c249d180 , thread 7513 , mypolls 0 +myconn 0 connecting thr c249d180 , thread 7513 , mypolls 0 +thr c249d300 , status 1 +connecting thr c249d300 , thread 7514 , mypolls 0 +myconn 0 connecting thr c249d300 , thread 7514 , mypolls 0 +thr c249d480 , status 1 +connecting thr c249d480 , thread 7515 , mypolls 0 +myconn 0 connecting thr c249d480 , thread 7515 , mypolls 0 +thr c249d600 , status 1 +connecting thr c249d600 , thread 7516 , mypolls 0 +myconn 0 connecting thr c249d600 , thread 7516 , mypolls 0 +thr c249d780 , status 1 +connecting thr c249d780 , thread 7517 , mypolls 0 +myconn 0 connecting thr c249d780 , thread 7517 , mypolls 0 +thr c249d900 , status 1 +connecting thr c249d900 , thread 7518 , mypolls 0 +myconn 0 connecting thr c249d900 , thread 7518 , mypolls 0 +thr c249da80 , status 1 +connecting thr c249da80 , thread 7519 , mypolls 0 +myconn 0 connecting thr c249da80 , thread 7519 , mypolls 0 +thr c249dc00 , status 1 +connecting thr c249dc00 , thread 7520 , mypolls 0 +myconn 0 connecting thr c249dc00 , thread 7520 , mypolls 0 +thr c249dd80 , status 1 +connecting thr c249dd80 , thread 7521 , mypolls 0 +myconn 0 connecting thr c249dd80 , thread 7521 , mypolls 0 +thr c249df00 , status 1 +connecting thr c249df00 , thread 7522 , mypolls 0 +myconn 0 connecting thr c249df00 , thread 7522 , mypolls 0 +thr c249e080 , status 1 +connecting thr c249e080 , thread 7523 , mypolls 0 +myconn 0 connecting thr c249e080 , thread 7523 , mypolls 0 +thr c249e200 , status 1 +connecting thr c249e200 , thread 7524 , mypolls 0 +myconn 0 connecting thr c249e200 , thread 7524 , mypolls 0 +thr c249e380 , status 1 +connecting thr c249e380 , thread 7525 , mypolls 0 +myconn 0 connecting thr c249e380 , thread 7525 , mypolls 0 +thr c249e500 , status 1 +connecting thr c249e500 , thread 7526 , mypolls 0 +myconn 0 connecting thr c249e500 , thread 7526 , mypolls 0 +thr c249e680 , status 1 +connecting thr c249e680 , thread 7527 , mypolls 0 +myconn 0 connecting thr c249e680 , thread 7527 , mypolls 0 +thr c249e800 , status 1 +connecting thr c249e800 , thread 7528 , mypolls 0 +myconn 0 connecting thr c249e800 , thread 7528 , mypolls 0 +thr c249e980 , status 1 +connecting thr c249e980 , thread 7529 , mypolls 0 +myconn 0 connecting thr c249e980 , thread 7529 , mypolls 0 +thr c249eb00 , status 1 +connecting thr c249eb00 , thread 7530 , mypolls 0 +myconn 0 connecting thr c249eb00 , thread 7530 , mypolls 0 +thr c249ec80 , status 1 +connecting thr c249ec80 , thread 7531 , mypolls 0 +myconn 0 connecting thr c249ec80 , thread 7531 , mypolls 0 +thr c249ee00 , status 1 +connecting thr c249ee00 , thread 7532 , mypolls 0 +myconn 0 connecting thr c249ee00 , thread 7532 , mypolls 0 +thr c249ef80 , status 1 +connecting thr c249ef80 , thread 7533 , mypolls 0 +myconn 0 connecting thr c249ef80 , thread 7533 , mypolls 0 +thr c249f100 , status 1 +connecting thr c249f100 , thread 7534 , mypolls 0 +myconn 0 connecting thr c249f100 , thread 7534 , mypolls 0 +thr c249f280 , status 1 +connecting thr c249f280 , thread 7535 , mypolls 0 +myconn 0 connecting thr c249f280 , thread 7535 , mypolls 0 +thr c249f400 , status 1 +connecting thr c249f400 , thread 7536 , mypolls 0 +myconn 0 connecting thr c249f400 , thread 7536 , mypolls 0 +thr c249f580 , status 1 +connecting thr c249f580 , thread 7537 , mypolls 0 +myconn 0 connecting thr c249f580 , thread 7537 , mypolls 0 +thr c249f700 , status 1 +connecting thr c249f700 , thread 7538 , mypolls 0 +myconn 0 connecting thr c249f700 , thread 7538 , mypolls 0 +thr c249f880 , status 1 +connecting thr c249f880 , thread 7539 , mypolls 0 +myconn 0 connecting thr c249f880 , thread 7539 , mypolls 0 +thr c249fa00 , status 1 +connecting thr c249fa00 , thread 7540 , mypolls 0 +myconn 0 connecting thr c249fa00 , thread 7540 , mypolls 0 +thr c249fb80 , status 1 +connecting thr c249fb80 , thread 7541 , mypolls 0 +myconn 0 connecting thr c249fb80 , thread 7541 , mypolls 0 +thr c249fd00 , status 1 +connecting thr c249fd00 , thread 7542 , mypolls 0 +myconn 0 connecting thr c249fd00 , thread 7542 , mypolls 0 +thr c249fe80 , status 1 +connecting thr c249fe80 , thread 7543 , mypolls 0 +myconn 0 connecting thr c249fe80 , thread 7543 , mypolls 0 +thr c2300000 , status 1 +connecting thr c2300000 , thread 7544 , mypolls 0 +myconn 0 connecting thr c2300000 , thread 7544 , mypolls 0 +thr c2300180 , status 1 +connecting thr c2300180 , thread 7545 , mypolls 0 +myconn 0 connecting thr c2300180 , thread 7545 , mypolls 0 +thr c2300300 , status 1 +connecting thr c2300300 , thread 7546 , mypolls 0 +myconn 0 connecting thr c2300300 , thread 7546 , mypolls 0 +thr c2300480 , status 1 +connecting thr c2300480 , thread 7547 , mypolls 0 +myconn 0 connecting thr c2300480 , thread 7547 , mypolls 0 +thr c2300600 , status 1 +connecting thr c2300600 , thread 7548 , mypolls 0 +myconn 0 connecting thr c2300600 , thread 7548 , mypolls 0 +thr c2300780 , status 1 +connecting thr c2300780 , thread 7549 , mypolls 0 +myconn 0 connecting thr c2300780 , thread 7549 , mypolls 0 +thr c2300900 , status 1 +connecting thr c2300900 , thread 7550 , mypolls 0 +myconn 0 connecting thr c2300900 , thread 7550 , mypolls 0 +thr c2300a80 , status 1 +connecting thr c2300a80 , thread 7551 , mypolls 0 +myconn 0 connecting thr c2300a80 , thread 7551 , mypolls 0 +thr c2300c00 , status 1 +connecting thr c2300c00 , thread 7552 , mypolls 0 +myconn 0 connecting thr c2300c00 , thread 7552 , mypolls 0 +thr c2300d80 , status 1 +connecting thr c2300d80 , thread 7553 , mypolls 0 +myconn 0 connecting thr c2300d80 , thread 7553 , mypolls 0 +thr c2300f00 , status 1 +connecting thr c2300f00 , thread 7554 , mypolls 0 +myconn 0 connecting thr c2300f00 , thread 7554 , mypolls 0 +thr c2301080 , status 1 +connecting thr c2301080 , thread 7555 , mypolls 0 +myconn 0 connecting thr c2301080 , thread 7555 , mypolls 0 +thr c2301200 , status 1 +connecting thr c2301200 , thread 7556 , mypolls 0 +myconn 0 connecting thr c2301200 , thread 7556 , mypolls 0 +thr c2301380 , status 1 +connecting thr c2301380 , thread 7557 , mypolls 0 +myconn 0 connecting thr c2301380 , thread 7557 , mypolls 0 +thr c2301500 , status 1 +connecting thr c2301500 , thread 7558 , mypolls 0 +myconn 0 connecting thr c2301500 , thread 7558 , mypolls 0 +thr c2301680 , status 1 +connecting thr c2301680 , thread 7559 , mypolls 0 +myconn 0 connecting thr c2301680 , thread 7559 , mypolls 0 +thr c2301800 , status 1 +connecting thr c2301800 , thread 7560 , mypolls 0 +myconn 0 connecting thr c2301800 , thread 7560 , mypolls 0 +thr c2301980 , status 1 +connecting thr c2301980 , thread 7561 , mypolls 0 +myconn 0 connecting thr c2301980 , thread 7561 , mypolls 0 +thr c2301b00 , status 1 +connecting thr c2301b00 , thread 7562 , mypolls 0 +myconn 0 connecting thr c2301b00 , thread 7562 , mypolls 0 +thr c2301c80 , status 1 +connecting thr c2301c80 , thread 7563 , mypolls 0 +myconn 0 connecting thr c2301c80 , thread 7563 , mypolls 0 +thr c2301e00 , status 1 +connecting thr c2301e00 , thread 7564 , mypolls 0 +myconn 0 connecting thr c2301e00 , thread 7564 , mypolls 0 +thr c2301f80 , status 1 +connecting thr c2301f80 , thread 7565 , mypolls 0 +myconn 0 connecting thr c2301f80 , thread 7565 , mypolls 0 +thr c2302100 , status 1 +connecting thr c2302100 , thread 7566 , mypolls 0 +myconn 0 connecting thr c2302100 , thread 7566 , mypolls 0 +thr c2302280 , status 1 +connecting thr c2302280 , thread 7567 , mypolls 0 +myconn 0 connecting thr c2302280 , thread 7567 , mypolls 0 +thr c2302400 , status 1 +connecting thr c2302400 , thread 7568 , mypolls 0 +myconn 0 connecting thr c2302400 , thread 7568 , mypolls 0 +thr c2302580 , status 1 +connecting thr c2302580 , thread 7569 , mypolls 0 +myconn 0 connecting thr c2302580 , thread 7569 , mypolls 0 +thr c2302700 , status 1 +connecting thr c2302700 , thread 7570 , mypolls 0 +myconn 0 connecting thr c2302700 , thread 7570 , mypolls 0 +thr c2302880 , status 1 +connecting thr c2302880 , thread 7571 , mypolls 0 +myconn 0 connecting thr c2302880 , thread 7571 , mypolls 0 +thr c2302a00 , status 1 +connecting thr c2302a00 , thread 7572 , mypolls 0 +myconn 0 connecting thr c2302a00 , thread 7572 , mypolls 0 +thr c2302b80 , status 1 +connecting thr c2302b80 , thread 7573 , mypolls 0 +myconn 0 connecting thr c2302b80 , thread 7573 , mypolls 0 +thr c2302d00 , status 1 +connecting thr c2302d00 , thread 7574 , mypolls 0 +myconn 0 connecting thr c2302d00 , thread 7574 , mypolls 0 +thr c2302e80 , status 1 +connecting thr c2302e80 , thread 7575 , mypolls 0 +myconn 0 connecting thr c2302e80 , thread 7575 , mypolls 0 +thr c2161000 , status 1 +connecting thr c2161000 , thread 7576 , mypolls 0 +myconn 0 connecting thr c2161000 , thread 7576 , mypolls 0 +thr c2161180 , status 1 +connecting thr c2161180 , thread 7577 , mypolls 0 +myconn 0 connecting thr c2161180 , thread 7577 , mypolls 0 +thr c2161300 , status 1 +connecting thr c2161300 , thread 7578 , mypolls 0 +myconn 0 connecting thr c2161300 , thread 7578 , mypolls 0 +thr c2161480 , status 1 +connecting thr c2161480 , thread 7579 , mypolls 0 +myconn 0 connecting thr c2161480 , thread 7579 , mypolls 0 +thr c2161600 , status 1 +connecting thr c2161600 , thread 7580 , mypolls 0 +myconn 0 connecting thr c2161600 , thread 7580 , mypolls 0 +thr c2161780 , status 1 +connecting thr c2161780 , thread 7581 , mypolls 0 +myconn 0 connecting thr c2161780 , thread 7581 , mypolls 0 +thr c2161900 , status 1 +connecting thr c2161900 , thread 7582 , mypolls 0 +myconn 0 connecting thr c2161900 , thread 7582 , mypolls 0 +thr c2161a80 , status 1 +connecting thr c2161a80 , thread 7583 , mypolls 0 +myconn 0 connecting thr c2161a80 , thread 7583 , mypolls 0 +thr c2161c00 , status 1 +connecting thr c2161c00 , thread 7584 , mypolls 0 +myconn 0 connecting thr c2161c00 , thread 7584 , mypolls 0 +thr c2161d80 , status 1 +connecting thr c2161d80 , thread 7585 , mypolls 0 +myconn 0 connecting thr c2161d80 , thread 7585 , mypolls 0 +thr c2161f00 , status 1 +connecting thr c2161f00 , thread 7586 , mypolls 0 +myconn 0 connecting thr c2161f00 , thread 7586 , mypolls 0 +thr c2162080 , status 1 +connecting thr c2162080 , thread 7587 , mypolls 0 +myconn 0 connecting thr c2162080 , thread 7587 , mypolls 0 +thr c2162200 , status 1 +connecting thr c2162200 , thread 7588 , mypolls 0 +myconn 0 connecting thr c2162200 , thread 7588 , mypolls 0 +thr c2162380 , status 1 +connecting thr c2162380 , thread 7589 , mypolls 0 +myconn 0 connecting thr c2162380 , thread 7589 , mypolls 0 +thr c2162500 , status 1 +connecting thr c2162500 , thread 7590 , mypolls 0 +myconn 0 connecting thr c2162500 , thread 7590 , mypolls 0 +thr c2162680 , status 1 +connecting thr c2162680 , thread 7591 , mypolls 0 +myconn 0 connecting thr c2162680 , thread 7591 , mypolls 0 +thr c2162800 , status 1 +connecting thr c2162800 , thread 7592 , mypolls 0 +myconn 0 connecting thr c2162800 , thread 7592 , mypolls 0 +thr c2162980 , status 1 +connecting thr c2162980 , thread 7593 , mypolls 0 +myconn 0 connecting thr c2162980 , thread 7593 , mypolls 0 +thr c2162b00 , status 1 +connecting thr c2162b00 , thread 7594 , mypolls 0 +myconn 0 connecting thr c2162b00 , thread 7594 , mypolls 0 +thr c2162c80 , status 1 +connecting thr c2162c80 , thread 7595 , mypolls 0 +myconn 0 connecting thr c2162c80 , thread 7595 , mypolls 0 +thr c2162e00 , status 1 +connecting thr c2162e00 , thread 7596 , mypolls 0 +myconn 0 connecting thr c2162e00 , thread 7596 , mypolls 0 +thr c2162f80 , status 1 +connecting thr c2162f80 , thread 7597 , mypolls 0 +myconn 0 connecting thr c2162f80 , thread 7597 , mypolls 0 +thr c2163100 , status 1 +connecting thr c2163100 , thread 7598 , mypolls 0 +myconn 0 connecting thr c2163100 , thread 7598 , mypolls 0 +thr c2163280 , status 1 +connecting thr c2163280 , thread 7599 , mypolls 0 +myconn 0 connecting thr c2163280 , thread 7599 , mypolls 0 +thr c2163400 , status 1 +connecting thr c2163400 , thread 7600 , mypolls 0 +myconn 0 connecting thr c2163400 , thread 7600 , mypolls 0 +thr c2163580 , status 1 +connecting thr c2163580 , thread 7601 , mypolls 0 +myconn 0 connecting thr c2163580 , thread 7601 , mypolls 0 +thr c2163700 , status 1 +connecting thr c2163700 , thread 7602 , mypolls 0 +myconn 0 connecting thr c2163700 , thread 7602 , mypolls 0 +thr c2163880 , status 1 +connecting thr c2163880 , thread 7603 , mypolls 0 +myconn 0 connecting thr c2163880 , thread 7603 , mypolls 0 +thr c2163a00 , status 1 +connecting thr c2163a00 , thread 7604 , mypolls 0 +myconn 0 connecting thr c2163a00 , thread 7604 , mypolls 0 +thr c2163b80 , status 1 +connecting thr c2163b80 , thread 7605 , mypolls 0 +myconn 0 connecting thr c2163b80 , thread 7605 , mypolls 0 +thr c2163d00 , status 1 +connecting thr c2163d00 , thread 7606 , mypolls 0 +myconn 0 connecting thr c2163d00 , thread 7606 , mypolls 0 +thr c2163e80 , status 1 +connecting thr c2163e80 , thread 7607 , mypolls 0 +myconn 0 connecting thr c2163e80 , thread 7607 , mypolls 0 +thr c1fc1000 , status 1 +connecting thr c1fc1000 , thread 7608 , mypolls 0 +myconn 0 connecting thr c1fc1000 , thread 7608 , mypolls 0 +thr c1fc1180 , status 1 +connecting thr c1fc1180 , thread 7609 , mypolls 0 +myconn 0 connecting thr c1fc1180 , thread 7609 , mypolls 0 +thr c1fc1300 , status 1 +connecting thr c1fc1300 , thread 7610 , mypolls 0 +myconn 0 connecting thr c1fc1300 , thread 7610 , mypolls 0 +thr c1fc1480 , status 1 +connecting thr c1fc1480 , thread 7611 , mypolls 0 +myconn 0 connecting thr c1fc1480 , thread 7611 , mypolls 0 +thr c1fc1600 , status 1 +connecting thr c1fc1600 , thread 7612 , mypolls 0 +myconn 0 connecting thr c1fc1600 , thread 7612 , mypolls 0 +thr c1fc1780 , status 1 +connecting thr c1fc1780 , thread 7613 , mypolls 0 +myconn 0 connecting thr c1fc1780 , thread 7613 , mypolls 0 +thr c1fc1900 , status 1 +connecting thr c1fc1900 , thread 7614 , mypolls 0 +myconn 0 connecting thr c1fc1900 , thread 7614 , mypolls 0 +thr c1fc1a80 , status 1 +connecting thr c1fc1a80 , thread 7615 , mypolls 0 +myconn 0 connecting thr c1fc1a80 , thread 7615 , mypolls 0 +thr c1fc1c00 , status 1 +connecting thr c1fc1c00 , thread 7616 , mypolls 0 +myconn 0 connecting thr c1fc1c00 , thread 7616 , mypolls 0 +thr c1fc1d80 , status 1 +connecting thr c1fc1d80 , thread 7617 , mypolls 0 +myconn 0 connecting thr c1fc1d80 , thread 7617 , mypolls 0 +thr c1fc1f00 , status 1 +connecting thr c1fc1f00 , thread 7618 , mypolls 0 +myconn 0 connecting thr c1fc1f00 , thread 7618 , mypolls 0 +thr c1fc2080 , status 1 +connecting thr c1fc2080 , thread 7619 , mypolls 0 +myconn 0 connecting thr c1fc2080 , thread 7619 , mypolls 0 +thr c1fc2200 , status 1 +connecting thr c1fc2200 , thread 7620 , mypolls 0 +myconn 0 connecting thr c1fc2200 , thread 7620 , mypolls 0 +thr c1fc2380 , status 1 +connecting thr c1fc2380 , thread 7621 , mypolls 0 +myconn 0 connecting thr c1fc2380 , thread 7621 , mypolls 0 +thr c1fc2500 , status 1 +connecting thr c1fc2500 , thread 7622 , mypolls 0 +myconn 0 connecting thr c1fc2500 , thread 7622 , mypolls 0 +thr c1fc2680 , status 1 +connecting thr c1fc2680 , thread 7623 , mypolls 0 +myconn 0 connecting thr c1fc2680 , thread 7623 , mypolls 0 +thr c1fc2800 , status 1 +connecting thr c1fc2800 , thread 7624 , mypolls 0 +myconn 0 connecting thr c1fc2800 , thread 7624 , mypolls 0 +thr c1fc2980 , status 1 +connecting thr c1fc2980 , thread 7625 , mypolls 0 +myconn 0 connecting thr c1fc2980 , thread 7625 , mypolls 0 +thr c1fc2b00 , status 1 +connecting thr c1fc2b00 , thread 7626 , mypolls 0 +myconn 0 connecting thr c1fc2b00 , thread 7626 , mypolls 0 +thr c1fc2c80 , status 1 +connecting thr c1fc2c80 , thread 7627 , mypolls 0 +myconn 0 connecting thr c1fc2c80 , thread 7627 , mypolls 0 +thr c1fc2e00 , status 1 +connecting thr c1fc2e00 , thread 7628 , mypolls 0 +myconn 0 connecting thr c1fc2e00 , thread 7628 , mypolls 0 +thr c1fc2f80 , status 1 +connecting thr c1fc2f80 , thread 7629 , mypolls 0 +myconn 0 connecting thr c1fc2f80 , thread 7629 , mypolls 0 +thr c1fc3100 , status 1 +connecting thr c1fc3100 , thread 7630 , mypolls 0 +myconn 0 connecting thr c1fc3100 , thread 7630 , mypolls 0 +thr c1fc3280 , status 1 +connecting thr c1fc3280 , thread 7631 , mypolls 0 +myconn 0 connecting thr c1fc3280 , thread 7631 , mypolls 0 +thr c1fc3400 , status 1 +connecting thr c1fc3400 , thread 7632 , mypolls 0 +myconn 0 connecting thr c1fc3400 , thread 7632 , mypolls 0 +thr c1fc3580 , status 1 +connecting thr c1fc3580 , thread 7633 , mypolls 0 +myconn 0 connecting thr c1fc3580 , thread 7633 , mypolls 0 +thr c1fc3700 , status 1 +connecting thr c1fc3700 , thread 7634 , mypolls 0 +myconn 0 connecting thr c1fc3700 , thread 7634 , mypolls 0 +thr c1fc3880 , status 1 +connecting thr c1fc3880 , thread 7635 , mypolls 0 +myconn 0 connecting thr c1fc3880 , thread 7635 , mypolls 0 +thr c1fc3a00 , status 1 +connecting thr c1fc3a00 , thread 7636 , mypolls 0 +myconn 0 connecting thr c1fc3a00 , thread 7636 , mypolls 0 +thr c1fc3b80 , status 1 +connecting thr c1fc3b80 , thread 7637 , mypolls 0 +myconn 0 connecting thr c1fc3b80 , thread 7637 , mypolls 0 +thr c1fc3d00 , status 1 +connecting thr c1fc3d00 , thread 7638 , mypolls 0 +myconn 0 connecting thr c1fc3d00 , thread 7638 , mypolls 0 +thr c1fc3e80 , status 1 +connecting thr c1fc3e80 , thread 7639 , mypolls 0 +myconn 0 connecting thr c1fc3e80 , thread 7639 , mypolls 0 +thr c1df7000 , status 1 +connecting thr c1df7000 , thread 7640 , mypolls 0 +myconn 0 connecting thr c1df7000 , thread 7640 , mypolls 0 +thr c1df7180 , status 1 +connecting thr c1df7180 , thread 7641 , mypolls 0 +myconn 0 connecting thr c1df7180 , thread 7641 , mypolls 0 +thr c1df7300 , status 1 +connecting thr c1df7300 , thread 7642 , mypolls 0 +myconn 0 connecting thr c1df7300 , thread 7642 , mypolls 0 +thr c1df7480 , status 1 +connecting thr c1df7480 , thread 7643 , mypolls 0 +myconn 0 connecting thr c1df7480 , thread 7643 , mypolls 0 +thr c1df7600 , status 1 +connecting thr c1df7600 , thread 7644 , mypolls 0 +myconn 0 connecting thr c1df7600 , thread 7644 , mypolls 0 +thr c1df7780 , status 1 +connecting thr c1df7780 , thread 7645 , mypolls 0 +myconn 0 connecting thr c1df7780 , thread 7645 , mypolls 0 +thr c1df7900 , status 1 +connecting thr c1df7900 , thread 7646 , mypolls 0 +myconn 0 connecting thr c1df7900 , thread 7646 , mypolls 0 +thr c1df7a80 , status 1 +connecting thr c1df7a80 , thread 7647 , mypolls 0 +myconn 0 connecting thr c1df7a80 , thread 7647 , mypolls 0 +thr c1df7c00 , status 1 +connecting thr c1df7c00 , thread 7648 , mypolls 0 +myconn 0 connecting thr c1df7c00 , thread 7648 , mypolls 0 +thr c1df7d80 , status 1 +connecting thr c1df7d80 , thread 7649 , mypolls 0 +myconn 0 connecting thr c1df7d80 , thread 7649 , mypolls 0 +thr c1df7f00 , status 1 +connecting thr c1df7f00 , thread 7650 , mypolls 0 +myconn 0 connecting thr c1df7f00 , thread 7650 , mypolls 0 +thr c1df8080 , status 1 +connecting thr c1df8080 , thread 7651 , mypolls 0 +myconn 0 connecting thr c1df8080 , thread 7651 , mypolls 0 +thr c1df8200 , status 1 +connecting thr c1df8200 , thread 7652 , mypolls 0 +myconn 0 connecting thr c1df8200 , thread 7652 , mypolls 0 +thr c1df8380 , status 1 +connecting thr c1df8380 , thread 7653 , mypolls 0 +myconn 0 connecting thr c1df8380 , thread 7653 , mypolls 0 +thr c1df8500 , status 1 +connecting thr c1df8500 , thread 7654 , mypolls 0 +myconn 0 connecting thr c1df8500 , thread 7654 , mypolls 0 +thr c1df8680 , status 1 +connecting thr c1df8680 , thread 7655 , mypolls 0 +myconn 0 connecting thr c1df8680 , thread 7655 , mypolls 0 +thr c1df8800 , status 1 +connecting thr c1df8800 , thread 7656 , mypolls 0 +myconn 0 connecting thr c1df8800 , thread 7656 , mypolls 0 +thr c1df8980 , status 1 +connecting thr c1df8980 , thread 7657 , mypolls 0 +myconn 0 connecting thr c1df8980 , thread 7657 , mypolls 0 +thr c1df8b00 , status 1 +connecting thr c1df8b00 , thread 7658 , mypolls 0 +myconn 0 connecting thr c1df8b00 , thread 7658 , mypolls 0 +thr c1df8c80 , status 1 +connecting thr c1df8c80 , thread 7659 , mypolls 0 +myconn 0 connecting thr c1df8c80 , thread 7659 , mypolls 0 +thr c1df8e00 , status 1 +connecting thr c1df8e00 , thread 7660 , mypolls 0 +myconn 0 connecting thr c1df8e00 , thread 7660 , mypolls 0 +thr c1df8f80 , status 1 +connecting thr c1df8f80 , thread 7661 , mypolls 0 +myconn 0 connecting thr c1df8f80 , thread 7661 , mypolls 0 +thr c1df9100 , status 1 +connecting thr c1df9100 , thread 7662 , mypolls 0 +myconn 0 connecting thr c1df9100 , thread 7662 , mypolls 0 +thr c1df9280 , status 1 +connecting thr c1df9280 , thread 7663 , mypolls 0 +myconn 0 connecting thr c1df9280 , thread 7663 , mypolls 0 +thr c1df9400 , status 1 +connecting thr c1df9400 , thread 7664 , mypolls 0 +myconn 0 connecting thr c1df9400 , thread 7664 , mypolls 0 +thr c1df9580 , status 1 +connecting thr c1df9580 , thread 7665 , mypolls 0 +myconn 0 connecting thr c1df9580 , thread 7665 , mypolls 0 +thr c1df9700 , status 1 +connecting thr c1df9700 , thread 7666 , mypolls 0 +myconn 0 connecting thr c1df9700 , thread 7666 , mypolls 0 +thr c1df9880 , status 1 +connecting thr c1df9880 , thread 7667 , mypolls 0 +myconn 0 connecting thr c1df9880 , thread 7667 , mypolls 0 +thr c1df9a00 , status 1 +connecting thr c1df9a00 , thread 7668 , mypolls 0 +myconn 0 connecting thr c1df9a00 , thread 7668 , mypolls 0 +thr c1df9b80 , status 1 +connecting thr c1df9b80 , thread 7669 , mypolls 0 +myconn 0 connecting thr c1df9b80 , thread 7669 , mypolls 0 +thr c1df9d00 , status 1 +connecting thr c1df9d00 , thread 7670 , mypolls 0 +myconn 0 connecting thr c1df9d00 , thread 7670 , mypolls 0 +thr c1df9e80 , status 1 +connecting thr c1df9e80 , thread 7671 , mypolls 0 +myconn 0 connecting thr c1df9e80 , thread 7671 , mypolls 0 +thr c1894000 , status 1 +connecting thr c1894000 , thread 7672 , mypolls 0 +myconn 0 connecting thr c1894000 , thread 7672 , mypolls 0 +thr c1894180 , status 1 +connecting thr c1894180 , thread 7673 , mypolls 0 +myconn 0 connecting thr c1894180 , thread 7673 , mypolls 0 +thr c1894300 , status 1 +connecting thr c1894300 , thread 7674 , mypolls 0 +myconn 0 connecting thr c1894300 , thread 7674 , mypolls 0 +thr c1894480 , status 1 +connecting thr c1894480 , thread 7675 , mypolls 0 +myconn 0 connecting thr c1894480 , thread 7675 , mypolls 0 +thr c1894600 , status 1 +connecting thr c1894600 , thread 7676 , mypolls 0 +myconn 0 connecting thr c1894600 , thread 7676 , mypolls 0 +thr c1894780 , status 1 +connecting thr c1894780 , thread 7677 , mypolls 0 +myconn 0 connecting thr c1894780 , thread 7677 , mypolls 0 +thr c1894900 , status 1 +connecting thr c1894900 , thread 7678 , mypolls 0 +myconn 0 connecting thr c1894900 , thread 7678 , mypolls 0 +thr c1894a80 , status 1 +connecting thr c1894a80 , thread 7679 , mypolls 0 +myconn 0 connecting thr c1894a80 , thread 7679 , mypolls 0 +thr c1894c00 , status 1 +connecting thr c1894c00 , thread 7680 , mypolls 0 +myconn 0 connecting thr c1894c00 , thread 7680 , mypolls 0 +thr c1894d80 , status 1 +connecting thr c1894d80 , thread 7681 , mypolls 0 +myconn 0 connecting thr c1894d80 , thread 7681 , mypolls 0 +thr c1894f00 , status 1 +connecting thr c1894f00 , thread 7682 , mypolls 0 +myconn 0 connecting thr c1894f00 , thread 7682 , mypolls 0 +thr c1895080 , status 1 +connecting thr c1895080 , thread 7683 , mypolls 0 +myconn 0 connecting thr c1895080 , thread 7683 , mypolls 0 +thr c1895200 , status 1 +connecting thr c1895200 , thread 7684 , mypolls 0 +myconn 0 connecting thr c1895200 , thread 7684 , mypolls 0 +thr c1895380 , status 1 +connecting thr c1895380 , thread 7685 , mypolls 0 +myconn 0 connecting thr c1895380 , thread 7685 , mypolls 0 +thr c1895500 , status 1 +connecting thr c1895500 , thread 7686 , mypolls 0 +myconn 0 connecting thr c1895500 , thread 7686 , mypolls 0 +thr c1895680 , status 1 +connecting thr c1895680 , thread 7687 , mypolls 0 +myconn 0 connecting thr c1895680 , thread 7687 , mypolls 0 +thr c1895800 , status 1 +connecting thr c1895800 , thread 7688 , mypolls 0 +myconn 0 connecting thr c1895800 , thread 7688 , mypolls 0 +thr c1895980 , status 1 +connecting thr c1895980 , thread 7689 , mypolls 0 +myconn 0 connecting thr c1895980 , thread 7689 , mypolls 0 +thr c1895b00 , status 1 +connecting thr c1895b00 , thread 7690 , mypolls 0 +myconn 0 connecting thr c1895b00 , thread 7690 , mypolls 0 +thr c1895c80 , status 1 +connecting thr c1895c80 , thread 7691 , mypolls 0 +myconn 0 connecting thr c1895c80 , thread 7691 , mypolls 0 +thr c1895e00 , status 1 +connecting thr c1895e00 , thread 7692 , mypolls 0 +myconn 0 connecting thr c1895e00 , thread 7692 , mypolls 0 +thr c1895f80 , status 1 +connecting thr c1895f80 , thread 7693 , mypolls 0 +myconn 0 connecting thr c1895f80 , thread 7693 , mypolls 0 +thr c1896100 , status 1 +connecting thr c1896100 , thread 7694 , mypolls 0 +myconn 0 connecting thr c1896100 , thread 7694 , mypolls 0 +thr c1896280 , status 1 +connecting thr c1896280 , thread 7695 , mypolls 0 +myconn 0 connecting thr c1896280 , thread 7695 , mypolls 0 +thr c1896400 , status 1 +connecting thr c1896400 , thread 7696 , mypolls 0 +myconn 0 connecting thr c1896400 , thread 7696 , mypolls 0 +thr c1896580 , status 1 +connecting thr c1896580 , thread 7697 , mypolls 0 +myconn 0 connecting thr c1896580 , thread 7697 , mypolls 0 +thr c1896700 , status 1 +connecting thr c1896700 , thread 7698 , mypolls 0 +myconn 0 connecting thr c1896700 , thread 7698 , mypolls 0 +thr c1896880 , status 1 +connecting thr c1896880 , thread 7699 , mypolls 0 +myconn 0 connecting thr c1896880 , thread 7699 , mypolls 0 +thr c1896a00 , status 1 +connecting thr c1896a00 , thread 7700 , mypolls 0 +myconn 0 connecting thr c1896a00 , thread 7700 , mypolls 0 +thr c1896b80 , status 1 +connecting thr c1896b80 , thread 7701 , mypolls 0 +myconn 0 connecting thr c1896b80 , thread 7701 , mypolls 0 +thr c1896d00 , status 1 +connecting thr c1896d00 , thread 7702 , mypolls 0 +myconn 0 connecting thr c1896d00 , thread 7702 , mypolls 0 +thr c1896e80 , status 1 +connecting thr c1896e80 , thread 7703 , mypolls 0 +myconn 0 connecting thr c1896e80 , thread 7703 , mypolls 0 +thr c16fc000 , status 1 +connecting thr c16fc000 , thread 7704 , mypolls 0 +myconn 0 connecting thr c16fc000 , thread 7704 , mypolls 0 +thr c16fc180 , status 1 +connecting thr c16fc180 , thread 7705 , mypolls 0 +myconn 0 connecting thr c16fc180 , thread 7705 , mypolls 0 +thr c16fc300 , status 1 +connecting thr c16fc300 , thread 7706 , mypolls 0 +myconn 0 connecting thr c16fc300 , thread 7706 , mypolls 0 +thr c16fc480 , status 1 +connecting thr c16fc480 , thread 7707 , mypolls 0 +myconn 0 connecting thr c16fc480 , thread 7707 , mypolls 0 +thr c16fc600 , status 1 +connecting thr c16fc600 , thread 7708 , mypolls 0 +myconn 0 connecting thr c16fc600 , thread 7708 , mypolls 0 +thr c16fc780 , status 1 +connecting thr c16fc780 , thread 7709 , mypolls 0 +myconn 0 connecting thr c16fc780 , thread 7709 , mypolls 0 +thr c16fc900 , status 1 +connecting thr c16fc900 , thread 7710 , mypolls 0 +myconn 0 connecting thr c16fc900 , thread 7710 , mypolls 0 +thr c16fca80 , status 1 +connecting thr c16fca80 , thread 7711 , mypolls 0 +myconn 0 connecting thr c16fca80 , thread 7711 , mypolls 0 +thr c16fcc00 , status 1 +connecting thr c16fcc00 , thread 7712 , mypolls 0 +myconn 0 connecting thr c16fcc00 , thread 7712 , mypolls 0 +thr c16fcd80 , status 1 +connecting thr c16fcd80 , thread 7713 , mypolls 0 +myconn 0 connecting thr c16fcd80 , thread 7713 , mypolls 0 +thr c16fcf00 , status 1 +connecting thr c16fcf00 , thread 7714 , mypolls 0 +myconn 0 connecting thr c16fcf00 , thread 7714 , mypolls 0 +thr c16fd080 , status 1 +connecting thr c16fd080 , thread 7715 , mypolls 0 +myconn 0 connecting thr c16fd080 , thread 7715 , mypolls 0 +thr c16fd200 , status 1 +connecting thr c16fd200 , thread 7716 , mypolls 0 +myconn 0 connecting thr c16fd200 , thread 7716 , mypolls 0 +thr c16fd380 , status 1 +connecting thr c16fd380 , thread 7717 , mypolls 0 +myconn 0 connecting thr c16fd380 , thread 7717 , mypolls 0 +thr c16fd500 , status 1 +connecting thr c16fd500 , thread 7718 , mypolls 0 +myconn 0 connecting thr c16fd500 , thread 7718 , mypolls 0 +thr c16fd680 , status 1 +connecting thr c16fd680 , thread 7719 , mypolls 0 +myconn 0 connecting thr c16fd680 , thread 7719 , mypolls 0 +thr c16fd800 , status 1 +connecting thr c16fd800 , thread 7720 , mypolls 0 +myconn 0 connecting thr c16fd800 , thread 7720 , mypolls 0 +thr c16fd980 , status 1 +connecting thr c16fd980 , thread 7721 , mypolls 0 +myconn 0 connecting thr c16fd980 , thread 7721 , mypolls 0 +thr c16fdb00 , status 1 +connecting thr c16fdb00 , thread 7722 , mypolls 0 +myconn 0 connecting thr c16fdb00 , thread 7722 , mypolls 0 +thr c16fdc80 , status 1 +connecting thr c16fdc80 , thread 7723 , mypolls 0 +myconn 0 connecting thr c16fdc80 , thread 7723 , mypolls 0 +thr c16fde00 , status 1 +connecting thr c16fde00 , thread 7724 , mypolls 0 +myconn 0 connecting thr c16fde00 , thread 7724 , mypolls 0 +thr c16fdf80 , status 1 +connecting thr c16fdf80 , thread 7725 , mypolls 0 +myconn 0 connecting thr c16fdf80 , thread 7725 , mypolls 0 +thr c16fe100 , status 1 +connecting thr c16fe100 , thread 7726 , mypolls 0 +myconn 0 connecting thr c16fe100 , thread 7726 , mypolls 0 +thr c16fe280 , status 1 +connecting thr c16fe280 , thread 7727 , mypolls 0 +myconn 0 connecting thr c16fe280 , thread 7727 , mypolls 0 +thr c16fe400 , status 1 +connecting thr c16fe400 , thread 7728 , mypolls 0 +myconn 0 connecting thr c16fe400 , thread 7728 , mypolls 0 +thr c16fe580 , status 1 +connecting thr c16fe580 , thread 7729 , mypolls 0 +myconn 0 connecting thr c16fe580 , thread 7729 , mypolls 0 +thr c16fe700 , status 1 +connecting thr c16fe700 , thread 7730 , mypolls 0 +myconn 0 connecting thr c16fe700 , thread 7730 , mypolls 0 +thr c16fe880 , status 1 +connecting thr c16fe880 , thread 7731 , mypolls 0 +myconn 0 connecting thr c16fe880 , thread 7731 , mypolls 0 +thr c16fea00 , status 1 +connecting thr c16fea00 , thread 7732 , mypolls 0 +myconn 0 connecting thr c16fea00 , thread 7732 , mypolls 0 +thr c16feb80 , status 1 +connecting thr c16feb80 , thread 7733 , mypolls 0 +myconn 0 connecting thr c16feb80 , thread 7733 , mypolls 0 +thr c16fed00 , status 1 +connecting thr c16fed00 , thread 7734 , mypolls 0 +myconn 0 connecting thr c16fed00 , thread 7734 , mypolls 0 +thr c16fee80 , status 1 +connecting thr c16fee80 , thread 7735 , mypolls 0 +myconn 0 connecting thr c16fee80 , thread 7735 , mypolls 0 +thr c155e000 , status 1 +connecting thr c155e000 , thread 7736 , mypolls 0 +myconn 0 connecting thr c155e000 , thread 7736 , mypolls 0 +thr c155e180 , status 1 +connecting thr c155e180 , thread 7737 , mypolls 0 +myconn 0 connecting thr c155e180 , thread 7737 , mypolls 0 +thr c155e300 , status 1 +connecting thr c155e300 , thread 7738 , mypolls 0 +myconn 0 connecting thr c155e300 , thread 7738 , mypolls 0 +thr c155e480 , status 1 +connecting thr c155e480 , thread 7739 , mypolls 0 +myconn 0 connecting thr c155e480 , thread 7739 , mypolls 0 +thr c155e600 , status 1 +connecting thr c155e600 , thread 7740 , mypolls 0 +myconn 0 connecting thr c155e600 , thread 7740 , mypolls 0 +thr c155e780 , status 1 +connecting thr c155e780 , thread 7741 , mypolls 0 +myconn 0 connecting thr c155e780 , thread 7741 , mypolls 0 +thr c155e900 , status 1 +connecting thr c155e900 , thread 7742 , mypolls 0 +myconn 0 connecting thr c155e900 , thread 7742 , mypolls 0 +thr c155ea80 , status 1 +connecting thr c155ea80 , thread 7743 , mypolls 0 +myconn 0 connecting thr c155ea80 , thread 7743 , mypolls 0 +thr c155ec00 , status 1 +connecting thr c155ec00 , thread 7744 , mypolls 0 +myconn 0 connecting thr c155ec00 , thread 7744 , mypolls 0 +thr c155ed80 , status 1 +connecting thr c155ed80 , thread 7745 , mypolls 0 +myconn 0 connecting thr c155ed80 , thread 7745 , mypolls 0 +thr c155ef00 , status 1 +connecting thr c155ef00 , thread 7746 , mypolls 0 +myconn 0 connecting thr c155ef00 , thread 7746 , mypolls 0 +thr c155f080 , status 1 +connecting thr c155f080 , thread 7747 , mypolls 0 +myconn 0 connecting thr c155f080 , thread 7747 , mypolls 0 +thr c155f200 , status 1 +connecting thr c155f200 , thread 7748 , mypolls 0 +myconn 0 connecting thr c155f200 , thread 7748 , mypolls 0 +thr c155f380 , status 1 +connecting thr c155f380 , thread 7749 , mypolls 0 +myconn 0 connecting thr c155f380 , thread 7749 , mypolls 0 +thr c155f500 , status 1 +connecting thr c155f500 , thread 7750 , mypolls 0 +myconn 0 connecting thr c155f500 , thread 7750 , mypolls 0 +thr c155f680 , status 1 +connecting thr c155f680 , thread 7751 , mypolls 0 +myconn 0 connecting thr c155f680 , thread 7751 , mypolls 0 +thr c155f800 , status 1 +connecting thr c155f800 , thread 7752 , mypolls 0 +myconn 0 connecting thr c155f800 , thread 7752 , mypolls 0 +thr c155f980 , status 1 +connecting thr c155f980 , thread 7753 , mypolls 0 +myconn 0 connecting thr c155f980 , thread 7753 , mypolls 0 +thr c155fb00 , status 1 +connecting thr c155fb00 , thread 7754 , mypolls 0 +myconn 0 connecting thr c155fb00 , thread 7754 , mypolls 0 +thr c155fc80 , status 1 +connecting thr c155fc80 , thread 7755 , mypolls 0 +myconn 0 connecting thr c155fc80 , thread 7755 , mypolls 0 +thr c155fe00 , status 1 +connecting thr c155fe00 , thread 7756 , mypolls 0 +myconn 0 connecting thr c155fe00 , thread 7756 , mypolls 0 +thr c155ff80 , status 1 +connecting thr c155ff80 , thread 7757 , mypolls 0 +myconn 0 connecting thr c155ff80 , thread 7757 , mypolls 0 +thr c1560100 , status 1 +connecting thr c1560100 , thread 7758 , mypolls 0 +myconn 0 connecting thr c1560100 , thread 7758 , mypolls 0 +thr c1560280 , status 1 +connecting thr c1560280 , thread 7759 , mypolls 0 +myconn 0 connecting thr c1560280 , thread 7759 , mypolls 0 +thr c1560400 , status 1 +connecting thr c1560400 , thread 7760 , mypolls 0 +myconn 0 connecting thr c1560400 , thread 7760 , mypolls 0 +thr c1560580 , status 1 +connecting thr c1560580 , thread 7761 , mypolls 0 +myconn 0 connecting thr c1560580 , thread 7761 , mypolls 0 +thr c1560700 , status 1 +connecting thr c1560700 , thread 7762 , mypolls 0 +myconn 0 connecting thr c1560700 , thread 7762 , mypolls 0 +thr c1560880 , status 1 +connecting thr c1560880 , thread 7763 , mypolls 0 +myconn 0 connecting thr c1560880 , thread 7763 , mypolls 0 +thr c1560a00 , status 1 +connecting thr c1560a00 , thread 7764 , mypolls 0 +myconn 0 connecting thr c1560a00 , thread 7764 , mypolls 0 +thr c1560b80 , status 1 +connecting thr c1560b80 , thread 7765 , mypolls 0 +myconn 0 connecting thr c1560b80 , thread 7765 , mypolls 0 +thr c1560d00 , status 1 +connecting thr c1560d00 , thread 7766 , mypolls 0 +myconn 0 connecting thr c1560d00 , thread 7766 , mypolls 0 +thr c1560e80 , status 1 +connecting thr c1560e80 , thread 7767 , mypolls 0 +myconn 0 connecting thr c1560e80 , thread 7767 , mypolls 0 +thr c13be000 , status 1 +connecting thr c13be000 , thread 7768 , mypolls 0 +myconn 0 connecting thr c13be000 , thread 7768 , mypolls 0 +thr c13be180 , status 1 +connecting thr c13be180 , thread 7769 , mypolls 0 +myconn 0 connecting thr c13be180 , thread 7769 , mypolls 0 +thr c13be300 , status 1 +connecting thr c13be300 , thread 7770 , mypolls 0 +myconn 0 connecting thr c13be300 , thread 7770 , mypolls 0 +thr c13be480 , status 1 +connecting thr c13be480 , thread 7771 , mypolls 0 +myconn 0 connecting thr c13be480 , thread 7771 , mypolls 0 +thr c13be600 , status 1 +connecting thr c13be600 , thread 7772 , mypolls 0 +myconn 0 connecting thr c13be600 , thread 7772 , mypolls 0 +thr c13be780 , status 1 +connecting thr c13be780 , thread 7773 , mypolls 0 +myconn 0 connecting thr c13be780 , thread 7773 , mypolls 0 +thr c13be900 , status 1 +connecting thr c13be900 , thread 7774 , mypolls 0 +myconn 0 connecting thr c13be900 , thread 7774 , mypolls 0 +thr c13bea80 , status 1 +connecting thr c13bea80 , thread 7775 , mypolls 0 +myconn 0 connecting thr c13bea80 , thread 7775 , mypolls 0 +thr c13bec00 , status 1 +connecting thr c13bec00 , thread 7776 , mypolls 0 +myconn 0 connecting thr c13bec00 , thread 7776 , mypolls 0 +thr c13bed80 , status 1 +connecting thr c13bed80 , thread 7777 , mypolls 0 +myconn 0 connecting thr c13bed80 , thread 7777 , mypolls 0 +thr c13bef00 , status 1 +connecting thr c13bef00 , thread 7778 , mypolls 0 +myconn 0 connecting thr c13bef00 , thread 7778 , mypolls 0 +thr c13bf080 , status 1 +connecting thr c13bf080 , thread 7779 , mypolls 0 +myconn 0 connecting thr c13bf080 , thread 7779 , mypolls 0 +thr c13bf200 , status 1 +connecting thr c13bf200 , thread 7780 , mypolls 0 +myconn 0 connecting thr c13bf200 , thread 7780 , mypolls 0 +thr c13bf380 , status 1 +connecting thr c13bf380 , thread 7781 , mypolls 0 +myconn 0 connecting thr c13bf380 , thread 7781 , mypolls 0 +thr c13bf500 , status 1 +connecting thr c13bf500 , thread 7782 , mypolls 0 +myconn 0 connecting thr c13bf500 , thread 7782 , mypolls 0 +thr c13bf680 , status 1 +connecting thr c13bf680 , thread 7783 , mypolls 0 +myconn 0 connecting thr c13bf680 , thread 7783 , mypolls 0 +thr c13bf800 , status 1 +connecting thr c13bf800 , thread 7784 , mypolls 0 +myconn 0 connecting thr c13bf800 , thread 7784 , mypolls 0 +thr c13bf980 , status 1 +connecting thr c13bf980 , thread 7785 , mypolls 0 +myconn 0 connecting thr c13bf980 , thread 7785 , mypolls 0 +thr c13bfb00 , status 1 +connecting thr c13bfb00 , thread 7786 , mypolls 0 +myconn 0 connecting thr c13bfb00 , thread 7786 , mypolls 0 +thr c13bfc80 , status 1 +connecting thr c13bfc80 , thread 7787 , mypolls 0 +myconn 0 connecting thr c13bfc80 , thread 7787 , mypolls 0 +thr c13bfe00 , status 1 +connecting thr c13bfe00 , thread 7788 , mypolls 0 +myconn 0 connecting thr c13bfe00 , thread 7788 , mypolls 0 +thr c13bff80 , status 1 +connecting thr c13bff80 , thread 7789 , mypolls 0 +myconn 0 connecting thr c13bff80 , thread 7789 , mypolls 0 +thr c13c0100 , status 1 +connecting thr c13c0100 , thread 7790 , mypolls 0 +myconn 0 connecting thr c13c0100 , thread 7790 , mypolls 0 +thr c13c0280 , status 1 +connecting thr c13c0280 , thread 7791 , mypolls 0 +myconn 0 connecting thr c13c0280 , thread 7791 , mypolls 0 +thr c13c0400 , status 1 +connecting thr c13c0400 , thread 7792 , mypolls 0 +myconn 0 connecting thr c13c0400 , thread 7792 , mypolls 0 +thr c13c0580 , status 1 +connecting thr c13c0580 , thread 7793 , mypolls 0 +myconn 0 connecting thr c13c0580 , thread 7793 , mypolls 0 +thr c13c0700 , status 1 +connecting thr c13c0700 , thread 7794 , mypolls 0 +myconn 0 connecting thr c13c0700 , thread 7794 , mypolls 0 +thr c13c0880 , status 1 +connecting thr c13c0880 , thread 7795 , mypolls 0 +myconn 0 connecting thr c13c0880 , thread 7795 , mypolls 0 +thr c13c0a00 , status 1 +connecting thr c13c0a00 , thread 7796 , mypolls 0 +myconn 0 connecting thr c13c0a00 , thread 7796 , mypolls 0 +thr c13c0b80 , status 1 +connecting thr c13c0b80 , thread 7797 , mypolls 0 +myconn 0 connecting thr c13c0b80 , thread 7797 , mypolls 0 +thr c13c0d00 , status 1 +connecting thr c13c0d00 , thread 7798 , mypolls 0 +myconn 0 connecting thr c13c0d00 , thread 7798 , mypolls 0 +thr c13c0e80 , status 1 +connecting thr c13c0e80 , thread 7799 , mypolls 0 +myconn 0 connecting thr c13c0e80 , thread 7799 , mypolls 0 +thr c11fb000 , status 1 +connecting thr c11fb000 , thread 7800 , mypolls 0 +myconn 0 connecting thr c11fb000 , thread 7800 , mypolls 0 +thr c11fb180 , status 1 +connecting thr c11fb180 , thread 7801 , mypolls 0 +myconn 0 connecting thr c11fb180 , thread 7801 , mypolls 0 +thr c11fb300 , status 1 +connecting thr c11fb300 , thread 7802 , mypolls 0 +myconn 0 connecting thr c11fb300 , thread 7802 , mypolls 0 +thr c11fb480 , status 1 +connecting thr c11fb480 , thread 7803 , mypolls 0 +myconn 0 connecting thr c11fb480 , thread 7803 , mypolls 0 +thr c11fb600 , status 1 +connecting thr c11fb600 , thread 7804 , mypolls 0 +myconn 0 connecting thr c11fb600 , thread 7804 , mypolls 0 +thr c11fb780 , status 1 +connecting thr c11fb780 , thread 7805 , mypolls 0 +myconn 0 connecting thr c11fb780 , thread 7805 , mypolls 0 +thr c11fb900 , status 1 +connecting thr c11fb900 , thread 7806 , mypolls 0 +myconn 0 connecting thr c11fb900 , thread 7806 , mypolls 0 +thr c11fba80 , status 1 +connecting thr c11fba80 , thread 7807 , mypolls 0 +myconn 0 connecting thr c11fba80 , thread 7807 , mypolls 0 +thr c11fbc00 , status 1 +connecting thr c11fbc00 , thread 7808 , mypolls 0 +myconn 0 connecting thr c11fbc00 , thread 7808 , mypolls 0 +thr c11fbd80 , status 1 +connecting thr c11fbd80 , thread 7809 , mypolls 0 +myconn 0 connecting thr c11fbd80 , thread 7809 , mypolls 0 +thr c11fbf00 , status 1 +connecting thr c11fbf00 , thread 7810 , mypolls 0 +myconn 0 connecting thr c11fbf00 , thread 7810 , mypolls 0 +thr c11fc080 , status 1 +connecting thr c11fc080 , thread 7811 , mypolls 0 +myconn 0 connecting thr c11fc080 , thread 7811 , mypolls 0 +thr c11fc200 , status 1 +connecting thr c11fc200 , thread 7812 , mypolls 0 +myconn 0 connecting thr c11fc200 , thread 7812 , mypolls 0 +thr c11fc380 , status 1 +connecting thr c11fc380 , thread 7813 , mypolls 0 +myconn 0 connecting thr c11fc380 , thread 7813 , mypolls 0 +thr c11fc500 , status 1 +connecting thr c11fc500 , thread 7814 , mypolls 0 +myconn 0 connecting thr c11fc500 , thread 7814 , mypolls 0 +thr c11fc680 , status 1 +connecting thr c11fc680 , thread 7815 , mypolls 0 +myconn 0 connecting thr c11fc680 , thread 7815 , mypolls 0 +thr c11fc800 , status 1 +connecting thr c11fc800 , thread 7816 , mypolls 0 +myconn 0 connecting thr c11fc800 , thread 7816 , mypolls 0 +thr c11fc980 , status 1 +connecting thr c11fc980 , thread 7817 , mypolls 0 +myconn 0 connecting thr c11fc980 , thread 7817 , mypolls 0 +thr c11fcb00 , status 1 +connecting thr c11fcb00 , thread 7818 , mypolls 0 +myconn 0 connecting thr c11fcb00 , thread 7818 , mypolls 0 +thr c11fcc80 , status 1 +connecting thr c11fcc80 , thread 7819 , mypolls 0 +myconn 0 connecting thr c11fcc80 , thread 7819 , mypolls 0 +thr c11fce00 , status 1 +connecting thr c11fce00 , thread 7820 , mypolls 0 +myconn 0 connecting thr c11fce00 , thread 7820 , mypolls 0 +thr c11fcf80 , status 1 +connecting thr c11fcf80 , thread 7821 , mypolls 0 +myconn 0 connecting thr c11fcf80 , thread 7821 , mypolls 0 +thr c11fd100 , status 1 +connecting thr c11fd100 , thread 7822 , mypolls 0 +myconn 0 connecting thr c11fd100 , thread 7822 , mypolls 0 +thr c11fd280 , status 1 +connecting thr c11fd280 , thread 7823 , mypolls 0 +myconn 0 connecting thr c11fd280 , thread 7823 , mypolls 0 +thr c11fd400 , status 1 +connecting thr c11fd400 , thread 7824 , mypolls 0 +myconn 0 connecting thr c11fd400 , thread 7824 , mypolls 0 +thr c11fd580 , status 1 +connecting thr c11fd580 , thread 7825 , mypolls 0 +myconn 0 connecting thr c11fd580 , thread 7825 , mypolls 0 +thr c11fd700 , status 1 +connecting thr c11fd700 , thread 7826 , mypolls 0 +myconn 0 connecting thr c11fd700 , thread 7826 , mypolls 0 +thr c11fd880 , status 1 +connecting thr c11fd880 , thread 7827 , mypolls 0 +myconn 0 connecting thr c11fd880 , thread 7827 , mypolls 0 +thr c11fda00 , status 1 +connecting thr c11fda00 , thread 7828 , mypolls 0 +myconn 0 connecting thr c11fda00 , thread 7828 , mypolls 0 +thr c11fdb80 , status 1 +connecting thr c11fdb80 , thread 7829 , mypolls 0 +myconn 0 connecting thr c11fdb80 , thread 7829 , mypolls 0 +thr c11fdd00 , status 1 +connecting thr c11fdd00 , thread 7830 , mypolls 0 +myconn 0 connecting thr c11fdd00 , thread 7830 , mypolls 0 +thr c11fde80 , status 1 +connecting thr c11fde80 , thread 7831 , mypolls 0 +myconn 0 connecting thr c11fde80 , thread 7831 , mypolls 0 +thr c0ffb000 , status 1 +connecting thr c0ffb000 , thread 7832 , mypolls 0 +myconn 0 connecting thr c0ffb000 , thread 7832 , mypolls 0 +thr c0ffb180 , status 1 +connecting thr c0ffb180 , thread 7833 , mypolls 0 +myconn 0 connecting thr c0ffb180 , thread 7833 , mypolls 0 +thr c0ffb300 , status 1 +connecting thr c0ffb300 , thread 7834 , mypolls 0 +myconn 0 connecting thr c0ffb300 , thread 7834 , mypolls 0 +thr c0ffb480 , status 1 +connecting thr c0ffb480 , thread 7835 , mypolls 0 +myconn 0 connecting thr c0ffb480 , thread 7835 , mypolls 0 +thr c0ffb600 , status 1 +connecting thr c0ffb600 , thread 7836 , mypolls 0 +myconn 0 connecting thr c0ffb600 , thread 7836 , mypolls 0 +thr c0ffb780 , status 1 +connecting thr c0ffb780 , thread 7837 , mypolls 0 +myconn 0 connecting thr c0ffb780 , thread 7837 , mypolls 0 +thr c0ffb900 , status 1 +connecting thr c0ffb900 , thread 7838 , mypolls 0 +myconn 0 connecting thr c0ffb900 , thread 7838 , mypolls 0 +thr c0ffba80 , status 1 +connecting thr c0ffba80 , thread 7839 , mypolls 0 +myconn 0 connecting thr c0ffba80 , thread 7839 , mypolls 0 +thr c0ffbc00 , status 1 +connecting thr c0ffbc00 , thread 7840 , mypolls 0 +myconn 0 connecting thr c0ffbc00 , thread 7840 , mypolls 0 +thr c0ffbd80 , status 1 +connecting thr c0ffbd80 , thread 7841 , mypolls 0 +myconn 0 connecting thr c0ffbd80 , thread 7841 , mypolls 0 +thr c0ffbf00 , status 1 +connecting thr c0ffbf00 , thread 7842 , mypolls 0 +myconn 0 connecting thr c0ffbf00 , thread 7842 , mypolls 0 +thr c0ffc080 , status 1 +connecting thr c0ffc080 , thread 7843 , mypolls 0 +myconn 0 connecting thr c0ffc080 , thread 7843 , mypolls 0 +thr c0ffc200 , status 1 +connecting thr c0ffc200 , thread 7844 , mypolls 0 +myconn 0 connecting thr c0ffc200 , thread 7844 , mypolls 0 +thr c0ffc380 , status 1 +connecting thr c0ffc380 , thread 7845 , mypolls 0 +myconn 0 connecting thr c0ffc380 , thread 7845 , mypolls 0 +thr c0ffc500 , status 1 +connecting thr c0ffc500 , thread 7846 , mypolls 0 +myconn 0 connecting thr c0ffc500 , thread 7846 , mypolls 0 +thr c0ffc680 , status 1 +connecting thr c0ffc680 , thread 7847 , mypolls 0 +myconn 0 connecting thr c0ffc680 , thread 7847 , mypolls 0 +thr c0ffc800 , status 1 +connecting thr c0ffc800 , thread 7848 , mypolls 0 +myconn 0 connecting thr c0ffc800 , thread 7848 , mypolls 0 +thr c0ffc980 , status 1 +connecting thr c0ffc980 , thread 7849 , mypolls 0 +myconn 0 connecting thr c0ffc980 , thread 7849 , mypolls 0 +thr c0ffcb00 , status 1 +connecting thr c0ffcb00 , thread 7850 , mypolls 0 +myconn 0 connecting thr c0ffcb00 , thread 7850 , mypolls 0 +thr c0ffcc80 , status 1 +connecting thr c0ffcc80 , thread 7851 , mypolls 0 +myconn 0 connecting thr c0ffcc80 , thread 7851 , mypolls 0 +thr c0ffce00 , status 1 +connecting thr c0ffce00 , thread 7852 , mypolls 0 +myconn 0 connecting thr c0ffce00 , thread 7852 , mypolls 0 +thr c0ffcf80 , status 1 +connecting thr c0ffcf80 , thread 7853 , mypolls 0 +myconn 0 connecting thr c0ffcf80 , thread 7853 , mypolls 0 +thr c0ffd100 , status 1 +connecting thr c0ffd100 , thread 7854 , mypolls 0 +myconn 0 connecting thr c0ffd100 , thread 7854 , mypolls 0 +thr c0ffd280 , status 1 +connecting thr c0ffd280 , thread 7855 , mypolls 0 +myconn 0 connecting thr c0ffd280 , thread 7855 , mypolls 0 +thr c0ffd400 , status 1 +connecting thr c0ffd400 , thread 7856 , mypolls 0 +myconn 0 connecting thr c0ffd400 , thread 7856 , mypolls 0 +thr c0ffd580 , status 1 +connecting thr c0ffd580 , thread 7857 , mypolls 0 +myconn 0 connecting thr c0ffd580 , thread 7857 , mypolls 0 +thr c0ffd700 , status 1 +connecting thr c0ffd700 , thread 7858 , mypolls 0 +myconn 0 connecting thr c0ffd700 , thread 7858 , mypolls 0 +thr c0ffd880 , status 1 +connecting thr c0ffd880 , thread 7859 , mypolls 0 +myconn 0 connecting thr c0ffd880 , thread 7859 , mypolls 0 +thr c0ffda00 , status 1 +connecting thr c0ffda00 , thread 7860 , mypolls 0 +myconn 0 connecting thr c0ffda00 , thread 7860 , mypolls 0 +thr c0ffdb80 , status 1 +connecting thr c0ffdb80 , thread 7861 , mypolls 0 +myconn 0 connecting thr c0ffdb80 , thread 7861 , mypolls 0 +thr c0ffdd00 , status 1 +connecting thr c0ffdd00 , thread 7862 , mypolls 0 +myconn 0 connecting thr c0ffdd00 , thread 7862 , mypolls 0 +thr c0ffde80 , status 1 +connecting thr c0ffde80 , thread 7863 , mypolls 0 +myconn 0 connecting thr c0ffde80 , thread 7863 , mypolls 0 +thr c0af2000 , status 1 +connecting thr c0af2000 , thread 7864 , mypolls 0 +myconn 0 connecting thr c0af2000 , thread 7864 , mypolls 0 +thr c0af2180 , status 1 +connecting thr c0af2180 , thread 7865 , mypolls 0 +myconn 0 connecting thr c0af2180 , thread 7865 , mypolls 0 +thr c0af2300 , status 1 +connecting thr c0af2300 , thread 7866 , mypolls 0 +myconn 0 connecting thr c0af2300 , thread 7866 , mypolls 0 +thr c0af2480 , status 1 +connecting thr c0af2480 , thread 7867 , mypolls 0 +myconn 0 connecting thr c0af2480 , thread 7867 , mypolls 0 +thr c0af2600 , status 1 +connecting thr c0af2600 , thread 7868 , mypolls 0 +myconn 0 connecting thr c0af2600 , thread 7868 , mypolls 0 +thr c0af2780 , status 1 +connecting thr c0af2780 , thread 7869 , mypolls 0 +myconn 0 connecting thr c0af2780 , thread 7869 , mypolls 0 +thr c0af2900 , status 1 +connecting thr c0af2900 , thread 7870 , mypolls 0 +myconn 0 connecting thr c0af2900 , thread 7870 , mypolls 0 +thr c0af2a80 , status 1 +connecting thr c0af2a80 , thread 7871 , mypolls 0 +myconn 0 connecting thr c0af2a80 , thread 7871 , mypolls 0 +thr c0af2c00 , status 1 +connecting thr c0af2c00 , thread 7872 , mypolls 0 +myconn 0 connecting thr c0af2c00 , thread 7872 , mypolls 0 +thr c0af2d80 , status 1 +connecting thr c0af2d80 , thread 7873 , mypolls 0 +myconn 0 connecting thr c0af2d80 , thread 7873 , mypolls 0 +thr c0af2f00 , status 1 +connecting thr c0af2f00 , thread 7874 , mypolls 0 +myconn 0 connecting thr c0af2f00 , thread 7874 , mypolls 0 +thr c0af3080 , status 1 +connecting thr c0af3080 , thread 7875 , mypolls 0 +myconn 0 connecting thr c0af3080 , thread 7875 , mypolls 0 +thr c0af3200 , status 1 +connecting thr c0af3200 , thread 7876 , mypolls 0 +myconn 0 connecting thr c0af3200 , thread 7876 , mypolls 0 +thr c0af3380 , status 1 +connecting thr c0af3380 , thread 7877 , mypolls 0 +myconn 0 connecting thr c0af3380 , thread 7877 , mypolls 0 +thr c0af3500 , status 1 +connecting thr c0af3500 , thread 7878 , mypolls 0 +myconn 0 connecting thr c0af3500 , thread 7878 , mypolls 0 +thr c0af3680 , status 1 +connecting thr c0af3680 , thread 7879 , mypolls 0 +myconn 0 connecting thr c0af3680 , thread 7879 , mypolls 0 +thr c0af3800 , status 1 +connecting thr c0af3800 , thread 7880 , mypolls 0 +myconn 0 connecting thr c0af3800 , thread 7880 , mypolls 0 +thr c0af3980 , status 1 +connecting thr c0af3980 , thread 7881 , mypolls 0 +myconn 0 connecting thr c0af3980 , thread 7881 , mypolls 0 +thr c0af3b00 , status 1 +connecting thr c0af3b00 , thread 7882 , mypolls 0 +myconn 0 connecting thr c0af3b00 , thread 7882 , mypolls 0 +thr c0af3c80 , status 1 +connecting thr c0af3c80 , thread 7883 , mypolls 0 +myconn 0 connecting thr c0af3c80 , thread 7883 , mypolls 0 +thr c0af3e00 , status 1 +connecting thr c0af3e00 , thread 7884 , mypolls 0 +myconn 0 connecting thr c0af3e00 , thread 7884 , mypolls 0 +thr c0af3f80 , status 1 +connecting thr c0af3f80 , thread 7885 , mypolls 0 +myconn 0 connecting thr c0af3f80 , thread 7885 , mypolls 0 +thr c0af4100 , status 1 +connecting thr c0af4100 , thread 7886 , mypolls 0 +myconn 0 connecting thr c0af4100 , thread 7886 , mypolls 0 +thr c0af4280 , status 1 +connecting thr c0af4280 , thread 7887 , mypolls 0 +myconn 0 connecting thr c0af4280 , thread 7887 , mypolls 0 +thr c0af4400 , status 1 +connecting thr c0af4400 , thread 7888 , mypolls 0 +myconn 0 connecting thr c0af4400 , thread 7888 , mypolls 0 +thr c0af4580 , status 1 +connecting thr c0af4580 , thread 7889 , mypolls 0 +myconn 0 connecting thr c0af4580 , thread 7889 , mypolls 0 +thr c0af4700 , status 1 +connecting thr c0af4700 , thread 7890 , mypolls 0 +myconn 0 connecting thr c0af4700 , thread 7890 , mypolls 0 +thr c0af4880 , status 1 +connecting thr c0af4880 , thread 7891 , mypolls 0 +myconn 0 connecting thr c0af4880 , thread 7891 , mypolls 0 +thr c0af4a00 , status 1 +connecting thr c0af4a00 , thread 7892 , mypolls 0 +myconn 0 connecting thr c0af4a00 , thread 7892 , mypolls 0 +thr c0af4b80 , status 1 +connecting thr c0af4b80 , thread 7893 , mypolls 0 +myconn 0 connecting thr c0af4b80 , thread 7893 , mypolls 0 +thr c0af4d00 , status 1 +connecting thr c0af4d00 , thread 7894 , mypolls 0 +myconn 0 connecting thr c0af4d00 , thread 7894 , mypolls 0 +thr c0af4e80 , status 1 +connecting thr c0af4e80 , thread 7895 , mypolls 0 +myconn 0 connecting thr c0af4e80 , thread 7895 , mypolls 0 +thr c0952000 , status 1 +connecting thr c0952000 , thread 7896 , mypolls 0 +myconn 0 connecting thr c0952000 , thread 7896 , mypolls 0 +thr c0952180 , status 1 +connecting thr c0952180 , thread 7897 , mypolls 0 +myconn 0 connecting thr c0952180 , thread 7897 , mypolls 0 +thr c0952300 , status 1 +connecting thr c0952300 , thread 7898 , mypolls 0 +myconn 0 connecting thr c0952300 , thread 7898 , mypolls 0 +thr c0952480 , status 1 +connecting thr c0952480 , thread 7899 , mypolls 0 +myconn 0 connecting thr c0952480 , thread 7899 , mypolls 0 +thr c0952600 , status 1 +connecting thr c0952600 , thread 7900 , mypolls 0 +myconn 0 connecting thr c0952600 , thread 7900 , mypolls 0 +thr c0952780 , status 1 +connecting thr c0952780 , thread 7901 , mypolls 0 +myconn 0 connecting thr c0952780 , thread 7901 , mypolls 0 +thr c0952900 , status 1 +connecting thr c0952900 , thread 7902 , mypolls 0 +myconn 0 connecting thr c0952900 , thread 7902 , mypolls 0 +thr c0952a80 , status 1 +connecting thr c0952a80 , thread 7903 , mypolls 0 +myconn 0 connecting thr c0952a80 , thread 7903 , mypolls 0 +thr c0952c00 , status 1 +connecting thr c0952c00 , thread 7904 , mypolls 0 +myconn 0 connecting thr c0952c00 , thread 7904 , mypolls 0 +thr c0952d80 , status 1 +connecting thr c0952d80 , thread 7905 , mypolls 0 +myconn 0 connecting thr c0952d80 , thread 7905 , mypolls 0 +thr c0952f00 , status 1 +connecting thr c0952f00 , thread 7906 , mypolls 0 +myconn 0 connecting thr c0952f00 , thread 7906 , mypolls 0 +thr c0953080 , status 1 +connecting thr c0953080 , thread 7907 , mypolls 0 +myconn 0 connecting thr c0953080 , thread 7907 , mypolls 0 +thr c0953200 , status 1 +connecting thr c0953200 , thread 7908 , mypolls 0 +myconn 0 connecting thr c0953200 , thread 7908 , mypolls 0 +thr c0953380 , status 1 +connecting thr c0953380 , thread 7909 , mypolls 0 +myconn 0 connecting thr c0953380 , thread 7909 , mypolls 0 +thr c0953500 , status 1 +connecting thr c0953500 , thread 7910 , mypolls 0 +myconn 0 connecting thr c0953500 , thread 7910 , mypolls 0 +thr c0953680 , status 1 +connecting thr c0953680 , thread 7911 , mypolls 0 +myconn 0 connecting thr c0953680 , thread 7911 , mypolls 0 +thr c0953800 , status 1 +connecting thr c0953800 , thread 7912 , mypolls 0 +myconn 0 connecting thr c0953800 , thread 7912 , mypolls 0 +thr c0953980 , status 1 +connecting thr c0953980 , thread 7913 , mypolls 0 +myconn 0 connecting thr c0953980 , thread 7913 , mypolls 0 +thr c0953b00 , status 1 +connecting thr c0953b00 , thread 7914 , mypolls 0 +myconn 0 connecting thr c0953b00 , thread 7914 , mypolls 0 +thr c0953c80 , status 1 +connecting thr c0953c80 , thread 7915 , mypolls 0 +myconn 0 connecting thr c0953c80 , thread 7915 , mypolls 0 +thr c0953e00 , status 1 +connecting thr c0953e00 , thread 7916 , mypolls 0 +myconn 0 connecting thr c0953e00 , thread 7916 , mypolls 0 +thr c0953f80 , status 1 +connecting thr c0953f80 , thread 7917 , mypolls 0 +myconn 0 connecting thr c0953f80 , thread 7917 , mypolls 0 +thr c0954100 , status 1 +connecting thr c0954100 , thread 7918 , mypolls 0 +myconn 0 connecting thr c0954100 , thread 7918 , mypolls 0 +thr c0954280 , status 1 +connecting thr c0954280 , thread 7919 , mypolls 0 +myconn 0 connecting thr c0954280 , thread 7919 , mypolls 0 +thr c0954400 , status 1 +connecting thr c0954400 , thread 7920 , mypolls 0 +myconn 0 connecting thr c0954400 , thread 7920 , mypolls 0 +thr c0954580 , status 1 +connecting thr c0954580 , thread 7921 , mypolls 0 +myconn 0 connecting thr c0954580 , thread 7921 , mypolls 0 +thr c0954700 , status 1 +connecting thr c0954700 , thread 7922 , mypolls 0 +myconn 0 connecting thr c0954700 , thread 7922 , mypolls 0 +thr c0954880 , status 1 +connecting thr c0954880 , thread 7923 , mypolls 0 +myconn 0 connecting thr c0954880 , thread 7923 , mypolls 0 +thr c0954a00 , status 1 +connecting thr c0954a00 , thread 7924 , mypolls 0 +myconn 0 connecting thr c0954a00 , thread 7924 , mypolls 0 +thr c0954b80 , status 1 +connecting thr c0954b80 , thread 7925 , mypolls 0 +myconn 0 connecting thr c0954b80 , thread 7925 , mypolls 0 +thr c0954d00 , status 1 +connecting thr c0954d00 , thread 7926 , mypolls 0 +myconn 0 connecting thr c0954d00 , thread 7926 , mypolls 0 +thr c0954e80 , status 1 +connecting thr c0954e80 , thread 7927 , mypolls 0 +myconn 0 connecting thr c0954e80 , thread 7927 , mypolls 0 +thr c07b6000 , status 1 +connecting thr c07b6000 , thread 7928 , mypolls 0 +myconn 0 connecting thr c07b6000 , thread 7928 , mypolls 0 +thr c07b6180 , status 1 +connecting thr c07b6180 , thread 7929 , mypolls 0 +myconn 0 connecting thr c07b6180 , thread 7929 , mypolls 0 +thr c07b6300 , status 1 +connecting thr c07b6300 , thread 7930 , mypolls 0 +myconn 0 connecting thr c07b6300 , thread 7930 , mypolls 0 +thr c07b6480 , status 1 +connecting thr c07b6480 , thread 7931 , mypolls 0 +myconn 0 connecting thr c07b6480 , thread 7931 , mypolls 0 +thr c07b6600 , status 1 +connecting thr c07b6600 , thread 7932 , mypolls 0 +myconn 0 connecting thr c07b6600 , thread 7932 , mypolls 0 +thr c07b6780 , status 1 +connecting thr c07b6780 , thread 7933 , mypolls 0 +myconn 0 connecting thr c07b6780 , thread 7933 , mypolls 0 +thr c07b6900 , status 1 +connecting thr c07b6900 , thread 7934 , mypolls 0 +myconn 0 connecting thr c07b6900 , thread 7934 , mypolls 0 +thr c07b6a80 , status 1 +connecting thr c07b6a80 , thread 7935 , mypolls 0 +myconn 0 connecting thr c07b6a80 , thread 7935 , mypolls 0 +thr c07b6c00 , status 1 +connecting thr c07b6c00 , thread 7936 , mypolls 0 +myconn 0 connecting thr c07b6c00 , thread 7936 , mypolls 0 +thr c07b6d80 , status 1 +connecting thr c07b6d80 , thread 7937 , mypolls 0 +myconn 0 connecting thr c07b6d80 , thread 7937 , mypolls 0 +thr c07b6f00 , status 1 +connecting thr c07b6f00 , thread 7938 , mypolls 0 +myconn 0 connecting thr c07b6f00 , thread 7938 , mypolls 0 +thr c07b7080 , status 1 +connecting thr c07b7080 , thread 7939 , mypolls 0 +myconn 0 connecting thr c07b7080 , thread 7939 , mypolls 0 +thr c07b7200 , status 1 +connecting thr c07b7200 , thread 7940 , mypolls 0 +myconn 0 connecting thr c07b7200 , thread 7940 , mypolls 0 +thr c07b7380 , status 1 +connecting thr c07b7380 , thread 7941 , mypolls 0 +myconn 0 connecting thr c07b7380 , thread 7941 , mypolls 0 +thr c07b7500 , status 1 +connecting thr c07b7500 , thread 7942 , mypolls 0 +myconn 0 connecting thr c07b7500 , thread 7942 , mypolls 0 +thr c07b7680 , status 1 +connecting thr c07b7680 , thread 7943 , mypolls 0 +myconn 0 connecting thr c07b7680 , thread 7943 , mypolls 0 +thr c07b7800 , status 1 +connecting thr c07b7800 , thread 7944 , mypolls 0 +myconn 0 connecting thr c07b7800 , thread 7944 , mypolls 0 +thr c07b7980 , status 1 +connecting thr c07b7980 , thread 7945 , mypolls 0 +myconn 0 connecting thr c07b7980 , thread 7945 , mypolls 0 +thr c07b7b00 , status 1 +connecting thr c07b7b00 , thread 7946 , mypolls 0 +myconn 0 connecting thr c07b7b00 , thread 7946 , mypolls 0 +thr c07b7c80 , status 1 +connecting thr c07b7c80 , thread 7947 , mypolls 0 +myconn 0 connecting thr c07b7c80 , thread 7947 , mypolls 0 +thr c07b7e00 , status 1 +connecting thr c07b7e00 , thread 7948 , mypolls 0 +myconn 0 connecting thr c07b7e00 , thread 7948 , mypolls 0 +thr c07b7f80 , status 1 +connecting thr c07b7f80 , thread 7949 , mypolls 0 +myconn 0 connecting thr c07b7f80 , thread 7949 , mypolls 0 +thr c07b8100 , status 1 +connecting thr c07b8100 , thread 7950 , mypolls 0 +myconn 0 connecting thr c07b8100 , thread 7950 , mypolls 0 +thr c07b8280 , status 1 +connecting thr c07b8280 , thread 7951 , mypolls 0 +myconn 0 connecting thr c07b8280 , thread 7951 , mypolls 0 +thr c07b8400 , status 1 +connecting thr c07b8400 , thread 7952 , mypolls 0 +myconn 0 connecting thr c07b8400 , thread 7952 , mypolls 0 +thr c07b8580 , status 1 +connecting thr c07b8580 , thread 7953 , mypolls 0 +myconn 0 connecting thr c07b8580 , thread 7953 , mypolls 0 +thr c07b8700 , status 1 +connecting thr c07b8700 , thread 7954 , mypolls 0 +myconn 0 connecting thr c07b8700 , thread 7954 , mypolls 0 +thr c07b8880 , status 1 +connecting thr c07b8880 , thread 7955 , mypolls 0 +myconn 0 connecting thr c07b8880 , thread 7955 , mypolls 0 +thr c07b8a00 , status 1 +connecting thr c07b8a00 , thread 7956 , mypolls 0 +myconn 0 connecting thr c07b8a00 , thread 7956 , mypolls 0 +thr c07b8b80 , status 1 +connecting thr c07b8b80 , thread 7957 , mypolls 0 +myconn 0 connecting thr c07b8b80 , thread 7957 , mypolls 0 +thr c07b8d00 , status 1 +connecting thr c07b8d00 , thread 7958 , mypolls 0 +myconn 0 connecting thr c07b8d00 , thread 7958 , mypolls 0 +thr c07b8e80 , status 1 +connecting thr c07b8e80 , thread 7959 , mypolls 0 +myconn 0 connecting thr c07b8e80 , thread 7959 , mypolls 0 +thr c05fb000 , status 1 +connecting thr c05fb000 , thread 7960 , mypolls 0 +myconn 0 connecting thr c05fb000 , thread 7960 , mypolls 0 +thr c05fb180 , status 1 +connecting thr c05fb180 , thread 7961 , mypolls 0 +myconn 0 connecting thr c05fb180 , thread 7961 , mypolls 0 +thr c05fb300 , status 1 +connecting thr c05fb300 , thread 7962 , mypolls 0 +myconn 0 connecting thr c05fb300 , thread 7962 , mypolls 0 +thr c05fb480 , status 1 +connecting thr c05fb480 , thread 7963 , mypolls 0 +myconn 0 connecting thr c05fb480 , thread 7963 , mypolls 0 +thr c05fb600 , status 1 +connecting thr c05fb600 , thread 7964 , mypolls 0 +myconn 0 connecting thr c05fb600 , thread 7964 , mypolls 0 +thr c05fb780 , status 1 +connecting thr c05fb780 , thread 7965 , mypolls 0 +myconn 0 connecting thr c05fb780 , thread 7965 , mypolls 0 +thr c05fb900 , status 1 +connecting thr c05fb900 , thread 7966 , mypolls 0 +myconn 0 connecting thr c05fb900 , thread 7966 , mypolls 0 +thr c05fba80 , status 1 +connecting thr c05fba80 , thread 7967 , mypolls 0 +myconn 0 connecting thr c05fba80 , thread 7967 , mypolls 0 +thr c05fbc00 , status 1 +connecting thr c05fbc00 , thread 7968 , mypolls 0 +myconn 0 connecting thr c05fbc00 , thread 7968 , mypolls 0 +thr c05fbd80 , status 1 +connecting thr c05fbd80 , thread 7969 , mypolls 0 +myconn 0 connecting thr c05fbd80 , thread 7969 , mypolls 0 +thr c05fbf00 , status 1 +connecting thr c05fbf00 , thread 7970 , mypolls 0 +myconn 0 connecting thr c05fbf00 , thread 7970 , mypolls 0 +thr c05fc080 , status 1 +connecting thr c05fc080 , thread 7971 , mypolls 0 +myconn 0 connecting thr c05fc080 , thread 7971 , mypolls 0 +thr c05fc200 , status 1 +connecting thr c05fc200 , thread 7972 , mypolls 0 +myconn 0 connecting thr c05fc200 , thread 7972 , mypolls 0 +thr c05fc380 , status 1 +connecting thr c05fc380 , thread 7973 , mypolls 0 +myconn 0 connecting thr c05fc380 , thread 7973 , mypolls 0 +thr c05fc500 , status 1 +connecting thr c05fc500 , thread 7974 , mypolls 0 +myconn 0 connecting thr c05fc500 , thread 7974 , mypolls 0 +thr c05fc680 , status 1 +connecting thr c05fc680 , thread 7975 , mypolls 0 +myconn 0 connecting thr c05fc680 , thread 7975 , mypolls 0 +thr c05fc800 , status 1 +connecting thr c05fc800 , thread 7976 , mypolls 0 +myconn 0 connecting thr c05fc800 , thread 7976 , mypolls 0 +thr c05fc980 , status 1 +connecting thr c05fc980 , thread 7977 , mypolls 0 +myconn 0 connecting thr c05fc980 , thread 7977 , mypolls 0 +thr c05fcb00 , status 1 +connecting thr c05fcb00 , thread 7978 , mypolls 0 +myconn 0 connecting thr c05fcb00 , thread 7978 , mypolls 0 +thr c05fcc80 , status 1 +connecting thr c05fcc80 , thread 7979 , mypolls 0 +myconn 0 connecting thr c05fcc80 , thread 7979 , mypolls 0 +thr c05fce00 , status 1 +connecting thr c05fce00 , thread 7980 , mypolls 0 +myconn 0 connecting thr c05fce00 , thread 7980 , mypolls 0 +thr c05fcf80 , status 1 +connecting thr c05fcf80 , thread 7981 , mypolls 0 +myconn 0 connecting thr c05fcf80 , thread 7981 , mypolls 0 +thr c05fd100 , status 1 +connecting thr c05fd100 , thread 7982 , mypolls 0 +myconn 0 connecting thr c05fd100 , thread 7982 , mypolls 0 +thr c05fd280 , status 1 +connecting thr c05fd280 , thread 7983 , mypolls 0 +myconn 0 connecting thr c05fd280 , thread 7983 , mypolls 0 +thr c05fd400 , status 1 +connecting thr c05fd400 , thread 7984 , mypolls 0 +myconn 0 connecting thr c05fd400 , thread 7984 , mypolls 0 +thr c05fd580 , status 1 +connecting thr c05fd580 , thread 7985 , mypolls 0 +myconn 0 connecting thr c05fd580 , thread 7985 , mypolls 0 +thr c05fd700 , status 1 +connecting thr c05fd700 , thread 7986 , mypolls 0 +myconn 0 connecting thr c05fd700 , thread 7986 , mypolls 0 +thr c05fd880 , status 1 +connecting thr c05fd880 , thread 7987 , mypolls 0 +myconn 0 connecting thr c05fd880 , thread 7987 , mypolls 0 +thr c05fda00 , status 1 +connecting thr c05fda00 , thread 7988 , mypolls 0 +myconn 0 connecting thr c05fda00 , thread 7988 , mypolls 0 +thr c05fdb80 , status 1 +connecting thr c05fdb80 , thread 7989 , mypolls 0 +myconn 0 connecting thr c05fdb80 , thread 7989 , mypolls 0 +thr c05fdd00 , status 1 +connecting thr c05fdd00 , thread 7990 , mypolls 0 +myconn 0 connecting thr c05fdd00 , thread 7990 , mypolls 0 +thr c05fde80 , status 1 +connecting thr c05fde80 , thread 7991 , mypolls 0 +myconn 0 connecting thr c05fde80 , thread 7991 , mypolls 0 +thr c008c000 , status 1 +connecting thr c008c000 , thread 7992 , mypolls 0 +myconn 0 connecting thr c008c000 , thread 7992 , mypolls 0 +thr c008c180 , status 1 +connecting thr c008c180 , thread 7993 , mypolls 0 +myconn 0 connecting thr c008c180 , thread 7993 , mypolls 0 +thr c008c300 , status 1 +connecting thr c008c300 , thread 7994 , mypolls 0 +myconn 0 connecting thr c008c300 , thread 7994 , mypolls 0 +thr c008c480 , status 1 +connecting thr c008c480 , thread 7995 , mypolls 0 +myconn 0 connecting thr c008c480 , thread 7995 , mypolls 0 +thr c008c600 , status 1 +connecting thr c008c600 , thread 7996 , mypolls 0 +myconn 0 connecting thr c008c600 , thread 7996 , mypolls 0 +thr c008c780 , status 1 +connecting thr c008c780 , thread 7997 , mypolls 0 +myconn 0 connecting thr c008c780 , thread 7997 , mypolls 0 +thr c008c900 , status 1 +connecting thr c008c900 , thread 7998 , mypolls 0 +myconn 0 connecting thr c008c900 , thread 7998 , mypolls 0 +thr c008ca80 , status 1 +connecting thr c008ca80 , thread 7999 , mypolls 0 +myconn 0 connecting thr c008ca80 , thread 7999 , mypolls 0 +thr c008cc00 , status 1 +connecting thr c008cc00 , thread 8000 , mypolls 0 +myconn 0 connecting thr c008cc00 , thread 8000 , mypolls 0 +thr c008cd80 , status 1 +connecting thr c008cd80 , thread 8001 , mypolls 0 +myconn 0 connecting thr c008cd80 , thread 8001 , mypolls 0 +thr c008cf00 , status 1 +connecting thr c008cf00 , thread 8002 , mypolls 0 +myconn 0 connecting thr c008cf00 , thread 8002 , mypolls 0 +thr c008d080 , status 1 +connecting thr c008d080 , thread 8003 , mypolls 0 +myconn 0 connecting thr c008d080 , thread 8003 , mypolls 0 +thr c008d200 , status 1 +connecting thr c008d200 , thread 8004 , mypolls 0 +myconn 0 connecting thr c008d200 , thread 8004 , mypolls 0 +thr c008d380 , status 1 +connecting thr c008d380 , thread 8005 , mypolls 0 +myconn 0 connecting thr c008d380 , thread 8005 , mypolls 0 +thr c008d500 , status 1 +connecting thr c008d500 , thread 8006 , mypolls 0 +myconn 0 connecting thr c008d500 , thread 8006 , mypolls 0 +thr c008d680 , status 1 +connecting thr c008d680 , thread 8007 , mypolls 0 +myconn 0 connecting thr c008d680 , thread 8007 , mypolls 0 +thr c008d800 , status 1 +connecting thr c008d800 , thread 8008 , mypolls 0 +myconn 0 connecting thr c008d800 , thread 8008 , mypolls 0 +thr c008d980 , status 1 +connecting thr c008d980 , thread 8009 , mypolls 0 +myconn 0 connecting thr c008d980 , thread 8009 , mypolls 0 +thr c008db00 , status 1 +connecting thr c008db00 , thread 8010 , mypolls 0 +myconn 0 connecting thr c008db00 , thread 8010 , mypolls 0 +thr c008dc80 , status 1 +connecting thr c008dc80 , thread 8011 , mypolls 0 +myconn 0 connecting thr c008dc80 , thread 8011 , mypolls 0 +thr c008de00 , status 1 +connecting thr c008de00 , thread 8012 , mypolls 0 +myconn 0 connecting thr c008de00 , thread 8012 , mypolls 0 +thr c008df80 , status 1 +connecting thr c008df80 , thread 8013 , mypolls 0 +myconn 0 connecting thr c008df80 , thread 8013 , mypolls 0 +thr c008e100 , status 1 +connecting thr c008e100 , thread 8014 , mypolls 0 +myconn 0 connecting thr c008e100 , thread 8014 , mypolls 0 +thr c008e280 , status 1 +connecting thr c008e280 , thread 8015 , mypolls 0 +myconn 0 connecting thr c008e280 , thread 8015 , mypolls 0 +thr c008e400 , status 1 +connecting thr c008e400 , thread 8016 , mypolls 0 +myconn 0 connecting thr c008e400 , thread 8016 , mypolls 0 +thr c008e580 , status 1 +connecting thr c008e580 , thread 8017 , mypolls 0 +myconn 0 connecting thr c008e580 , thread 8017 , mypolls 0 +thr c008e700 , status 1 +connecting thr c008e700 , thread 8018 , mypolls 0 +myconn 0 connecting thr c008e700 , thread 8018 , mypolls 0 +thr c008e880 , status 1 +connecting thr c008e880 , thread 8019 , mypolls 0 +myconn 0 connecting thr c008e880 , thread 8019 , mypolls 0 +thr c008ea00 , status 1 +connecting thr c008ea00 , thread 8020 , mypolls 0 +myconn 0 connecting thr c008ea00 , thread 8020 , mypolls 0 +thr c008eb80 , status 1 +connecting thr c008eb80 , thread 8021 , mypolls 0 +myconn 0 connecting thr c008eb80 , thread 8021 , mypolls 0 +thr c008ed00 , status 1 +connecting thr c008ed00 , thread 8022 , mypolls 0 +myconn 0 connecting thr c008ed00 , thread 8022 , mypolls 0 +thr c008ee80 , status 1 +connecting thr c008ee80 , thread 8023 , mypolls 0 +myconn 0 connecting thr c008ee80 , thread 8023 , mypolls 0 +thr bfeee000 , status 1 +connecting thr bfeee000 , thread 8024 , mypolls 0 +myconn 0 connecting thr bfeee000 , thread 8024 , mypolls 0 +thr bfeee180 , status 1 +connecting thr bfeee180 , thread 8025 , mypolls 0 +myconn 0 connecting thr bfeee180 , thread 8025 , mypolls 0 +thr bfeee300 , status 1 +connecting thr bfeee300 , thread 8026 , mypolls 0 +myconn 0 connecting thr bfeee300 , thread 8026 , mypolls 0 +thr bfeee480 , status 1 +connecting thr bfeee480 , thread 8027 , mypolls 0 +myconn 0 connecting thr bfeee480 , thread 8027 , mypolls 0 +thr bfeee600 , status 1 +connecting thr bfeee600 , thread 8028 , mypolls 0 +myconn 0 connecting thr bfeee600 , thread 8028 , mypolls 0 +thr bfeee780 , status 1 +connecting thr bfeee780 , thread 8029 , mypolls 0 +myconn 0 connecting thr bfeee780 , thread 8029 , mypolls 0 +thr bfeee900 , status 1 +connecting thr bfeee900 , thread 8030 , mypolls 0 +myconn 0 connecting thr bfeee900 , thread 8030 , mypolls 0 +thr bfeeea80 , status 1 +connecting thr bfeeea80 , thread 8031 , mypolls 0 +myconn 0 connecting thr bfeeea80 , thread 8031 , mypolls 0 +thr bfeeec00 , status 1 +connecting thr bfeeec00 , thread 8032 , mypolls 0 +myconn 0 connecting thr bfeeec00 , thread 8032 , mypolls 0 +thr bfeeed80 , status 1 +connecting thr bfeeed80 , thread 8033 , mypolls 0 +myconn 0 connecting thr bfeeed80 , thread 8033 , mypolls 0 +thr bfeeef00 , status 1 +connecting thr bfeeef00 , thread 8034 , mypolls 0 +myconn 0 connecting thr bfeeef00 , thread 8034 , mypolls 0 +thr bfeef080 , status 1 +connecting thr bfeef080 , thread 8035 , mypolls 0 +myconn 0 connecting thr bfeef080 , thread 8035 , mypolls 0 +thr bfeef200 , status 1 +connecting thr bfeef200 , thread 8036 , mypolls 0 +myconn 0 connecting thr bfeef200 , thread 8036 , mypolls 0 +thr bfeef380 , status 1 +connecting thr bfeef380 , thread 8037 , mypolls 0 +myconn 0 connecting thr bfeef380 , thread 8037 , mypolls 0 +thr bfeef500 , status 1 +connecting thr bfeef500 , thread 8038 , mypolls 0 +myconn 0 connecting thr bfeef500 , thread 8038 , mypolls 0 +thr bfeef680 , status 1 +connecting thr bfeef680 , thread 8039 , mypolls 0 +myconn 0 connecting thr bfeef680 , thread 8039 , mypolls 0 +thr bfeef800 , status 1 +connecting thr bfeef800 , thread 8040 , mypolls 0 +myconn 0 connecting thr bfeef800 , thread 8040 , mypolls 0 +thr bfeef980 , status 1 +connecting thr bfeef980 , thread 8041 , mypolls 0 +myconn 0 connecting thr bfeef980 , thread 8041 , mypolls 0 +thr bfeefb00 , status 1 +connecting thr bfeefb00 , thread 8042 , mypolls 0 +myconn 0 connecting thr bfeefb00 , thread 8042 , mypolls 0 +thr bfeefc80 , status 1 +connecting thr bfeefc80 , thread 8043 , mypolls 0 +myconn 0 connecting thr bfeefc80 , thread 8043 , mypolls 0 +thr bfeefe00 , status 1 +connecting thr bfeefe00 , thread 8044 , mypolls 0 +myconn 0 connecting thr bfeefe00 , thread 8044 , mypolls 0 +thr bfeeff80 , status 1 +connecting thr bfeeff80 , thread 8045 , mypolls 0 +myconn 0 connecting thr bfeeff80 , thread 8045 , mypolls 0 +thr bfef0100 , status 1 +connecting thr bfef0100 , thread 8046 , mypolls 0 +myconn 0 connecting thr bfef0100 , thread 8046 , mypolls 0 +thr bfef0280 , status 1 +connecting thr bfef0280 , thread 8047 , mypolls 0 +myconn 0 connecting thr bfef0280 , thread 8047 , mypolls 0 +thr bfef0400 , status 1 +connecting thr bfef0400 , thread 8048 , mypolls 0 +myconn 0 connecting thr bfef0400 , thread 8048 , mypolls 0 +thr bfef0580 , status 1 +connecting thr bfef0580 , thread 8049 , mypolls 0 +myconn 0 connecting thr bfef0580 , thread 8049 , mypolls 0 +thr bfef0700 , status 1 +connecting thr bfef0700 , thread 8050 , mypolls 0 +myconn 0 connecting thr bfef0700 , thread 8050 , mypolls 0 +thr bfef0880 , status 1 +connecting thr bfef0880 , thread 8051 , mypolls 0 +myconn 0 connecting thr bfef0880 , thread 8051 , mypolls 0 +thr bfef0a00 , status 1 +connecting thr bfef0a00 , thread 8052 , mypolls 0 +myconn 0 connecting thr bfef0a00 , thread 8052 , mypolls 0 +thr bfef0b80 , status 1 +connecting thr bfef0b80 , thread 8053 , mypolls 0 +myconn 0 connecting thr bfef0b80 , thread 8053 , mypolls 0 +thr bfef0d00 , status 1 +connecting thr bfef0d00 , thread 8054 , mypolls 0 +myconn 0 connecting thr bfef0d00 , thread 8054 , mypolls 0 +thr bfef0e80 , status 1 +connecting thr bfef0e80 , thread 8055 , mypolls 0 +myconn 0 connecting thr bfef0e80 , thread 8055 , mypolls 0 +thr bfd4e000 , status 1 +connecting thr bfd4e000 , thread 8056 , mypolls 0 +myconn 0 connecting thr bfd4e000 , thread 8056 , mypolls 0 +thr bfd4e180 , status 1 +connecting thr bfd4e180 , thread 8057 , mypolls 0 +myconn 0 connecting thr bfd4e180 , thread 8057 , mypolls 0 +thr bfd4e300 , status 1 +connecting thr bfd4e300 , thread 8058 , mypolls 0 +myconn 0 connecting thr bfd4e300 , thread 8058 , mypolls 0 +thr bfd4e480 , status 1 +connecting thr bfd4e480 , thread 8059 , mypolls 0 +myconn 0 connecting thr bfd4e480 , thread 8059 , mypolls 0 +thr bfd4e600 , status 1 +connecting thr bfd4e600 , thread 8060 , mypolls 0 +myconn 0 connecting thr bfd4e600 , thread 8060 , mypolls 0 +thr bfd4e780 , status 1 +connecting thr bfd4e780 , thread 8061 , mypolls 0 +myconn 0 connecting thr bfd4e780 , thread 8061 , mypolls 0 +thr bfd4e900 , status 1 +connecting thr bfd4e900 , thread 8062 , mypolls 0 +myconn 0 connecting thr bfd4e900 , thread 8062 , mypolls 0 +thr bfd4ea80 , status 1 +connecting thr bfd4ea80 , thread 8063 , mypolls 0 +myconn 0 connecting thr bfd4ea80 , thread 8063 , mypolls 0 +thr bfd4ec00 , status 1 +connecting thr bfd4ec00 , thread 8064 , mypolls 0 +myconn 0 connecting thr bfd4ec00 , thread 8064 , mypolls 0 +thr bfd4ed80 , status 1 +connecting thr bfd4ed80 , thread 8065 , mypolls 0 +myconn 0 connecting thr bfd4ed80 , thread 8065 , mypolls 0 +thr bfd4ef00 , status 1 +connecting thr bfd4ef00 , thread 8066 , mypolls 0 +myconn 0 connecting thr bfd4ef00 , thread 8066 , mypolls 0 +thr bfd4f080 , status 1 +connecting thr bfd4f080 , thread 8067 , mypolls 0 +myconn 0 connecting thr bfd4f080 , thread 8067 , mypolls 0 +thr bfd4f200 , status 1 +connecting thr bfd4f200 , thread 8068 , mypolls 0 +myconn 0 connecting thr bfd4f200 , thread 8068 , mypolls 0 +thr bfd4f380 , status 1 +connecting thr bfd4f380 , thread 8069 , mypolls 0 +myconn 0 connecting thr bfd4f380 , thread 8069 , mypolls 0 +thr bfd4f500 , status 1 +connecting thr bfd4f500 , thread 8070 , mypolls 0 +myconn 0 connecting thr bfd4f500 , thread 8070 , mypolls 0 +thr bfd4f680 , status 1 +connecting thr bfd4f680 , thread 8071 , mypolls 0 +myconn 0 connecting thr bfd4f680 , thread 8071 , mypolls 0 +thr bfd4f800 , status 1 +connecting thr bfd4f800 , thread 8072 , mypolls 0 +myconn 0 connecting thr bfd4f800 , thread 8072 , mypolls 0 +thr bfd4f980 , status 1 +connecting thr bfd4f980 , thread 8073 , mypolls 0 +myconn 0 connecting thr bfd4f980 , thread 8073 , mypolls 0 +thr bfd4fb00 , status 1 +connecting thr bfd4fb00 , thread 8074 , mypolls 0 +myconn 0 connecting thr bfd4fb00 , thread 8074 , mypolls 0 +thr bfd4fc80 , status 1 +connecting thr bfd4fc80 , thread 8075 , mypolls 0 +myconn 0 connecting thr bfd4fc80 , thread 8075 , mypolls 0 +thr bfd4fe00 , status 1 +connecting thr bfd4fe00 , thread 8076 , mypolls 0 +myconn 0 connecting thr bfd4fe00 , thread 8076 , mypolls 0 +thr bfd4ff80 , status 1 +connecting thr bfd4ff80 , thread 8077 , mypolls 0 +myconn 0 connecting thr bfd4ff80 , thread 8077 , mypolls 0 +thr bfd50100 , status 1 +connecting thr bfd50100 , thread 8078 , mypolls 0 +myconn 0 connecting thr bfd50100 , thread 8078 , mypolls 0 +thr bfd50280 , status 1 +connecting thr bfd50280 , thread 8079 , mypolls 0 +myconn 0 connecting thr bfd50280 , thread 8079 , mypolls 0 +thr bfd50400 , status 1 +connecting thr bfd50400 , thread 8080 , mypolls 0 +myconn 0 connecting thr bfd50400 , thread 8080 , mypolls 0 +thr bfd50580 , status 1 +connecting thr bfd50580 , thread 8081 , mypolls 0 +myconn 0 connecting thr bfd50580 , thread 8081 , mypolls 0 +thr bfd50700 , status 1 +connecting thr bfd50700 , thread 8082 , mypolls 0 +myconn 0 connecting thr bfd50700 , thread 8082 , mypolls 0 +thr bfd50880 , status 1 +connecting thr bfd50880 , thread 8083 , mypolls 0 +myconn 0 connecting thr bfd50880 , thread 8083 , mypolls 0 +thr bfd50a00 , status 1 +connecting thr bfd50a00 , thread 8084 , mypolls 0 +myconn 0 connecting thr bfd50a00 , thread 8084 , mypolls 0 +thr bfd50b80 , status 1 +connecting thr bfd50b80 , thread 8085 , mypolls 0 +myconn 0 connecting thr bfd50b80 , thread 8085 , mypolls 0 +thr bfd50d00 , status 1 +connecting thr bfd50d00 , thread 8086 , mypolls 0 +myconn 0 connecting thr bfd50d00 , thread 8086 , mypolls 0 +thr bfd50e80 , status 1 +connecting thr bfd50e80 , thread 8087 , mypolls 0 +myconn 0 connecting thr bfd50e80 , thread 8087 , mypolls 0 +thr bfbb1000 , status 1 +connecting thr bfbb1000 , thread 8088 , mypolls 0 +myconn 0 connecting thr bfbb1000 , thread 8088 , mypolls 0 +thr bfbb1180 , status 1 +connecting thr bfbb1180 , thread 8089 , mypolls 0 +myconn 0 connecting thr bfbb1180 , thread 8089 , mypolls 0 +thr bfbb1300 , status 1 +connecting thr bfbb1300 , thread 8090 , mypolls 0 +myconn 0 connecting thr bfbb1300 , thread 8090 , mypolls 0 +thr bfbb1480 , status 1 +connecting thr bfbb1480 , thread 8091 , mypolls 0 +myconn 0 connecting thr bfbb1480 , thread 8091 , mypolls 0 +thr bfbb1600 , status 1 +connecting thr bfbb1600 , thread 8092 , mypolls 0 +myconn 0 connecting thr bfbb1600 , thread 8092 , mypolls 0 +thr bfbb1780 , status 1 +connecting thr bfbb1780 , thread 8093 , mypolls 0 +myconn 0 connecting thr bfbb1780 , thread 8093 , mypolls 0 +thr bfbb1900 , status 1 +connecting thr bfbb1900 , thread 8094 , mypolls 0 +myconn 0 connecting thr bfbb1900 , thread 8094 , mypolls 0 +thr bfbb1a80 , status 1 +connecting thr bfbb1a80 , thread 8095 , mypolls 0 +myconn 0 connecting thr bfbb1a80 , thread 8095 , mypolls 0 +thr bfbb1c00 , status 1 +connecting thr bfbb1c00 , thread 8096 , mypolls 0 +myconn 0 connecting thr bfbb1c00 , thread 8096 , mypolls 0 +thr bfbb1d80 , status 1 +connecting thr bfbb1d80 , thread 8097 , mypolls 0 +myconn 0 connecting thr bfbb1d80 , thread 8097 , mypolls 0 +thr bfbb1f00 , status 1 +connecting thr bfbb1f00 , thread 8098 , mypolls 0 +myconn 0 connecting thr bfbb1f00 , thread 8098 , mypolls 0 +thr bfbb2080 , status 1 +connecting thr bfbb2080 , thread 8099 , mypolls 0 +myconn 0 connecting thr bfbb2080 , thread 8099 , mypolls 0 +thr bfbb2200 , status 1 +connecting thr bfbb2200 , thread 8100 , mypolls 0 +myconn 0 connecting thr bfbb2200 , thread 8100 , mypolls 0 +thr bfbb2380 , status 1 +connecting thr bfbb2380 , thread 8101 , mypolls 0 +myconn 0 connecting thr bfbb2380 , thread 8101 , mypolls 0 +thr bfbb2500 , status 1 +connecting thr bfbb2500 , thread 8102 , mypolls 0 +myconn 0 connecting thr bfbb2500 , thread 8102 , mypolls 0 +thr bfbb2680 , status 1 +connecting thr bfbb2680 , thread 8103 , mypolls 0 +myconn 0 connecting thr bfbb2680 , thread 8103 , mypolls 0 +thr bfbb2800 , status 1 +connecting thr bfbb2800 , thread 8104 , mypolls 0 +myconn 0 connecting thr bfbb2800 , thread 8104 , mypolls 0 +thr bfbb2980 , status 1 +connecting thr bfbb2980 , thread 8105 , mypolls 0 +myconn 0 connecting thr bfbb2980 , thread 8105 , mypolls 0 +thr bfbb2b00 , status 1 +connecting thr bfbb2b00 , thread 8106 , mypolls 0 +myconn 0 connecting thr bfbb2b00 , thread 8106 , mypolls 0 +thr bfbb2c80 , status 1 +connecting thr bfbb2c80 , thread 8107 , mypolls 0 +myconn 0 connecting thr bfbb2c80 , thread 8107 , mypolls 0 +thr bfbb2e00 , status 1 +connecting thr bfbb2e00 , thread 8108 , mypolls 0 +myconn 0 connecting thr bfbb2e00 , thread 8108 , mypolls 0 +thr bfbb2f80 , status 1 +connecting thr bfbb2f80 , thread 8109 , mypolls 0 +myconn 0 connecting thr bfbb2f80 , thread 8109 , mypolls 0 +thr bfbb3100 , status 1 +connecting thr bfbb3100 , thread 8110 , mypolls 0 +myconn 0 connecting thr bfbb3100 , thread 8110 , mypolls 0 +thr bfbb3280 , status 1 +connecting thr bfbb3280 , thread 8111 , mypolls 0 +myconn 0 connecting thr bfbb3280 , thread 8111 , mypolls 0 +thr bfbb3400 , status 1 +connecting thr bfbb3400 , thread 8112 , mypolls 0 +myconn 0 connecting thr bfbb3400 , thread 8112 , mypolls 0 +thr bfbb3580 , status 1 +connecting thr bfbb3580 , thread 8113 , mypolls 0 +myconn 0 connecting thr bfbb3580 , thread 8113 , mypolls 0 +thr bfbb3700 , status 1 +connecting thr bfbb3700 , thread 8114 , mypolls 0 +myconn 0 connecting thr bfbb3700 , thread 8114 , mypolls 0 +thr bfbb3880 , status 1 +connecting thr bfbb3880 , thread 8115 , mypolls 0 +myconn 0 connecting thr bfbb3880 , thread 8115 , mypolls 0 +thr bfbb3a00 , status 1 +connecting thr bfbb3a00 , thread 8116 , mypolls 0 +myconn 0 connecting thr bfbb3a00 , thread 8116 , mypolls 0 +thr bfbb3b80 , status 1 +connecting thr bfbb3b80 , thread 8117 , mypolls 0 +myconn 0 connecting thr bfbb3b80 , thread 8117 , mypolls 0 +thr bfbb3d00 , status 1 +connecting thr bfbb3d00 , thread 8118 , mypolls 0 +myconn 0 connecting thr bfbb3d00 , thread 8118 , mypolls 0 +thr bfbb3e80 , status 1 +connecting thr bfbb3e80 , thread 8119 , mypolls 0 +myconn 0 connecting thr bfbb3e80 , thread 8119 , mypolls 0 +thr bf9f7000 , status 1 +connecting thr bf9f7000 , thread 8120 , mypolls 0 +myconn 0 connecting thr bf9f7000 , thread 8120 , mypolls 0 +thr bf9f7180 , status 1 +connecting thr bf9f7180 , thread 8121 , mypolls 0 +myconn 0 connecting thr bf9f7180 , thread 8121 , mypolls 0 +thr bf9f7300 , status 1 +connecting thr bf9f7300 , thread 8122 , mypolls 0 +myconn 0 connecting thr bf9f7300 , thread 8122 , mypolls 0 +thr bf9f7480 , status 1 +connecting thr bf9f7480 , thread 8123 , mypolls 0 +myconn 0 connecting thr bf9f7480 , thread 8123 , mypolls 0 +thr bf9f7600 , status 1 +connecting thr bf9f7600 , thread 8124 , mypolls 0 +myconn 0 connecting thr bf9f7600 , thread 8124 , mypolls 0 +thr bf9f7780 , status 1 +connecting thr bf9f7780 , thread 8125 , mypolls 0 +myconn 0 connecting thr bf9f7780 , thread 8125 , mypolls 0 +thr bf9f7900 , status 1 +connecting thr bf9f7900 , thread 8126 , mypolls 0 +myconn 0 connecting thr bf9f7900 , thread 8126 , mypolls 0 +thr bf9f7a80 , status 1 +connecting thr bf9f7a80 , thread 8127 , mypolls 0 +myconn 0 connecting thr bf9f7a80 , thread 8127 , mypolls 0 +thr bf9f7c00 , status 1 +connecting thr bf9f7c00 , thread 8128 , mypolls 0 +myconn 0 connecting thr bf9f7c00 , thread 8128 , mypolls 0 +thr bf9f7d80 , status 1 +connecting thr bf9f7d80 , thread 8129 , mypolls 0 +myconn 0 connecting thr bf9f7d80 , thread 8129 , mypolls 0 +thr bf9f7f00 , status 1 +connecting thr bf9f7f00 , thread 8130 , mypolls 0 +myconn 0 connecting thr bf9f7f00 , thread 8130 , mypolls 0 +thr bf9f8080 , status 1 +connecting thr bf9f8080 , thread 8131 , mypolls 0 +myconn 0 connecting thr bf9f8080 , thread 8131 , mypolls 0 +thr bf9f8200 , status 1 +connecting thr bf9f8200 , thread 8132 , mypolls 0 +myconn 0 connecting thr bf9f8200 , thread 8132 , mypolls 0 +thr bf9f8380 , status 1 +connecting thr bf9f8380 , thread 8133 , mypolls 0 +myconn 0 connecting thr bf9f8380 , thread 8133 , mypolls 0 +thr bf9f8500 , status 1 +connecting thr bf9f8500 , thread 8134 , mypolls 0 +myconn 0 connecting thr bf9f8500 , thread 8134 , mypolls 0 +thr bf9f8680 , status 1 +connecting thr bf9f8680 , thread 8135 , mypolls 0 +myconn 0 connecting thr bf9f8680 , thread 8135 , mypolls 0 +thr bf9f8800 , status 1 +connecting thr bf9f8800 , thread 8136 , mypolls 0 +myconn 0 connecting thr bf9f8800 , thread 8136 , mypolls 0 +thr bf9f8980 , status 1 +connecting thr bf9f8980 , thread 8137 , mypolls 0 +myconn 0 connecting thr bf9f8980 , thread 8137 , mypolls 0 +thr bf9f8b00 , status 1 +connecting thr bf9f8b00 , thread 8138 , mypolls 0 +myconn 0 connecting thr bf9f8b00 , thread 8138 , mypolls 0 +thr bf9f8c80 , status 1 +connecting thr bf9f8c80 , thread 8139 , mypolls 0 +myconn 0 connecting thr bf9f8c80 , thread 8139 , mypolls 0 +thr bf9f8e00 , status 1 +connecting thr bf9f8e00 , thread 8140 , mypolls 0 +myconn 0 connecting thr bf9f8e00 , thread 8140 , mypolls 0 +thr bf9f8f80 , status 1 +connecting thr bf9f8f80 , thread 8141 , mypolls 0 +myconn 0 connecting thr bf9f8f80 , thread 8141 , mypolls 0 +thr bf9f9100 , status 1 +connecting thr bf9f9100 , thread 8142 , mypolls 0 +myconn 0 connecting thr bf9f9100 , thread 8142 , mypolls 0 +thr bf9f9280 , status 1 +connecting thr bf9f9280 , thread 8143 , mypolls 0 +myconn 0 connecting thr bf9f9280 , thread 8143 , mypolls 0 +thr bf9f9400 , status 1 +connecting thr bf9f9400 , thread 8144 , mypolls 0 +myconn 0 connecting thr bf9f9400 , thread 8144 , mypolls 0 +thr bf9f9580 , status 1 +connecting thr bf9f9580 , thread 8145 , mypolls 0 +myconn 0 connecting thr bf9f9580 , thread 8145 , mypolls 0 +thr bf9f9700 , status 1 +connecting thr bf9f9700 , thread 8146 , mypolls 0 +myconn 0 connecting thr bf9f9700 , thread 8146 , mypolls 0 +thr bf9f9880 , status 1 +connecting thr bf9f9880 , thread 8147 , mypolls 0 +myconn 0 connecting thr bf9f9880 , thread 8147 , mypolls 0 +thr bf9f9a00 , status 1 +connecting thr bf9f9a00 , thread 8148 , mypolls 0 +myconn 0 connecting thr bf9f9a00 , thread 8148 , mypolls 0 +thr bf9f9b80 , status 1 +connecting thr bf9f9b80 , thread 8149 , mypolls 0 +myconn 0 connecting thr bf9f9b80 , thread 8149 , mypolls 0 +thr bf9f9d00 , status 1 +connecting thr bf9f9d00 , thread 8150 , mypolls 0 +myconn 0 connecting thr bf9f9d00 , thread 8150 , mypolls 0 +thr bf9f9e80 , status 1 +connecting thr bf9f9e80 , thread 8151 , mypolls 0 +myconn 0 connecting thr bf9f9e80 , thread 8151 , mypolls 0 +thr bf485000 , status 1 +connecting thr bf485000 , thread 8152 , mypolls 0 +myconn 0 connecting thr bf485000 , thread 8152 , mypolls 0 +thr bf485180 , status 1 +connecting thr bf485180 , thread 8153 , mypolls 0 +myconn 0 connecting thr bf485180 , thread 8153 , mypolls 0 +thr bf485300 , status 1 +connecting thr bf485300 , thread 8154 , mypolls 0 +myconn 0 connecting thr bf485300 , thread 8154 , mypolls 0 +thr bf485480 , status 1 +connecting thr bf485480 , thread 8155 , mypolls 0 +myconn 0 connecting thr bf485480 , thread 8155 , mypolls 0 +thr bf485600 , status 1 +connecting thr bf485600 , thread 8156 , mypolls 0 +myconn 0 connecting thr bf485600 , thread 8156 , mypolls 0 +thr bf485780 , status 1 +connecting thr bf485780 , thread 8157 , mypolls 0 +myconn 0 connecting thr bf485780 , thread 8157 , mypolls 0 +thr bf485900 , status 1 +connecting thr bf485900 , thread 8158 , mypolls 0 +myconn 0 connecting thr bf485900 , thread 8158 , mypolls 0 +thr bf485a80 , status 1 +connecting thr bf485a80 , thread 8159 , mypolls 0 +myconn 0 connecting thr bf485a80 , thread 8159 , mypolls 0 +thr bf485c00 , status 1 +connecting thr bf485c00 , thread 8160 , mypolls 0 +myconn 0 connecting thr bf485c00 , thread 8160 , mypolls 0 +thr bf485d80 , status 1 +connecting thr bf485d80 , thread 8161 , mypolls 0 +myconn 0 connecting thr bf485d80 , thread 8161 , mypolls 0 +thr bf485f00 , status 1 +connecting thr bf485f00 , thread 8162 , mypolls 0 +myconn 0 connecting thr bf485f00 , thread 8162 , mypolls 0 +thr bf486080 , status 1 +connecting thr bf486080 , thread 8163 , mypolls 0 +myconn 0 connecting thr bf486080 , thread 8163 , mypolls 0 +thr bf486200 , status 1 +connecting thr bf486200 , thread 8164 , mypolls 0 +myconn 0 connecting thr bf486200 , thread 8164 , mypolls 0 +thr bf486380 , status 1 +connecting thr bf486380 , thread 8165 , mypolls 0 +myconn 0 connecting thr bf486380 , thread 8165 , mypolls 0 +thr bf486500 , status 1 +connecting thr bf486500 , thread 8166 , mypolls 0 +myconn 0 connecting thr bf486500 , thread 8166 , mypolls 0 +thr bf486680 , status 1 +connecting thr bf486680 , thread 8167 , mypolls 0 +myconn 0 connecting thr bf486680 , thread 8167 , mypolls 0 +thr bf486800 , status 1 +connecting thr bf486800 , thread 8168 , mypolls 0 +myconn 0 connecting thr bf486800 , thread 8168 , mypolls 0 +thr bf486980 , status 1 +connecting thr bf486980 , thread 8169 , mypolls 0 +myconn 0 connecting thr bf486980 , thread 8169 , mypolls 0 +thr bf486b00 , status 1 +connecting thr bf486b00 , thread 8170 , mypolls 0 +myconn 0 connecting thr bf486b00 , thread 8170 , mypolls 0 +thr bf486c80 , status 1 +connecting thr bf486c80 , thread 8171 , mypolls 0 +myconn 0 connecting thr bf486c80 , thread 8171 , mypolls 0 +thr bf486e00 , status 1 +connecting thr bf486e00 , thread 8172 , mypolls 0 +myconn 0 connecting thr bf486e00 , thread 8172 , mypolls 0 +thr bf486f80 , status 1 +connecting thr bf486f80 , thread 8173 , mypolls 0 +myconn 0 connecting thr bf486f80 , thread 8173 , mypolls 0 +thr bf487100 , status 1 +connecting thr bf487100 , thread 8174 , mypolls 0 +myconn 0 connecting thr bf487100 , thread 8174 , mypolls 0 +thr bf487280 , status 1 +connecting thr bf487280 , thread 8175 , mypolls 0 +myconn 0 connecting thr bf487280 , thread 8175 , mypolls 0 +thr bf487400 , status 1 +connecting thr bf487400 , thread 8176 , mypolls 0 +myconn 0 connecting thr bf487400 , thread 8176 , mypolls 0 +thr bf487580 , status 1 +connecting thr bf487580 , thread 8177 , mypolls 0 +myconn 0 connecting thr bf487580 , thread 8177 , mypolls 0 +thr bf487700 , status 1 +connecting thr bf487700 , thread 8178 , mypolls 0 +myconn 0 connecting thr bf487700 , thread 8178 , mypolls 0 +thr bf487880 , status 1 +connecting thr bf487880 , thread 8179 , mypolls 0 +myconn 0 connecting thr bf487880 , thread 8179 , mypolls 0 +thr bf487a00 , status 1 +connecting thr bf487a00 , thread 8180 , mypolls 0 +myconn 0 connecting thr bf487a00 , thread 8180 , mypolls 0 +thr bf487b80 , status 1 +connecting thr bf487b80 , thread 8181 , mypolls 0 +myconn 0 connecting thr bf487b80 , thread 8181 , mypolls 0 +thr bf487d00 , status 1 +connecting thr bf487d00 , thread 8182 , mypolls 0 +myconn 0 connecting thr bf487d00 , thread 8182 , mypolls 0 +thr bf487e80 , status 1 +connecting thr bf487e80 , thread 8183 , mypolls 0 +myconn 0 connecting thr bf487e80 , thread 8183 , mypolls 0 +thr bf2e6000 , status 1 +connecting thr bf2e6000 , thread 8184 , mypolls 0 +myconn 0 connecting thr bf2e6000 , thread 8184 , mypolls 0 +thr bf2e6180 , status 1 +connecting thr bf2e6180 , thread 8185 , mypolls 0 +myconn 0 connecting thr bf2e6180 , thread 8185 , mypolls 0 +thr bf2e6300 , status 1 +connecting thr bf2e6300 , thread 8186 , mypolls 0 +myconn 0 connecting thr bf2e6300 , thread 8186 , mypolls 0 +thr bf2e6480 , status 1 +connecting thr bf2e6480 , thread 8187 , mypolls 0 +myconn 0 connecting thr bf2e6480 , thread 8187 , mypolls 0 +thr bf2e6600 , status 1 +connecting thr bf2e6600 , thread 8188 , mypolls 0 +myconn 0 connecting thr bf2e6600 , thread 8188 , mypolls 0 +thr bf2e6780 , status 1 +connecting thr bf2e6780 , thread 8189 , mypolls 0 +myconn 0 connecting thr bf2e6780 , thread 8189 , mypolls 0 +thr bf2e6900 , status 1 +connecting thr bf2e6900 , thread 8190 , mypolls 0 +myconn 0 connecting thr bf2e6900 , thread 8190 , mypolls 0 +thr bf2e6a80 , status 1 +connecting thr bf2e6a80 , thread 8191 , mypolls 0 +myconn 0 connecting thr bf2e6a80 , thread 8191 , mypolls 0 +thr bf2e6c00 , status 1 +connecting thr bf2e6c00 , thread 8192 , mypolls 0 +myconn 0 connecting thr bf2e6c00 , thread 8192 , mypolls 0 +thr bf2e6d80 , status 1 +connecting thr bf2e6d80 , thread 8193 , mypolls 0 +myconn 0 connecting thr bf2e6d80 , thread 8193 , mypolls 0 +thr bf2e6f00 , status 1 +connecting thr bf2e6f00 , thread 8194 , mypolls 0 +myconn 0 connecting thr bf2e6f00 , thread 8194 , mypolls 0 +thr bf2e7080 , status 1 +connecting thr bf2e7080 , thread 8195 , mypolls 0 +myconn 0 connecting thr bf2e7080 , thread 8195 , mypolls 0 +thr bf2e7200 , status 1 +connecting thr bf2e7200 , thread 8196 , mypolls 0 +myconn 0 connecting thr bf2e7200 , thread 8196 , mypolls 0 +thr bf2e7380 , status 1 +connecting thr bf2e7380 , thread 8197 , mypolls 0 +myconn 0 connecting thr bf2e7380 , thread 8197 , mypolls 0 +thr bf2e7500 , status 1 +connecting thr bf2e7500 , thread 8198 , mypolls 0 +myconn 0 connecting thr bf2e7500 , thread 8198 , mypolls 0 +thr bf2e7680 , status 1 +connecting thr bf2e7680 , thread 8199 , mypolls 0 +myconn 0 connecting thr bf2e7680 , thread 8199 , mypolls 0 +thr bf2e7800 , status 1 +connecting thr bf2e7800 , thread 8200 , mypolls 0 +myconn 0 connecting thr bf2e7800 , thread 8200 , mypolls 0 +thr bf2e7980 , status 1 +connecting thr bf2e7980 , thread 8201 , mypolls 0 +myconn 0 connecting thr bf2e7980 , thread 8201 , mypolls 0 +thr bf2e7b00 , status 1 +connecting thr bf2e7b00 , thread 8202 , mypolls 0 +myconn 0 connecting thr bf2e7b00 , thread 8202 , mypolls 0 +thr bf2e7c80 , status 1 +connecting thr bf2e7c80 , thread 8203 , mypolls 0 +myconn 0 connecting thr bf2e7c80 , thread 8203 , mypolls 0 +thr bf2e7e00 , status 1 +connecting thr bf2e7e00 , thread 8204 , mypolls 0 +myconn 0 connecting thr bf2e7e00 , thread 8204 , mypolls 0 +thr bf2e7f80 , status 1 +connecting thr bf2e7f80 , thread 8205 , mypolls 0 +myconn 0 connecting thr bf2e7f80 , thread 8205 , mypolls 0 +thr bf2e8100 , status 1 +connecting thr bf2e8100 , thread 8206 , mypolls 0 +myconn 0 connecting thr bf2e8100 , thread 8206 , mypolls 0 +thr bf2e8280 , status 1 +connecting thr bf2e8280 , thread 8207 , mypolls 0 +myconn 0 connecting thr bf2e8280 , thread 8207 , mypolls 0 +thr bf2e8400 , status 1 +connecting thr bf2e8400 , thread 8208 , mypolls 0 +myconn 0 connecting thr bf2e8400 , thread 8208 , mypolls 0 +thr bf2e8580 , status 1 +connecting thr bf2e8580 , thread 8209 , mypolls 0 +myconn 0 connecting thr bf2e8580 , thread 8209 , mypolls 0 +thr bf2e8700 , status 1 +connecting thr bf2e8700 , thread 8210 , mypolls 0 +myconn 0 connecting thr bf2e8700 , thread 8210 , mypolls 0 +thr bf2e8880 , status 1 +connecting thr bf2e8880 , thread 8211 , mypolls 0 +myconn 0 connecting thr bf2e8880 , thread 8211 , mypolls 0 +thr bf2e8a00 , status 1 +connecting thr bf2e8a00 , thread 8212 , mypolls 0 +myconn 0 connecting thr bf2e8a00 , thread 8212 , mypolls 0 +thr bf2e8b80 , status 1 +connecting thr bf2e8b80 , thread 8213 , mypolls 0 +myconn 0 connecting thr bf2e8b80 , thread 8213 , mypolls 0 +thr bf2e8d00 , status 1 +connecting thr bf2e8d00 , thread 8214 , mypolls 0 +myconn 0 connecting thr bf2e8d00 , thread 8214 , mypolls 0 +thr bf2e8e80 , status 1 +connecting thr bf2e8e80 , thread 8215 , mypolls 0 +myconn 0 connecting thr bf2e8e80 , thread 8215 , mypolls 0 +thr bf14b000 , status 1 +connecting thr bf14b000 , thread 8216 , mypolls 0 +myconn 0 connecting thr bf14b000 , thread 8216 , mypolls 0 +thr bf14b180 , status 1 +connecting thr bf14b180 , thread 8217 , mypolls 0 +myconn 0 connecting thr bf14b180 , thread 8217 , mypolls 0 +thr bf14b300 , status 1 +connecting thr bf14b300 , thread 8218 , mypolls 0 +myconn 0 connecting thr bf14b300 , thread 8218 , mypolls 0 +thr bf14b480 , status 1 +connecting thr bf14b480 , thread 8219 , mypolls 0 +myconn 0 connecting thr bf14b480 , thread 8219 , mypolls 0 +thr bf14b600 , status 1 +connecting thr bf14b600 , thread 8220 , mypolls 0 +myconn 0 connecting thr bf14b600 , thread 8220 , mypolls 0 +thr bf14b780 , status 1 +connecting thr bf14b780 , thread 8221 , mypolls 0 +myconn 0 connecting thr bf14b780 , thread 8221 , mypolls 0 +thr bf14b900 , status 1 +connecting thr bf14b900 , thread 8222 , mypolls 0 +myconn 0 connecting thr bf14b900 , thread 8222 , mypolls 0 +thr bf14ba80 , status 1 +connecting thr bf14ba80 , thread 8223 , mypolls 0 +myconn 0 connecting thr bf14ba80 , thread 8223 , mypolls 0 +thr bf14bc00 , status 1 +connecting thr bf14bc00 , thread 8224 , mypolls 0 +myconn 0 connecting thr bf14bc00 , thread 8224 , mypolls 0 +thr bf14bd80 , status 1 +connecting thr bf14bd80 , thread 8225 , mypolls 0 +myconn 0 connecting thr bf14bd80 , thread 8225 , mypolls 0 +thr bf14bf00 , status 1 +connecting thr bf14bf00 , thread 8226 , mypolls 0 +myconn 0 connecting thr bf14bf00 , thread 8226 , mypolls 0 +thr bf14c080 , status 1 +connecting thr bf14c080 , thread 8227 , mypolls 0 +myconn 0 connecting thr bf14c080 , thread 8227 , mypolls 0 +thr bf14c200 , status 1 +connecting thr bf14c200 , thread 8228 , mypolls 0 +myconn 0 connecting thr bf14c200 , thread 8228 , mypolls 0 +thr bf14c380 , status 1 +connecting thr bf14c380 , thread 8229 , mypolls 0 +myconn 0 connecting thr bf14c380 , thread 8229 , mypolls 0 +thr bf14c500 , status 1 +connecting thr bf14c500 , thread 8230 , mypolls 0 +myconn 0 connecting thr bf14c500 , thread 8230 , mypolls 0 +thr bf14c680 , status 1 +connecting thr bf14c680 , thread 8231 , mypolls 0 +myconn 0 connecting thr bf14c680 , thread 8231 , mypolls 0 +thr bf14c800 , status 1 +connecting thr bf14c800 , thread 8232 , mypolls 0 +myconn 0 connecting thr bf14c800 , thread 8232 , mypolls 0 +thr bf14c980 , status 1 +connecting thr bf14c980 , thread 8233 , mypolls 0 +myconn 0 connecting thr bf14c980 , thread 8233 , mypolls 0 +thr bf14cb00 , status 1 +connecting thr bf14cb00 , thread 8234 , mypolls 0 +myconn 0 connecting thr bf14cb00 , thread 8234 , mypolls 0 +thr bf14cc80 , status 1 +connecting thr bf14cc80 , thread 8235 , mypolls 0 +myconn 0 connecting thr bf14cc80 , thread 8235 , mypolls 0 +thr bf14ce00 , status 1 +connecting thr bf14ce00 , thread 8236 , mypolls 0 +myconn 0 connecting thr bf14ce00 , thread 8236 , mypolls 0 +thr bf14cf80 , status 1 +connecting thr bf14cf80 , thread 8237 , mypolls 0 +myconn 0 connecting thr bf14cf80 , thread 8237 , mypolls 0 +thr bf14d100 , status 1 +connecting thr bf14d100 , thread 8238 , mypolls 0 +myconn 0 connecting thr bf14d100 , thread 8238 , mypolls 0 +thr bf14d280 , status 1 +connecting thr bf14d280 , thread 8239 , mypolls 0 +myconn 0 connecting thr bf14d280 , thread 8239 , mypolls 0 +thr bf14d400 , status 1 +connecting thr bf14d400 , thread 8240 , mypolls 0 +myconn 0 connecting thr bf14d400 , thread 8240 , mypolls 0 +thr bf14d580 , status 1 +connecting thr bf14d580 , thread 8241 , mypolls 0 +myconn 0 connecting thr bf14d580 , thread 8241 , mypolls 0 +thr bf14d700 , status 1 +connecting thr bf14d700 , thread 8242 , mypolls 0 +myconn 0 connecting thr bf14d700 , thread 8242 , mypolls 0 +thr bf14d880 , status 1 +connecting thr bf14d880 , thread 8243 , mypolls 0 +myconn 0 connecting thr bf14d880 , thread 8243 , mypolls 0 +thr bf14da00 , status 1 +connecting thr bf14da00 , thread 8244 , mypolls 0 +myconn 0 connecting thr bf14da00 , thread 8244 , mypolls 0 +thr bf14db80 , status 1 +connecting thr bf14db80 , thread 8245 , mypolls 0 +myconn 0 connecting thr bf14db80 , thread 8245 , mypolls 0 +thr bf14dd00 , status 1 +connecting thr bf14dd00 , thread 8246 , mypolls 0 +myconn 0 connecting thr bf14dd00 , thread 8246 , mypolls 0 +thr bf14de80 , status 1 +connecting thr bf14de80 , thread 8247 , mypolls 0 +myconn 0 connecting thr bf14de80 , thread 8247 , mypolls 0 +thr befcc000 , status 1 +connecting thr befcc000 , thread 8248 , mypolls 0 +myconn 0 connecting thr befcc000 , thread 8248 , mypolls 0 +thr befcc180 , status 1 +connecting thr befcc180 , thread 8249 , mypolls 0 +myconn 0 connecting thr befcc180 , thread 8249 , mypolls 0 +thr befcc300 , status 1 +connecting thr befcc300 , thread 8250 , mypolls 0 +myconn 0 connecting thr befcc300 , thread 8250 , mypolls 0 +thr befcc480 , status 1 +connecting thr befcc480 , thread 8251 , mypolls 0 +myconn 0 connecting thr befcc480 , thread 8251 , mypolls 0 +thr befcc600 , status 1 +connecting thr befcc600 , thread 8252 , mypolls 0 +myconn 0 connecting thr befcc600 , thread 8252 , mypolls 0 +thr befcc780 , status 1 +connecting thr befcc780 , thread 8253 , mypolls 0 +myconn 0 connecting thr befcc780 , thread 8253 , mypolls 0 +thr befcc900 , status 1 +connecting thr befcc900 , thread 8254 , mypolls 0 +myconn 0 connecting thr befcc900 , thread 8254 , mypolls 0 +thr befcca80 , status 1 +connecting thr befcca80 , thread 8255 , mypolls 0 +myconn 0 connecting thr befcca80 , thread 8255 , mypolls 0 +thr befccc00 , status 1 +connecting thr befccc00 , thread 8256 , mypolls 0 +myconn 0 connecting thr befccc00 , thread 8256 , mypolls 0 +thr befccd80 , status 1 +connecting thr befccd80 , thread 8257 , mypolls 0 +myconn 0 connecting thr befccd80 , thread 8257 , mypolls 0 +thr befccf00 , status 1 +connecting thr befccf00 , thread 8258 , mypolls 0 +myconn 0 connecting thr befccf00 , thread 8258 , mypolls 0 +thr befcd080 , status 1 +connecting thr befcd080 , thread 8259 , mypolls 0 +myconn 0 connecting thr befcd080 , thread 8259 , mypolls 0 +thr befcd200 , status 1 +connecting thr befcd200 , thread 8260 , mypolls 0 +myconn 0 connecting thr befcd200 , thread 8260 , mypolls 0 +thr befcd380 , status 1 +connecting thr befcd380 , thread 8261 , mypolls 0 +myconn 0 connecting thr befcd380 , thread 8261 , mypolls 0 +thr befcd500 , status 1 +connecting thr befcd500 , thread 8262 , mypolls 0 +myconn 0 connecting thr befcd500 , thread 8262 , mypolls 0 +thr befcd680 , status 1 +connecting thr befcd680 , thread 8263 , mypolls 0 +myconn 0 connecting thr befcd680 , thread 8263 , mypolls 0 +thr befcd800 , status 1 +connecting thr befcd800 , thread 8264 , mypolls 0 +myconn 0 connecting thr befcd800 , thread 8264 , mypolls 0 +thr befcd980 , status 1 +connecting thr befcd980 , thread 8265 , mypolls 0 +myconn 0 connecting thr befcd980 , thread 8265 , mypolls 0 +thr befcdb00 , status 1 +connecting thr befcdb00 , thread 8266 , mypolls 0 +myconn 0 connecting thr befcdb00 , thread 8266 , mypolls 0 +thr befcdc80 , status 1 +connecting thr befcdc80 , thread 8267 , mypolls 0 +myconn 0 connecting thr befcdc80 , thread 8267 , mypolls 0 +thr befcde00 , status 1 +connecting thr befcde00 , thread 8268 , mypolls 0 +myconn 0 connecting thr befcde00 , thread 8268 , mypolls 0 +thr befcdf80 , status 1 +connecting thr befcdf80 , thread 8269 , mypolls 0 +myconn 0 connecting thr befcdf80 , thread 8269 , mypolls 0 +thr befce100 , status 1 +connecting thr befce100 , thread 8270 , mypolls 0 +myconn 0 connecting thr befce100 , thread 8270 , mypolls 0 +thr befce280 , status 1 +connecting thr befce280 , thread 8271 , mypolls 0 +myconn 0 connecting thr befce280 , thread 8271 , mypolls 0 +thr befce400 , status 1 +connecting thr befce400 , thread 8272 , mypolls 0 +myconn 0 connecting thr befce400 , thread 8272 , mypolls 0 +thr befce580 , status 1 +connecting thr befce580 , thread 8273 , mypolls 0 +myconn 0 connecting thr befce580 , thread 8273 , mypolls 0 +thr befce700 , status 1 +connecting thr befce700 , thread 8274 , mypolls 0 +myconn 0 connecting thr befce700 , thread 8274 , mypolls 0 +thr befce880 , status 1 +connecting thr befce880 , thread 8275 , mypolls 0 +myconn 0 connecting thr befce880 , thread 8275 , mypolls 0 +thr befcea00 , status 1 +connecting thr befcea00 , thread 8276 , mypolls 0 +myconn 0 connecting thr befcea00 , thread 8276 , mypolls 0 +thr befceb80 , status 1 +connecting thr befceb80 , thread 8277 , mypolls 0 +myconn 0 connecting thr befceb80 , thread 8277 , mypolls 0 +thr befced00 , status 1 +connecting thr befced00 , thread 8278 , mypolls 0 +myconn 0 connecting thr befced00 , thread 8278 , mypolls 0 +thr befcee80 , status 1 +connecting thr befcee80 , thread 8279 , mypolls 0 +myconn 0 connecting thr befcee80 , thread 8279 , mypolls 0 +thr bedfa000 , status 1 +connecting thr bedfa000 , thread 8280 , mypolls 0 +myconn 0 connecting thr bedfa000 , thread 8280 , mypolls 0 +thr bedfa180 , status 1 +connecting thr bedfa180 , thread 8281 , mypolls 0 +myconn 0 connecting thr bedfa180 , thread 8281 , mypolls 0 +thr bedfa300 , status 1 +connecting thr bedfa300 , thread 8282 , mypolls 0 +myconn 0 connecting thr bedfa300 , thread 8282 , mypolls 0 +thr bedfa480 , status 1 +connecting thr bedfa480 , thread 8283 , mypolls 0 +myconn 0 connecting thr bedfa480 , thread 8283 , mypolls 0 +thr bedfa600 , status 1 +connecting thr bedfa600 , thread 8284 , mypolls 0 +myconn 0 connecting thr bedfa600 , thread 8284 , mypolls 0 +thr bedfa780 , status 1 +connecting thr bedfa780 , thread 8285 , mypolls 0 +myconn 0 connecting thr bedfa780 , thread 8285 , mypolls 0 +thr bedfa900 , status 1 +connecting thr bedfa900 , thread 8286 , mypolls 0 +myconn 0 connecting thr bedfa900 , thread 8286 , mypolls 0 +thr bedfaa80 , status 1 +connecting thr bedfaa80 , thread 8287 , mypolls 0 +myconn 0 connecting thr bedfaa80 , thread 8287 , mypolls 0 +thr bedfac00 , status 1 +connecting thr bedfac00 , thread 8288 , mypolls 0 +myconn 0 connecting thr bedfac00 , thread 8288 , mypolls 0 +thr bedfad80 , status 1 +connecting thr bedfad80 , thread 8289 , mypolls 0 +myconn 0 connecting thr bedfad80 , thread 8289 , mypolls 0 +thr bedfaf00 , status 1 +connecting thr bedfaf00 , thread 8290 , mypolls 0 +myconn 0 connecting thr bedfaf00 , thread 8290 , mypolls 0 +thr bedfb080 , status 1 +connecting thr bedfb080 , thread 8291 , mypolls 0 +myconn 0 connecting thr bedfb080 , thread 8291 , mypolls 0 +thr bedfb200 , status 1 +connecting thr bedfb200 , thread 8292 , mypolls 0 +myconn 0 connecting thr bedfb200 , thread 8292 , mypolls 0 +thr bedfb380 , status 1 +connecting thr bedfb380 , thread 8293 , mypolls 0 +myconn 0 connecting thr bedfb380 , thread 8293 , mypolls 0 +thr bedfb500 , status 1 +connecting thr bedfb500 , thread 8294 , mypolls 0 +myconn 0 connecting thr bedfb500 , thread 8294 , mypolls 0 +thr bedfb680 , status 1 +connecting thr bedfb680 , thread 8295 , mypolls 0 +myconn 0 connecting thr bedfb680 , thread 8295 , mypolls 0 +thr bedfb800 , status 1 +connecting thr bedfb800 , thread 8296 , mypolls 0 +myconn 0 connecting thr bedfb800 , thread 8296 , mypolls 0 +thr bedfb980 , status 1 +connecting thr bedfb980 , thread 8297 , mypolls 0 +myconn 0 connecting thr bedfb980 , thread 8297 , mypolls 0 +thr bedfbb00 , status 1 +connecting thr bedfbb00 , thread 8298 , mypolls 0 +myconn 0 connecting thr bedfbb00 , thread 8298 , mypolls 0 +thr bedfbc80 , status 1 +connecting thr bedfbc80 , thread 8299 , mypolls 0 +myconn 0 connecting thr bedfbc80 , thread 8299 , mypolls 0 +thr bedfbe00 , status 1 +connecting thr bedfbe00 , thread 8300 , mypolls 0 +myconn 0 connecting thr bedfbe00 , thread 8300 , mypolls 0 +thr bedfbf80 , status 1 +connecting thr bedfbf80 , thread 8301 , mypolls 0 +myconn 0 connecting thr bedfbf80 , thread 8301 , mypolls 0 +thr bedfc100 , status 1 +connecting thr bedfc100 , thread 8302 , mypolls 0 +myconn 0 connecting thr bedfc100 , thread 8302 , mypolls 0 +thr bedfc280 , status 1 +connecting thr bedfc280 , thread 8303 , mypolls 0 +myconn 0 connecting thr bedfc280 , thread 8303 , mypolls 0 +thr bedfc400 , status 1 +connecting thr bedfc400 , thread 8304 , mypolls 0 +myconn 0 connecting thr bedfc400 , thread 8304 , mypolls 0 +thr bedfc580 , status 1 +connecting thr bedfc580 , thread 8305 , mypolls 0 +myconn 0 connecting thr bedfc580 , thread 8305 , mypolls 0 +thr bedfc700 , status 1 +connecting thr bedfc700 , thread 8306 , mypolls 0 +myconn 0 connecting thr bedfc700 , thread 8306 , mypolls 0 +thr bedfc880 , status 1 +connecting thr bedfc880 , thread 8307 , mypolls 0 +myconn 0 connecting thr bedfc880 , thread 8307 , mypolls 0 +thr bedfca00 , status 1 +connecting thr bedfca00 , thread 8308 , mypolls 0 +myconn 0 connecting thr bedfca00 , thread 8308 , mypolls 0 +thr bedfcb80 , status 1 +connecting thr bedfcb80 , thread 8309 , mypolls 0 +myconn 0 connecting thr bedfcb80 , thread 8309 , mypolls 0 +thr bedfcd00 , status 1 +connecting thr bedfcd00 , thread 8310 , mypolls 0 +myconn 0 connecting thr bedfcd00 , thread 8310 , mypolls 0 +thr bedfce80 , status 1 +connecting thr bedfce80 , thread 8311 , mypolls 0 +myconn 0 connecting thr bedfce80 , thread 8311 , mypolls 0 +thr be89e000 , status 1 +connecting thr be89e000 , thread 8312 , mypolls 0 +myconn 0 connecting thr be89e000 , thread 8312 , mypolls 0 +thr be89e180 , status 1 +connecting thr be89e180 , thread 8313 , mypolls 0 +myconn 0 connecting thr be89e180 , thread 8313 , mypolls 0 +thr be89e300 , status 1 +connecting thr be89e300 , thread 8314 , mypolls 0 +myconn 0 connecting thr be89e300 , thread 8314 , mypolls 0 +thr be89e480 , status 1 +connecting thr be89e480 , thread 8315 , mypolls 0 +myconn 0 connecting thr be89e480 , thread 8315 , mypolls 0 +thr be89e600 , status 1 +connecting thr be89e600 , thread 8316 , mypolls 0 +myconn 0 connecting thr be89e600 , thread 8316 , mypolls 0 +thr be89e780 , status 1 +connecting thr be89e780 , thread 8317 , mypolls 0 +myconn 0 connecting thr be89e780 , thread 8317 , mypolls 0 +thr be89e900 , status 1 +connecting thr be89e900 , thread 8318 , mypolls 0 +myconn 0 connecting thr be89e900 , thread 8318 , mypolls 0 +thr be89ea80 , status 1 +connecting thr be89ea80 , thread 8319 , mypolls 0 +myconn 0 connecting thr be89ea80 , thread 8319 , mypolls 0 +thr be89ec00 , status 1 +connecting thr be89ec00 , thread 8320 , mypolls 0 +myconn 0 connecting thr be89ec00 , thread 8320 , mypolls 0 +thr be89ed80 , status 1 +connecting thr be89ed80 , thread 8321 , mypolls 0 +myconn 0 connecting thr be89ed80 , thread 8321 , mypolls 0 +thr be89ef00 , status 1 +connecting thr be89ef00 , thread 8322 , mypolls 0 +myconn 0 connecting thr be89ef00 , thread 8322 , mypolls 0 +thr be89f080 , status 1 +connecting thr be89f080 , thread 8323 , mypolls 0 +myconn 0 connecting thr be89f080 , thread 8323 , mypolls 0 +thr be89f200 , status 1 +connecting thr be89f200 , thread 8324 , mypolls 0 +myconn 0 connecting thr be89f200 , thread 8324 , mypolls 0 +thr be89f380 , status 1 +connecting thr be89f380 , thread 8325 , mypolls 0 +myconn 0 connecting thr be89f380 , thread 8325 , mypolls 0 +thr be89f500 , status 1 +connecting thr be89f500 , thread 8326 , mypolls 0 +myconn 0 connecting thr be89f500 , thread 8326 , mypolls 0 +thr be89f680 , status 1 +connecting thr be89f680 , thread 8327 , mypolls 0 +myconn 0 connecting thr be89f680 , thread 8327 , mypolls 0 +thr be89f800 , status 1 +connecting thr be89f800 , thread 8328 , mypolls 0 +myconn 0 connecting thr be89f800 , thread 8328 , mypolls 0 +thr be89f980 , status 1 +connecting thr be89f980 , thread 8329 , mypolls 0 +myconn 0 connecting thr be89f980 , thread 8329 , mypolls 0 +thr be89fb00 , status 1 +connecting thr be89fb00 , thread 8330 , mypolls 0 +myconn 0 connecting thr be89fb00 , thread 8330 , mypolls 0 +thr be89fc80 , status 1 +connecting thr be89fc80 , thread 8331 , mypolls 0 +myconn 0 connecting thr be89fc80 , thread 8331 , mypolls 0 +thr be89fe00 , status 1 +connecting thr be89fe00 , thread 8332 , mypolls 0 +myconn 0 connecting thr be89fe00 , thread 8332 , mypolls 0 +thr be89ff80 , status 1 +connecting thr be89ff80 , thread 8333 , mypolls 0 +myconn 0 connecting thr be89ff80 , thread 8333 , mypolls 0 +thr be8a0100 , status 1 +connecting thr be8a0100 , thread 8334 , mypolls 0 +myconn 0 connecting thr be8a0100 , thread 8334 , mypolls 0 +thr be8a0280 , status 1 +connecting thr be8a0280 , thread 8335 , mypolls 0 +myconn 0 connecting thr be8a0280 , thread 8335 , mypolls 0 +thr be8a0400 , status 1 +connecting thr be8a0400 , thread 8336 , mypolls 0 +myconn 0 connecting thr be8a0400 , thread 8336 , mypolls 0 +thr be8a0580 , status 1 +connecting thr be8a0580 , thread 8337 , mypolls 0 +myconn 0 connecting thr be8a0580 , thread 8337 , mypolls 0 +thr be8a0700 , status 1 +connecting thr be8a0700 , thread 8338 , mypolls 0 +myconn 0 connecting thr be8a0700 , thread 8338 , mypolls 0 +thr be8a0880 , status 1 +connecting thr be8a0880 , thread 8339 , mypolls 0 +myconn 0 connecting thr be8a0880 , thread 8339 , mypolls 0 +thr be8a0a00 , status 1 +connecting thr be8a0a00 , thread 8340 , mypolls 0 +myconn 0 connecting thr be8a0a00 , thread 8340 , mypolls 0 +thr be8a0b80 , status 1 +connecting thr be8a0b80 , thread 8341 , mypolls 0 +myconn 0 connecting thr be8a0b80 , thread 8341 , mypolls 0 +thr be8a0d00 , status 1 +connecting thr be8a0d00 , thread 8342 , mypolls 0 +myconn 0 connecting thr be8a0d00 , thread 8342 , mypolls 0 +thr be8a0e80 , status 1 +connecting thr be8a0e80 , thread 8343 , mypolls 0 +myconn 0 connecting thr be8a0e80 , thread 8343 , mypolls 0 +thr be703000 , status 1 +connecting thr be703000 , thread 8344 , mypolls 0 +myconn 0 connecting thr be703000 , thread 8344 , mypolls 0 +thr be703180 , status 1 +connecting thr be703180 , thread 8345 , mypolls 0 +myconn 0 connecting thr be703180 , thread 8345 , mypolls 0 +thr be703300 , status 1 +connecting thr be703300 , thread 8346 , mypolls 0 +myconn 0 connecting thr be703300 , thread 8346 , mypolls 0 +thr be703480 , status 1 +connecting thr be703480 , thread 8347 , mypolls 0 +myconn 0 connecting thr be703480 , thread 8347 , mypolls 0 +thr be703600 , status 1 +connecting thr be703600 , thread 8348 , mypolls 0 +myconn 0 connecting thr be703600 , thread 8348 , mypolls 0 +thr be703780 , status 1 +connecting thr be703780 , thread 8349 , mypolls 0 +myconn 0 connecting thr be703780 , thread 8349 , mypolls 0 +thr be703900 , status 1 +connecting thr be703900 , thread 8350 , mypolls 0 +myconn 0 connecting thr be703900 , thread 8350 , mypolls 0 +thr be703a80 , status 1 +connecting thr be703a80 , thread 8351 , mypolls 0 +myconn 0 connecting thr be703a80 , thread 8351 , mypolls 0 +thr be703c00 , status 1 +connecting thr be703c00 , thread 8352 , mypolls 0 +myconn 0 connecting thr be703c00 , thread 8352 , mypolls 0 +thr be703d80 , status 1 +connecting thr be703d80 , thread 8353 , mypolls 0 +myconn 0 connecting thr be703d80 , thread 8353 , mypolls 0 +thr be703f00 , status 1 +connecting thr be703f00 , thread 8354 , mypolls 0 +myconn 0 connecting thr be703f00 , thread 8354 , mypolls 0 +thr be704080 , status 1 +connecting thr be704080 , thread 8355 , mypolls 0 +myconn 0 connecting thr be704080 , thread 8355 , mypolls 0 +thr be704200 , status 1 +connecting thr be704200 , thread 8356 , mypolls 0 +myconn 0 connecting thr be704200 , thread 8356 , mypolls 0 +thr be704380 , status 1 +connecting thr be704380 , thread 8357 , mypolls 0 +myconn 0 connecting thr be704380 , thread 8357 , mypolls 0 +thr be704500 , status 1 +connecting thr be704500 , thread 8358 , mypolls 0 +myconn 0 connecting thr be704500 , thread 8358 , mypolls 0 +thr be704680 , status 1 +connecting thr be704680 , thread 8359 , mypolls 0 +myconn 0 connecting thr be704680 , thread 8359 , mypolls 0 +thr be704800 , status 1 +connecting thr be704800 , thread 8360 , mypolls 0 +myconn 0 connecting thr be704800 , thread 8360 , mypolls 0 +thr be704980 , status 1 +connecting thr be704980 , thread 8361 , mypolls 0 +myconn 0 connecting thr be704980 , thread 8361 , mypolls 0 +thr be704b00 , status 1 +connecting thr be704b00 , thread 8362 , mypolls 0 +myconn 0 connecting thr be704b00 , thread 8362 , mypolls 0 +thr be704c80 , status 1 +connecting thr be704c80 , thread 8363 , mypolls 0 +myconn 0 connecting thr be704c80 , thread 8363 , mypolls 0 +thr be704e00 , status 1 +connecting thr be704e00 , thread 8364 , mypolls 0 +myconn 0 connecting thr be704e00 , thread 8364 , mypolls 0 +thr be704f80 , status 1 +connecting thr be704f80 , thread 8365 , mypolls 0 +myconn 0 connecting thr be704f80 , thread 8365 , mypolls 0 +thr be705100 , status 1 +connecting thr be705100 , thread 8366 , mypolls 0 +myconn 0 connecting thr be705100 , thread 8366 , mypolls 0 +thr be705280 , status 1 +connecting thr be705280 , thread 8367 , mypolls 0 +myconn 0 connecting thr be705280 , thread 8367 , mypolls 0 +thr be705400 , status 1 +connecting thr be705400 , thread 8368 , mypolls 0 +myconn 0 connecting thr be705400 , thread 8368 , mypolls 0 +thr be705580 , status 1 +connecting thr be705580 , thread 8369 , mypolls 0 +myconn 0 connecting thr be705580 , thread 8369 , mypolls 0 +thr be705700 , status 1 +connecting thr be705700 , thread 8370 , mypolls 0 +myconn 0 connecting thr be705700 , thread 8370 , mypolls 0 +thr be705880 , status 1 +connecting thr be705880 , thread 8371 , mypolls 0 +myconn 0 connecting thr be705880 , thread 8371 , mypolls 0 +thr be705a00 , status 1 +connecting thr be705a00 , thread 8372 , mypolls 0 +myconn 0 connecting thr be705a00 , thread 8372 , mypolls 0 +thr be705b80 , status 1 +connecting thr be705b80 , thread 8373 , mypolls 0 +myconn 0 connecting thr be705b80 , thread 8373 , mypolls 0 +thr be705d00 , status 1 +connecting thr be705d00 , thread 8374 , mypolls 0 +myconn 0 connecting thr be705d00 , thread 8374 , mypolls 0 +thr be705e80 , status 1 +connecting thr be705e80 , thread 8375 , mypolls 0 +myconn 0 connecting thr be705e80 , thread 8375 , mypolls 0 +thr be563000 , status 1 +connecting thr be563000 , thread 8376 , mypolls 0 +myconn 0 connecting thr be563000 , thread 8376 , mypolls 0 +thr be563180 , status 1 +connecting thr be563180 , thread 8377 , mypolls 0 +myconn 0 connecting thr be563180 , thread 8377 , mypolls 0 +thr be563300 , status 1 +connecting thr be563300 , thread 8378 , mypolls 0 +myconn 0 connecting thr be563300 , thread 8378 , mypolls 0 +thr be563480 , status 1 +connecting thr be563480 , thread 8379 , mypolls 0 +myconn 0 connecting thr be563480 , thread 8379 , mypolls 0 +thr be563600 , status 1 +connecting thr be563600 , thread 8380 , mypolls 0 +myconn 0 connecting thr be563600 , thread 8380 , mypolls 0 +thr be563780 , status 1 +connecting thr be563780 , thread 8381 , mypolls 0 +myconn 0 connecting thr be563780 , thread 8381 , mypolls 0 +thr be563900 , status 1 +connecting thr be563900 , thread 8382 , mypolls 0 +myconn 0 connecting thr be563900 , thread 8382 , mypolls 0 +thr be563a80 , status 1 +connecting thr be563a80 , thread 8383 , mypolls 0 +myconn 0 connecting thr be563a80 , thread 8383 , mypolls 0 +thr be563c00 , status 1 +connecting thr be563c00 , thread 8384 , mypolls 0 +myconn 0 connecting thr be563c00 , thread 8384 , mypolls 0 +thr be563d80 , status 1 +connecting thr be563d80 , thread 8385 , mypolls 0 +myconn 0 connecting thr be563d80 , thread 8385 , mypolls 0 +thr be563f00 , status 1 +connecting thr be563f00 , thread 8386 , mypolls 0 +myconn 0 connecting thr be563f00 , thread 8386 , mypolls 0 +thr be564080 , status 1 +connecting thr be564080 , thread 8387 , mypolls 0 +myconn 0 connecting thr be564080 , thread 8387 , mypolls 0 +thr be564200 , status 1 +connecting thr be564200 , thread 8388 , mypolls 0 +myconn 0 connecting thr be564200 , thread 8388 , mypolls 0 +thr be564380 , status 1 +connecting thr be564380 , thread 8389 , mypolls 0 +myconn 0 connecting thr be564380 , thread 8389 , mypolls 0 +thr be564500 , status 1 +connecting thr be564500 , thread 8390 , mypolls 0 +myconn 0 connecting thr be564500 , thread 8390 , mypolls 0 +thr be564680 , status 1 +connecting thr be564680 , thread 8391 , mypolls 0 +myconn 0 connecting thr be564680 , thread 8391 , mypolls 0 +thr be564800 , status 1 +connecting thr be564800 , thread 8392 , mypolls 0 +myconn 0 connecting thr be564800 , thread 8392 , mypolls 0 +thr be564980 , status 1 +connecting thr be564980 , thread 8393 , mypolls 0 +myconn 0 connecting thr be564980 , thread 8393 , mypolls 0 +thr be564b00 , status 1 +connecting thr be564b00 , thread 8394 , mypolls 0 +myconn 0 connecting thr be564b00 , thread 8394 , mypolls 0 +thr be564c80 , status 1 +connecting thr be564c80 , thread 8395 , mypolls 0 +myconn 0 connecting thr be564c80 , thread 8395 , mypolls 0 +thr be564e00 , status 1 +connecting thr be564e00 , thread 8396 , mypolls 0 +myconn 0 connecting thr be564e00 , thread 8396 , mypolls 0 +thr be564f80 , status 1 +connecting thr be564f80 , thread 8397 , mypolls 0 +myconn 0 connecting thr be564f80 , thread 8397 , mypolls 0 +thr be565100 , status 1 +connecting thr be565100 , thread 8398 , mypolls 0 +myconn 0 connecting thr be565100 , thread 8398 , mypolls 0 +thr be565280 , status 1 +connecting thr be565280 , thread 8399 , mypolls 0 +myconn 0 connecting thr be565280 , thread 8399 , mypolls 0 +thr be565400 , status 1 +connecting thr be565400 , thread 8400 , mypolls 0 +myconn 0 connecting thr be565400 , thread 8400 , mypolls 0 +thr be565580 , status 1 +connecting thr be565580 , thread 8401 , mypolls 0 +myconn 0 connecting thr be565580 , thread 8401 , mypolls 0 +thr be565700 , status 1 +connecting thr be565700 , thread 8402 , mypolls 0 +myconn 0 connecting thr be565700 , thread 8402 , mypolls 0 +thr be565880 , status 1 +connecting thr be565880 , thread 8403 , mypolls 0 +myconn 0 connecting thr be565880 , thread 8403 , mypolls 0 +thr be565a00 , status 1 +connecting thr be565a00 , thread 8404 , mypolls 0 +myconn 0 connecting thr be565a00 , thread 8404 , mypolls 0 +thr be565b80 , status 1 +connecting thr be565b80 , thread 8405 , mypolls 0 +myconn 0 connecting thr be565b80 , thread 8405 , mypolls 0 +thr be565d00 , status 1 +connecting thr be565d00 , thread 8406 , mypolls 0 +myconn 0 connecting thr be565d00 , thread 8406 , mypolls 0 +thr be565e80 , status 1 +connecting thr be565e80 , thread 8407 , mypolls 0 +myconn 0 connecting thr be565e80 , thread 8407 , mypolls 0 +thr be3c4000 , status 1 +connecting thr be3c4000 , thread 8408 , mypolls 0 +myconn 0 connecting thr be3c4000 , thread 8408 , mypolls 0 +thr be3c4180 , status 1 +connecting thr be3c4180 , thread 8409 , mypolls 0 +myconn 0 connecting thr be3c4180 , thread 8409 , mypolls 0 +thr be3c4300 , status 1 +connecting thr be3c4300 , thread 8410 , mypolls 0 +myconn 0 connecting thr be3c4300 , thread 8410 , mypolls 0 +thr be3c4480 , status 1 +connecting thr be3c4480 , thread 8411 , mypolls 0 +myconn 0 connecting thr be3c4480 , thread 8411 , mypolls 0 +thr be3c4600 , status 1 +connecting thr be3c4600 , thread 8412 , mypolls 0 +myconn 0 connecting thr be3c4600 , thread 8412 , mypolls 0 +thr be3c4780 , status 1 +connecting thr be3c4780 , thread 8413 , mypolls 0 +myconn 0 connecting thr be3c4780 , thread 8413 , mypolls 0 +thr be3c4900 , status 1 +connecting thr be3c4900 , thread 8414 , mypolls 0 +myconn 0 connecting thr be3c4900 , thread 8414 , mypolls 0 +thr be3c4a80 , status 1 +connecting thr be3c4a80 , thread 8415 , mypolls 0 +myconn 0 connecting thr be3c4a80 , thread 8415 , mypolls 0 +thr be3c4c00 , status 1 +connecting thr be3c4c00 , thread 8416 , mypolls 0 +myconn 0 connecting thr be3c4c00 , thread 8416 , mypolls 0 +thr be3c4d80 , status 1 +connecting thr be3c4d80 , thread 8417 , mypolls 0 +myconn 0 connecting thr be3c4d80 , thread 8417 , mypolls 0 +thr be3c4f00 , status 1 +connecting thr be3c4f00 , thread 8418 , mypolls 0 +myconn 0 connecting thr be3c4f00 , thread 8418 , mypolls 0 +thr be3c5080 , status 1 +connecting thr be3c5080 , thread 8419 , mypolls 0 +myconn 0 connecting thr be3c5080 , thread 8419 , mypolls 0 +thr be3c5200 , status 1 +connecting thr be3c5200 , thread 8420 , mypolls 0 +myconn 0 connecting thr be3c5200 , thread 8420 , mypolls 0 +thr be3c5380 , status 1 +connecting thr be3c5380 , thread 8421 , mypolls 0 +myconn 0 connecting thr be3c5380 , thread 8421 , mypolls 0 +thr be3c5500 , status 1 +connecting thr be3c5500 , thread 8422 , mypolls 0 +myconn 0 connecting thr be3c5500 , thread 8422 , mypolls 0 +thr be3c5680 , status 1 +connecting thr be3c5680 , thread 8423 , mypolls 0 +myconn 0 connecting thr be3c5680 , thread 8423 , mypolls 0 +thr be3c5800 , status 1 +connecting thr be3c5800 , thread 8424 , mypolls 0 +myconn 0 connecting thr be3c5800 , thread 8424 , mypolls 0 +thr be3c5980 , status 1 +connecting thr be3c5980 , thread 8425 , mypolls 0 +myconn 0 connecting thr be3c5980 , thread 8425 , mypolls 0 +thr be3c5b00 , status 1 +connecting thr be3c5b00 , thread 8426 , mypolls 0 +myconn 0 connecting thr be3c5b00 , thread 8426 , mypolls 0 +thr be3c5c80 , status 1 +connecting thr be3c5c80 , thread 8427 , mypolls 0 +myconn 0 connecting thr be3c5c80 , thread 8427 , mypolls 0 +thr be3c5e00 , status 1 +connecting thr be3c5e00 , thread 8428 , mypolls 0 +myconn 0 connecting thr be3c5e00 , thread 8428 , mypolls 0 +thr be3c5f80 , status 1 +connecting thr be3c5f80 , thread 8429 , mypolls 0 +myconn 0 connecting thr be3c5f80 , thread 8429 , mypolls 0 +thr be3c6100 , status 1 +connecting thr be3c6100 , thread 8430 , mypolls 0 +myconn 0 connecting thr be3c6100 , thread 8430 , mypolls 0 +thr be3c6280 , status 1 +connecting thr be3c6280 , thread 8431 , mypolls 0 +myconn 0 connecting thr be3c6280 , thread 8431 , mypolls 0 +thr be3c6400 , status 1 +connecting thr be3c6400 , thread 8432 , mypolls 0 +myconn 0 connecting thr be3c6400 , thread 8432 , mypolls 0 +thr be3c6580 , status 1 +connecting thr be3c6580 , thread 8433 , mypolls 0 +myconn 0 connecting thr be3c6580 , thread 8433 , mypolls 0 +thr be3c6700 , status 1 +connecting thr be3c6700 , thread 8434 , mypolls 0 +myconn 0 connecting thr be3c6700 , thread 8434 , mypolls 0 +thr be3c6880 , status 1 +connecting thr be3c6880 , thread 8435 , mypolls 0 +myconn 0 connecting thr be3c6880 , thread 8435 , mypolls 0 +thr be3c6a00 , status 1 +connecting thr be3c6a00 , thread 8436 , mypolls 0 +myconn 0 connecting thr be3c6a00 , thread 8436 , mypolls 0 +thr be3c6b80 , status 1 +connecting thr be3c6b80 , thread 8437 , mypolls 0 +myconn 0 connecting thr be3c6b80 , thread 8437 , mypolls 0 +thr be3c6d00 , status 1 +connecting thr be3c6d00 , thread 8438 , mypolls 0 +myconn 0 connecting thr be3c6d00 , thread 8438 , mypolls 0 +thr be3c6e80 , status 1 +connecting thr be3c6e80 , thread 8439 , mypolls 0 +myconn 0 connecting thr be3c6e80 , thread 8439 , mypolls 0 +thr be1fc000 , status 1 +connecting thr be1fc000 , thread 8440 , mypolls 0 +myconn 0 connecting thr be1fc000 , thread 8440 , mypolls 0 +thr be1fc180 , status 1 +connecting thr be1fc180 , thread 8441 , mypolls 0 +myconn 0 connecting thr be1fc180 , thread 8441 , mypolls 0 +thr be1fc300 , status 1 +connecting thr be1fc300 , thread 8442 , mypolls 0 +myconn 0 connecting thr be1fc300 , thread 8442 , mypolls 0 +thr be1fc480 , status 1 +connecting thr be1fc480 , thread 8443 , mypolls 0 +myconn 0 connecting thr be1fc480 , thread 8443 , mypolls 0 +thr be1fc600 , status 1 +connecting thr be1fc600 , thread 8444 , mypolls 0 +myconn 0 connecting thr be1fc600 , thread 8444 , mypolls 0 +thr be1fc780 , status 1 +connecting thr be1fc780 , thread 8445 , mypolls 0 +myconn 0 connecting thr be1fc780 , thread 8445 , mypolls 0 +thr be1fc900 , status 1 +connecting thr be1fc900 , thread 8446 , mypolls 0 +myconn 0 connecting thr be1fc900 , thread 8446 , mypolls 0 +thr be1fca80 , status 1 +connecting thr be1fca80 , thread 8447 , mypolls 0 +myconn 0 connecting thr be1fca80 , thread 8447 , mypolls 0 +thr be1fcc00 , status 1 +connecting thr be1fcc00 , thread 8448 , mypolls 0 +myconn 0 connecting thr be1fcc00 , thread 8448 , mypolls 0 +thr be1fcd80 , status 1 +connecting thr be1fcd80 , thread 8449 , mypolls 0 +myconn 0 connecting thr be1fcd80 , thread 8449 , mypolls 0 +thr be1fcf00 , status 1 +connecting thr be1fcf00 , thread 8450 , mypolls 0 +myconn 0 connecting thr be1fcf00 , thread 8450 , mypolls 0 +thr be1fd080 , status 1 +connecting thr be1fd080 , thread 8451 , mypolls 0 +myconn 0 connecting thr be1fd080 , thread 8451 , mypolls 0 +thr be1fd200 , status 1 +connecting thr be1fd200 , thread 8452 , mypolls 0 +myconn 0 connecting thr be1fd200 , thread 8452 , mypolls 0 +thr be1fd380 , status 1 +connecting thr be1fd380 , thread 8453 , mypolls 0 +myconn 0 connecting thr be1fd380 , thread 8453 , mypolls 0 +thr be1fd500 , status 1 +connecting thr be1fd500 , thread 8454 , mypolls 0 +myconn 0 connecting thr be1fd500 , thread 8454 , mypolls 0 +thr be1fd680 , status 1 +connecting thr be1fd680 , thread 8455 , mypolls 0 +myconn 0 connecting thr be1fd680 , thread 8455 , mypolls 0 +thr be1fd800 , status 1 +connecting thr be1fd800 , thread 8456 , mypolls 0 +myconn 0 connecting thr be1fd800 , thread 8456 , mypolls 0 +thr be1fd980 , status 1 +connecting thr be1fd980 , thread 8457 , mypolls 0 +myconn 0 connecting thr be1fd980 , thread 8457 , mypolls 0 +thr be1fdb00 , status 1 +connecting thr be1fdb00 , thread 8458 , mypolls 0 +myconn 0 connecting thr be1fdb00 , thread 8458 , mypolls 0 +thr be1fdc80 , status 1 +connecting thr be1fdc80 , thread 8459 , mypolls 0 +myconn 0 connecting thr be1fdc80 , thread 8459 , mypolls 0 +thr be1fde00 , status 1 +connecting thr be1fde00 , thread 8460 , mypolls 0 +myconn 0 connecting thr be1fde00 , thread 8460 , mypolls 0 +thr be1fdf80 , status 1 +connecting thr be1fdf80 , thread 8461 , mypolls 0 +myconn 0 connecting thr be1fdf80 , thread 8461 , mypolls 0 +thr be1fe100 , status 1 +connecting thr be1fe100 , thread 8462 , mypolls 0 +myconn 0 connecting thr be1fe100 , thread 8462 , mypolls 0 +thr be1fe280 , status 1 +connecting thr be1fe280 , thread 8463 , mypolls 0 +myconn 0 connecting thr be1fe280 , thread 8463 , mypolls 0 +thr be1fe400 , status 1 +connecting thr be1fe400 , thread 8464 , mypolls 0 +myconn 0 connecting thr be1fe400 , thread 8464 , mypolls 0 +thr be1fe580 , status 1 +connecting thr be1fe580 , thread 8465 , mypolls 0 +myconn 0 connecting thr be1fe580 , thread 8465 , mypolls 0 +thr be1fe700 , status 1 +connecting thr be1fe700 , thread 8466 , mypolls 0 +myconn 0 connecting thr be1fe700 , thread 8466 , mypolls 0 +thr be1fe880 , status 1 +connecting thr be1fe880 , thread 8467 , mypolls 0 +myconn 0 connecting thr be1fe880 , thread 8467 , mypolls 0 +thr be1fea00 , status 1 +connecting thr be1fea00 , thread 8468 , mypolls 0 +myconn 0 connecting thr be1fea00 , thread 8468 , mypolls 0 +thr be1feb80 , status 1 +connecting thr be1feb80 , thread 8469 , mypolls 0 +myconn 0 connecting thr be1feb80 , thread 8469 , mypolls 0 +thr be1fed00 , status 1 +connecting thr be1fed00 , thread 8470 , mypolls 0 +myconn 0 connecting thr be1fed00 , thread 8470 , mypolls 0 +thr be1fee80 , status 1 +connecting thr be1fee80 , thread 8471 , mypolls 0 +myconn 0 connecting thr be1fee80 , thread 8471 , mypolls 0 +thr d24cf000 , status 1 +connecting thr d24cf000 , thread 8472 , mypolls 0 +myconn 0 connecting thr d24cf000 , thread 8472 , mypolls 0 +thr d24cf180 , status 1 +connecting thr d24cf180 , thread 8473 , mypolls 0 +myconn 0 connecting thr d24cf180 , thread 8473 , mypolls 0 +thr d24cf300 , status 1 +connecting thr d24cf300 , thread 8474 , mypolls 0 +myconn 0 connecting thr d24cf300 , thread 8474 , mypolls 0 +thr d24cf480 , status 1 +connecting thr d24cf480 , thread 8475 , mypolls 0 +myconn 0 connecting thr d24cf480 , thread 8475 , mypolls 0 +thr d24cf600 , status 1 +connecting thr d24cf600 , thread 8476 , mypolls 0 +myconn 0 connecting thr d24cf600 , thread 8476 , mypolls 0 +thr d24cf780 , status 1 +connecting thr d24cf780 , thread 8477 , mypolls 0 +myconn 0 connecting thr d24cf780 , thread 8477 , mypolls 0 +thr d24cf900 , status 1 +connecting thr d24cf900 , thread 8478 , mypolls 0 +myconn 0 connecting thr d24cf900 , thread 8478 , mypolls 0 +thr d24cfa80 , status 1 +connecting thr d24cfa80 , thread 8479 , mypolls 0 +myconn 0 connecting thr d24cfa80 , thread 8479 , mypolls 0 +thr d24cfc00 , status 1 +connecting thr d24cfc00 , thread 8480 , mypolls 0 +myconn 0 connecting thr d24cfc00 , thread 8480 , mypolls 0 +thr d24cfd80 , status 1 +connecting thr d24cfd80 , thread 8481 , mypolls 0 +myconn 0 connecting thr d24cfd80 , thread 8481 , mypolls 0 +thr d24cff00 , status 1 +connecting thr d24cff00 , thread 8482 , mypolls 0 +myconn 0 connecting thr d24cff00 , thread 8482 , mypolls 0 +thr d24d0080 , status 1 +connecting thr d24d0080 , thread 8483 , mypolls 0 +myconn 0 connecting thr d24d0080 , thread 8483 , mypolls 0 +thr d24d0200 , status 1 +connecting thr d24d0200 , thread 8484 , mypolls 0 +myconn 0 connecting thr d24d0200 , thread 8484 , mypolls 0 +thr d24d0380 , status 1 +connecting thr d24d0380 , thread 8485 , mypolls 0 +myconn 0 connecting thr d24d0380 , thread 8485 , mypolls 0 +thr d24d0500 , status 1 +connecting thr d24d0500 , thread 8486 , mypolls 0 +myconn 0 connecting thr d24d0500 , thread 8486 , mypolls 0 +thr d24d0680 , status 1 +connecting thr d24d0680 , thread 8487 , mypolls 0 +myconn 0 connecting thr d24d0680 , thread 8487 , mypolls 0 +thr d24d0800 , status 1 +connecting thr d24d0800 , thread 8488 , mypolls 0 +myconn 0 connecting thr d24d0800 , thread 8488 , mypolls 0 +thr d24d0980 , status 1 +connecting thr d24d0980 , thread 8489 , mypolls 0 +myconn 0 connecting thr d24d0980 , thread 8489 , mypolls 0 +thr d24d0b00 , status 1 +connecting thr d24d0b00 , thread 8490 , mypolls 0 +myconn 0 connecting thr d24d0b00 , thread 8490 , mypolls 0 +thr d24d0c80 , status 1 +connecting thr d24d0c80 , thread 8491 , mypolls 0 +myconn 0 connecting thr d24d0c80 , thread 8491 , mypolls 0 +thr d24d0e00 , status 1 +connecting thr d24d0e00 , thread 8492 , mypolls 0 +myconn 0 connecting thr d24d0e00 , thread 8492 , mypolls 0 +thr d24d0f80 , status 1 +connecting thr d24d0f80 , thread 8493 , mypolls 0 +myconn 0 connecting thr d24d0f80 , thread 8493 , mypolls 0 +thr d24d1100 , status 1 +connecting thr d24d1100 , thread 8494 , mypolls 0 +myconn 0 connecting thr d24d1100 , thread 8494 , mypolls 0 +thr d24d1280 , status 1 +connecting thr d24d1280 , thread 8495 , mypolls 0 +myconn 0 connecting thr d24d1280 , thread 8495 , mypolls 0 +thr d24d1400 , status 1 +connecting thr d24d1400 , thread 8496 , mypolls 0 +myconn 0 connecting thr d24d1400 , thread 8496 , mypolls 0 +thr d24d1580 , status 1 +connecting thr d24d1580 , thread 8497 , mypolls 0 +myconn 0 connecting thr d24d1580 , thread 8497 , mypolls 0 +thr d24d1700 , status 1 +connecting thr d24d1700 , thread 8498 , mypolls 0 +myconn 0 connecting thr d24d1700 , thread 8498 , mypolls 0 +thr d24d1880 , status 1 +connecting thr d24d1880 , thread 8499 , mypolls 0 +myconn 0 connecting thr d24d1880 , thread 8499 , mypolls 0 +thr d24d1a00 , status 1 +connecting thr d24d1a00 , thread 8500 , mypolls 0 +myconn 0 connecting thr d24d1a00 , thread 8500 , mypolls 0 +thr d24d1b80 , status 1 +connecting thr d24d1b80 , thread 8501 , mypolls 0 +myconn 0 connecting thr d24d1b80 , thread 8501 , mypolls 0 +thr d24d1d00 , status 1 +connecting thr d24d1d00 , thread 8502 , mypolls 0 +myconn 0 connecting thr d24d1d00 , thread 8502 , mypolls 0 +thr d24d1e80 , status 1 +connecting thr d24d1e80 , thread 8503 , mypolls 0 +myconn 0 connecting thr d24d1e80 , thread 8503 , mypolls 0 +thr bdaee000 , status 1 +connecting thr bdaee000 , thread 8504 , mypolls 0 +myconn 0 connecting thr bdaee000 , thread 8504 , mypolls 0 +thr bdaee180 , status 1 +connecting thr bdaee180 , thread 8505 , mypolls 0 +myconn 0 connecting thr bdaee180 , thread 8505 , mypolls 0 +thr bdaee300 , status 1 +connecting thr bdaee300 , thread 8506 , mypolls 0 +myconn 0 connecting thr bdaee300 , thread 8506 , mypolls 0 +thr bdaee480 , status 1 +connecting thr bdaee480 , thread 8507 , mypolls 0 +myconn 0 connecting thr bdaee480 , thread 8507 , mypolls 0 +thr bdaee600 , status 1 +connecting thr bdaee600 , thread 8508 , mypolls 0 +myconn 0 connecting thr bdaee600 , thread 8508 , mypolls 0 +thr bdaee780 , status 1 +connecting thr bdaee780 , thread 8509 , mypolls 0 +myconn 0 connecting thr bdaee780 , thread 8509 , mypolls 0 +thr bdaee900 , status 1 +connecting thr bdaee900 , thread 8510 , mypolls 0 +myconn 0 connecting thr bdaee900 , thread 8510 , mypolls 0 +thr bdaeea80 , status 1 +connecting thr bdaeea80 , thread 8511 , mypolls 0 +myconn 0 connecting thr bdaeea80 , thread 8511 , mypolls 0 +thr bdaeec00 , status 1 +connecting thr bdaeec00 , thread 8512 , mypolls 0 +myconn 0 connecting thr bdaeec00 , thread 8512 , mypolls 0 +thr bdaeed80 , status 1 +connecting thr bdaeed80 , thread 8513 , mypolls 0 +myconn 0 connecting thr bdaeed80 , thread 8513 , mypolls 0 +thr bdaeef00 , status 1 +connecting thr bdaeef00 , thread 8514 , mypolls 0 +myconn 0 connecting thr bdaeef00 , thread 8514 , mypolls 0 +thr bdaef080 , status 1 +connecting thr bdaef080 , thread 8515 , mypolls 0 +myconn 0 connecting thr bdaef080 , thread 8515 , mypolls 0 +thr bdaef200 , status 1 +connecting thr bdaef200 , thread 8516 , mypolls 0 +myconn 0 connecting thr bdaef200 , thread 8516 , mypolls 0 +thr bdaef380 , status 1 +connecting thr bdaef380 , thread 8517 , mypolls 0 +myconn 0 connecting thr bdaef380 , thread 8517 , mypolls 0 +thr bdaef500 , status 1 +connecting thr bdaef500 , thread 8518 , mypolls 0 +myconn 0 connecting thr bdaef500 , thread 8518 , mypolls 0 +thr bdaef680 , status 1 +connecting thr bdaef680 , thread 8519 , mypolls 0 +myconn 0 connecting thr bdaef680 , thread 8519 , mypolls 0 +thr bdaef800 , status 1 +connecting thr bdaef800 , thread 8520 , mypolls 0 +myconn 0 connecting thr bdaef800 , thread 8520 , mypolls 0 +thr bdaef980 , status 1 +connecting thr bdaef980 , thread 8521 , mypolls 0 +myconn 0 connecting thr bdaef980 , thread 8521 , mypolls 0 +thr bdaefb00 , status 1 +connecting thr bdaefb00 , thread 8522 , mypolls 0 +myconn 0 connecting thr bdaefb00 , thread 8522 , mypolls 0 +thr bdaefc80 , status 1 +connecting thr bdaefc80 , thread 8523 , mypolls 0 +myconn 0 connecting thr bdaefc80 , thread 8523 , mypolls 0 +thr bdaefe00 , status 1 +connecting thr bdaefe00 , thread 8524 , mypolls 0 +myconn 0 connecting thr bdaefe00 , thread 8524 , mypolls 0 +thr bdaeff80 , status 1 +connecting thr bdaeff80 , thread 8525 , mypolls 0 +myconn 0 connecting thr bdaeff80 , thread 8525 , mypolls 0 +thr bdaf0100 , status 1 +connecting thr bdaf0100 , thread 8526 , mypolls 0 +myconn 0 connecting thr bdaf0100 , thread 8526 , mypolls 0 +thr bdaf0280 , status 1 +connecting thr bdaf0280 , thread 8527 , mypolls 0 +myconn 0 connecting thr bdaf0280 , thread 8527 , mypolls 0 +thr bdaf0400 , status 1 +connecting thr bdaf0400 , thread 8528 , mypolls 0 +myconn 0 connecting thr bdaf0400 , thread 8528 , mypolls 0 +thr bdaf0580 , status 1 +connecting thr bdaf0580 , thread 8529 , mypolls 0 +myconn 0 connecting thr bdaf0580 , thread 8529 , mypolls 0 +thr bdaf0700 , status 1 +connecting thr bdaf0700 , thread 8530 , mypolls 0 +myconn 0 connecting thr bdaf0700 , thread 8530 , mypolls 0 +thr bdaf0880 , status 1 +connecting thr bdaf0880 , thread 8531 , mypolls 0 +myconn 0 connecting thr bdaf0880 , thread 8531 , mypolls 0 +thr bdaf0a00 , status 1 +connecting thr bdaf0a00 , thread 8532 , mypolls 0 +myconn 0 connecting thr bdaf0a00 , thread 8532 , mypolls 0 +thr bdaf0b80 , status 1 +connecting thr bdaf0b80 , thread 8533 , mypolls 0 +myconn 0 connecting thr bdaf0b80 , thread 8533 , mypolls 0 +thr bdaf0d00 , status 1 +connecting thr bdaf0d00 , thread 8534 , mypolls 0 +myconn 0 connecting thr bdaf0d00 , thread 8534 , mypolls 0 +thr bdaf0e80 , status 1 +connecting thr bdaf0e80 , thread 8535 , mypolls 0 +myconn 0 connecting thr bdaf0e80 , thread 8535 , mypolls 0 +thr bd94e000 , status 1 +connecting thr bd94e000 , thread 8536 , mypolls 0 +myconn 0 connecting thr bd94e000 , thread 8536 , mypolls 0 +thr bd94e180 , status 1 +connecting thr bd94e180 , thread 8537 , mypolls 0 +myconn 0 connecting thr bd94e180 , thread 8537 , mypolls 0 +thr bd94e300 , status 1 +connecting thr bd94e300 , thread 8538 , mypolls 0 +myconn 0 connecting thr bd94e300 , thread 8538 , mypolls 0 +thr bd94e480 , status 1 +connecting thr bd94e480 , thread 8539 , mypolls 0 +myconn 0 connecting thr bd94e480 , thread 8539 , mypolls 0 +thr bd94e600 , status 1 +connecting thr bd94e600 , thread 8540 , mypolls 0 +myconn 0 connecting thr bd94e600 , thread 8540 , mypolls 0 +thr bd94e780 , status 1 +connecting thr bd94e780 , thread 8541 , mypolls 0 +myconn 0 connecting thr bd94e780 , thread 8541 , mypolls 0 +thr bd94e900 , status 1 +connecting thr bd94e900 , thread 8542 , mypolls 0 +myconn 0 connecting thr bd94e900 , thread 8542 , mypolls 0 +thr bd94ea80 , status 1 +connecting thr bd94ea80 , thread 8543 , mypolls 0 +myconn 0 connecting thr bd94ea80 , thread 8543 , mypolls 0 +thr bd94ec00 , status 1 +connecting thr bd94ec00 , thread 8544 , mypolls 0 +myconn 0 connecting thr bd94ec00 , thread 8544 , mypolls 0 +thr bd94ed80 , status 1 +connecting thr bd94ed80 , thread 8545 , mypolls 0 +myconn 0 connecting thr bd94ed80 , thread 8545 , mypolls 0 +thr bd94ef00 , status 1 +connecting thr bd94ef00 , thread 8546 , mypolls 0 +myconn 0 connecting thr bd94ef00 , thread 8546 , mypolls 0 +thr bd94f080 , status 1 +connecting thr bd94f080 , thread 8547 , mypolls 0 +myconn 0 connecting thr bd94f080 , thread 8547 , mypolls 0 +thr bd94f200 , status 1 +connecting thr bd94f200 , thread 8548 , mypolls 0 +myconn 0 connecting thr bd94f200 , thread 8548 , mypolls 0 +thr bd94f380 , status 1 +connecting thr bd94f380 , thread 8549 , mypolls 0 +myconn 0 connecting thr bd94f380 , thread 8549 , mypolls 0 +thr bd94f500 , status 1 +connecting thr bd94f500 , thread 8550 , mypolls 0 +myconn 0 connecting thr bd94f500 , thread 8550 , mypolls 0 +thr bd94f680 , status 1 +connecting thr bd94f680 , thread 8551 , mypolls 0 +myconn 0 connecting thr bd94f680 , thread 8551 , mypolls 0 +thr bd94f800 , status 1 +connecting thr bd94f800 , thread 8552 , mypolls 0 +myconn 0 connecting thr bd94f800 , thread 8552 , mypolls 0 +thr bd94f980 , status 1 +connecting thr bd94f980 , thread 8553 , mypolls 0 +myconn 0 connecting thr bd94f980 , thread 8553 , mypolls 0 +thr bd94fb00 , status 1 +connecting thr bd94fb00 , thread 8554 , mypolls 0 +myconn 0 connecting thr bd94fb00 , thread 8554 , mypolls 0 +thr bd94fc80 , status 1 +connecting thr bd94fc80 , thread 8555 , mypolls 0 +myconn 0 connecting thr bd94fc80 , thread 8555 , mypolls 0 +thr bd94fe00 , status 1 +connecting thr bd94fe00 , thread 8556 , mypolls 0 +myconn 0 connecting thr bd94fe00 , thread 8556 , mypolls 0 +thr bd94ff80 , status 1 +connecting thr bd94ff80 , thread 8557 , mypolls 0 +myconn 0 connecting thr bd94ff80 , thread 8557 , mypolls 0 +thr bd950100 , status 1 +connecting thr bd950100 , thread 8558 , mypolls 0 +myconn 0 connecting thr bd950100 , thread 8558 , mypolls 0 +thr bd950280 , status 1 +connecting thr bd950280 , thread 8559 , mypolls 0 +myconn 0 connecting thr bd950280 , thread 8559 , mypolls 0 +thr bd950400 , status 1 +connecting thr bd950400 , thread 8560 , mypolls 0 +myconn 0 connecting thr bd950400 , thread 8560 , mypolls 0 +thr bd950580 , status 1 +connecting thr bd950580 , thread 8561 , mypolls 0 +myconn 0 connecting thr bd950580 , thread 8561 , mypolls 0 +thr bd950700 , status 1 +connecting thr bd950700 , thread 8562 , mypolls 0 +myconn 0 connecting thr bd950700 , thread 8562 , mypolls 0 +thr bd950880 , status 1 +connecting thr bd950880 , thread 8563 , mypolls 0 +myconn 0 connecting thr bd950880 , thread 8563 , mypolls 0 +thr bd950a00 , status 1 +connecting thr bd950a00 , thread 8564 , mypolls 0 +myconn 0 connecting thr bd950a00 , thread 8564 , mypolls 0 +thr bd950b80 , status 1 +connecting thr bd950b80 , thread 8565 , mypolls 0 +myconn 0 connecting thr bd950b80 , thread 8565 , mypolls 0 +thr bd950d00 , status 1 +connecting thr bd950d00 , thread 8566 , mypolls 0 +myconn 0 connecting thr bd950d00 , thread 8566 , mypolls 0 +thr bd950e80 , status 1 +connecting thr bd950e80 , thread 8567 , mypolls 0 +myconn 0 connecting thr bd950e80 , thread 8567 , mypolls 0 +thr bd7ae000 , status 1 +connecting thr bd7ae000 , thread 8568 , mypolls 0 +myconn 0 connecting thr bd7ae000 , thread 8568 , mypolls 0 +thr bd7ae180 , status 1 +connecting thr bd7ae180 , thread 8569 , mypolls 0 +myconn 0 connecting thr bd7ae180 , thread 8569 , mypolls 0 +thr bd7ae300 , status 1 +connecting thr bd7ae300 , thread 8570 , mypolls 0 +myconn 0 connecting thr bd7ae300 , thread 8570 , mypolls 0 +thr bd7ae480 , status 1 +connecting thr bd7ae480 , thread 8571 , mypolls 0 +myconn 0 connecting thr bd7ae480 , thread 8571 , mypolls 0 +thr bd7ae600 , status 1 +connecting thr bd7ae600 , thread 8572 , mypolls 0 +myconn 0 connecting thr bd7ae600 , thread 8572 , mypolls 0 +thr bd7ae780 , status 1 +connecting thr bd7ae780 , thread 8573 , mypolls 0 +myconn 0 connecting thr bd7ae780 , thread 8573 , mypolls 0 +thr bd7ae900 , status 1 +connecting thr bd7ae900 , thread 8574 , mypolls 0 +myconn 0 connecting thr bd7ae900 , thread 8574 , mypolls 0 +thr bd7aea80 , status 1 +connecting thr bd7aea80 , thread 8575 , mypolls 0 +myconn 0 connecting thr bd7aea80 , thread 8575 , mypolls 0 +thr bd7aec00 , status 1 +connecting thr bd7aec00 , thread 8576 , mypolls 0 +myconn 0 connecting thr bd7aec00 , thread 8576 , mypolls 0 +thr bd7aed80 , status 1 +connecting thr bd7aed80 , thread 8577 , mypolls 0 +myconn 0 connecting thr bd7aed80 , thread 8577 , mypolls 0 +thr bd7aef00 , status 1 +connecting thr bd7aef00 , thread 8578 , mypolls 0 +myconn 0 connecting thr bd7aef00 , thread 8578 , mypolls 0 +thr bd7af080 , status 1 +connecting thr bd7af080 , thread 8579 , mypolls 0 +myconn 0 connecting thr bd7af080 , thread 8579 , mypolls 0 +thr bd7af200 , status 1 +connecting thr bd7af200 , thread 8580 , mypolls 0 +myconn 0 connecting thr bd7af200 , thread 8580 , mypolls 0 +thr bd7af380 , status 1 +connecting thr bd7af380 , thread 8581 , mypolls 0 +myconn 0 connecting thr bd7af380 , thread 8581 , mypolls 0 +thr bd7af500 , status 1 +connecting thr bd7af500 , thread 8582 , mypolls 0 +myconn 0 connecting thr bd7af500 , thread 8582 , mypolls 0 +thr bd7af680 , status 1 +connecting thr bd7af680 , thread 8583 , mypolls 0 +myconn 0 connecting thr bd7af680 , thread 8583 , mypolls 0 +thr bd7af800 , status 1 +connecting thr bd7af800 , thread 8584 , mypolls 0 +myconn 0 connecting thr bd7af800 , thread 8584 , mypolls 0 +thr bd7af980 , status 1 +connecting thr bd7af980 , thread 8585 , mypolls 0 +myconn 0 connecting thr bd7af980 , thread 8585 , mypolls 0 +thr bd7afb00 , status 1 +connecting thr bd7afb00 , thread 8586 , mypolls 0 +myconn 0 connecting thr bd7afb00 , thread 8586 , mypolls 0 +thr bd7afc80 , status 1 +connecting thr bd7afc80 , thread 8587 , mypolls 0 +myconn 0 connecting thr bd7afc80 , thread 8587 , mypolls 0 +thr bd7afe00 , status 1 +connecting thr bd7afe00 , thread 8588 , mypolls 0 +myconn 0 connecting thr bd7afe00 , thread 8588 , mypolls 0 +thr bd7aff80 , status 1 +connecting thr bd7aff80 , thread 8589 , mypolls 0 +myconn 0 connecting thr bd7aff80 , thread 8589 , mypolls 0 +thr bd7b0100 , status 1 +connecting thr bd7b0100 , thread 8590 , mypolls 0 +myconn 0 connecting thr bd7b0100 , thread 8590 , mypolls 0 +thr bd7b0280 , status 1 +connecting thr bd7b0280 , thread 8591 , mypolls 0 +myconn 0 connecting thr bd7b0280 , thread 8591 , mypolls 0 +thr bd7b0400 , status 1 +connecting thr bd7b0400 , thread 8592 , mypolls 0 +myconn 0 connecting thr bd7b0400 , thread 8592 , mypolls 0 +thr bd7b0580 , status 1 +connecting thr bd7b0580 , thread 8593 , mypolls 0 +myconn 0 connecting thr bd7b0580 , thread 8593 , mypolls 0 +thr bd7b0700 , status 1 +connecting thr bd7b0700 , thread 8594 , mypolls 0 +myconn 0 connecting thr bd7b0700 , thread 8594 , mypolls 0 +thr bd7b0880 , status 1 +connecting thr bd7b0880 , thread 8595 , mypolls 0 +myconn 0 connecting thr bd7b0880 , thread 8595 , mypolls 0 +thr bd7b0a00 , status 1 +connecting thr bd7b0a00 , thread 8596 , mypolls 0 +myconn 0 connecting thr bd7b0a00 , thread 8596 , mypolls 0 +thr bd7b0b80 , status 1 +connecting thr bd7b0b80 , thread 8597 , mypolls 0 +myconn 0 connecting thr bd7b0b80 , thread 8597 , mypolls 0 +thr bd7b0d00 , status 1 +connecting thr bd7b0d00 , thread 8598 , mypolls 0 +myconn 0 connecting thr bd7b0d00 , thread 8598 , mypolls 0 +thr bd7b0e80 , status 1 +connecting thr bd7b0e80 , thread 8599 , mypolls 0 +myconn 0 connecting thr bd7b0e80 , thread 8599 , mypolls 0 +thr bd5f7000 , status 1 +connecting thr bd5f7000 , thread 8600 , mypolls 0 +myconn 0 connecting thr bd5f7000 , thread 8600 , mypolls 0 +thr bd5f7180 , status 1 +connecting thr bd5f7180 , thread 8601 , mypolls 0 +myconn 0 connecting thr bd5f7180 , thread 8601 , mypolls 0 +thr bd5f7300 , status 1 +connecting thr bd5f7300 , thread 8602 , mypolls 0 +myconn 0 connecting thr bd5f7300 , thread 8602 , mypolls 0 +thr bd5f7480 , status 1 +connecting thr bd5f7480 , thread 8603 , mypolls 0 +myconn 0 connecting thr bd5f7480 , thread 8603 , mypolls 0 +thr bd5f7600 , status 1 +connecting thr bd5f7600 , thread 8604 , mypolls 0 +myconn 0 connecting thr bd5f7600 , thread 8604 , mypolls 0 +thr bd5f7780 , status 1 +connecting thr bd5f7780 , thread 8605 , mypolls 0 +myconn 0 connecting thr bd5f7780 , thread 8605 , mypolls 0 +thr bd5f7900 , status 1 +connecting thr bd5f7900 , thread 8606 , mypolls 0 +myconn 0 connecting thr bd5f7900 , thread 8606 , mypolls 0 +thr bd5f7a80 , status 1 +connecting thr bd5f7a80 , thread 8607 , mypolls 0 +myconn 0 connecting thr bd5f7a80 , thread 8607 , mypolls 0 +thr bd5f7c00 , status 1 +connecting thr bd5f7c00 , thread 8608 , mypolls 0 +myconn 0 connecting thr bd5f7c00 , thread 8608 , mypolls 0 +thr bd5f7d80 , status 1 +connecting thr bd5f7d80 , thread 8609 , mypolls 0 +myconn 0 connecting thr bd5f7d80 , thread 8609 , mypolls 0 +thr bd5f7f00 , status 1 +connecting thr bd5f7f00 , thread 8610 , mypolls 0 +myconn 0 connecting thr bd5f7f00 , thread 8610 , mypolls 0 +thr bd5f8080 , status 1 +connecting thr bd5f8080 , thread 8611 , mypolls 0 +myconn 0 connecting thr bd5f8080 , thread 8611 , mypolls 0 +thr bd5f8200 , status 1 +connecting thr bd5f8200 , thread 8612 , mypolls 0 +myconn 0 connecting thr bd5f8200 , thread 8612 , mypolls 0 +thr bd5f8380 , status 1 +connecting thr bd5f8380 , thread 8613 , mypolls 0 +myconn 0 connecting thr bd5f8380 , thread 8613 , mypolls 0 +thr bd5f8500 , status 1 +connecting thr bd5f8500 , thread 8614 , mypolls 0 +myconn 0 connecting thr bd5f8500 , thread 8614 , mypolls 0 +thr bd5f8680 , status 1 +connecting thr bd5f8680 , thread 8615 , mypolls 0 +myconn 0 connecting thr bd5f8680 , thread 8615 , mypolls 0 +thr bd5f8800 , status 1 +connecting thr bd5f8800 , thread 8616 , mypolls 0 +myconn 0 connecting thr bd5f8800 , thread 8616 , mypolls 0 +thr bd5f8980 , status 1 +connecting thr bd5f8980 , thread 8617 , mypolls 0 +myconn 0 connecting thr bd5f8980 , thread 8617 , mypolls 0 +thr bd5f8b00 , status 1 +connecting thr bd5f8b00 , thread 8618 , mypolls 0 +myconn 0 connecting thr bd5f8b00 , thread 8618 , mypolls 0 +thr bd5f8c80 , status 1 +connecting thr bd5f8c80 , thread 8619 , mypolls 0 +myconn 0 connecting thr bd5f8c80 , thread 8619 , mypolls 0 +thr bd5f8e00 , status 1 +connecting thr bd5f8e00 , thread 8620 , mypolls 0 +myconn 0 connecting thr bd5f8e00 , thread 8620 , mypolls 0 +thr bd5f8f80 , status 1 +connecting thr bd5f8f80 , thread 8621 , mypolls 0 +myconn 0 connecting thr bd5f8f80 , thread 8621 , mypolls 0 +thr bd5f9100 , status 1 +connecting thr bd5f9100 , thread 8622 , mypolls 0 +myconn 0 connecting thr bd5f9100 , thread 8622 , mypolls 0 +thr bd5f9280 , status 1 +connecting thr bd5f9280 , thread 8623 , mypolls 0 +myconn 0 connecting thr bd5f9280 , thread 8623 , mypolls 0 +thr bd5f9400 , status 1 +connecting thr bd5f9400 , thread 8624 , mypolls 0 +myconn 0 connecting thr bd5f9400 , thread 8624 , mypolls 0 +thr bd5f9580 , status 1 +connecting thr bd5f9580 , thread 8625 , mypolls 0 +myconn 0 connecting thr bd5f9580 , thread 8625 , mypolls 0 +thr bd5f9700 , status 1 +connecting thr bd5f9700 , thread 8626 , mypolls 0 +myconn 0 connecting thr bd5f9700 , thread 8626 , mypolls 0 +thr bd5f9880 , status 1 +connecting thr bd5f9880 , thread 8627 , mypolls 0 +myconn 0 connecting thr bd5f9880 , thread 8627 , mypolls 0 +thr bd5f9a00 , status 1 +connecting thr bd5f9a00 , thread 8628 , mypolls 0 +myconn 0 connecting thr bd5f9a00 , thread 8628 , mypolls 0 +thr bd5f9b80 , status 1 +connecting thr bd5f9b80 , thread 8629 , mypolls 0 +myconn 0 connecting thr bd5f9b80 , thread 8629 , mypolls 0 +thr bd5f9d00 , status 1 +connecting thr bd5f9d00 , thread 8630 , mypolls 0 +myconn 0 connecting thr bd5f9d00 , thread 8630 , mypolls 0 +thr bd5f9e80 , status 1 +connecting thr bd5f9e80 , thread 8631 , mypolls 0 +myconn 0 connecting thr bd5f9e80 , thread 8631 , mypolls 0 +thr bd082000 , status 1 +connecting thr bd082000 , thread 8632 , mypolls 0 +myconn 0 connecting thr bd082000 , thread 8632 , mypolls 0 +thr bd082180 , status 1 +connecting thr bd082180 , thread 8633 , mypolls 0 +myconn 0 connecting thr bd082180 , thread 8633 , mypolls 0 +thr bd082300 , status 1 +connecting thr bd082300 , thread 8634 , mypolls 0 +myconn 0 connecting thr bd082300 , thread 8634 , mypolls 0 +thr bd082480 , status 1 +connecting thr bd082480 , thread 8635 , mypolls 0 +myconn 0 connecting thr bd082480 , thread 8635 , mypolls 0 +thr bd082600 , status 1 +connecting thr bd082600 , thread 8636 , mypolls 0 +myconn 0 connecting thr bd082600 , thread 8636 , mypolls 0 +thr bd082780 , status 1 +connecting thr bd082780 , thread 8637 , mypolls 0 +myconn 0 connecting thr bd082780 , thread 8637 , mypolls 0 +thr bd082900 , status 1 +connecting thr bd082900 , thread 8638 , mypolls 0 +myconn 0 connecting thr bd082900 , thread 8638 , mypolls 0 +thr bd082a80 , status 1 +connecting thr bd082a80 , thread 8639 , mypolls 0 +myconn 0 connecting thr bd082a80 , thread 8639 , mypolls 0 +thr bd082c00 , status 1 +connecting thr bd082c00 , thread 8640 , mypolls 0 +myconn 0 connecting thr bd082c00 , thread 8640 , mypolls 0 +thr bd082d80 , status 1 +connecting thr bd082d80 , thread 8641 , mypolls 0 +myconn 0 connecting thr bd082d80 , thread 8641 , mypolls 0 +thr bd082f00 , status 1 +connecting thr bd082f00 , thread 8642 , mypolls 0 +myconn 0 connecting thr bd082f00 , thread 8642 , mypolls 0 +thr bd083080 , status 1 +connecting thr bd083080 , thread 8643 , mypolls 0 +myconn 0 connecting thr bd083080 , thread 8643 , mypolls 0 +thr bd083200 , status 1 +connecting thr bd083200 , thread 8644 , mypolls 0 +myconn 0 connecting thr bd083200 , thread 8644 , mypolls 0 +thr bd083380 , status 1 +connecting thr bd083380 , thread 8645 , mypolls 0 +myconn 0 connecting thr bd083380 , thread 8645 , mypolls 0 +thr bd083500 , status 1 +connecting thr bd083500 , thread 8646 , mypolls 0 +myconn 0 connecting thr bd083500 , thread 8646 , mypolls 0 +thr bd083680 , status 1 +connecting thr bd083680 , thread 8647 , mypolls 0 +myconn 0 connecting thr bd083680 , thread 8647 , mypolls 0 +thr bd083800 , status 1 +connecting thr bd083800 , thread 8648 , mypolls 0 +myconn 0 connecting thr bd083800 , thread 8648 , mypolls 0 +thr bd083980 , status 1 +connecting thr bd083980 , thread 8649 , mypolls 0 +myconn 0 connecting thr bd083980 , thread 8649 , mypolls 0 +thr bd083b00 , status 1 +connecting thr bd083b00 , thread 8650 , mypolls 0 +myconn 0 connecting thr bd083b00 , thread 8650 , mypolls 0 +thr bd083c80 , status 1 +connecting thr bd083c80 , thread 8651 , mypolls 0 +myconn 0 connecting thr bd083c80 , thread 8651 , mypolls 0 +thr bd083e00 , status 1 +connecting thr bd083e00 , thread 8652 , mypolls 0 +myconn 0 connecting thr bd083e00 , thread 8652 , mypolls 0 +thr bd083f80 , status 1 +connecting thr bd083f80 , thread 8653 , mypolls 0 +myconn 0 connecting thr bd083f80 , thread 8653 , mypolls 0 +thr bd084100 , status 1 +connecting thr bd084100 , thread 8654 , mypolls 0 +myconn 0 connecting thr bd084100 , thread 8654 , mypolls 0 +thr bd084280 , status 1 +connecting thr bd084280 , thread 8655 , mypolls 0 +myconn 0 connecting thr bd084280 , thread 8655 , mypolls 0 +thr bd084400 , status 1 +connecting thr bd084400 , thread 8656 , mypolls 0 +myconn 0 connecting thr bd084400 , thread 8656 , mypolls 0 +thr bd084580 , status 1 +connecting thr bd084580 , thread 8657 , mypolls 0 +myconn 0 connecting thr bd084580 , thread 8657 , mypolls 0 +thr bd084700 , status 1 +connecting thr bd084700 , thread 8658 , mypolls 0 +myconn 0 connecting thr bd084700 , thread 8658 , mypolls 0 +thr bd084880 , status 1 +connecting thr bd084880 , thread 8659 , mypolls 0 +myconn 0 connecting thr bd084880 , thread 8659 , mypolls 0 +thr bd084a00 , status 1 +connecting thr bd084a00 , thread 8660 , mypolls 0 +myconn 0 connecting thr bd084a00 , thread 8660 , mypolls 0 +thr bd084b80 , status 1 +connecting thr bd084b80 , thread 8661 , mypolls 0 +myconn 0 connecting thr bd084b80 , thread 8661 , mypolls 0 +thr bd084d00 , status 1 +connecting thr bd084d00 , thread 8662 , mypolls 0 +myconn 0 connecting thr bd084d00 , thread 8662 , mypolls 0 +thr bd084e80 , status 1 +connecting thr bd084e80 , thread 8663 , mypolls 0 +myconn 0 connecting thr bd084e80 , thread 8663 , mypolls 0 +thr bcee5000 , status 1 +connecting thr bcee5000 , thread 8664 , mypolls 0 +myconn 0 connecting thr bcee5000 , thread 8664 , mypolls 0 +thr bcee5180 , status 1 +connecting thr bcee5180 , thread 8665 , mypolls 0 +myconn 0 connecting thr bcee5180 , thread 8665 , mypolls 0 +thr bcee5300 , status 1 +connecting thr bcee5300 , thread 8666 , mypolls 0 +myconn 0 connecting thr bcee5300 , thread 8666 , mypolls 0 +thr bcee5480 , status 1 +connecting thr bcee5480 , thread 8667 , mypolls 0 +myconn 0 connecting thr bcee5480 , thread 8667 , mypolls 0 +thr bcee5600 , status 1 +connecting thr bcee5600 , thread 8668 , mypolls 0 +myconn 0 connecting thr bcee5600 , thread 8668 , mypolls 0 +thr bcee5780 , status 1 +connecting thr bcee5780 , thread 8669 , mypolls 0 +myconn 0 connecting thr bcee5780 , thread 8669 , mypolls 0 +thr bcee5900 , status 1 +connecting thr bcee5900 , thread 8670 , mypolls 0 +myconn 0 connecting thr bcee5900 , thread 8670 , mypolls 0 +thr bcee5a80 , status 1 +connecting thr bcee5a80 , thread 8671 , mypolls 0 +myconn 0 connecting thr bcee5a80 , thread 8671 , mypolls 0 +thr bcee5c00 , status 1 +connecting thr bcee5c00 , thread 8672 , mypolls 0 +myconn 0 connecting thr bcee5c00 , thread 8672 , mypolls 0 +thr bcee5d80 , status 1 +connecting thr bcee5d80 , thread 8673 , mypolls 0 +myconn 0 connecting thr bcee5d80 , thread 8673 , mypolls 0 +thr bcee5f00 , status 1 +connecting thr bcee5f00 , thread 8674 , mypolls 0 +myconn 0 connecting thr bcee5f00 , thread 8674 , mypolls 0 +thr bcee6080 , status 1 +connecting thr bcee6080 , thread 8675 , mypolls 0 +myconn 0 connecting thr bcee6080 , thread 8675 , mypolls 0 +thr bcee6200 , status 1 +connecting thr bcee6200 , thread 8676 , mypolls 0 +myconn 0 connecting thr bcee6200 , thread 8676 , mypolls 0 +thr bcee6380 , status 1 +connecting thr bcee6380 , thread 8677 , mypolls 0 +myconn 0 connecting thr bcee6380 , thread 8677 , mypolls 0 +thr bcee6500 , status 1 +connecting thr bcee6500 , thread 8678 , mypolls 0 +myconn 0 connecting thr bcee6500 , thread 8678 , mypolls 0 +thr bcee6680 , status 1 +connecting thr bcee6680 , thread 8679 , mypolls 0 +myconn 0 connecting thr bcee6680 , thread 8679 , mypolls 0 +thr bcee6800 , status 1 +connecting thr bcee6800 , thread 8680 , mypolls 0 +myconn 0 connecting thr bcee6800 , thread 8680 , mypolls 0 +thr bcee6980 , status 1 +connecting thr bcee6980 , thread 8681 , mypolls 0 +myconn 0 connecting thr bcee6980 , thread 8681 , mypolls 0 +thr bcee6b00 , status 1 +connecting thr bcee6b00 , thread 8682 , mypolls 0 +myconn 0 connecting thr bcee6b00 , thread 8682 , mypolls 0 +thr bcee6c80 , status 1 +connecting thr bcee6c80 , thread 8683 , mypolls 0 +myconn 0 connecting thr bcee6c80 , thread 8683 , mypolls 0 +thr bcee6e00 , status 1 +connecting thr bcee6e00 , thread 8684 , mypolls 0 +myconn 0 connecting thr bcee6e00 , thread 8684 , mypolls 0 +thr bcee6f80 , status 1 +connecting thr bcee6f80 , thread 8685 , mypolls 0 +myconn 0 connecting thr bcee6f80 , thread 8685 , mypolls 0 +thr bcee7100 , status 1 +connecting thr bcee7100 , thread 8686 , mypolls 0 +myconn 0 connecting thr bcee7100 , thread 8686 , mypolls 0 +thr bcee7280 , status 1 +connecting thr bcee7280 , thread 8687 , mypolls 0 +myconn 0 connecting thr bcee7280 , thread 8687 , mypolls 0 +thr bcee7400 , status 1 +connecting thr bcee7400 , thread 8688 , mypolls 0 +myconn 0 connecting thr bcee7400 , thread 8688 , mypolls 0 +thr bcee7580 , status 1 +connecting thr bcee7580 , thread 8689 , mypolls 0 +myconn 0 connecting thr bcee7580 , thread 8689 , mypolls 0 +thr bcee7700 , status 1 +connecting thr bcee7700 , thread 8690 , mypolls 0 +myconn 0 connecting thr bcee7700 , thread 8690 , mypolls 0 +thr bcee7880 , status 1 +connecting thr bcee7880 , thread 8691 , mypolls 0 +myconn 0 connecting thr bcee7880 , thread 8691 , mypolls 0 +thr bcee7a00 , status 1 +connecting thr bcee7a00 , thread 8692 , mypolls 0 +myconn 0 connecting thr bcee7a00 , thread 8692 , mypolls 0 +thr bcee7b80 , status 1 +connecting thr bcee7b80 , thread 8693 , mypolls 0 +myconn 0 connecting thr bcee7b80 , thread 8693 , mypolls 0 +thr bcee7d00 , status 1 +connecting thr bcee7d00 , thread 8694 , mypolls 0 +myconn 0 connecting thr bcee7d00 , thread 8694 , mypolls 0 +thr bcee7e80 , status 1 +connecting thr bcee7e80 , thread 8695 , mypolls 0 +myconn 0 connecting thr bcee7e80 , thread 8695 , mypolls 0 +thr bcd4a000 , status 1 +connecting thr bcd4a000 , thread 8696 , mypolls 0 +myconn 0 connecting thr bcd4a000 , thread 8696 , mypolls 0 +thr bcd4a180 , status 1 +connecting thr bcd4a180 , thread 8697 , mypolls 0 +myconn 0 connecting thr bcd4a180 , thread 8697 , mypolls 0 +thr bcd4a300 , status 1 +connecting thr bcd4a300 , thread 8698 , mypolls 0 +myconn 0 connecting thr bcd4a300 , thread 8698 , mypolls 0 +thr bcd4a480 , status 1 +connecting thr bcd4a480 , thread 8699 , mypolls 0 +myconn 0 connecting thr bcd4a480 , thread 8699 , mypolls 0 +thr bcd4a600 , status 1 +connecting thr bcd4a600 , thread 8700 , mypolls 0 +myconn 0 connecting thr bcd4a600 , thread 8700 , mypolls 0 +thr bcd4a780 , status 1 +connecting thr bcd4a780 , thread 8701 , mypolls 0 +myconn 0 connecting thr bcd4a780 , thread 8701 , mypolls 0 +thr bcd4a900 , status 1 +connecting thr bcd4a900 , thread 8702 , mypolls 0 +myconn 0 connecting thr bcd4a900 , thread 8702 , mypolls 0 +thr bcd4aa80 , status 1 +connecting thr bcd4aa80 , thread 8703 , mypolls 0 +myconn 0 connecting thr bcd4aa80 , thread 8703 , mypolls 0 +thr bcd4ac00 , status 1 +connecting thr bcd4ac00 , thread 8704 , mypolls 0 +myconn 0 connecting thr bcd4ac00 , thread 8704 , mypolls 0 +thr bcd4ad80 , status 1 +connecting thr bcd4ad80 , thread 8705 , mypolls 0 +myconn 0 connecting thr bcd4ad80 , thread 8705 , mypolls 0 +thr bcd4af00 , status 1 +connecting thr bcd4af00 , thread 8706 , mypolls 0 +myconn 0 connecting thr bcd4af00 , thread 8706 , mypolls 0 +thr bcd4b080 , status 1 +connecting thr bcd4b080 , thread 8707 , mypolls 0 +myconn 0 connecting thr bcd4b080 , thread 8707 , mypolls 0 +thr bcd4b200 , status 1 +connecting thr bcd4b200 , thread 8708 , mypolls 0 +myconn 0 connecting thr bcd4b200 , thread 8708 , mypolls 0 +thr bcd4b380 , status 1 +connecting thr bcd4b380 , thread 8709 , mypolls 0 +myconn 0 connecting thr bcd4b380 , thread 8709 , mypolls 0 +thr bcd4b500 , status 1 +connecting thr bcd4b500 , thread 8710 , mypolls 0 +myconn 0 connecting thr bcd4b500 , thread 8710 , mypolls 0 +thr bcd4b680 , status 1 +connecting thr bcd4b680 , thread 8711 , mypolls 0 +myconn 0 connecting thr bcd4b680 , thread 8711 , mypolls 0 +thr bcd4b800 , status 1 +connecting thr bcd4b800 , thread 8712 , mypolls 0 +myconn 0 connecting thr bcd4b800 , thread 8712 , mypolls 0 +thr bcd4b980 , status 1 +connecting thr bcd4b980 , thread 8713 , mypolls 0 +myconn 0 connecting thr bcd4b980 , thread 8713 , mypolls 0 +thr bcd4bb00 , status 1 +connecting thr bcd4bb00 , thread 8714 , mypolls 0 +myconn 0 connecting thr bcd4bb00 , thread 8714 , mypolls 0 +thr bcd4bc80 , status 1 +connecting thr bcd4bc80 , thread 8715 , mypolls 0 +myconn 0 connecting thr bcd4bc80 , thread 8715 , mypolls 0 +thr bcd4be00 , status 1 +connecting thr bcd4be00 , thread 8716 , mypolls 0 +myconn 0 connecting thr bcd4be00 , thread 8716 , mypolls 0 +thr bcd4bf80 , status 1 +connecting thr bcd4bf80 , thread 8717 , mypolls 0 +myconn 0 connecting thr bcd4bf80 , thread 8717 , mypolls 0 +thr bcd4c100 , status 1 +connecting thr bcd4c100 , thread 8718 , mypolls 0 +myconn 0 connecting thr bcd4c100 , thread 8718 , mypolls 0 +thr bcd4c280 , status 1 +connecting thr bcd4c280 , thread 8719 , mypolls 0 +myconn 0 connecting thr bcd4c280 , thread 8719 , mypolls 0 +thr bcd4c400 , status 1 +connecting thr bcd4c400 , thread 8720 , mypolls 0 +myconn 0 connecting thr bcd4c400 , thread 8720 , mypolls 0 +thr bcd4c580 , status 1 +connecting thr bcd4c580 , thread 8721 , mypolls 0 +myconn 0 connecting thr bcd4c580 , thread 8721 , mypolls 0 +thr bcd4c700 , status 1 +connecting thr bcd4c700 , thread 8722 , mypolls 0 +myconn 0 connecting thr bcd4c700 , thread 8722 , mypolls 0 +thr bcd4c880 , status 1 +connecting thr bcd4c880 , thread 8723 , mypolls 0 +myconn 0 connecting thr bcd4c880 , thread 8723 , mypolls 0 +thr bcd4ca00 , status 1 +connecting thr bcd4ca00 , thread 8724 , mypolls 0 +myconn 0 connecting thr bcd4ca00 , thread 8724 , mypolls 0 +thr bcd4cb80 , status 1 +connecting thr bcd4cb80 , thread 8725 , mypolls 0 +myconn 0 connecting thr bcd4cb80 , thread 8725 , mypolls 0 +thr bcd4cd00 , status 1 +connecting thr bcd4cd00 , thread 8726 , mypolls 0 +myconn 0 connecting thr bcd4cd00 , thread 8726 , mypolls 0 +thr bcd4ce80 , status 1 +connecting thr bcd4ce80 , thread 8727 , mypolls 0 +myconn 0 connecting thr bcd4ce80 , thread 8727 , mypolls 0 +thr bcbac000 , status 1 +connecting thr bcbac000 , thread 8728 , mypolls 0 +myconn 0 connecting thr bcbac000 , thread 8728 , mypolls 0 +thr bcbac180 , status 1 +connecting thr bcbac180 , thread 8729 , mypolls 0 +myconn 0 connecting thr bcbac180 , thread 8729 , mypolls 0 +thr bcbac300 , status 1 +connecting thr bcbac300 , thread 8730 , mypolls 0 +myconn 0 connecting thr bcbac300 , thread 8730 , mypolls 0 +thr bcbac480 , status 1 +connecting thr bcbac480 , thread 8731 , mypolls 0 +myconn 0 connecting thr bcbac480 , thread 8731 , mypolls 0 +thr bcbac600 , status 1 +connecting thr bcbac600 , thread 8732 , mypolls 0 +myconn 0 connecting thr bcbac600 , thread 8732 , mypolls 0 +thr bcbac780 , status 1 +connecting thr bcbac780 , thread 8733 , mypolls 0 +myconn 0 connecting thr bcbac780 , thread 8733 , mypolls 0 +thr bcbac900 , status 1 +connecting thr bcbac900 , thread 8734 , mypolls 0 +myconn 0 connecting thr bcbac900 , thread 8734 , mypolls 0 +thr bcbaca80 , status 1 +connecting thr bcbaca80 , thread 8735 , mypolls 0 +myconn 0 connecting thr bcbaca80 , thread 8735 , mypolls 0 +thr bcbacc00 , status 1 +connecting thr bcbacc00 , thread 8736 , mypolls 0 +myconn 0 connecting thr bcbacc00 , thread 8736 , mypolls 0 +thr bcbacd80 , status 1 +connecting thr bcbacd80 , thread 8737 , mypolls 0 +myconn 0 connecting thr bcbacd80 , thread 8737 , mypolls 0 +thr bcbacf00 , status 1 +connecting thr bcbacf00 , thread 8738 , mypolls 0 +myconn 0 connecting thr bcbacf00 , thread 8738 , mypolls 0 +thr bcbad080 , status 1 +connecting thr bcbad080 , thread 8739 , mypolls 0 +myconn 0 connecting thr bcbad080 , thread 8739 , mypolls 0 +thr bcbad200 , status 1 +connecting thr bcbad200 , thread 8740 , mypolls 0 +myconn 0 connecting thr bcbad200 , thread 8740 , mypolls 0 +thr bcbad380 , status 1 +connecting thr bcbad380 , thread 8741 , mypolls 0 +myconn 0 connecting thr bcbad380 , thread 8741 , mypolls 0 +thr bcbad500 , status 1 +connecting thr bcbad500 , thread 8742 , mypolls 0 +myconn 0 connecting thr bcbad500 , thread 8742 , mypolls 0 +thr bcbad680 , status 1 +connecting thr bcbad680 , thread 8743 , mypolls 0 +myconn 0 connecting thr bcbad680 , thread 8743 , mypolls 0 +thr bcbad800 , status 1 +connecting thr bcbad800 , thread 8744 , mypolls 0 +myconn 0 connecting thr bcbad800 , thread 8744 , mypolls 0 +thr bcbad980 , status 1 +connecting thr bcbad980 , thread 8745 , mypolls 0 +myconn 0 connecting thr bcbad980 , thread 8745 , mypolls 0 +thr bcbadb00 , status 1 +connecting thr bcbadb00 , thread 8746 , mypolls 0 +myconn 0 connecting thr bcbadb00 , thread 8746 , mypolls 0 +thr bcbadc80 , status 1 +connecting thr bcbadc80 , thread 8747 , mypolls 0 +myconn 0 connecting thr bcbadc80 , thread 8747 , mypolls 0 +thr bcbade00 , status 1 +connecting thr bcbade00 , thread 8748 , mypolls 0 +myconn 0 connecting thr bcbade00 , thread 8748 , mypolls 0 +thr bcbadf80 , status 1 +connecting thr bcbadf80 , thread 8749 , mypolls 0 +myconn 0 connecting thr bcbadf80 , thread 8749 , mypolls 0 +thr bcbae100 , status 1 +connecting thr bcbae100 , thread 8750 , mypolls 0 +myconn 0 connecting thr bcbae100 , thread 8750 , mypolls 0 +thr bcbae280 , status 1 +connecting thr bcbae280 , thread 8751 , mypolls 0 +myconn 0 connecting thr bcbae280 , thread 8751 , mypolls 0 +thr bcbae400 , status 1 +connecting thr bcbae400 , thread 8752 , mypolls 0 +myconn 0 connecting thr bcbae400 , thread 8752 , mypolls 0 +thr bcbae580 , status 1 +connecting thr bcbae580 , thread 8753 , mypolls 0 +myconn 0 connecting thr bcbae580 , thread 8753 , mypolls 0 +thr bcbae700 , status 1 +connecting thr bcbae700 , thread 8754 , mypolls 0 +myconn 0 connecting thr bcbae700 , thread 8754 , mypolls 0 +thr bcbae880 , status 1 +connecting thr bcbae880 , thread 8755 , mypolls 0 +myconn 0 connecting thr bcbae880 , thread 8755 , mypolls 0 +thr bcbaea00 , status 1 +connecting thr bcbaea00 , thread 8756 , mypolls 0 +myconn 0 connecting thr bcbaea00 , thread 8756 , mypolls 0 +thr bcbaeb80 , status 1 +connecting thr bcbaeb80 , thread 8757 , mypolls 0 +myconn 0 connecting thr bcbaeb80 , thread 8757 , mypolls 0 +thr bcbaed00 , status 1 +connecting thr bcbaed00 , thread 8758 , mypolls 0 +myconn 0 connecting thr bcbaed00 , thread 8758 , mypolls 0 +thr bcbaee80 , status 1 +connecting thr bcbaee80 , thread 8759 , mypolls 0 +myconn 0 connecting thr bcbaee80 , thread 8759 , mypolls 0 +thr bc9fd000 , status 1 +connecting thr bc9fd000 , thread 8760 , mypolls 0 +myconn 0 connecting thr bc9fd000 , thread 8760 , mypolls 0 +thr bc9fd180 , status 1 +connecting thr bc9fd180 , thread 8761 , mypolls 0 +myconn 0 connecting thr bc9fd180 , thread 8761 , mypolls 0 +thr bc9fd300 , status 1 +connecting thr bc9fd300 , thread 8762 , mypolls 0 +myconn 0 connecting thr bc9fd300 , thread 8762 , mypolls 0 +thr bc9fd480 , status 1 +connecting thr bc9fd480 , thread 8763 , mypolls 0 +myconn 0 connecting thr bc9fd480 , thread 8763 , mypolls 0 +thr bc9fd600 , status 1 +connecting thr bc9fd600 , thread 8764 , mypolls 0 +myconn 0 connecting thr bc9fd600 , thread 8764 , mypolls 0 +thr bc9fd780 , status 1 +connecting thr bc9fd780 , thread 8765 , mypolls 0 +myconn 0 connecting thr bc9fd780 , thread 8765 , mypolls 0 +thr bc9fd900 , status 1 +connecting thr bc9fd900 , thread 8766 , mypolls 0 +myconn 0 connecting thr bc9fd900 , thread 8766 , mypolls 0 +thr bc9fda80 , status 1 +connecting thr bc9fda80 , thread 8767 , mypolls 0 +myconn 0 connecting thr bc9fda80 , thread 8767 , mypolls 0 +thr bc9fdc00 , status 1 +connecting thr bc9fdc00 , thread 8768 , mypolls 0 +myconn 0 connecting thr bc9fdc00 , thread 8768 , mypolls 0 +thr bc9fdd80 , status 1 +connecting thr bc9fdd80 , thread 8769 , mypolls 0 +myconn 0 connecting thr bc9fdd80 , thread 8769 , mypolls 0 +thr bc9fdf00 , status 1 +connecting thr bc9fdf00 , thread 8770 , mypolls 0 +myconn 0 connecting thr bc9fdf00 , thread 8770 , mypolls 0 +thr bc9fe080 , status 1 +connecting thr bc9fe080 , thread 8771 , mypolls 0 +myconn 0 connecting thr bc9fe080 , thread 8771 , mypolls 0 +thr bc9fe200 , status 1 +connecting thr bc9fe200 , thread 8772 , mypolls 0 +myconn 0 connecting thr bc9fe200 , thread 8772 , mypolls 0 +thr bc9fe380 , status 1 +connecting thr bc9fe380 , thread 8773 , mypolls 0 +myconn 0 connecting thr bc9fe380 , thread 8773 , mypolls 0 +thr bc9fe500 , status 1 +connecting thr bc9fe500 , thread 8774 , mypolls 0 +myconn 0 connecting thr bc9fe500 , thread 8774 , mypolls 0 +thr bc9fe680 , status 1 +connecting thr bc9fe680 , thread 8775 , mypolls 0 +myconn 0 connecting thr bc9fe680 , thread 8775 , mypolls 0 +thr bc9fe800 , status 1 +connecting thr bc9fe800 , thread 8776 , mypolls 0 +myconn 0 connecting thr bc9fe800 , thread 8776 , mypolls 0 +thr bc9fe980 , status 1 +connecting thr bc9fe980 , thread 8777 , mypolls 0 +myconn 0 connecting thr bc9fe980 , thread 8777 , mypolls 0 +thr bc9feb00 , status 1 +connecting thr bc9feb00 , thread 8778 , mypolls 0 +myconn 0 connecting thr bc9feb00 , thread 8778 , mypolls 0 +thr bc9fec80 , status 1 +connecting thr bc9fec80 , thread 8779 , mypolls 0 +myconn 0 connecting thr bc9fec80 , thread 8779 , mypolls 0 +thr bc9fee00 , status 1 +connecting thr bc9fee00 , thread 8780 , mypolls 0 +myconn 0 connecting thr bc9fee00 , thread 8780 , mypolls 0 +thr bc9fef80 , status 1 +connecting thr bc9fef80 , thread 8781 , mypolls 0 +myconn 0 connecting thr bc9fef80 , thread 8781 , mypolls 0 +thr bc9ff100 , status 1 +connecting thr bc9ff100 , thread 8782 , mypolls 0 +myconn 0 connecting thr bc9ff100 , thread 8782 , mypolls 0 +thr bc9ff280 , status 1 +connecting thr bc9ff280 , thread 8783 , mypolls 0 +myconn 0 connecting thr bc9ff280 , thread 8783 , mypolls 0 +thr bc9ff400 , status 1 +connecting thr bc9ff400 , thread 8784 , mypolls 0 +myconn 0 connecting thr bc9ff400 , thread 8784 , mypolls 0 +thr bc9ff580 , status 1 +connecting thr bc9ff580 , thread 8785 , mypolls 0 +myconn 0 connecting thr bc9ff580 , thread 8785 , mypolls 0 +thr bc9ff700 , status 1 +connecting thr bc9ff700 , thread 8786 , mypolls 0 +myconn 0 connecting thr bc9ff700 , thread 8786 , mypolls 0 +thr bc9ff880 , status 1 +connecting thr bc9ff880 , thread 8787 , mypolls 0 +myconn 0 connecting thr bc9ff880 , thread 8787 , mypolls 0 +thr bc9ffa00 , status 1 +connecting thr bc9ffa00 , thread 8788 , mypolls 0 +myconn 0 connecting thr bc9ffa00 , thread 8788 , mypolls 0 +thr bc9ffb80 , status 1 +connecting thr bc9ffb80 , thread 8789 , mypolls 0 +myconn 0 connecting thr bc9ffb80 , thread 8789 , mypolls 0 +thr bc9ffd00 , status 1 +connecting thr bc9ffd00 , thread 8790 , mypolls 0 +myconn 0 connecting thr bc9ffd00 , thread 8790 , mypolls 0 +thr bc9ffe80 , status 1 +connecting thr bc9ffe80 , thread 8791 , mypolls 0 +myconn 0 connecting thr bc9ffe80 , thread 8791 , mypolls 0 +thr bc7fb000 , status 1 +connecting thr bc7fb000 , thread 8792 , mypolls 0 +myconn 0 connecting thr bc7fb000 , thread 8792 , mypolls 0 +thr bc7fb180 , status 1 +connecting thr bc7fb180 , thread 8793 , mypolls 0 +myconn 0 connecting thr bc7fb180 , thread 8793 , mypolls 0 +thr bc7fb300 , status 1 +connecting thr bc7fb300 , thread 8794 , mypolls 0 +myconn 0 connecting thr bc7fb300 , thread 8794 , mypolls 0 +thr bc7fb480 , status 1 +connecting thr bc7fb480 , thread 8795 , mypolls 0 +myconn 0 connecting thr bc7fb480 , thread 8795 , mypolls 0 +thr bc7fb600 , status 1 +connecting thr bc7fb600 , thread 8796 , mypolls 0 +myconn 0 connecting thr bc7fb600 , thread 8796 , mypolls 0 +thr bc7fb780 , status 1 +connecting thr bc7fb780 , thread 8797 , mypolls 0 +myconn 0 connecting thr bc7fb780 , thread 8797 , mypolls 0 +thr bc7fb900 , status 1 +connecting thr bc7fb900 , thread 8798 , mypolls 0 +myconn 0 connecting thr bc7fb900 , thread 8798 , mypolls 0 +thr bc7fba80 , status 1 +connecting thr bc7fba80 , thread 8799 , mypolls 0 +myconn 0 connecting thr bc7fba80 , thread 8799 , mypolls 0 +thr bc7fbc00 , status 1 +connecting thr bc7fbc00 , thread 8800 , mypolls 0 +myconn 0 connecting thr bc7fbc00 , thread 8800 , mypolls 0 +thr bc7fbd80 , status 1 +connecting thr bc7fbd80 , thread 8801 , mypolls 0 +myconn 0 connecting thr bc7fbd80 , thread 8801 , mypolls 0 +thr bc7fbf00 , status 1 +connecting thr bc7fbf00 , thread 8802 , mypolls 0 +myconn 0 connecting thr bc7fbf00 , thread 8802 , mypolls 0 +thr bc7fc080 , status 1 +connecting thr bc7fc080 , thread 8803 , mypolls 0 +myconn 0 connecting thr bc7fc080 , thread 8803 , mypolls 0 +thr bc7fc200 , status 1 +connecting thr bc7fc200 , thread 8804 , mypolls 0 +myconn 0 connecting thr bc7fc200 , thread 8804 , mypolls 0 +thr bc7fc380 , status 1 +connecting thr bc7fc380 , thread 8805 , mypolls 0 +myconn 0 connecting thr bc7fc380 , thread 8805 , mypolls 0 +thr bc7fc500 , status 1 +connecting thr bc7fc500 , thread 8806 , mypolls 0 +myconn 0 connecting thr bc7fc500 , thread 8806 , mypolls 0 +thr bc7fc680 , status 1 +connecting thr bc7fc680 , thread 8807 , mypolls 0 +myconn 0 connecting thr bc7fc680 , thread 8807 , mypolls 0 +thr bc7fc800 , status 1 +connecting thr bc7fc800 , thread 8808 , mypolls 0 +myconn 0 connecting thr bc7fc800 , thread 8808 , mypolls 0 +thr bc7fc980 , status 1 +connecting thr bc7fc980 , thread 8809 , mypolls 0 +myconn 0 connecting thr bc7fc980 , thread 8809 , mypolls 0 +thr bc7fcb00 , status 1 +connecting thr bc7fcb00 , thread 8810 , mypolls 0 +myconn 0 connecting thr bc7fcb00 , thread 8810 , mypolls 0 +thr bc7fcc80 , status 1 +connecting thr bc7fcc80 , thread 8811 , mypolls 0 +myconn 0 connecting thr bc7fcc80 , thread 8811 , mypolls 0 +thr bc7fce00 , status 1 +connecting thr bc7fce00 , thread 8812 , mypolls 0 +myconn 0 connecting thr bc7fce00 , thread 8812 , mypolls 0 +thr bc7fcf80 , status 1 +connecting thr bc7fcf80 , thread 8813 , mypolls 0 +myconn 0 connecting thr bc7fcf80 , thread 8813 , mypolls 0 +thr bc7fd100 , status 1 +connecting thr bc7fd100 , thread 8814 , mypolls 0 +myconn 0 connecting thr bc7fd100 , thread 8814 , mypolls 0 +thr bc7fd280 , status 1 +connecting thr bc7fd280 , thread 8815 , mypolls 0 +myconn 0 connecting thr bc7fd280 , thread 8815 , mypolls 0 +thr bc7fd400 , status 1 +connecting thr bc7fd400 , thread 8816 , mypolls 0 +myconn 0 connecting thr bc7fd400 , thread 8816 , mypolls 0 +thr bc7fd580 , status 1 +connecting thr bc7fd580 , thread 8817 , mypolls 0 +myconn 0 connecting thr bc7fd580 , thread 8817 , mypolls 0 +thr bc7fd700 , status 1 +connecting thr bc7fd700 , thread 8818 , mypolls 0 +myconn 0 connecting thr bc7fd700 , thread 8818 , mypolls 0 +thr bc7fd880 , status 1 +connecting thr bc7fd880 , thread 8819 , mypolls 0 +myconn 0 connecting thr bc7fd880 , thread 8819 , mypolls 0 +thr bc7fda00 , status 1 +connecting thr bc7fda00 , thread 8820 , mypolls 0 +myconn 0 connecting thr bc7fda00 , thread 8820 , mypolls 0 +thr bc7fdb80 , status 1 +connecting thr bc7fdb80 , thread 8821 , mypolls 0 +myconn 0 connecting thr bc7fdb80 , thread 8821 , mypolls 0 +thr bc7fdd00 , status 1 +connecting thr bc7fdd00 , thread 8822 , mypolls 0 +myconn 0 connecting thr bc7fdd00 , thread 8822 , mypolls 0 +thr bc7fde80 , status 1 +connecting thr bc7fde80 , thread 8823 , mypolls 0 +myconn 0 connecting thr bc7fde80 , thread 8823 , mypolls 0 +thr bc2df000 , status 1 +connecting thr bc2df000 , thread 8824 , mypolls 0 +myconn 0 connecting thr bc2df000 , thread 8824 , mypolls 0 +thr bc2df180 , status 1 +connecting thr bc2df180 , thread 8825 , mypolls 0 +myconn 0 connecting thr bc2df180 , thread 8825 , mypolls 0 +thr bc2df300 , status 1 +connecting thr bc2df300 , thread 8826 , mypolls 0 +myconn 0 connecting thr bc2df300 , thread 8826 , mypolls 0 +thr bc2df480 , status 1 +connecting thr bc2df480 , thread 8827 , mypolls 0 +myconn 0 connecting thr bc2df480 , thread 8827 , mypolls 0 +thr bc2df600 , status 1 +connecting thr bc2df600 , thread 8828 , mypolls 0 +myconn 0 connecting thr bc2df600 , thread 8828 , mypolls 0 +thr bc2df780 , status 1 +connecting thr bc2df780 , thread 8829 , mypolls 0 +myconn 0 connecting thr bc2df780 , thread 8829 , mypolls 0 +thr bc2df900 , status 1 +connecting thr bc2df900 , thread 8830 , mypolls 0 +myconn 0 connecting thr bc2df900 , thread 8830 , mypolls 0 +thr bc2dfa80 , status 1 +connecting thr bc2dfa80 , thread 8831 , mypolls 0 +myconn 0 connecting thr bc2dfa80 , thread 8831 , mypolls 0 +thr bc2dfc00 , status 1 +connecting thr bc2dfc00 , thread 8832 , mypolls 0 +myconn 0 connecting thr bc2dfc00 , thread 8832 , mypolls 0 +thr bc2dfd80 , status 1 +connecting thr bc2dfd80 , thread 8833 , mypolls 0 +myconn 0 connecting thr bc2dfd80 , thread 8833 , mypolls 0 +thr bc2dff00 , status 1 +connecting thr bc2dff00 , thread 8834 , mypolls 0 +myconn 0 connecting thr bc2dff00 , thread 8834 , mypolls 0 +thr bc2e0080 , status 1 +connecting thr bc2e0080 , thread 8835 , mypolls 0 +myconn 0 connecting thr bc2e0080 , thread 8835 , mypolls 0 +thr bc2e0200 , status 1 +connecting thr bc2e0200 , thread 8836 , mypolls 0 +myconn 0 connecting thr bc2e0200 , thread 8836 , mypolls 0 +thr bc2e0380 , status 1 +connecting thr bc2e0380 , thread 8837 , mypolls 0 +myconn 0 connecting thr bc2e0380 , thread 8837 , mypolls 0 +thr bc2e0500 , status 1 +connecting thr bc2e0500 , thread 8838 , mypolls 0 +myconn 0 connecting thr bc2e0500 , thread 8838 , mypolls 0 +thr bc2e0680 , status 1 +connecting thr bc2e0680 , thread 8839 , mypolls 0 +myconn 0 connecting thr bc2e0680 , thread 8839 , mypolls 0 +thr bc2e0800 , status 1 +connecting thr bc2e0800 , thread 8840 , mypolls 0 +myconn 0 connecting thr bc2e0800 , thread 8840 , mypolls 0 +thr bc2e0980 , status 1 +connecting thr bc2e0980 , thread 8841 , mypolls 0 +myconn 0 connecting thr bc2e0980 , thread 8841 , mypolls 0 +thr bc2e0b00 , status 1 +connecting thr bc2e0b00 , thread 8842 , mypolls 0 +myconn 0 connecting thr bc2e0b00 , thread 8842 , mypolls 0 +thr bc2e0c80 , status 1 +connecting thr bc2e0c80 , thread 8843 , mypolls 0 +myconn 0 connecting thr bc2e0c80 , thread 8843 , mypolls 0 +thr bc2e0e00 , status 1 +connecting thr bc2e0e00 , thread 8844 , mypolls 0 +myconn 0 connecting thr bc2e0e00 , thread 8844 , mypolls 0 +thr bc2e0f80 , status 1 +connecting thr bc2e0f80 , thread 8845 , mypolls 0 +myconn 0 connecting thr bc2e0f80 , thread 8845 , mypolls 0 +thr bc2e1100 , status 1 +connecting thr bc2e1100 , thread 8846 , mypolls 0 +myconn 0 connecting thr bc2e1100 , thread 8846 , mypolls 0 +thr bc2e1280 , status 1 +connecting thr bc2e1280 , thread 8847 , mypolls 0 +myconn 0 connecting thr bc2e1280 , thread 8847 , mypolls 0 +thr bc2e1400 , status 1 +connecting thr bc2e1400 , thread 8848 , mypolls 0 +myconn 0 connecting thr bc2e1400 , thread 8848 , mypolls 0 +thr bc2e1580 , status 1 +connecting thr bc2e1580 , thread 8849 , mypolls 0 +myconn 0 connecting thr bc2e1580 , thread 8849 , mypolls 0 +thr bc2e1700 , status 1 +connecting thr bc2e1700 , thread 8850 , mypolls 0 +myconn 0 connecting thr bc2e1700 , thread 8850 , mypolls 0 +thr bc2e1880 , status 1 +connecting thr bc2e1880 , thread 8851 , mypolls 0 +myconn 0 connecting thr bc2e1880 , thread 8851 , mypolls 0 +thr bc2e1a00 , status 1 +connecting thr bc2e1a00 , thread 8852 , mypolls 0 +myconn 0 connecting thr bc2e1a00 , thread 8852 , mypolls 0 +thr bc2e1b80 , status 1 +connecting thr bc2e1b80 , thread 8853 , mypolls 0 +myconn 0 connecting thr bc2e1b80 , thread 8853 , mypolls 0 +thr bc2e1d00 , status 1 +connecting thr bc2e1d00 , thread 8854 , mypolls 0 +myconn 0 connecting thr bc2e1d00 , thread 8854 , mypolls 0 +thr bc2e1e80 , status 1 +connecting thr bc2e1e80 , thread 8855 , mypolls 0 +myconn 0 connecting thr bc2e1e80 , thread 8855 , mypolls 0 +thr bc141000 , status 1 +connecting thr bc141000 , thread 8856 , mypolls 0 +myconn 0 connecting thr bc141000 , thread 8856 , mypolls 0 +thr bc141180 , status 1 +connecting thr bc141180 , thread 8857 , mypolls 0 +myconn 0 connecting thr bc141180 , thread 8857 , mypolls 0 +thr bc141300 , status 1 +connecting thr bc141300 , thread 8858 , mypolls 0 +myconn 0 connecting thr bc141300 , thread 8858 , mypolls 0 +thr bc141480 , status 1 +connecting thr bc141480 , thread 8859 , mypolls 0 +myconn 0 connecting thr bc141480 , thread 8859 , mypolls 0 +thr bc141600 , status 1 +connecting thr bc141600 , thread 8860 , mypolls 0 +myconn 0 connecting thr bc141600 , thread 8860 , mypolls 0 +thr bc141780 , status 1 +connecting thr bc141780 , thread 8861 , mypolls 0 +myconn 0 connecting thr bc141780 , thread 8861 , mypolls 0 +thr bc141900 , status 1 +connecting thr bc141900 , thread 8862 , mypolls 0 +myconn 0 connecting thr bc141900 , thread 8862 , mypolls 0 +thr bc141a80 , status 1 +connecting thr bc141a80 , thread 8863 , mypolls 0 +myconn 0 connecting thr bc141a80 , thread 8863 , mypolls 0 +thr bc141c00 , status 1 +connecting thr bc141c00 , thread 8864 , mypolls 0 +myconn 0 connecting thr bc141c00 , thread 8864 , mypolls 0 +thr bc141d80 , status 1 +connecting thr bc141d80 , thread 8865 , mypolls 0 +myconn 0 connecting thr bc141d80 , thread 8865 , mypolls 0 +thr bc141f00 , status 1 +connecting thr bc141f00 , thread 8866 , mypolls 0 +myconn 0 connecting thr bc141f00 , thread 8866 , mypolls 0 +thr bc142080 , status 1 +connecting thr bc142080 , thread 8867 , mypolls 0 +myconn 0 connecting thr bc142080 , thread 8867 , mypolls 0 +thr bc142200 , status 1 +connecting thr bc142200 , thread 8868 , mypolls 0 +myconn 0 connecting thr bc142200 , thread 8868 , mypolls 0 +thr bc142380 , status 1 +connecting thr bc142380 , thread 8869 , mypolls 0 +myconn 0 connecting thr bc142380 , thread 8869 , mypolls 0 +thr bc142500 , status 1 +connecting thr bc142500 , thread 8870 , mypolls 0 +myconn 0 connecting thr bc142500 , thread 8870 , mypolls 0 +thr bc142680 , status 1 +connecting thr bc142680 , thread 8871 , mypolls 0 +myconn 0 connecting thr bc142680 , thread 8871 , mypolls 0 +thr bc142800 , status 1 +connecting thr bc142800 , thread 8872 , mypolls 0 +myconn 0 connecting thr bc142800 , thread 8872 , mypolls 0 +thr bc142980 , status 1 +connecting thr bc142980 , thread 8873 , mypolls 0 +myconn 0 connecting thr bc142980 , thread 8873 , mypolls 0 +thr bc142b00 , status 1 +connecting thr bc142b00 , thread 8874 , mypolls 0 +myconn 0 connecting thr bc142b00 , thread 8874 , mypolls 0 +thr bc142c80 , status 1 +connecting thr bc142c80 , thread 8875 , mypolls 0 +myconn 0 connecting thr bc142c80 , thread 8875 , mypolls 0 +thr bc142e00 , status 1 +connecting thr bc142e00 , thread 8876 , mypolls 0 +myconn 0 connecting thr bc142e00 , thread 8876 , mypolls 0 +thr bc142f80 , status 1 +connecting thr bc142f80 , thread 8877 , mypolls 0 +myconn 0 connecting thr bc142f80 , thread 8877 , mypolls 0 +thr bc143100 , status 1 +connecting thr bc143100 , thread 8878 , mypolls 0 +myconn 0 connecting thr bc143100 , thread 8878 , mypolls 0 +thr bc143280 , status 1 +connecting thr bc143280 , thread 8879 , mypolls 0 +myconn 0 connecting thr bc143280 , thread 8879 , mypolls 0 +thr bc143400 , status 1 +connecting thr bc143400 , thread 8880 , mypolls 0 +myconn 0 connecting thr bc143400 , thread 8880 , mypolls 0 +thr bc143580 , status 1 +connecting thr bc143580 , thread 8881 , mypolls 0 +myconn 0 connecting thr bc143580 , thread 8881 , mypolls 0 +thr bc143700 , status 1 +connecting thr bc143700 , thread 8882 , mypolls 0 +myconn 0 connecting thr bc143700 , thread 8882 , mypolls 0 +thr bc143880 , status 1 +connecting thr bc143880 , thread 8883 , mypolls 0 +myconn 0 connecting thr bc143880 , thread 8883 , mypolls 0 +thr bc143a00 , status 1 +connecting thr bc143a00 , thread 8884 , mypolls 0 +myconn 0 connecting thr bc143a00 , thread 8884 , mypolls 0 +thr bc143b80 , status 1 +connecting thr bc143b80 , thread 8885 , mypolls 0 +myconn 0 connecting thr bc143b80 , thread 8885 , mypolls 0 +thr bc143d00 , status 1 +connecting thr bc143d00 , thread 8886 , mypolls 0 +myconn 0 connecting thr bc143d00 , thread 8886 , mypolls 0 +thr bc143e80 , status 1 +connecting thr bc143e80 , thread 8887 , mypolls 0 +myconn 0 connecting thr bc143e80 , thread 8887 , mypolls 0 +thr bbfa2000 , status 1 +connecting thr bbfa2000 , thread 8888 , mypolls 0 +myconn 0 connecting thr bbfa2000 , thread 8888 , mypolls 0 +thr bbfa2180 , status 1 +connecting thr bbfa2180 , thread 8889 , mypolls 0 +myconn 0 connecting thr bbfa2180 , thread 8889 , mypolls 0 +thr bbfa2300 , status 1 +connecting thr bbfa2300 , thread 8890 , mypolls 0 +myconn 0 connecting thr bbfa2300 , thread 8890 , mypolls 0 +thr bbfa2480 , status 1 +connecting thr bbfa2480 , thread 8891 , mypolls 0 +myconn 0 connecting thr bbfa2480 , thread 8891 , mypolls 0 +thr bbfa2600 , status 1 +connecting thr bbfa2600 , thread 8892 , mypolls 0 +myconn 0 connecting thr bbfa2600 , thread 8892 , mypolls 0 +thr bbfa2780 , status 1 +connecting thr bbfa2780 , thread 8893 , mypolls 0 +myconn 0 connecting thr bbfa2780 , thread 8893 , mypolls 0 +thr bbfa2900 , status 1 +connecting thr bbfa2900 , thread 8894 , mypolls 0 +myconn 0 connecting thr bbfa2900 , thread 8894 , mypolls 0 +thr bbfa2a80 , status 1 +connecting thr bbfa2a80 , thread 8895 , mypolls 0 +myconn 0 connecting thr bbfa2a80 , thread 8895 , mypolls 0 +thr bbfa2c00 , status 1 +connecting thr bbfa2c00 , thread 8896 , mypolls 0 +myconn 0 connecting thr bbfa2c00 , thread 8896 , mypolls 0 +thr bbfa2d80 , status 1 +connecting thr bbfa2d80 , thread 8897 , mypolls 0 +myconn 0 connecting thr bbfa2d80 , thread 8897 , mypolls 0 +thr bbfa2f00 , status 1 +connecting thr bbfa2f00 , thread 8898 , mypolls 0 +myconn 0 connecting thr bbfa2f00 , thread 8898 , mypolls 0 +thr bbfa3080 , status 1 +connecting thr bbfa3080 , thread 8899 , mypolls 0 +myconn 0 connecting thr bbfa3080 , thread 8899 , mypolls 0 +thr bbfa3200 , status 1 +connecting thr bbfa3200 , thread 8900 , mypolls 0 +myconn 0 connecting thr bbfa3200 , thread 8900 , mypolls 0 +thr bbfa3380 , status 1 +connecting thr bbfa3380 , thread 8901 , mypolls 0 +myconn 0 connecting thr bbfa3380 , thread 8901 , mypolls 0 +thr bbfa3500 , status 1 +connecting thr bbfa3500 , thread 8902 , mypolls 0 +myconn 0 connecting thr bbfa3500 , thread 8902 , mypolls 0 +thr bbfa3680 , status 1 +connecting thr bbfa3680 , thread 8903 , mypolls 0 +myconn 0 connecting thr bbfa3680 , thread 8903 , mypolls 0 +thr bbfa3800 , status 1 +connecting thr bbfa3800 , thread 8904 , mypolls 0 +myconn 0 connecting thr bbfa3800 , thread 8904 , mypolls 0 +thr bbfa3980 , status 1 +connecting thr bbfa3980 , thread 8905 , mypolls 0 +myconn 0 connecting thr bbfa3980 , thread 8905 , mypolls 0 +thr bbfa3b00 , status 1 +connecting thr bbfa3b00 , thread 8906 , mypolls 0 +myconn 0 connecting thr bbfa3b00 , thread 8906 , mypolls 0 +thr bbfa3c80 , status 1 +connecting thr bbfa3c80 , thread 8907 , mypolls 0 +myconn 0 connecting thr bbfa3c80 , thread 8907 , mypolls 0 +thr bbfa3e00 , status 1 +connecting thr bbfa3e00 , thread 8908 , mypolls 0 +myconn 0 connecting thr bbfa3e00 , thread 8908 , mypolls 0 +thr bbfa3f80 , status 1 +connecting thr bbfa3f80 , thread 8909 , mypolls 0 +myconn 0 connecting thr bbfa3f80 , thread 8909 , mypolls 0 +thr bbfa4100 , status 1 +connecting thr bbfa4100 , thread 8910 , mypolls 0 +myconn 0 connecting thr bbfa4100 , thread 8910 , mypolls 0 +thr bbfa4280 , status 1 +connecting thr bbfa4280 , thread 8911 , mypolls 0 +myconn 0 connecting thr bbfa4280 , thread 8911 , mypolls 0 +thr bbfa4400 , status 1 +connecting thr bbfa4400 , thread 8912 , mypolls 0 +myconn 0 connecting thr bbfa4400 , thread 8912 , mypolls 0 +thr bbfa4580 , status 1 +connecting thr bbfa4580 , thread 8913 , mypolls 0 +myconn 0 connecting thr bbfa4580 , thread 8913 , mypolls 0 +thr bbfa4700 , status 1 +connecting thr bbfa4700 , thread 8914 , mypolls 0 +myconn 0 connecting thr bbfa4700 , thread 8914 , mypolls 0 +thr bbfa4880 , status 1 +connecting thr bbfa4880 , thread 8915 , mypolls 0 +myconn 0 connecting thr bbfa4880 , thread 8915 , mypolls 0 +thr bbfa4a00 , status 1 +connecting thr bbfa4a00 , thread 8916 , mypolls 0 +myconn 0 connecting thr bbfa4a00 , thread 8916 , mypolls 0 +thr bbfa4b80 , status 1 +connecting thr bbfa4b80 , thread 8917 , mypolls 0 +myconn 0 connecting thr bbfa4b80 , thread 8917 , mypolls 0 +thr bbfa4d00 , status 1 +connecting thr bbfa4d00 , thread 8918 , mypolls 0 +myconn 0 connecting thr bbfa4d00 , thread 8918 , mypolls 0 +thr bbfa4e80 , status 1 +connecting thr bbfa4e80 , thread 8919 , mypolls 0 +myconn 0 connecting thr bbfa4e80 , thread 8919 , mypolls 0 +thr bbdfd000 , status 1 +connecting thr bbdfd000 , thread 8920 , mypolls 0 +myconn 0 connecting thr bbdfd000 , thread 8920 , mypolls 0 +thr bbdfd180 , status 1 +connecting thr bbdfd180 , thread 8921 , mypolls 0 +myconn 0 connecting thr bbdfd180 , thread 8921 , mypolls 0 +thr bbdfd300 , status 1 +connecting thr bbdfd300 , thread 8922 , mypolls 0 +myconn 0 connecting thr bbdfd300 , thread 8922 , mypolls 0 +thr bbdfd480 , status 1 +connecting thr bbdfd480 , thread 8923 , mypolls 0 +myconn 0 connecting thr bbdfd480 , thread 8923 , mypolls 0 +thr bbdfd600 , status 1 +connecting thr bbdfd600 , thread 8924 , mypolls 0 +myconn 0 connecting thr bbdfd600 , thread 8924 , mypolls 0 +thr bbdfd780 , status 1 +connecting thr bbdfd780 , thread 8925 , mypolls 0 +myconn 0 connecting thr bbdfd780 , thread 8925 , mypolls 0 +thr bbdfd900 , status 1 +connecting thr bbdfd900 , thread 8926 , mypolls 0 +myconn 0 connecting thr bbdfd900 , thread 8926 , mypolls 0 +thr bbdfda80 , status 1 +connecting thr bbdfda80 , thread 8927 , mypolls 0 +myconn 0 connecting thr bbdfda80 , thread 8927 , mypolls 0 +thr bbdfdc00 , status 1 +connecting thr bbdfdc00 , thread 8928 , mypolls 0 +myconn 0 connecting thr bbdfdc00 , thread 8928 , mypolls 0 +thr bbdfdd80 , status 1 +connecting thr bbdfdd80 , thread 8929 , mypolls 0 +myconn 0 connecting thr bbdfdd80 , thread 8929 , mypolls 0 +thr bbdfdf00 , status 1 +connecting thr bbdfdf00 , thread 8930 , mypolls 0 +myconn 0 connecting thr bbdfdf00 , thread 8930 , mypolls 0 +thr bbdfe080 , status 1 +connecting thr bbdfe080 , thread 8931 , mypolls 0 +myconn 0 connecting thr bbdfe080 , thread 8931 , mypolls 0 +thr bbdfe200 , status 1 +connecting thr bbdfe200 , thread 8932 , mypolls 0 +myconn 0 connecting thr bbdfe200 , thread 8932 , mypolls 0 +thr bbdfe380 , status 1 +connecting thr bbdfe380 , thread 8933 , mypolls 0 +myconn 0 connecting thr bbdfe380 , thread 8933 , mypolls 0 +thr bbdfe500 , status 1 +connecting thr bbdfe500 , thread 8934 , mypolls 0 +myconn 0 connecting thr bbdfe500 , thread 8934 , mypolls 0 +thr bbdfe680 , status 1 +connecting thr bbdfe680 , thread 8935 , mypolls 0 +myconn 0 connecting thr bbdfe680 , thread 8935 , mypolls 0 +thr bbdfe800 , status 1 +connecting thr bbdfe800 , thread 8936 , mypolls 0 +myconn 0 connecting thr bbdfe800 , thread 8936 , mypolls 0 +thr bbdfe980 , status 1 +connecting thr bbdfe980 , thread 8937 , mypolls 0 +myconn 0 connecting thr bbdfe980 , thread 8937 , mypolls 0 +thr bbdfeb00 , status 1 +connecting thr bbdfeb00 , thread 8938 , mypolls 0 +myconn 0 connecting thr bbdfeb00 , thread 8938 , mypolls 0 +thr bbdfec80 , status 1 +connecting thr bbdfec80 , thread 8939 , mypolls 0 +myconn 0 connecting thr bbdfec80 , thread 8939 , mypolls 0 +thr bbdfee00 , status 1 +connecting thr bbdfee00 , thread 8940 , mypolls 0 +myconn 0 connecting thr bbdfee00 , thread 8940 , mypolls 0 +thr bbdfef80 , status 1 +connecting thr bbdfef80 , thread 8941 , mypolls 0 +myconn 0 connecting thr bbdfef80 , thread 8941 , mypolls 0 +thr bbdff100 , status 1 +connecting thr bbdff100 , thread 8942 , mypolls 0 +myconn 0 connecting thr bbdff100 , thread 8942 , mypolls 0 +thr bbdff280 , status 1 +connecting thr bbdff280 , thread 8943 , mypolls 0 +myconn 0 connecting thr bbdff280 , thread 8943 , mypolls 0 +thr bbdff400 , status 1 +connecting thr bbdff400 , thread 8944 , mypolls 0 +myconn 0 connecting thr bbdff400 , thread 8944 , mypolls 0 +thr bbdff580 , status 1 +connecting thr bbdff580 , thread 8945 , mypolls 0 +myconn 0 connecting thr bbdff580 , thread 8945 , mypolls 0 +thr bbdff700 , status 1 +connecting thr bbdff700 , thread 8946 , mypolls 0 +myconn 0 connecting thr bbdff700 , thread 8946 , mypolls 0 +thr bbdff880 , status 1 +connecting thr bbdff880 , thread 8947 , mypolls 0 +myconn 0 connecting thr bbdff880 , thread 8947 , mypolls 0 +thr bbdffa00 , status 1 +connecting thr bbdffa00 , thread 8948 , mypolls 0 +myconn 0 connecting thr bbdffa00 , thread 8948 , mypolls 0 +thr bbdffb80 , status 1 +connecting thr bbdffb80 , thread 8949 , mypolls 0 +myconn 0 connecting thr bbdffb80 , thread 8949 , mypolls 0 +thr bbdffd00 , status 1 +connecting thr bbdffd00 , thread 8950 , mypolls 0 +myconn 0 connecting thr bbdffd00 , thread 8950 , mypolls 0 +thr bbdffe80 , status 1 +connecting thr bbdffe80 , thread 8951 , mypolls 0 +myconn 0 connecting thr bbdffe80 , thread 8951 , mypolls 0 +thr bbbfc000 , status 1 +connecting thr bbbfc000 , thread 8952 , mypolls 0 +myconn 0 connecting thr bbbfc000 , thread 8952 , mypolls 0 +thr bbbfc180 , status 1 +connecting thr bbbfc180 , thread 8953 , mypolls 0 +myconn 0 connecting thr bbbfc180 , thread 8953 , mypolls 0 +thr bbbfc300 , status 1 +connecting thr bbbfc300 , thread 8954 , mypolls 0 +myconn 0 connecting thr bbbfc300 , thread 8954 , mypolls 0 +thr bbbfc480 , status 1 +connecting thr bbbfc480 , thread 8955 , mypolls 0 +myconn 0 connecting thr bbbfc480 , thread 8955 , mypolls 0 +thr bbbfc600 , status 1 +connecting thr bbbfc600 , thread 8956 , mypolls 0 +myconn 0 connecting thr bbbfc600 , thread 8956 , mypolls 0 +thr bbbfc780 , status 1 +connecting thr bbbfc780 , thread 8957 , mypolls 0 +myconn 0 connecting thr bbbfc780 , thread 8957 , mypolls 0 +thr bbbfc900 , status 1 +connecting thr bbbfc900 , thread 8958 , mypolls 0 +myconn 0 connecting thr bbbfc900 , thread 8958 , mypolls 0 +thr bbbfca80 , status 1 +connecting thr bbbfca80 , thread 8959 , mypolls 0 +myconn 0 connecting thr bbbfca80 , thread 8959 , mypolls 0 +thr bbbfcc00 , status 1 +connecting thr bbbfcc00 , thread 8960 , mypolls 0 +myconn 0 connecting thr bbbfcc00 , thread 8960 , mypolls 0 +thr bbbfcd80 , status 1 +connecting thr bbbfcd80 , thread 8961 , mypolls 0 +myconn 0 connecting thr bbbfcd80 , thread 8961 , mypolls 0 +thr bbbfcf00 , status 1 +connecting thr bbbfcf00 , thread 8962 , mypolls 0 +myconn 0 connecting thr bbbfcf00 , thread 8962 , mypolls 0 +thr bbbfd080 , status 1 +connecting thr bbbfd080 , thread 8963 , mypolls 0 +myconn 0 connecting thr bbbfd080 , thread 8963 , mypolls 0 +thr bbbfd200 , status 1 +connecting thr bbbfd200 , thread 8964 , mypolls 0 +myconn 0 connecting thr bbbfd200 , thread 8964 , mypolls 0 +thr bbbfd380 , status 1 +connecting thr bbbfd380 , thread 8965 , mypolls 0 +myconn 0 connecting thr bbbfd380 , thread 8965 , mypolls 0 +thr bbbfd500 , status 1 +connecting thr bbbfd500 , thread 8966 , mypolls 0 +myconn 0 connecting thr bbbfd500 , thread 8966 , mypolls 0 +thr bbbfd680 , status 1 +connecting thr bbbfd680 , thread 8967 , mypolls 0 +myconn 0 connecting thr bbbfd680 , thread 8967 , mypolls 0 +thr bbbfd800 , status 1 +connecting thr bbbfd800 , thread 8968 , mypolls 0 +myconn 0 connecting thr bbbfd800 , thread 8968 , mypolls 0 +thr bbbfd980 , status 1 +connecting thr bbbfd980 , thread 8969 , mypolls 0 +myconn 0 connecting thr bbbfd980 , thread 8969 , mypolls 0 +thr bbbfdb00 , status 1 +connecting thr bbbfdb00 , thread 8970 , mypolls 0 +myconn 0 connecting thr bbbfdb00 , thread 8970 , mypolls 0 +thr bbbfdc80 , status 1 +connecting thr bbbfdc80 , thread 8971 , mypolls 0 +myconn 0 connecting thr bbbfdc80 , thread 8971 , mypolls 0 +thr bbbfde00 , status 1 +connecting thr bbbfde00 , thread 8972 , mypolls 0 +myconn 0 connecting thr bbbfde00 , thread 8972 , mypolls 0 +thr bbbfdf80 , status 1 +connecting thr bbbfdf80 , thread 8973 , mypolls 0 +myconn 0 connecting thr bbbfdf80 , thread 8973 , mypolls 0 +thr bbbfe100 , status 1 +connecting thr bbbfe100 , thread 8974 , mypolls 0 +myconn 0 connecting thr bbbfe100 , thread 8974 , mypolls 0 +thr bbbfe280 , status 1 +connecting thr bbbfe280 , thread 8975 , mypolls 0 +myconn 0 connecting thr bbbfe280 , thread 8975 , mypolls 0 +thr bbbfe400 , status 1 +connecting thr bbbfe400 , thread 8976 , mypolls 0 +myconn 0 connecting thr bbbfe400 , thread 8976 , mypolls 0 +thr bbbfe580 , status 1 +connecting thr bbbfe580 , thread 8977 , mypolls 0 +myconn 0 connecting thr bbbfe580 , thread 8977 , mypolls 0 +thr bbbfe700 , status 1 +connecting thr bbbfe700 , thread 8978 , mypolls 0 +myconn 0 connecting thr bbbfe700 , thread 8978 , mypolls 0 +thr bbbfe880 , status 1 +connecting thr bbbfe880 , thread 8979 , mypolls 0 +myconn 0 connecting thr bbbfe880 , thread 8979 , mypolls 0 +thr bbbfea00 , status 1 +connecting thr bbbfea00 , thread 8980 , mypolls 0 +myconn 0 connecting thr bbbfea00 , thread 8980 , mypolls 0 +thr bbbfeb80 , status 1 +connecting thr bbbfeb80 , thread 8981 , mypolls 0 +myconn 0 connecting thr bbbfeb80 , thread 8981 , mypolls 0 +thr bbbfed00 , status 1 +connecting thr bbbfed00 , thread 8982 , mypolls 0 +myconn 0 connecting thr bbbfed00 , thread 8982 , mypolls 0 +thr bbbfee80 , status 1 +connecting thr bbbfee80 , thread 8983 , mypolls 0 +myconn 0 connecting thr bbbfee80 , thread 8983 , mypolls 0 +thr bb6d6000 , status 1 +connecting thr bb6d6000 , thread 8984 , mypolls 0 +myconn 0 connecting thr bb6d6000 , thread 8984 , mypolls 0 +thr bb6d6180 , status 1 +connecting thr bb6d6180 , thread 8985 , mypolls 0 +myconn 0 connecting thr bb6d6180 , thread 8985 , mypolls 0 +thr bb6d6300 , status 1 +connecting thr bb6d6300 , thread 8986 , mypolls 0 +myconn 0 connecting thr bb6d6300 , thread 8986 , mypolls 0 +thr bb6d6480 , status 1 +connecting thr bb6d6480 , thread 8987 , mypolls 0 +myconn 0 connecting thr bb6d6480 , thread 8987 , mypolls 0 +thr bb6d6600 , status 1 +connecting thr bb6d6600 , thread 8988 , mypolls 0 +myconn 0 connecting thr bb6d6600 , thread 8988 , mypolls 0 +thr bb6d6780 , status 1 +connecting thr bb6d6780 , thread 8989 , mypolls 0 +myconn 0 connecting thr bb6d6780 , thread 8989 , mypolls 0 +thr bb6d6900 , status 1 +connecting thr bb6d6900 , thread 8990 , mypolls 0 +myconn 0 connecting thr bb6d6900 , thread 8990 , mypolls 0 +thr bb6d6a80 , status 1 +connecting thr bb6d6a80 , thread 8991 , mypolls 0 +myconn 0 connecting thr bb6d6a80 , thread 8991 , mypolls 0 +thr bb6d6c00 , status 1 +connecting thr bb6d6c00 , thread 8992 , mypolls 0 +myconn 0 connecting thr bb6d6c00 , thread 8992 , mypolls 0 +thr bb6d6d80 , status 1 +connecting thr bb6d6d80 , thread 8993 , mypolls 0 +myconn 0 connecting thr bb6d6d80 , thread 8993 , mypolls 0 +thr bb6d6f00 , status 1 +connecting thr bb6d6f00 , thread 8994 , mypolls 0 +myconn 0 connecting thr bb6d6f00 , thread 8994 , mypolls 0 +thr bb6d7080 , status 1 +connecting thr bb6d7080 , thread 8995 , mypolls 0 +myconn 0 connecting thr bb6d7080 , thread 8995 , mypolls 0 +thr bb6d7200 , status 1 +connecting thr bb6d7200 , thread 8996 , mypolls 0 +myconn 0 connecting thr bb6d7200 , thread 8996 , mypolls 0 +thr bb6d7380 , status 1 +connecting thr bb6d7380 , thread 8997 , mypolls 0 +myconn 0 connecting thr bb6d7380 , thread 8997 , mypolls 0 +thr bb6d7500 , status 1 +connecting thr bb6d7500 , thread 8998 , mypolls 0 +myconn 0 connecting thr bb6d7500 , thread 8998 , mypolls 0 +thr bb6d7680 , status 1 +connecting thr bb6d7680 , thread 8999 , mypolls 0 +myconn 0 connecting thr bb6d7680 , thread 8999 , mypolls 0 +thr bb6d7800 , status 1 +connecting thr bb6d7800 , thread 9000 , mypolls 0 +myconn 0 connecting thr bb6d7800 , thread 9000 , mypolls 0 +thr bb6d7980 , status 1 +connecting thr bb6d7980 , thread 9001 , mypolls 0 +myconn 0 connecting thr bb6d7980 , thread 9001 , mypolls 0 +thr bb6d7b00 , status 1 +connecting thr bb6d7b00 , thread 9002 , mypolls 0 +myconn 0 connecting thr bb6d7b00 , thread 9002 , mypolls 0 +thr bb6d7c80 , status 1 +connecting thr bb6d7c80 , thread 9003 , mypolls 0 +myconn 0 connecting thr bb6d7c80 , thread 9003 , mypolls 0 +thr bb6d7e00 , status 1 +connecting thr bb6d7e00 , thread 9004 , mypolls 0 +myconn 0 connecting thr bb6d7e00 , thread 9004 , mypolls 0 +thr bb6d7f80 , status 1 +connecting thr bb6d7f80 , thread 9005 , mypolls 0 +myconn 0 connecting thr bb6d7f80 , thread 9005 , mypolls 0 +thr bb6d8100 , status 1 +connecting thr bb6d8100 , thread 9006 , mypolls 0 +myconn 0 connecting thr bb6d8100 , thread 9006 , mypolls 0 +thr bb6d8280 , status 1 +connecting thr bb6d8280 , thread 9007 , mypolls 0 +myconn 0 connecting thr bb6d8280 , thread 9007 , mypolls 0 +thr bb6d8400 , status 1 +connecting thr bb6d8400 , thread 9008 , mypolls 0 +myconn 0 connecting thr bb6d8400 , thread 9008 , mypolls 0 +thr bb6d8580 , status 1 +connecting thr bb6d8580 , thread 9009 , mypolls 0 +myconn 0 connecting thr bb6d8580 , thread 9009 , mypolls 0 +thr bb6d8700 , status 1 +connecting thr bb6d8700 , thread 9010 , mypolls 0 +myconn 0 connecting thr bb6d8700 , thread 9010 , mypolls 0 +thr bb6d8880 , status 1 +connecting thr bb6d8880 , thread 9011 , mypolls 0 +myconn 0 connecting thr bb6d8880 , thread 9011 , mypolls 0 +thr bb6d8a00 , status 1 +connecting thr bb6d8a00 , thread 9012 , mypolls 0 +myconn 0 connecting thr bb6d8a00 , thread 9012 , mypolls 0 +thr bb6d8b80 , status 1 +connecting thr bb6d8b80 , thread 9013 , mypolls 0 +myconn 0 connecting thr bb6d8b80 , thread 9013 , mypolls 0 +thr bb6d8d00 , status 1 +connecting thr bb6d8d00 , thread 9014 , mypolls 0 +myconn 0 connecting thr bb6d8d00 , thread 9014 , mypolls 0 +thr bb6d8e80 , status 1 +connecting thr bb6d8e80 , thread 9015 , mypolls 0 +myconn 0 connecting thr bb6d8e80 , thread 9015 , mypolls 0 +thr bb53f000 , status 1 +connecting thr bb53f000 , thread 9016 , mypolls 0 +myconn 0 connecting thr bb53f000 , thread 9016 , mypolls 0 +thr bb53f180 , status 1 +connecting thr bb53f180 , thread 9017 , mypolls 0 +myconn 0 connecting thr bb53f180 , thread 9017 , mypolls 0 +thr bb53f300 , status 1 +connecting thr bb53f300 , thread 9018 , mypolls 0 +myconn 0 connecting thr bb53f300 , thread 9018 , mypolls 0 +thr bb53f480 , status 1 +connecting thr bb53f480 , thread 9019 , mypolls 0 +myconn 0 connecting thr bb53f480 , thread 9019 , mypolls 0 +thr bb53f600 , status 1 +connecting thr bb53f600 , thread 9020 , mypolls 0 +myconn 0 connecting thr bb53f600 , thread 9020 , mypolls 0 +thr bb53f780 , status 1 +connecting thr bb53f780 , thread 9021 , mypolls 0 +myconn 0 connecting thr bb53f780 , thread 9021 , mypolls 0 +thr bb53f900 , status 1 +connecting thr bb53f900 , thread 9022 , mypolls 0 +myconn 0 connecting thr bb53f900 , thread 9022 , mypolls 0 +thr bb53fa80 , status 1 +connecting thr bb53fa80 , thread 9023 , mypolls 0 +myconn 0 connecting thr bb53fa80 , thread 9023 , mypolls 0 +thr bb53fc00 , status 1 +connecting thr bb53fc00 , thread 9024 , mypolls 0 +myconn 0 connecting thr bb53fc00 , thread 9024 , mypolls 0 +thr bb53fd80 , status 1 +connecting thr bb53fd80 , thread 9025 , mypolls 0 +myconn 0 connecting thr bb53fd80 , thread 9025 , mypolls 0 +thr bb53ff00 , status 1 +connecting thr bb53ff00 , thread 9026 , mypolls 0 +myconn 0 connecting thr bb53ff00 , thread 9026 , mypolls 0 +thr bb540080 , status 1 +connecting thr bb540080 , thread 9027 , mypolls 0 +myconn 0 connecting thr bb540080 , thread 9027 , mypolls 0 +thr bb540200 , status 1 +connecting thr bb540200 , thread 9028 , mypolls 0 +myconn 0 connecting thr bb540200 , thread 9028 , mypolls 0 +thr bb540380 , status 1 +connecting thr bb540380 , thread 9029 , mypolls 0 +myconn 0 connecting thr bb540380 , thread 9029 , mypolls 0 +thr bb540500 , status 1 +connecting thr bb540500 , thread 9030 , mypolls 0 +myconn 0 connecting thr bb540500 , thread 9030 , mypolls 0 +thr bb540680 , status 1 +connecting thr bb540680 , thread 9031 , mypolls 0 +myconn 0 connecting thr bb540680 , thread 9031 , mypolls 0 +thr bb540800 , status 1 +connecting thr bb540800 , thread 9032 , mypolls 0 +myconn 0 connecting thr bb540800 , thread 9032 , mypolls 0 +thr bb540980 , status 1 +connecting thr bb540980 , thread 9033 , mypolls 0 +myconn 0 connecting thr bb540980 , thread 9033 , mypolls 0 +thr bb540b00 , status 1 +connecting thr bb540b00 , thread 9034 , mypolls 0 +myconn 0 connecting thr bb540b00 , thread 9034 , mypolls 0 +thr bb540c80 , status 1 +connecting thr bb540c80 , thread 9035 , mypolls 0 +myconn 0 connecting thr bb540c80 , thread 9035 , mypolls 0 +thr bb540e00 , status 1 +connecting thr bb540e00 , thread 9036 , mypolls 0 +myconn 0 connecting thr bb540e00 , thread 9036 , mypolls 0 +thr bb540f80 , status 1 +connecting thr bb540f80 , thread 9037 , mypolls 0 +myconn 0 connecting thr bb540f80 , thread 9037 , mypolls 0 +thr bb541100 , status 1 +connecting thr bb541100 , thread 9038 , mypolls 0 +myconn 0 connecting thr bb541100 , thread 9038 , mypolls 0 +thr bb541280 , status 1 +connecting thr bb541280 , thread 9039 , mypolls 0 +myconn 0 connecting thr bb541280 , thread 9039 , mypolls 0 +thr bb541400 , status 1 +connecting thr bb541400 , thread 9040 , mypolls 0 +myconn 0 connecting thr bb541400 , thread 9040 , mypolls 0 +thr bb541580 , status 1 +connecting thr bb541580 , thread 9041 , mypolls 0 +myconn 0 connecting thr bb541580 , thread 9041 , mypolls 0 +thr bb541700 , status 1 +connecting thr bb541700 , thread 9042 , mypolls 0 +myconn 0 connecting thr bb541700 , thread 9042 , mypolls 0 +thr bb541880 , status 1 +connecting thr bb541880 , thread 9043 , mypolls 0 +myconn 0 connecting thr bb541880 , thread 9043 , mypolls 0 +thr bb541a00 , status 1 +connecting thr bb541a00 , thread 9044 , mypolls 0 +myconn 0 connecting thr bb541a00 , thread 9044 , mypolls 0 +thr bb541b80 , status 1 +connecting thr bb541b80 , thread 9045 , mypolls 0 +myconn 0 connecting thr bb541b80 , thread 9045 , mypolls 0 +thr bb541d00 , status 1 +connecting thr bb541d00 , thread 9046 , mypolls 0 +myconn 0 connecting thr bb541d00 , thread 9046 , mypolls 0 +thr bb541e80 , status 1 +connecting thr bb541e80 , thread 9047 , mypolls 0 +myconn 0 connecting thr bb541e80 , thread 9047 , mypolls 0 +thr bb39f000 , status 1 +connecting thr bb39f000 , thread 9048 , mypolls 0 +myconn 0 connecting thr bb39f000 , thread 9048 , mypolls 0 +thr bb39f180 , status 1 +connecting thr bb39f180 , thread 9049 , mypolls 0 +myconn 0 connecting thr bb39f180 , thread 9049 , mypolls 0 +thr bb39f300 , status 1 +connecting thr bb39f300 , thread 9050 , mypolls 0 +myconn 0 connecting thr bb39f300 , thread 9050 , mypolls 0 +thr bb39f480 , status 1 +connecting thr bb39f480 , thread 9051 , mypolls 0 +myconn 0 connecting thr bb39f480 , thread 9051 , mypolls 0 +thr bb39f600 , status 1 +connecting thr bb39f600 , thread 9052 , mypolls 0 +myconn 0 connecting thr bb39f600 , thread 9052 , mypolls 0 +thr bb39f780 , status 1 +connecting thr bb39f780 , thread 9053 , mypolls 0 +myconn 0 connecting thr bb39f780 , thread 9053 , mypolls 0 +thr bb39f900 , status 1 +connecting thr bb39f900 , thread 9054 , mypolls 0 +myconn 0 connecting thr bb39f900 , thread 9054 , mypolls 0 +thr bb39fa80 , status 1 +connecting thr bb39fa80 , thread 9055 , mypolls 0 +myconn 0 connecting thr bb39fa80 , thread 9055 , mypolls 0 +thr bb39fc00 , status 1 +connecting thr bb39fc00 , thread 9056 , mypolls 0 +myconn 0 connecting thr bb39fc00 , thread 9056 , mypolls 0 +thr bb39fd80 , status 1 +connecting thr bb39fd80 , thread 9057 , mypolls 0 +myconn 0 connecting thr bb39fd80 , thread 9057 , mypolls 0 +thr bb39ff00 , status 1 +connecting thr bb39ff00 , thread 9058 , mypolls 0 +myconn 0 connecting thr bb39ff00 , thread 9058 , mypolls 0 +thr bb3a0080 , status 1 +connecting thr bb3a0080 , thread 9059 , mypolls 0 +myconn 0 connecting thr bb3a0080 , thread 9059 , mypolls 0 +thr bb3a0200 , status 1 +connecting thr bb3a0200 , thread 9060 , mypolls 0 +myconn 0 connecting thr bb3a0200 , thread 9060 , mypolls 0 +thr bb3a0380 , status 1 +connecting thr bb3a0380 , thread 9061 , mypolls 0 +myconn 0 connecting thr bb3a0380 , thread 9061 , mypolls 0 +thr bb3a0500 , status 1 +connecting thr bb3a0500 , thread 9062 , mypolls 0 +myconn 0 connecting thr bb3a0500 , thread 9062 , mypolls 0 +thr bb3a0680 , status 1 +connecting thr bb3a0680 , thread 9063 , mypolls 0 +myconn 0 connecting thr bb3a0680 , thread 9063 , mypolls 0 +thr bb3a0800 , status 1 +connecting thr bb3a0800 , thread 9064 , mypolls 0 +myconn 0 connecting thr bb3a0800 , thread 9064 , mypolls 0 +thr bb3a0980 , status 1 +connecting thr bb3a0980 , thread 9065 , mypolls 0 +myconn 0 connecting thr bb3a0980 , thread 9065 , mypolls 0 +thr bb3a0b00 , status 1 +connecting thr bb3a0b00 , thread 9066 , mypolls 0 +myconn 0 connecting thr bb3a0b00 , thread 9066 , mypolls 0 +thr bb3a0c80 , status 1 +connecting thr bb3a0c80 , thread 9067 , mypolls 0 +myconn 0 connecting thr bb3a0c80 , thread 9067 , mypolls 0 +thr bb3a0e00 , status 1 +connecting thr bb3a0e00 , thread 9068 , mypolls 0 +myconn 0 connecting thr bb3a0e00 , thread 9068 , mypolls 0 +thr bb3a0f80 , status 1 +connecting thr bb3a0f80 , thread 9069 , mypolls 0 +myconn 0 connecting thr bb3a0f80 , thread 9069 , mypolls 0 +thr bb3a1100 , status 1 +connecting thr bb3a1100 , thread 9070 , mypolls 0 +myconn 0 connecting thr bb3a1100 , thread 9070 , mypolls 0 +thr bb3a1280 , status 1 +connecting thr bb3a1280 , thread 9071 , mypolls 0 +myconn 0 connecting thr bb3a1280 , thread 9071 , mypolls 0 +thr bb3a1400 , status 1 +connecting thr bb3a1400 , thread 9072 , mypolls 0 +myconn 0 connecting thr bb3a1400 , thread 9072 , mypolls 0 +thr bb3a1580 , status 1 +connecting thr bb3a1580 , thread 9073 , mypolls 0 +myconn 0 connecting thr bb3a1580 , thread 9073 , mypolls 0 +thr bb3a1700 , status 1 +connecting thr bb3a1700 , thread 9074 , mypolls 0 +myconn 0 connecting thr bb3a1700 , thread 9074 , mypolls 0 +thr bb3a1880 , status 1 +connecting thr bb3a1880 , thread 9075 , mypolls 0 +myconn 0 connecting thr bb3a1880 , thread 9075 , mypolls 0 +thr bb3a1a00 , status 1 +connecting thr bb3a1a00 , thread 9076 , mypolls 0 +myconn 0 connecting thr bb3a1a00 , thread 9076 , mypolls 0 +thr bb3a1b80 , status 1 +connecting thr bb3a1b80 , thread 9077 , mypolls 0 +myconn 0 connecting thr bb3a1b80 , thread 9077 , mypolls 0 +thr bb3a1d00 , status 1 +connecting thr bb3a1d00 , thread 9078 , mypolls 0 +myconn 0 connecting thr bb3a1d00 , thread 9078 , mypolls 0 +thr bb3a1e80 , status 1 +connecting thr bb3a1e80 , thread 9079 , mypolls 0 +myconn 0 connecting thr bb3a1e80 , thread 9079 , mypolls 0 +thr bb1f7000 , status 1 +connecting thr bb1f7000 , thread 9080 , mypolls 0 +myconn 0 connecting thr bb1f7000 , thread 9080 , mypolls 0 +thr bb1f7180 , status 1 +connecting thr bb1f7180 , thread 9081 , mypolls 0 +myconn 0 connecting thr bb1f7180 , thread 9081 , mypolls 0 +thr bb1f7300 , status 1 +connecting thr bb1f7300 , thread 9082 , mypolls 0 +myconn 0 connecting thr bb1f7300 , thread 9082 , mypolls 0 +thr bb1f7480 , status 1 +connecting thr bb1f7480 , thread 9083 , mypolls 0 +myconn 0 connecting thr bb1f7480 , thread 9083 , mypolls 0 +thr bb1f7600 , status 1 +connecting thr bb1f7600 , thread 9084 , mypolls 0 +myconn 0 connecting thr bb1f7600 , thread 9084 , mypolls 0 +thr bb1f7780 , status 1 +connecting thr bb1f7780 , thread 9085 , mypolls 0 +myconn 0 connecting thr bb1f7780 , thread 9085 , mypolls 0 +thr bb1f7900 , status 1 +connecting thr bb1f7900 , thread 9086 , mypolls 0 +myconn 0 connecting thr bb1f7900 , thread 9086 , mypolls 0 +thr bb1f7a80 , status 1 +connecting thr bb1f7a80 , thread 9087 , mypolls 0 +myconn 0 connecting thr bb1f7a80 , thread 9087 , mypolls 0 +thr bb1f7c00 , status 1 +connecting thr bb1f7c00 , thread 9088 , mypolls 0 +myconn 0 connecting thr bb1f7c00 , thread 9088 , mypolls 0 +thr bb1f7d80 , status 1 +connecting thr bb1f7d80 , thread 9089 , mypolls 0 +myconn 0 connecting thr bb1f7d80 , thread 9089 , mypolls 0 +thr bb1f7f00 , status 1 +connecting thr bb1f7f00 , thread 9090 , mypolls 0 +myconn 0 connecting thr bb1f7f00 , thread 9090 , mypolls 0 +thr bb1f8080 , status 1 +connecting thr bb1f8080 , thread 9091 , mypolls 0 +myconn 0 connecting thr bb1f8080 , thread 9091 , mypolls 0 +thr bb1f8200 , status 1 +connecting thr bb1f8200 , thread 9092 , mypolls 0 +myconn 0 connecting thr bb1f8200 , thread 9092 , mypolls 0 +thr bb1f8380 , status 1 +connecting thr bb1f8380 , thread 9093 , mypolls 0 +myconn 0 connecting thr bb1f8380 , thread 9093 , mypolls 0 +thr bb1f8500 , status 1 +connecting thr bb1f8500 , thread 9094 , mypolls 0 +myconn 0 connecting thr bb1f8500 , thread 9094 , mypolls 0 +thr bb1f8680 , status 1 +connecting thr bb1f8680 , thread 9095 , mypolls 0 +myconn 0 connecting thr bb1f8680 , thread 9095 , mypolls 0 +thr bb1f8800 , status 1 +connecting thr bb1f8800 , thread 9096 , mypolls 0 +myconn 0 connecting thr bb1f8800 , thread 9096 , mypolls 0 +thr bb1f8980 , status 1 +connecting thr bb1f8980 , thread 9097 , mypolls 0 +myconn 0 connecting thr bb1f8980 , thread 9097 , mypolls 0 +thr bb1f8b00 , status 1 +connecting thr bb1f8b00 , thread 9098 , mypolls 0 +myconn 0 connecting thr bb1f8b00 , thread 9098 , mypolls 0 +thr bb1f8c80 , status 1 +connecting thr bb1f8c80 , thread 9099 , mypolls 0 +myconn 0 connecting thr bb1f8c80 , thread 9099 , mypolls 0 +thr bb1f8e00 , status 1 +connecting thr bb1f8e00 , thread 9100 , mypolls 0 +myconn 0 connecting thr bb1f8e00 , thread 9100 , mypolls 0 +thr bb1f8f80 , status 1 +connecting thr bb1f8f80 , thread 9101 , mypolls 0 +myconn 0 connecting thr bb1f8f80 , thread 9101 , mypolls 0 +thr bb1f9100 , status 1 +connecting thr bb1f9100 , thread 9102 , mypolls 0 +myconn 0 connecting thr bb1f9100 , thread 9102 , mypolls 0 +thr bb1f9280 , status 1 +connecting thr bb1f9280 , thread 9103 , mypolls 0 +myconn 0 connecting thr bb1f9280 , thread 9103 , mypolls 0 +thr bb1f9400 , status 1 +connecting thr bb1f9400 , thread 9104 , mypolls 0 +myconn 0 connecting thr bb1f9400 , thread 9104 , mypolls 0 +thr bb1f9580 , status 1 +connecting thr bb1f9580 , thread 9105 , mypolls 0 +myconn 0 connecting thr bb1f9580 , thread 9105 , mypolls 0 +thr bb1f9700 , status 1 +connecting thr bb1f9700 , thread 9106 , mypolls 0 +myconn 0 connecting thr bb1f9700 , thread 9106 , mypolls 0 +thr bb1f9880 , status 1 +connecting thr bb1f9880 , thread 9107 , mypolls 0 +myconn 0 connecting thr bb1f9880 , thread 9107 , mypolls 0 +thr bb1f9a00 , status 1 +connecting thr bb1f9a00 , thread 9108 , mypolls 0 +myconn 0 connecting thr bb1f9a00 , thread 9108 , mypolls 0 +thr bb1f9b80 , status 1 +connecting thr bb1f9b80 , thread 9109 , mypolls 0 +myconn 0 connecting thr bb1f9b80 , thread 9109 , mypolls 0 +thr bb1f9d00 , status 1 +connecting thr bb1f9d00 , thread 9110 , mypolls 0 +myconn 0 connecting thr bb1f9d00 , thread 9110 , mypolls 0 +thr bb1f9e80 , status 1 +connecting thr bb1f9e80 , thread 9111 , mypolls 0 +myconn 0 connecting thr bb1f9e80 , thread 9111 , mypolls 0 +thr baff8000 , status 1 +connecting thr baff8000 , thread 9112 , mypolls 0 +myconn 0 connecting thr baff8000 , thread 9112 , mypolls 0 +thr baff8180 , status 1 +connecting thr baff8180 , thread 9113 , mypolls 0 +myconn 0 connecting thr baff8180 , thread 9113 , mypolls 0 +thr baff8300 , status 1 +connecting thr baff8300 , thread 9114 , mypolls 0 +myconn 0 connecting thr baff8300 , thread 9114 , mypolls 0 +thr baff8480 , status 1 +connecting thr baff8480 , thread 9115 , mypolls 0 +myconn 0 connecting thr baff8480 , thread 9115 , mypolls 0 +thr baff8600 , status 1 +connecting thr baff8600 , thread 9116 , mypolls 0 +myconn 0 connecting thr baff8600 , thread 9116 , mypolls 0 +thr baff8780 , status 1 +connecting thr baff8780 , thread 9117 , mypolls 0 +myconn 0 connecting thr baff8780 , thread 9117 , mypolls 0 +thr baff8900 , status 1 +connecting thr baff8900 , thread 9118 , mypolls 0 +myconn 0 connecting thr baff8900 , thread 9118 , mypolls 0 +thr baff8a80 , status 1 +connecting thr baff8a80 , thread 9119 , mypolls 0 +myconn 0 connecting thr baff8a80 , thread 9119 , mypolls 0 +thr baff8c00 , status 1 +connecting thr baff8c00 , thread 9120 , mypolls 0 +myconn 0 connecting thr baff8c00 , thread 9120 , mypolls 0 +thr baff8d80 , status 1 +connecting thr baff8d80 , thread 9121 , mypolls 0 +myconn 0 connecting thr baff8d80 , thread 9121 , mypolls 0 +thr baff8f00 , status 1 +connecting thr baff8f00 , thread 9122 , mypolls 0 +myconn 0 connecting thr baff8f00 , thread 9122 , mypolls 0 +thr baff9080 , status 1 +connecting thr baff9080 , thread 9123 , mypolls 0 +myconn 0 connecting thr baff9080 , thread 9123 , mypolls 0 +thr baff9200 , status 1 +connecting thr baff9200 , thread 9124 , mypolls 0 +myconn 0 connecting thr baff9200 , thread 9124 , mypolls 0 +thr baff9380 , status 1 +connecting thr baff9380 , thread 9125 , mypolls 0 +myconn 0 connecting thr baff9380 , thread 9125 , mypolls 0 +thr baff9500 , status 1 +connecting thr baff9500 , thread 9126 , mypolls 0 +myconn 0 connecting thr baff9500 , thread 9126 , mypolls 0 +thr baff9680 , status 1 +connecting thr baff9680 , thread 9127 , mypolls 0 +myconn 0 connecting thr baff9680 , thread 9127 , mypolls 0 +thr baff9800 , status 1 +connecting thr baff9800 , thread 9128 , mypolls 0 +myconn 0 connecting thr baff9800 , thread 9128 , mypolls 0 +thr baff9980 , status 1 +connecting thr baff9980 , thread 9129 , mypolls 0 +myconn 0 connecting thr baff9980 , thread 9129 , mypolls 0 +thr baff9b00 , status 1 +connecting thr baff9b00 , thread 9130 , mypolls 0 +myconn 0 connecting thr baff9b00 , thread 9130 , mypolls 0 +thr baff9c80 , status 1 +connecting thr baff9c80 , thread 9131 , mypolls 0 +myconn 0 connecting thr baff9c80 , thread 9131 , mypolls 0 +thr baff9e00 , status 1 +connecting thr baff9e00 , thread 9132 , mypolls 0 +myconn 0 connecting thr baff9e00 , thread 9132 , mypolls 0 +thr baff9f80 , status 1 +connecting thr baff9f80 , thread 9133 , mypolls 0 +myconn 0 connecting thr baff9f80 , thread 9133 , mypolls 0 +thr baffa100 , status 1 +connecting thr baffa100 , thread 9134 , mypolls 0 +myconn 0 connecting thr baffa100 , thread 9134 , mypolls 0 +thr baffa280 , status 1 +connecting thr baffa280 , thread 9135 , mypolls 0 +myconn 0 connecting thr baffa280 , thread 9135 , mypolls 0 +thr baffa400 , status 1 +connecting thr baffa400 , thread 9136 , mypolls 0 +myconn 0 connecting thr baffa400 , thread 9136 , mypolls 0 +thr baffa580 , status 1 +connecting thr baffa580 , thread 9137 , mypolls 0 +myconn 0 connecting thr baffa580 , thread 9137 , mypolls 0 +thr baffa700 , status 1 +connecting thr baffa700 , thread 9138 , mypolls 0 +myconn 0 connecting thr baffa700 , thread 9138 , mypolls 0 +thr baffa880 , status 1 +connecting thr baffa880 , thread 9139 , mypolls 0 +myconn 0 connecting thr baffa880 , thread 9139 , mypolls 0 +thr baffaa00 , status 1 +connecting thr baffaa00 , thread 9140 , mypolls 0 +myconn 0 connecting thr baffaa00 , thread 9140 , mypolls 0 +thr baffab80 , status 1 +connecting thr baffab80 , thread 9141 , mypolls 0 +myconn 0 connecting thr baffab80 , thread 9141 , mypolls 0 +thr baffad00 , status 1 +connecting thr baffad00 , thread 9142 , mypolls 0 +myconn 0 connecting thr baffad00 , thread 9142 , mypolls 0 +thr baffae80 , status 1 +connecting thr baffae80 , thread 9143 , mypolls 0 +myconn 0 connecting thr baffae80 , thread 9143 , mypolls 0 +thr baad3000 , status 1 +connecting thr baad3000 , thread 9144 , mypolls 0 +myconn 0 connecting thr baad3000 , thread 9144 , mypolls 0 +thr baad3180 , status 1 +connecting thr baad3180 , thread 9145 , mypolls 0 +myconn 0 connecting thr baad3180 , thread 9145 , mypolls 0 +thr baad3300 , status 1 +connecting thr baad3300 , thread 9146 , mypolls 0 +myconn 0 connecting thr baad3300 , thread 9146 , mypolls 0 +thr baad3480 , status 1 +connecting thr baad3480 , thread 9147 , mypolls 0 +myconn 0 connecting thr baad3480 , thread 9147 , mypolls 0 +thr baad3600 , status 1 +connecting thr baad3600 , thread 9148 , mypolls 0 +myconn 0 connecting thr baad3600 , thread 9148 , mypolls 0 +thr baad3780 , status 1 +connecting thr baad3780 , thread 9149 , mypolls 0 +myconn 0 connecting thr baad3780 , thread 9149 , mypolls 0 +thr baad3900 , status 1 +connecting thr baad3900 , thread 9150 , mypolls 0 +myconn 0 connecting thr baad3900 , thread 9150 , mypolls 0 +thr baad3a80 , status 1 +connecting thr baad3a80 , thread 9151 , mypolls 0 +myconn 0 connecting thr baad3a80 , thread 9151 , mypolls 0 +thr baad3c00 , status 1 +connecting thr baad3c00 , thread 9152 , mypolls 0 +myconn 0 connecting thr baad3c00 , thread 9152 , mypolls 0 +thr baad3d80 , status 1 +connecting thr baad3d80 , thread 9153 , mypolls 0 +myconn 0 connecting thr baad3d80 , thread 9153 , mypolls 0 +thr baad3f00 , status 1 +connecting thr baad3f00 , thread 9154 , mypolls 0 +myconn 0 connecting thr baad3f00 , thread 9154 , mypolls 0 +thr baad4080 , status 1 +connecting thr baad4080 , thread 9155 , mypolls 0 +myconn 0 connecting thr baad4080 , thread 9155 , mypolls 0 +thr baad4200 , status 1 +connecting thr baad4200 , thread 9156 , mypolls 0 +myconn 0 connecting thr baad4200 , thread 9156 , mypolls 0 +thr baad4380 , status 1 +connecting thr baad4380 , thread 9157 , mypolls 0 +myconn 0 connecting thr baad4380 , thread 9157 , mypolls 0 +thr baad4500 , status 1 +connecting thr baad4500 , thread 9158 , mypolls 0 +myconn 0 connecting thr baad4500 , thread 9158 , mypolls 0 +thr baad4680 , status 1 +connecting thr baad4680 , thread 9159 , mypolls 0 +myconn 0 connecting thr baad4680 , thread 9159 , mypolls 0 +thr baad4800 , status 1 +connecting thr baad4800 , thread 9160 , mypolls 0 +myconn 0 connecting thr baad4800 , thread 9160 , mypolls 0 +thr baad4980 , status 1 +connecting thr baad4980 , thread 9161 , mypolls 0 +myconn 0 connecting thr baad4980 , thread 9161 , mypolls 0 +thr baad4b00 , status 1 +connecting thr baad4b00 , thread 9162 , mypolls 0 +myconn 0 connecting thr baad4b00 , thread 9162 , mypolls 0 +thr baad4c80 , status 1 +connecting thr baad4c80 , thread 9163 , mypolls 0 +myconn 0 connecting thr baad4c80 , thread 9163 , mypolls 0 +thr baad4e00 , status 1 +connecting thr baad4e00 , thread 9164 , mypolls 0 +myconn 0 connecting thr baad4e00 , thread 9164 , mypolls 0 +thr baad4f80 , status 1 +connecting thr baad4f80 , thread 9165 , mypolls 0 +myconn 0 connecting thr baad4f80 , thread 9165 , mypolls 0 +thr baad5100 , status 1 +connecting thr baad5100 , thread 9166 , mypolls 0 +myconn 0 connecting thr baad5100 , thread 9166 , mypolls 0 +thr baad5280 , status 1 +connecting thr baad5280 , thread 9167 , mypolls 0 +myconn 0 connecting thr baad5280 , thread 9167 , mypolls 0 +thr baad5400 , status 1 +connecting thr baad5400 , thread 9168 , mypolls 0 +myconn 0 connecting thr baad5400 , thread 9168 , mypolls 0 +thr baad5580 , status 1 +connecting thr baad5580 , thread 9169 , mypolls 0 +myconn 0 connecting thr baad5580 , thread 9169 , mypolls 0 +thr baad5700 , status 1 +connecting thr baad5700 , thread 9170 , mypolls 0 +myconn 0 connecting thr baad5700 , thread 9170 , mypolls 0 +thr baad5880 , status 1 +connecting thr baad5880 , thread 9171 , mypolls 0 +myconn 0 connecting thr baad5880 , thread 9171 , mypolls 0 +thr baad5a00 , status 1 +connecting thr baad5a00 , thread 9172 , mypolls 0 +myconn 0 connecting thr baad5a00 , thread 9172 , mypolls 0 +thr baad5b80 , status 1 +connecting thr baad5b80 , thread 9173 , mypolls 0 +myconn 0 connecting thr baad5b80 , thread 9173 , mypolls 0 +thr baad5d00 , status 1 +connecting thr baad5d00 , thread 9174 , mypolls 0 +myconn 0 connecting thr baad5d00 , thread 9174 , mypolls 0 +thr baad5e80 , status 1 +connecting thr baad5e80 , thread 9175 , mypolls 0 +myconn 0 connecting thr baad5e80 , thread 9175 , mypolls 0 +thr ba933000 , status 1 +connecting thr ba933000 , thread 9176 , mypolls 0 +myconn 0 connecting thr ba933000 , thread 9176 , mypolls 0 +thr ba933180 , status 1 +connecting thr ba933180 , thread 9177 , mypolls 0 +myconn 0 connecting thr ba933180 , thread 9177 , mypolls 0 +thr ba933300 , status 1 +connecting thr ba933300 , thread 9178 , mypolls 0 +myconn 0 connecting thr ba933300 , thread 9178 , mypolls 0 +thr ba933480 , status 1 +connecting thr ba933480 , thread 9179 , mypolls 0 +myconn 0 connecting thr ba933480 , thread 9179 , mypolls 0 +thr ba933600 , status 1 +connecting thr ba933600 , thread 9180 , mypolls 0 +myconn 0 connecting thr ba933600 , thread 9180 , mypolls 0 +thr ba933780 , status 1 +connecting thr ba933780 , thread 9181 , mypolls 0 +myconn 0 connecting thr ba933780 , thread 9181 , mypolls 0 +thr ba933900 , status 1 +connecting thr ba933900 , thread 9182 , mypolls 0 +myconn 0 connecting thr ba933900 , thread 9182 , mypolls 0 +thr ba933a80 , status 1 +connecting thr ba933a80 , thread 9183 , mypolls 0 +myconn 0 connecting thr ba933a80 , thread 9183 , mypolls 0 +thr ba933c00 , status 1 +connecting thr ba933c00 , thread 9184 , mypolls 0 +myconn 0 connecting thr ba933c00 , thread 9184 , mypolls 0 +thr ba933d80 , status 1 +connecting thr ba933d80 , thread 9185 , mypolls 0 +myconn 0 connecting thr ba933d80 , thread 9185 , mypolls 0 +thr ba933f00 , status 1 +connecting thr ba933f00 , thread 9186 , mypolls 0 +myconn 0 connecting thr ba933f00 , thread 9186 , mypolls 0 +thr ba934080 , status 1 +connecting thr ba934080 , thread 9187 , mypolls 0 +myconn 0 connecting thr ba934080 , thread 9187 , mypolls 0 +thr ba934200 , status 1 +connecting thr ba934200 , thread 9188 , mypolls 0 +myconn 0 connecting thr ba934200 , thread 9188 , mypolls 0 +thr ba934380 , status 1 +connecting thr ba934380 , thread 9189 , mypolls 0 +myconn 0 connecting thr ba934380 , thread 9189 , mypolls 0 +thr ba934500 , status 1 +connecting thr ba934500 , thread 9190 , mypolls 0 +myconn 0 connecting thr ba934500 , thread 9190 , mypolls 0 +thr ba934680 , status 1 +connecting thr ba934680 , thread 9191 , mypolls 0 +myconn 0 connecting thr ba934680 , thread 9191 , mypolls 0 +thr ba934800 , status 1 +connecting thr ba934800 , thread 9192 , mypolls 0 +myconn 0 connecting thr ba934800 , thread 9192 , mypolls 0 +thr ba934980 , status 1 +connecting thr ba934980 , thread 9193 , mypolls 0 +myconn 0 connecting thr ba934980 , thread 9193 , mypolls 0 +thr ba934b00 , status 1 +connecting thr ba934b00 , thread 9194 , mypolls 0 +myconn 0 connecting thr ba934b00 , thread 9194 , mypolls 0 +thr ba934c80 , status 1 +connecting thr ba934c80 , thread 9195 , mypolls 0 +myconn 0 connecting thr ba934c80 , thread 9195 , mypolls 0 +thr ba934e00 , status 1 +connecting thr ba934e00 , thread 9196 , mypolls 0 +myconn 0 connecting thr ba934e00 , thread 9196 , mypolls 0 +thr ba934f80 , status 1 +connecting thr ba934f80 , thread 9197 , mypolls 0 +myconn 0 connecting thr ba934f80 , thread 9197 , mypolls 0 +thr ba935100 , status 1 +connecting thr ba935100 , thread 9198 , mypolls 0 +myconn 0 connecting thr ba935100 , thread 9198 , mypolls 0 +thr ba935280 , status 1 +connecting thr ba935280 , thread 9199 , mypolls 0 +myconn 0 connecting thr ba935280 , thread 9199 , mypolls 0 +thr ba935400 , status 1 +connecting thr ba935400 , thread 9200 , mypolls 0 +myconn 0 connecting thr ba935400 , thread 9200 , mypolls 0 +thr ba935580 , status 1 +connecting thr ba935580 , thread 9201 , mypolls 0 +myconn 0 connecting thr ba935580 , thread 9201 , mypolls 0 +thr ba935700 , status 1 +connecting thr ba935700 , thread 9202 , mypolls 0 +myconn 0 connecting thr ba935700 , thread 9202 , mypolls 0 +thr ba935880 , status 1 +connecting thr ba935880 , thread 9203 , mypolls 0 +myconn 0 connecting thr ba935880 , thread 9203 , mypolls 0 +thr ba935a00 , status 1 +connecting thr ba935a00 , thread 9204 , mypolls 0 +myconn 0 connecting thr ba935a00 , thread 9204 , mypolls 0 +thr ba935b80 , status 1 +connecting thr ba935b80 , thread 9205 , mypolls 0 +myconn 0 connecting thr ba935b80 , thread 9205 , mypolls 0 +thr ba935d00 , status 1 +connecting thr ba935d00 , thread 9206 , mypolls 0 +myconn 0 connecting thr ba935d00 , thread 9206 , mypolls 0 +thr ba935e80 , status 1 +connecting thr ba935e80 , thread 9207 , mypolls 0 +myconn 0 connecting thr ba935e80 , thread 9207 , mypolls 0 +thr ba79c000 , status 1 +connecting thr ba79c000 , thread 9208 , mypolls 0 +myconn 0 connecting thr ba79c000 , thread 9208 , mypolls 0 +thr ba79c180 , status 1 +connecting thr ba79c180 , thread 9209 , mypolls 0 +myconn 0 connecting thr ba79c180 , thread 9209 , mypolls 0 +thr ba79c300 , status 1 +connecting thr ba79c300 , thread 9210 , mypolls 0 +myconn 0 connecting thr ba79c300 , thread 9210 , mypolls 0 +thr ba79c480 , status 1 +connecting thr ba79c480 , thread 9211 , mypolls 0 +myconn 0 connecting thr ba79c480 , thread 9211 , mypolls 0 +thr ba79c600 , status 1 +connecting thr ba79c600 , thread 9212 , mypolls 0 +myconn 0 connecting thr ba79c600 , thread 9212 , mypolls 0 +thr ba79c780 , status 1 +connecting thr ba79c780 , thread 9213 , mypolls 0 +myconn 0 connecting thr ba79c780 , thread 9213 , mypolls 0 +thr ba79c900 , status 1 +connecting thr ba79c900 , thread 9214 , mypolls 0 +myconn 0 connecting thr ba79c900 , thread 9214 , mypolls 0 +thr ba79ca80 , status 1 +connecting thr ba79ca80 , thread 9215 , mypolls 0 +myconn 0 connecting thr ba79ca80 , thread 9215 , mypolls 0 +thr ba79cc00 , status 1 +connecting thr ba79cc00 , thread 9216 , mypolls 0 +myconn 0 connecting thr ba79cc00 , thread 9216 , mypolls 0 +thr ba79cd80 , status 1 +connecting thr ba79cd80 , thread 9217 , mypolls 0 +myconn 0 connecting thr ba79cd80 , thread 9217 , mypolls 0 +thr ba79cf00 , status 1 +connecting thr ba79cf00 , thread 9218 , mypolls 0 +myconn 0 connecting thr ba79cf00 , thread 9218 , mypolls 0 +thr ba79d080 , status 1 +connecting thr ba79d080 , thread 9219 , mypolls 0 +myconn 0 connecting thr ba79d080 , thread 9219 , mypolls 0 +thr ba79d200 , status 1 +connecting thr ba79d200 , thread 9220 , mypolls 0 +myconn 0 connecting thr ba79d200 , thread 9220 , mypolls 0 +thr ba79d380 , status 1 +connecting thr ba79d380 , thread 9221 , mypolls 0 +myconn 0 connecting thr ba79d380 , thread 9221 , mypolls 0 +thr ba79d500 , status 1 +connecting thr ba79d500 , thread 9222 , mypolls 0 +myconn 0 connecting thr ba79d500 , thread 9222 , mypolls 0 +thr ba79d680 , status 1 +connecting thr ba79d680 , thread 9223 , mypolls 0 +myconn 0 connecting thr ba79d680 , thread 9223 , mypolls 0 +thr ba79d800 , status 1 +connecting thr ba79d800 , thread 9224 , mypolls 0 +myconn 0 connecting thr ba79d800 , thread 9224 , mypolls 0 +thr ba79d980 , status 1 +connecting thr ba79d980 , thread 9225 , mypolls 0 +myconn 0 connecting thr ba79d980 , thread 9225 , mypolls 0 +thr ba79db00 , status 1 +connecting thr ba79db00 , thread 9226 , mypolls 0 +myconn 0 connecting thr ba79db00 , thread 9226 , mypolls 0 +thr ba79dc80 , status 1 +connecting thr ba79dc80 , thread 9227 , mypolls 0 +myconn 0 connecting thr ba79dc80 , thread 9227 , mypolls 0 +thr ba79de00 , status 1 +connecting thr ba79de00 , thread 9228 , mypolls 0 +myconn 0 connecting thr ba79de00 , thread 9228 , mypolls 0 +thr ba79df80 , status 1 +connecting thr ba79df80 , thread 9229 , mypolls 0 +myconn 0 connecting thr ba79df80 , thread 9229 , mypolls 0 +thr ba79e100 , status 1 +connecting thr ba79e100 , thread 9230 , mypolls 0 +myconn 0 connecting thr ba79e100 , thread 9230 , mypolls 0 +thr ba79e280 , status 1 +connecting thr ba79e280 , thread 9231 , mypolls 0 +myconn 0 connecting thr ba79e280 , thread 9231 , mypolls 0 +thr ba79e400 , status 1 +connecting thr ba79e400 , thread 9232 , mypolls 0 +myconn 0 connecting thr ba79e400 , thread 9232 , mypolls 0 +thr ba79e580 , status 1 +connecting thr ba79e580 , thread 9233 , mypolls 0 +myconn 0 connecting thr ba79e580 , thread 9233 , mypolls 0 +thr ba79e700 , status 1 +connecting thr ba79e700 , thread 9234 , mypolls 0 +myconn 0 connecting thr ba79e700 , thread 9234 , mypolls 0 +thr ba79e880 , status 1 +connecting thr ba79e880 , thread 9235 , mypolls 0 +myconn 0 connecting thr ba79e880 , thread 9235 , mypolls 0 +thr ba79ea00 , status 1 +connecting thr ba79ea00 , thread 9236 , mypolls 0 +myconn 0 connecting thr ba79ea00 , thread 9236 , mypolls 0 +thr ba79eb80 , status 1 +connecting thr ba79eb80 , thread 9237 , mypolls 0 +myconn 0 connecting thr ba79eb80 , thread 9237 , mypolls 0 +thr ba79ed00 , status 1 +connecting thr ba79ed00 , thread 9238 , mypolls 0 +myconn 0 connecting thr ba79ed00 , thread 9238 , mypolls 0 +thr ba79ee80 , status 1 +connecting thr ba79ee80 , thread 9239 , mypolls 0 +myconn 0 connecting thr ba79ee80 , thread 9239 , mypolls 0 +thr ba20d000 , status 1 +connecting thr ba20d000 , thread 9240 , mypolls 0 +myconn 0 connecting thr ba20d000 , thread 9240 , mypolls 0 +thr ba20d180 , status 1 +connecting thr ba20d180 , thread 9241 , mypolls 0 +myconn 0 connecting thr ba20d180 , thread 9241 , mypolls 0 +thr ba20d300 , status 1 +connecting thr ba20d300 , thread 9242 , mypolls 0 +myconn 0 connecting thr ba20d300 , thread 9242 , mypolls 0 +thr ba20d480 , status 1 +connecting thr ba20d480 , thread 9243 , mypolls 0 +myconn 0 connecting thr ba20d480 , thread 9243 , mypolls 0 +thr ba20d600 , status 1 +connecting thr ba20d600 , thread 9244 , mypolls 0 +myconn 0 connecting thr ba20d600 , thread 9244 , mypolls 0 +thr ba20d780 , status 1 +connecting thr ba20d780 , thread 9245 , mypolls 0 +myconn 0 connecting thr ba20d780 , thread 9245 , mypolls 0 +thr ba20d900 , status 1 +connecting thr ba20d900 , thread 9246 , mypolls 0 +myconn 0 connecting thr ba20d900 , thread 9246 , mypolls 0 +thr ba20da80 , status 1 +connecting thr ba20da80 , thread 9247 , mypolls 0 +myconn 0 connecting thr ba20da80 , thread 9247 , mypolls 0 +thr ba20dc00 , status 1 +connecting thr ba20dc00 , thread 9248 , mypolls 0 +myconn 0 connecting thr ba20dc00 , thread 9248 , mypolls 0 +thr ba20dd80 , status 1 +connecting thr ba20dd80 , thread 9249 , mypolls 0 +myconn 0 connecting thr ba20dd80 , thread 9249 , mypolls 0 +thr ba20df00 , status 1 +connecting thr ba20df00 , thread 9250 , mypolls 0 +myconn 0 connecting thr ba20df00 , thread 9250 , mypolls 0 +thr ba20e080 , status 1 +connecting thr ba20e080 , thread 9251 , mypolls 0 +myconn 0 connecting thr ba20e080 , thread 9251 , mypolls 0 +thr ba20e200 , status 1 +connecting thr ba20e200 , thread 9252 , mypolls 0 +myconn 0 connecting thr ba20e200 , thread 9252 , mypolls 0 +thr ba20e380 , status 1 +connecting thr ba20e380 , thread 9253 , mypolls 0 +myconn 0 connecting thr ba20e380 , thread 9253 , mypolls 0 +thr ba20e500 , status 1 +connecting thr ba20e500 , thread 9254 , mypolls 0 +myconn 0 connecting thr ba20e500 , thread 9254 , mypolls 0 +thr ba20e680 , status 1 +connecting thr ba20e680 , thread 9255 , mypolls 0 +myconn 0 connecting thr ba20e680 , thread 9255 , mypolls 0 +thr ba20e800 , status 1 +connecting thr ba20e800 , thread 9256 , mypolls 0 +myconn 0 connecting thr ba20e800 , thread 9256 , mypolls 0 +thr ba20e980 , status 1 +connecting thr ba20e980 , thread 9257 , mypolls 0 +myconn 0 connecting thr ba20e980 , thread 9257 , mypolls 0 +thr ba20eb00 , status 1 +connecting thr ba20eb00 , thread 9258 , mypolls 0 +myconn 0 connecting thr ba20eb00 , thread 9258 , mypolls 0 +thr ba20ec80 , status 1 +connecting thr ba20ec80 , thread 9259 , mypolls 0 +myconn 0 connecting thr ba20ec80 , thread 9259 , mypolls 0 +thr ba20ee00 , status 1 +connecting thr ba20ee00 , thread 9260 , mypolls 0 +myconn 0 connecting thr ba20ee00 , thread 9260 , mypolls 0 +thr ba20ef80 , status 1 +connecting thr ba20ef80 , thread 9261 , mypolls 0 +myconn 0 connecting thr ba20ef80 , thread 9261 , mypolls 0 +thr ba20f100 , status 1 +connecting thr ba20f100 , thread 9262 , mypolls 0 +myconn 0 connecting thr ba20f100 , thread 9262 , mypolls 0 +thr ba20f280 , status 1 +connecting thr ba20f280 , thread 9263 , mypolls 0 +myconn 0 connecting thr ba20f280 , thread 9263 , mypolls 0 +thr ba20f400 , status 1 +connecting thr ba20f400 , thread 9264 , mypolls 0 +myconn 0 connecting thr ba20f400 , thread 9264 , mypolls 0 +thr ba20f580 , status 1 +connecting thr ba20f580 , thread 9265 , mypolls 0 +myconn 0 connecting thr ba20f580 , thread 9265 , mypolls 0 +thr ba20f700 , status 1 +connecting thr ba20f700 , thread 9266 , mypolls 0 +myconn 0 connecting thr ba20f700 , thread 9266 , mypolls 0 +thr ba20f880 , status 1 +connecting thr ba20f880 , thread 9267 , mypolls 0 +myconn 0 connecting thr ba20f880 , thread 9267 , mypolls 0 +thr ba20fa00 , status 1 +connecting thr ba20fa00 , thread 9268 , mypolls 0 +myconn 0 connecting thr ba20fa00 , thread 9268 , mypolls 0 +thr ba20fb80 , status 1 +connecting thr ba20fb80 , thread 9269 , mypolls 0 +myconn 0 connecting thr ba20fb80 , thread 9269 , mypolls 0 +thr ba20fd00 , status 1 +connecting thr ba20fd00 , thread 9270 , mypolls 0 +myconn 0 connecting thr ba20fd00 , thread 9270 , mypolls 0 +thr ba20fe80 , status 1 +connecting thr ba20fe80 , thread 9271 , mypolls 0 +myconn 0 connecting thr ba20fe80 , thread 9271 , mypolls 0 +thr ba3fa000 , status 1 +connecting thr ba3fa000 , thread 9272 , mypolls 0 +myconn 0 connecting thr ba3fa000 , thread 9272 , mypolls 0 +thr ba3fa180 , status 1 +connecting thr ba3fa180 , thread 9273 , mypolls 0 +myconn 0 connecting thr ba3fa180 , thread 9273 , mypolls 0 +thr ba3fa300 , status 1 +connecting thr ba3fa300 , thread 9274 , mypolls 0 +myconn 0 connecting thr ba3fa300 , thread 9274 , mypolls 0 +thr ba3fa480 , status 1 +connecting thr ba3fa480 , thread 9275 , mypolls 0 +myconn 0 connecting thr ba3fa480 , thread 9275 , mypolls 0 +thr ba3fa600 , status 1 +connecting thr ba3fa600 , thread 9276 , mypolls 0 +myconn 0 connecting thr ba3fa600 , thread 9276 , mypolls 0 +thr ba3fa780 , status 1 +connecting thr ba3fa780 , thread 9277 , mypolls 0 +myconn 0 connecting thr ba3fa780 , thread 9277 , mypolls 0 +thr ba3fa900 , status 1 +connecting thr ba3fa900 , thread 9278 , mypolls 0 +myconn 0 connecting thr ba3fa900 , thread 9278 , mypolls 0 +thr ba3faa80 , status 1 +connecting thr ba3faa80 , thread 9279 , mypolls 0 +myconn 0 connecting thr ba3faa80 , thread 9279 , mypolls 0 +thr ba3fac00 , status 1 +connecting thr ba3fac00 , thread 9280 , mypolls 0 +myconn 0 connecting thr ba3fac00 , thread 9280 , mypolls 0 +thr ba3fad80 , status 1 +connecting thr ba3fad80 , thread 9281 , mypolls 0 +myconn 0 connecting thr ba3fad80 , thread 9281 , mypolls 0 +thr ba3faf00 , status 1 +connecting thr ba3faf00 , thread 9282 , mypolls 0 +myconn 0 connecting thr ba3faf00 , thread 9282 , mypolls 0 +thr ba3fb080 , status 1 +connecting thr ba3fb080 , thread 9283 , mypolls 0 +myconn 0 connecting thr ba3fb080 , thread 9283 , mypolls 0 +thr ba3fb200 , status 1 +connecting thr ba3fb200 , thread 9284 , mypolls 0 +myconn 0 connecting thr ba3fb200 , thread 9284 , mypolls 0 +thr ba3fb380 , status 1 +connecting thr ba3fb380 , thread 9285 , mypolls 0 +myconn 0 connecting thr ba3fb380 , thread 9285 , mypolls 0 +thr ba3fb500 , status 1 +connecting thr ba3fb500 , thread 9286 , mypolls 0 +myconn 0 connecting thr ba3fb500 , thread 9286 , mypolls 0 +thr ba3fb680 , status 1 +connecting thr ba3fb680 , thread 9287 , mypolls 0 +myconn 0 connecting thr ba3fb680 , thread 9287 , mypolls 0 +thr ba3fb800 , status 1 +connecting thr ba3fb800 , thread 9288 , mypolls 0 +myconn 0 connecting thr ba3fb800 , thread 9288 , mypolls 0 +thr ba3fb980 , status 1 +connecting thr ba3fb980 , thread 9289 , mypolls 0 +myconn 0 connecting thr ba3fb980 , thread 9289 , mypolls 0 +thr ba3fbb00 , status 1 +connecting thr ba3fbb00 , thread 9290 , mypolls 0 +myconn 0 connecting thr ba3fbb00 , thread 9290 , mypolls 0 +thr ba3fbc80 , status 1 +connecting thr ba3fbc80 , thread 9291 , mypolls 0 +myconn 0 connecting thr ba3fbc80 , thread 9291 , mypolls 0 +thr ba3fbe00 , status 1 +connecting thr ba3fbe00 , thread 9292 , mypolls 0 +myconn 0 connecting thr ba3fbe00 , thread 9292 , mypolls 0 +thr ba3fbf80 , status 1 +connecting thr ba3fbf80 , thread 9293 , mypolls 0 +myconn 0 connecting thr ba3fbf80 , thread 9293 , mypolls 0 +thr ba3fc100 , status 1 +connecting thr ba3fc100 , thread 9294 , mypolls 0 +myconn 0 connecting thr ba3fc100 , thread 9294 , mypolls 0 +thr ba3fc280 , status 1 +connecting thr ba3fc280 , thread 9295 , mypolls 0 +myconn 0 connecting thr ba3fc280 , thread 9295 , mypolls 0 +thr ba3fc400 , status 1 +connecting thr ba3fc400 , thread 9296 , mypolls 0 +myconn 0 connecting thr ba3fc400 , thread 9296 , mypolls 0 +thr ba3fc580 , status 1 +connecting thr ba3fc580 , thread 9297 , mypolls 0 +myconn 0 connecting thr ba3fc580 , thread 9297 , mypolls 0 +thr ba3fc700 , status 1 +connecting thr ba3fc700 , thread 9298 , mypolls 0 +myconn 0 connecting thr ba3fc700 , thread 9298 , mypolls 0 +thr ba3fc880 , status 1 +connecting thr ba3fc880 , thread 9299 , mypolls 0 +myconn 0 connecting thr ba3fc880 , thread 9299 , mypolls 0 +thr ba3fca00 , status 1 +connecting thr ba3fca00 , thread 9300 , mypolls 0 +myconn 0 connecting thr ba3fca00 , thread 9300 , mypolls 0 +thr ba3fcb80 , status 1 +connecting thr ba3fcb80 , thread 9301 , mypolls 0 +myconn 0 connecting thr ba3fcb80 , thread 9301 , mypolls 0 +thr ba3fcd00 , status 1 +connecting thr ba3fcd00 , thread 9302 , mypolls 0 +myconn 0 connecting thr ba3fcd00 , thread 9302 , mypolls 0 +thr ba3fce80 , status 1 +connecting thr ba3fce80 , thread 9303 , mypolls 0 +myconn 0 connecting thr ba3fce80 , thread 9303 , mypolls 0 +thr ba1fd000 , status 1 +connecting thr ba1fd000 , thread 9304 , mypolls 0 +myconn 0 connecting thr ba1fd000 , thread 9304 , mypolls 0 +thr ba1fd180 , status 1 +connecting thr ba1fd180 , thread 9305 , mypolls 0 +myconn 0 connecting thr ba1fd180 , thread 9305 , mypolls 0 +thr ba1fd300 , status 1 +connecting thr ba1fd300 , thread 9306 , mypolls 0 +myconn 0 connecting thr ba1fd300 , thread 9306 , mypolls 0 +thr ba1fd480 , status 1 +connecting thr ba1fd480 , thread 9307 , mypolls 0 +myconn 0 connecting thr ba1fd480 , thread 9307 , mypolls 0 +thr ba1fd600 , status 1 +connecting thr ba1fd600 , thread 9308 , mypolls 0 +myconn 0 connecting thr ba1fd600 , thread 9308 , mypolls 0 +thr ba1fd780 , status 1 +connecting thr ba1fd780 , thread 9309 , mypolls 0 +myconn 0 connecting thr ba1fd780 , thread 9309 , mypolls 0 +thr ba1fd900 , status 1 +connecting thr ba1fd900 , thread 9310 , mypolls 0 +myconn 0 connecting thr ba1fd900 , thread 9310 , mypolls 0 +thr ba1fda80 , status 1 +connecting thr ba1fda80 , thread 9311 , mypolls 0 +myconn 0 connecting thr ba1fda80 , thread 9311 , mypolls 0 +thr ba1fdc00 , status 1 +connecting thr ba1fdc00 , thread 9312 , mypolls 0 +myconn 0 connecting thr ba1fdc00 , thread 9312 , mypolls 0 +thr ba1fdd80 , status 1 +connecting thr ba1fdd80 , thread 9313 , mypolls 0 +myconn 0 connecting thr ba1fdd80 , thread 9313 , mypolls 0 +thr ba1fdf00 , status 1 +connecting thr ba1fdf00 , thread 9314 , mypolls 0 +myconn 0 connecting thr ba1fdf00 , thread 9314 , mypolls 0 +thr ba1fe080 , status 1 +connecting thr ba1fe080 , thread 9315 , mypolls 0 +myconn 0 connecting thr ba1fe080 , thread 9315 , mypolls 0 +thr ba1fe200 , status 1 +connecting thr ba1fe200 , thread 9316 , mypolls 0 +myconn 0 connecting thr ba1fe200 , thread 9316 , mypolls 0 +thr ba1fe380 , status 1 +connecting thr ba1fe380 , thread 9317 , mypolls 0 +myconn 0 connecting thr ba1fe380 , thread 9317 , mypolls 0 +thr ba1fe500 , status 1 +connecting thr ba1fe500 , thread 9318 , mypolls 0 +myconn 0 connecting thr ba1fe500 , thread 9318 , mypolls 0 +thr ba1fe680 , status 1 +connecting thr ba1fe680 , thread 9319 , mypolls 0 +myconn 0 connecting thr ba1fe680 , thread 9319 , mypolls 0 +thr ba1fe800 , status 1 +connecting thr ba1fe800 , thread 9320 , mypolls 0 +myconn 0 connecting thr ba1fe800 , thread 9320 , mypolls 0 +thr ba1fe980 , status 1 +connecting thr ba1fe980 , thread 9321 , mypolls 0 +myconn 0 connecting thr ba1fe980 , thread 9321 , mypolls 0 +thr ba1feb00 , status 1 +connecting thr ba1feb00 , thread 9322 , mypolls 0 +myconn 0 connecting thr ba1feb00 , thread 9322 , mypolls 0 +thr ba1fec80 , status 1 +connecting thr ba1fec80 , thread 9323 , mypolls 0 +myconn 0 connecting thr ba1fec80 , thread 9323 , mypolls 0 +thr ba1fee00 , status 1 +connecting thr ba1fee00 , thread 9324 , mypolls 0 +myconn 0 connecting thr ba1fee00 , thread 9324 , mypolls 0 +thr ba1fef80 , status 1 +connecting thr ba1fef80 , thread 9325 , mypolls 0 +myconn 0 connecting thr ba1fef80 , thread 9325 , mypolls 0 +thr ba1ff100 , status 1 +connecting thr ba1ff100 , thread 9326 , mypolls 0 +myconn 0 connecting thr ba1ff100 , thread 9326 , mypolls 0 +thr ba1ff280 , status 1 +connecting thr ba1ff280 , thread 9327 , mypolls 0 +myconn 0 connecting thr ba1ff280 , thread 9327 , mypolls 0 +thr ba1ff400 , status 1 +connecting thr ba1ff400 , thread 9328 , mypolls 0 +myconn 0 connecting thr ba1ff400 , thread 9328 , mypolls 0 +thr ba1ff580 , status 1 +connecting thr ba1ff580 , thread 9329 , mypolls 0 +myconn 0 connecting thr ba1ff580 , thread 9329 , mypolls 0 +thr ba1ff700 , status 1 +connecting thr ba1ff700 , thread 9330 , mypolls 0 +myconn 0 connecting thr ba1ff700 , thread 9330 , mypolls 0 +thr ba1ff880 , status 1 +connecting thr ba1ff880 , thread 9331 , mypolls 0 +myconn 0 connecting thr ba1ff880 , thread 9331 , mypolls 0 +thr ba1ffa00 , status 1 +connecting thr ba1ffa00 , thread 9332 , mypolls 0 +myconn 0 connecting thr ba1ffa00 , thread 9332 , mypolls 0 +thr ba1ffb80 , status 1 +connecting thr ba1ffb80 , thread 9333 , mypolls 0 +myconn 0 connecting thr ba1ffb80 , thread 9333 , mypolls 0 +thr ba1ffd00 , status 1 +connecting thr ba1ffd00 , thread 9334 , mypolls 0 +myconn 0 connecting thr ba1ffd00 , thread 9334 , mypolls 0 +thr ba1ffe80 , status 1 +connecting thr ba1ffe80 , thread 9335 , mypolls 0 +myconn 0 connecting thr ba1ffe80 , thread 9335 , mypolls 0 +thr b9d2f000 , status 1 +connecting thr b9d2f000 , thread 9336 , mypolls 0 +myconn 0 connecting thr b9d2f000 , thread 9336 , mypolls 0 +thr b9d2f180 , status 1 +connecting thr b9d2f180 , thread 9337 , mypolls 0 +myconn 0 connecting thr b9d2f180 , thread 9337 , mypolls 0 +thr b9d2f300 , status 1 +connecting thr b9d2f300 , thread 9338 , mypolls 0 +myconn 0 connecting thr b9d2f300 , thread 9338 , mypolls 0 +thr b9d2f480 , status 1 +connecting thr b9d2f480 , thread 9339 , mypolls 0 +myconn 0 connecting thr b9d2f480 , thread 9339 , mypolls 0 +thr b9d2f600 , status 1 +connecting thr b9d2f600 , thread 9340 , mypolls 0 +myconn 0 connecting thr b9d2f600 , thread 9340 , mypolls 0 +thr b9d2f780 , status 1 +connecting thr b9d2f780 , thread 9341 , mypolls 0 +myconn 0 connecting thr b9d2f780 , thread 9341 , mypolls 0 +thr b9d2f900 , status 1 +connecting thr b9d2f900 , thread 9342 , mypolls 0 +myconn 0 connecting thr b9d2f900 , thread 9342 , mypolls 0 +thr b9d2fa80 , status 1 +connecting thr b9d2fa80 , thread 9343 , mypolls 0 +myconn 0 connecting thr b9d2fa80 , thread 9343 , mypolls 0 +thr b9d2fc00 , status 1 +connecting thr b9d2fc00 , thread 9344 , mypolls 0 +myconn 0 connecting thr b9d2fc00 , thread 9344 , mypolls 0 +thr b9d2fd80 , status 1 +connecting thr b9d2fd80 , thread 9345 , mypolls 0 +myconn 0 connecting thr b9d2fd80 , thread 9345 , mypolls 0 +thr b9d2ff00 , status 1 +connecting thr b9d2ff00 , thread 9346 , mypolls 0 +myconn 0 connecting thr b9d2ff00 , thread 9346 , mypolls 0 +thr b9d30080 , status 1 +connecting thr b9d30080 , thread 9347 , mypolls 0 +myconn 0 connecting thr b9d30080 , thread 9347 , mypolls 0 +thr b9d30200 , status 1 +connecting thr b9d30200 , thread 9348 , mypolls 0 +myconn 0 connecting thr b9d30200 , thread 9348 , mypolls 0 +thr b9d30380 , status 1 +connecting thr b9d30380 , thread 9349 , mypolls 0 +myconn 0 connecting thr b9d30380 , thread 9349 , mypolls 0 +thr b9d30500 , status 1 +connecting thr b9d30500 , thread 9350 , mypolls 0 +myconn 0 connecting thr b9d30500 , thread 9350 , mypolls 0 +thr b9d30680 , status 1 +connecting thr b9d30680 , thread 9351 , mypolls 0 +myconn 0 connecting thr b9d30680 , thread 9351 , mypolls 0 +thr b9d30800 , status 1 +connecting thr b9d30800 , thread 9352 , mypolls 0 +myconn 0 connecting thr b9d30800 , thread 9352 , mypolls 0 +thr b9d30980 , status 1 +connecting thr b9d30980 , thread 9353 , mypolls 0 +myconn 0 connecting thr b9d30980 , thread 9353 , mypolls 0 +thr b9d30b00 , status 1 +connecting thr b9d30b00 , thread 9354 , mypolls 0 +myconn 0 connecting thr b9d30b00 , thread 9354 , mypolls 0 +thr b9d30c80 , status 1 +connecting thr b9d30c80 , thread 9355 , mypolls 0 +myconn 0 connecting thr b9d30c80 , thread 9355 , mypolls 0 +thr b9d30e00 , status 1 +connecting thr b9d30e00 , thread 9356 , mypolls 0 +myconn 0 connecting thr b9d30e00 , thread 9356 , mypolls 0 +thr b9d30f80 , status 1 +connecting thr b9d30f80 , thread 9357 , mypolls 0 +myconn 0 connecting thr b9d30f80 , thread 9357 , mypolls 0 +thr b9d31100 , status 1 +connecting thr b9d31100 , thread 9358 , mypolls 0 +myconn 0 connecting thr b9d31100 , thread 9358 , mypolls 0 +thr b9d31280 , status 1 +connecting thr b9d31280 , thread 9359 , mypolls 0 +myconn 0 connecting thr b9d31280 , thread 9359 , mypolls 0 +thr b9d31400 , status 1 +connecting thr b9d31400 , thread 9360 , mypolls 0 +myconn 0 connecting thr b9d31400 , thread 9360 , mypolls 0 +thr b9d31580 , status 1 +connecting thr b9d31580 , thread 9361 , mypolls 0 +myconn 0 connecting thr b9d31580 , thread 9361 , mypolls 0 +thr b9d31700 , status 1 +connecting thr b9d31700 , thread 9362 , mypolls 0 +myconn 0 connecting thr b9d31700 , thread 9362 , mypolls 0 +thr b9d31880 , status 1 +connecting thr b9d31880 , thread 9363 , mypolls 0 +myconn 0 connecting thr b9d31880 , thread 9363 , mypolls 0 +thr b9d31a00 , status 1 +connecting thr b9d31a00 , thread 9364 , mypolls 0 +myconn 0 connecting thr b9d31a00 , thread 9364 , mypolls 0 +thr b9d31b80 , status 1 +connecting thr b9d31b80 , thread 9365 , mypolls 0 +myconn 0 connecting thr b9d31b80 , thread 9365 , mypolls 0 +thr b9d31d00 , status 1 +connecting thr b9d31d00 , thread 9366 , mypolls 0 +myconn 0 connecting thr b9d31d00 , thread 9366 , mypolls 0 +thr b9d31e80 , status 1 +connecting thr b9d31e80 , thread 9367 , mypolls 0 +myconn 0 connecting thr b9d31e80 , thread 9367 , mypolls 0 +thr b9b92000 , status 1 +connecting thr b9b92000 , thread 9368 , mypolls 0 +myconn 0 connecting thr b9b92000 , thread 9368 , mypolls 0 +thr b9b92180 , status 1 +connecting thr b9b92180 , thread 9369 , mypolls 0 +myconn 0 connecting thr b9b92180 , thread 9369 , mypolls 0 +thr b9b92300 , status 1 +connecting thr b9b92300 , thread 9370 , mypolls 0 +myconn 0 connecting thr b9b92300 , thread 9370 , mypolls 0 +thr b9b92480 , status 1 +connecting thr b9b92480 , thread 9371 , mypolls 0 +myconn 0 connecting thr b9b92480 , thread 9371 , mypolls 0 +thr b9b92600 , status 1 +connecting thr b9b92600 , thread 9372 , mypolls 0 +myconn 0 connecting thr b9b92600 , thread 9372 , mypolls 0 +thr b9b92780 , status 1 +connecting thr b9b92780 , thread 9373 , mypolls 0 +myconn 0 connecting thr b9b92780 , thread 9373 , mypolls 0 +thr b9b92900 , status 1 +connecting thr b9b92900 , thread 9374 , mypolls 0 +myconn 0 connecting thr b9b92900 , thread 9374 , mypolls 0 +thr b9b92a80 , status 1 +connecting thr b9b92a80 , thread 9375 , mypolls 0 +myconn 0 connecting thr b9b92a80 , thread 9375 , mypolls 0 +thr b9b92c00 , status 1 +connecting thr b9b92c00 , thread 9376 , mypolls 0 +myconn 0 connecting thr b9b92c00 , thread 9376 , mypolls 0 +thr b9b92d80 , status 1 +connecting thr b9b92d80 , thread 9377 , mypolls 0 +myconn 0 connecting thr b9b92d80 , thread 9377 , mypolls 0 +thr b9b92f00 , status 1 +connecting thr b9b92f00 , thread 9378 , mypolls 0 +myconn 0 connecting thr b9b92f00 , thread 9378 , mypolls 0 +thr b9b93080 , status 1 +connecting thr b9b93080 , thread 9379 , mypolls 0 +myconn 0 connecting thr b9b93080 , thread 9379 , mypolls 0 +thr b9b93200 , status 1 +connecting thr b9b93200 , thread 9380 , mypolls 0 +myconn 0 connecting thr b9b93200 , thread 9380 , mypolls 0 +thr b9b93380 , status 1 +connecting thr b9b93380 , thread 9381 , mypolls 0 +myconn 0 connecting thr b9b93380 , thread 9381 , mypolls 0 +thr b9b93500 , status 1 +connecting thr b9b93500 , thread 9382 , mypolls 0 +myconn 0 connecting thr b9b93500 , thread 9382 , mypolls 0 +thr b9b93680 , status 1 +connecting thr b9b93680 , thread 9383 , mypolls 0 +myconn 0 connecting thr b9b93680 , thread 9383 , mypolls 0 +thr b9b93800 , status 1 +connecting thr b9b93800 , thread 9384 , mypolls 0 +myconn 0 connecting thr b9b93800 , thread 9384 , mypolls 0 +thr b9b93980 , status 1 +connecting thr b9b93980 , thread 9385 , mypolls 0 +myconn 0 connecting thr b9b93980 , thread 9385 , mypolls 0 +thr b9b93b00 , status 1 +connecting thr b9b93b00 , thread 9386 , mypolls 0 +myconn 0 connecting thr b9b93b00 , thread 9386 , mypolls 0 +thr b9b93c80 , status 1 +connecting thr b9b93c80 , thread 9387 , mypolls 0 +myconn 0 connecting thr b9b93c80 , thread 9387 , mypolls 0 +thr b9b93e00 , status 1 +connecting thr b9b93e00 , thread 9388 , mypolls 0 +myconn 0 connecting thr b9b93e00 , thread 9388 , mypolls 0 +thr b9b93f80 , status 1 +connecting thr b9b93f80 , thread 9389 , mypolls 0 +myconn 0 connecting thr b9b93f80 , thread 9389 , mypolls 0 +thr b9b94100 , status 1 +connecting thr b9b94100 , thread 9390 , mypolls 0 +myconn 0 connecting thr b9b94100 , thread 9390 , mypolls 0 +thr b9b94280 , status 1 +connecting thr b9b94280 , thread 9391 , mypolls 0 +myconn 0 connecting thr b9b94280 , thread 9391 , mypolls 0 +thr b9b94400 , status 1 +connecting thr b9b94400 , thread 9392 , mypolls 0 +myconn 0 connecting thr b9b94400 , thread 9392 , mypolls 0 +thr b9b94580 , status 1 +connecting thr b9b94580 , thread 9393 , mypolls 0 +myconn 0 connecting thr b9b94580 , thread 9393 , mypolls 0 +thr b9b94700 , status 1 +connecting thr b9b94700 , thread 9394 , mypolls 0 +myconn 0 connecting thr b9b94700 , thread 9394 , mypolls 0 +thr b9b94880 , status 1 +connecting thr b9b94880 , thread 9395 , mypolls 0 +myconn 0 connecting thr b9b94880 , thread 9395 , mypolls 0 +thr b9b94a00 , status 1 +connecting thr b9b94a00 , thread 9396 , mypolls 0 +myconn 0 connecting thr b9b94a00 , thread 9396 , mypolls 0 +thr b9b94b80 , status 1 +connecting thr b9b94b80 , thread 9397 , mypolls 0 +myconn 0 connecting thr b9b94b80 , thread 9397 , mypolls 0 +thr b9b94d00 , status 1 +connecting thr b9b94d00 , thread 9398 , mypolls 0 +myconn 0 connecting thr b9b94d00 , thread 9398 , mypolls 0 +thr b9b94e80 , status 1 +connecting thr b9b94e80 , thread 9399 , mypolls 0 +myconn 0 connecting thr b9b94e80 , thread 9399 , mypolls 0 +thr b99f3000 , status 1 +connecting thr b99f3000 , thread 9400 , mypolls 0 +myconn 0 connecting thr b99f3000 , thread 9400 , mypolls 0 +thr b99f3180 , status 1 +connecting thr b99f3180 , thread 9401 , mypolls 0 +myconn 0 connecting thr b99f3180 , thread 9401 , mypolls 0 +thr b99f3300 , status 1 +connecting thr b99f3300 , thread 9402 , mypolls 0 +myconn 0 connecting thr b99f3300 , thread 9402 , mypolls 0 +thr b99f3480 , status 1 +connecting thr b99f3480 , thread 9403 , mypolls 0 +myconn 0 connecting thr b99f3480 , thread 9403 , mypolls 0 +thr b99f3600 , status 1 +connecting thr b99f3600 , thread 9404 , mypolls 0 +myconn 0 connecting thr b99f3600 , thread 9404 , mypolls 0 +thr b99f3780 , status 1 +connecting thr b99f3780 , thread 9405 , mypolls 0 +myconn 0 connecting thr b99f3780 , thread 9405 , mypolls 0 +thr b99f3900 , status 1 +connecting thr b99f3900 , thread 9406 , mypolls 0 +myconn 0 connecting thr b99f3900 , thread 9406 , mypolls 0 +thr b99f3a80 , status 1 +connecting thr b99f3a80 , thread 9407 , mypolls 0 +myconn 0 connecting thr b99f3a80 , thread 9407 , mypolls 0 +thr b99f3c00 , status 1 +connecting thr b99f3c00 , thread 9408 , mypolls 0 +myconn 0 connecting thr b99f3c00 , thread 9408 , mypolls 0 +thr b99f3d80 , status 1 +connecting thr b99f3d80 , thread 9409 , mypolls 0 +myconn 0 connecting thr b99f3d80 , thread 9409 , mypolls 0 +thr b99f3f00 , status 1 +connecting thr b99f3f00 , thread 9410 , mypolls 0 +myconn 0 connecting thr b99f3f00 , thread 9410 , mypolls 0 +thr b99f4080 , status 1 +connecting thr b99f4080 , thread 9411 , mypolls 0 +myconn 0 connecting thr b99f4080 , thread 9411 , mypolls 0 +thr b99f4200 , status 1 +connecting thr b99f4200 , thread 9412 , mypolls 0 +myconn 0 connecting thr b99f4200 , thread 9412 , mypolls 0 +thr b99f4380 , status 1 +connecting thr b99f4380 , thread 9413 , mypolls 0 +myconn 0 connecting thr b99f4380 , thread 9413 , mypolls 0 +thr b99f4500 , status 1 +connecting thr b99f4500 , thread 9414 , mypolls 0 +myconn 0 connecting thr b99f4500 , thread 9414 , mypolls 0 +thr b99f4680 , status 1 +connecting thr b99f4680 , thread 9415 , mypolls 0 +myconn 0 connecting thr b99f4680 , thread 9415 , mypolls 0 +thr b99f4800 , status 1 +connecting thr b99f4800 , thread 9416 , mypolls 0 +myconn 0 connecting thr b99f4800 , thread 9416 , mypolls 0 +thr b99f4980 , status 1 +connecting thr b99f4980 , thread 9417 , mypolls 0 +myconn 0 connecting thr b99f4980 , thread 9417 , mypolls 0 +thr b99f4b00 , status 1 +connecting thr b99f4b00 , thread 9418 , mypolls 0 +myconn 0 connecting thr b99f4b00 , thread 9418 , mypolls 0 +thr b99f4c80 , status 1 +connecting thr b99f4c80 , thread 9419 , mypolls 0 +myconn 0 connecting thr b99f4c80 , thread 9419 , mypolls 0 +thr b99f4e00 , status 1 +connecting thr b99f4e00 , thread 9420 , mypolls 0 +myconn 0 connecting thr b99f4e00 , thread 9420 , mypolls 0 +thr b99f4f80 , status 1 +connecting thr b99f4f80 , thread 9421 , mypolls 0 +myconn 0 connecting thr b99f4f80 , thread 9421 , mypolls 0 +thr b99f5100 , status 1 +connecting thr b99f5100 , thread 9422 , mypolls 0 +myconn 0 connecting thr b99f5100 , thread 9422 , mypolls 0 +thr b99f5280 , status 1 +connecting thr b99f5280 , thread 9423 , mypolls 0 +myconn 0 connecting thr b99f5280 , thread 9423 , mypolls 0 +thr b99f5400 , status 1 +connecting thr b99f5400 , thread 9424 , mypolls 0 +myconn 0 connecting thr b99f5400 , thread 9424 , mypolls 0 +thr b99f5580 , status 1 +connecting thr b99f5580 , thread 9425 , mypolls 0 +myconn 0 connecting thr b99f5580 , thread 9425 , mypolls 0 +thr b99f5700 , status 1 +connecting thr b99f5700 , thread 9426 , mypolls 0 +myconn 0 connecting thr b99f5700 , thread 9426 , mypolls 0 +thr b99f5880 , status 1 +connecting thr b99f5880 , thread 9427 , mypolls 0 +myconn 0 connecting thr b99f5880 , thread 9427 , mypolls 0 +thr b99f5a00 , status 1 +connecting thr b99f5a00 , thread 9428 , mypolls 0 +myconn 0 connecting thr b99f5a00 , thread 9428 , mypolls 0 +thr b99f5b80 , status 1 +connecting thr b99f5b80 , thread 9429 , mypolls 0 +myconn 0 connecting thr b99f5b80 , thread 9429 , mypolls 0 +thr b99f5d00 , status 1 +connecting thr b99f5d00 , thread 9430 , mypolls 0 +myconn 0 connecting thr b99f5d00 , thread 9430 , mypolls 0 +thr b99f5e80 , status 1 +connecting thr b99f5e80 , thread 9431 , mypolls 0 +myconn 0 connecting thr b99f5e80 , thread 9431 , mypolls 0 +thr b97fb000 , status 1 +connecting thr b97fb000 , thread 9432 , mypolls 0 +myconn 0 connecting thr b97fb000 , thread 9432 , mypolls 0 +thr b97fb180 , status 1 +connecting thr b97fb180 , thread 9433 , mypolls 0 +myconn 0 connecting thr b97fb180 , thread 9433 , mypolls 0 +thr b97fb300 , status 1 +connecting thr b97fb300 , thread 9434 , mypolls 0 +myconn 0 connecting thr b97fb300 , thread 9434 , mypolls 0 +thr b97fb480 , status 1 +connecting thr b97fb480 , thread 9435 , mypolls 0 +myconn 0 connecting thr b97fb480 , thread 9435 , mypolls 0 +thr b97fb600 , status 1 +connecting thr b97fb600 , thread 9436 , mypolls 0 +myconn 0 connecting thr b97fb600 , thread 9436 , mypolls 0 +thr b97fb780 , status 1 +connecting thr b97fb780 , thread 9437 , mypolls 0 +myconn 0 connecting thr b97fb780 , thread 9437 , mypolls 0 +thr b97fb900 , status 1 +connecting thr b97fb900 , thread 9438 , mypolls 0 +myconn 0 connecting thr b97fb900 , thread 9438 , mypolls 0 +thr b97fba80 , status 1 +connecting thr b97fba80 , thread 9439 , mypolls 0 +myconn 0 connecting thr b97fba80 , thread 9439 , mypolls 0 +thr b97fbc00 , status 1 +connecting thr b97fbc00 , thread 9440 , mypolls 0 +myconn 0 connecting thr b97fbc00 , thread 9440 , mypolls 0 +thr b97fbd80 , status 1 +connecting thr b97fbd80 , thread 9441 , mypolls 0 +myconn 0 connecting thr b97fbd80 , thread 9441 , mypolls 0 +thr b97fbf00 , status 1 +connecting thr b97fbf00 , thread 9442 , mypolls 0 +myconn 0 connecting thr b97fbf00 , thread 9442 , mypolls 0 +thr b97fc080 , status 1 +connecting thr b97fc080 , thread 9443 , mypolls 0 +myconn 0 connecting thr b97fc080 , thread 9443 , mypolls 0 +thr b97fc200 , status 1 +connecting thr b97fc200 , thread 9444 , mypolls 0 +myconn 0 connecting thr b97fc200 , thread 9444 , mypolls 0 +thr b97fc380 , status 1 +connecting thr b97fc380 , thread 9445 , mypolls 0 +myconn 0 connecting thr b97fc380 , thread 9445 , mypolls 0 +thr b97fc500 , status 1 +connecting thr b97fc500 , thread 9446 , mypolls 0 +myconn 0 connecting thr b97fc500 , thread 9446 , mypolls 0 +thr b97fc680 , status 1 +connecting thr b97fc680 , thread 9447 , mypolls 0 +myconn 0 connecting thr b97fc680 , thread 9447 , mypolls 0 +thr b97fc800 , status 1 +connecting thr b97fc800 , thread 9448 , mypolls 0 +myconn 0 connecting thr b97fc800 , thread 9448 , mypolls 0 +thr b97fc980 , status 1 +connecting thr b97fc980 , thread 9449 , mypolls 0 +myconn 0 connecting thr b97fc980 , thread 9449 , mypolls 0 +thr b97fcb00 , status 1 +connecting thr b97fcb00 , thread 9450 , mypolls 0 +myconn 0 connecting thr b97fcb00 , thread 9450 , mypolls 0 +thr b97fcc80 , status 1 +connecting thr b97fcc80 , thread 9451 , mypolls 0 +myconn 0 connecting thr b97fcc80 , thread 9451 , mypolls 0 +thr b97fce00 , status 1 +connecting thr b97fce00 , thread 9452 , mypolls 0 +myconn 0 connecting thr b97fce00 , thread 9452 , mypolls 0 +thr b97fcf80 , status 1 +connecting thr b97fcf80 , thread 9453 , mypolls 0 +myconn 0 connecting thr b97fcf80 , thread 9453 , mypolls 0 +thr b97fd100 , status 1 +connecting thr b97fd100 , thread 9454 , mypolls 0 +myconn 0 connecting thr b97fd100 , thread 9454 , mypolls 0 +thr b97fd280 , status 1 +connecting thr b97fd280 , thread 9455 , mypolls 0 +myconn 0 connecting thr b97fd280 , thread 9455 , mypolls 0 +thr b97fd400 , status 1 +connecting thr b97fd400 , thread 9456 , mypolls 0 +myconn 0 connecting thr b97fd400 , thread 9456 , mypolls 0 +thr b97fd580 , status 1 +connecting thr b97fd580 , thread 9457 , mypolls 0 +myconn 0 connecting thr b97fd580 , thread 9457 , mypolls 0 +thr b97fd700 , status 1 +connecting thr b97fd700 , thread 9458 , mypolls 0 +myconn 0 connecting thr b97fd700 , thread 9458 , mypolls 0 +thr b97fd880 , status 1 +connecting thr b97fd880 , thread 9459 , mypolls 0 +myconn 0 connecting thr b97fd880 , thread 9459 , mypolls 0 +thr b97fda00 , status 1 +connecting thr b97fda00 , thread 9460 , mypolls 0 +myconn 0 connecting thr b97fda00 , thread 9460 , mypolls 0 +thr b97fdb80 , status 1 +connecting thr b97fdb80 , thread 9461 , mypolls 0 +myconn 0 connecting thr b97fdb80 , thread 9461 , mypolls 0 +thr b97fdd00 , status 1 +connecting thr b97fdd00 , thread 9462 , mypolls 0 +myconn 0 connecting thr b97fdd00 , thread 9462 , mypolls 0 +thr b97fde80 , status 1 +connecting thr b97fde80 , thread 9463 , mypolls 0 +myconn 0 connecting thr b97fde80 , thread 9463 , mypolls 0 +thr b95fc000 , status 1 +connecting thr b95fc000 , thread 9464 , mypolls 0 +myconn 0 connecting thr b95fc000 , thread 9464 , mypolls 0 +thr b95fc180 , status 1 +connecting thr b95fc180 , thread 9465 , mypolls 0 +myconn 0 connecting thr b95fc180 , thread 9465 , mypolls 0 +thr b95fc300 , status 1 +connecting thr b95fc300 , thread 9466 , mypolls 0 +myconn 0 connecting thr b95fc300 , thread 9466 , mypolls 0 +thr b95fc480 , status 1 +connecting thr b95fc480 , thread 9467 , mypolls 0 +myconn 0 connecting thr b95fc480 , thread 9467 , mypolls 0 +thr b95fc600 , status 1 +connecting thr b95fc600 , thread 9468 , mypolls 0 +myconn 0 connecting thr b95fc600 , thread 9468 , mypolls 0 +thr b95fc780 , status 1 +connecting thr b95fc780 , thread 9469 , mypolls 0 +myconn 0 connecting thr b95fc780 , thread 9469 , mypolls 0 +thr b95fc900 , status 1 +connecting thr b95fc900 , thread 9470 , mypolls 0 +myconn 0 connecting thr b95fc900 , thread 9470 , mypolls 0 +thr b95fca80 , status 1 +connecting thr b95fca80 , thread 9471 , mypolls 0 +myconn 0 connecting thr b95fca80 , thread 9471 , mypolls 0 +thr b95fcc00 , status 1 +connecting thr b95fcc00 , thread 9472 , mypolls 0 +myconn 0 connecting thr b95fcc00 , thread 9472 , mypolls 0 +thr b95fcd80 , status 1 +connecting thr b95fcd80 , thread 9473 , mypolls 0 +myconn 0 connecting thr b95fcd80 , thread 9473 , mypolls 0 +thr b95fcf00 , status 1 +connecting thr b95fcf00 , thread 9474 , mypolls 0 +myconn 0 connecting thr b95fcf00 , thread 9474 , mypolls 0 +thr b95fd080 , status 1 +connecting thr b95fd080 , thread 9475 , mypolls 0 +myconn 0 connecting thr b95fd080 , thread 9475 , mypolls 0 +thr b95fd200 , status 1 +connecting thr b95fd200 , thread 9476 , mypolls 0 +myconn 0 connecting thr b95fd200 , thread 9476 , mypolls 0 +thr b95fd380 , status 1 +connecting thr b95fd380 , thread 9477 , mypolls 0 +myconn 0 connecting thr b95fd380 , thread 9477 , mypolls 0 +thr b95fd500 , status 1 +connecting thr b95fd500 , thread 9478 , mypolls 0 +myconn 0 connecting thr b95fd500 , thread 9478 , mypolls 0 +thr b95fd680 , status 1 +connecting thr b95fd680 , thread 9479 , mypolls 0 +myconn 0 connecting thr b95fd680 , thread 9479 , mypolls 0 +thr b95fd800 , status 1 +connecting thr b95fd800 , thread 9480 , mypolls 0 +myconn 0 connecting thr b95fd800 , thread 9480 , mypolls 0 +thr b95fd980 , status 1 +connecting thr b95fd980 , thread 9481 , mypolls 0 +myconn 0 connecting thr b95fd980 , thread 9481 , mypolls 0 +thr b95fdb00 , status 1 +connecting thr b95fdb00 , thread 9482 , mypolls 0 +myconn 0 connecting thr b95fdb00 , thread 9482 , mypolls 0 +thr b95fdc80 , status 1 +connecting thr b95fdc80 , thread 9483 , mypolls 0 +myconn 0 connecting thr b95fdc80 , thread 9483 , mypolls 0 +thr b95fde00 , status 1 +connecting thr b95fde00 , thread 9484 , mypolls 0 +myconn 0 connecting thr b95fde00 , thread 9484 , mypolls 0 +thr b95fdf80 , status 1 +connecting thr b95fdf80 , thread 9485 , mypolls 0 +myconn 0 connecting thr b95fdf80 , thread 9485 , mypolls 0 +thr b95fe100 , status 1 +connecting thr b95fe100 , thread 9486 , mypolls 0 +myconn 0 connecting thr b95fe100 , thread 9486 , mypolls 0 +thr b95fe280 , status 1 +connecting thr b95fe280 , thread 9487 , mypolls 0 +myconn 0 connecting thr b95fe280 , thread 9487 , mypolls 0 +thr b95fe400 , status 1 +connecting thr b95fe400 , thread 9488 , mypolls 0 +myconn 0 connecting thr b95fe400 , thread 9488 , mypolls 0 +thr b95fe580 , status 1 +connecting thr b95fe580 , thread 9489 , mypolls 0 +myconn 0 connecting thr b95fe580 , thread 9489 , mypolls 0 +thr b95fe700 , status 1 +connecting thr b95fe700 , thread 9490 , mypolls 0 +myconn 0 connecting thr b95fe700 , thread 9490 , mypolls 0 +thr b95fe880 , status 1 +connecting thr b95fe880 , thread 9491 , mypolls 0 +myconn 0 connecting thr b95fe880 , thread 9491 , mypolls 0 +thr b95fea00 , status 1 +connecting thr b95fea00 , thread 9492 , mypolls 0 +myconn 0 connecting thr b95fea00 , thread 9492 , mypolls 0 +thr b95feb80 , status 1 +connecting thr b95feb80 , thread 9493 , mypolls 0 +myconn 0 connecting thr b95feb80 , thread 9493 , mypolls 0 +thr b95fed00 , status 1 +connecting thr b95fed00 , thread 9494 , mypolls 0 +myconn 0 connecting thr b95fed00 , thread 9494 , mypolls 0 +thr b95fee80 , status 1 +connecting thr b95fee80 , thread 9495 , mypolls 0 +myconn 0 connecting thr b95fee80 , thread 9495 , mypolls 0 +thr b912b000 , status 1 +connecting thr b912b000 , thread 9496 , mypolls 0 +myconn 0 connecting thr b912b000 , thread 9496 , mypolls 0 +thr b912b180 , status 1 +connecting thr b912b180 , thread 9497 , mypolls 0 +myconn 0 connecting thr b912b180 , thread 9497 , mypolls 0 +thr b912b300 , status 1 +connecting thr b912b300 , thread 9498 , mypolls 0 +myconn 0 connecting thr b912b300 , thread 9498 , mypolls 0 +thr b912b480 , status 1 +connecting thr b912b480 , thread 9499 , mypolls 0 +myconn 0 connecting thr b912b480 , thread 9499 , mypolls 0 +thr b912b600 , status 1 +connecting thr b912b600 , thread 9500 , mypolls 0 +myconn 0 connecting thr b912b600 , thread 9500 , mypolls 0 +thr b912b780 , status 1 +connecting thr b912b780 , thread 9501 , mypolls 0 +myconn 0 connecting thr b912b780 , thread 9501 , mypolls 0 +thr b912b900 , status 1 +connecting thr b912b900 , thread 9502 , mypolls 0 +myconn 0 connecting thr b912b900 , thread 9502 , mypolls 0 +thr b912ba80 , status 1 +connecting thr b912ba80 , thread 9503 , mypolls 0 +myconn 0 connecting thr b912ba80 , thread 9503 , mypolls 0 +thr b912bc00 , status 1 +connecting thr b912bc00 , thread 9504 , mypolls 0 +myconn 0 connecting thr b912bc00 , thread 9504 , mypolls 0 +thr b912bd80 , status 1 +connecting thr b912bd80 , thread 9505 , mypolls 0 +myconn 0 connecting thr b912bd80 , thread 9505 , mypolls 0 +thr b912bf00 , status 1 +connecting thr b912bf00 , thread 9506 , mypolls 0 +myconn 0 connecting thr b912bf00 , thread 9506 , mypolls 0 +thr b912c080 , status 1 +connecting thr b912c080 , thread 9507 , mypolls 0 +myconn 0 connecting thr b912c080 , thread 9507 , mypolls 0 +thr b912c200 , status 1 +connecting thr b912c200 , thread 9508 , mypolls 0 +myconn 0 connecting thr b912c200 , thread 9508 , mypolls 0 +thr b912c380 , status 1 +connecting thr b912c380 , thread 9509 , mypolls 0 +myconn 0 connecting thr b912c380 , thread 9509 , mypolls 0 +thr b912c500 , status 1 +connecting thr b912c500 , thread 9510 , mypolls 0 +myconn 0 connecting thr b912c500 , thread 9510 , mypolls 0 +thr b912c680 , status 1 +connecting thr b912c680 , thread 9511 , mypolls 0 +myconn 0 connecting thr b912c680 , thread 9511 , mypolls 0 +thr b912c800 , status 1 +connecting thr b912c800 , thread 9512 , mypolls 0 +myconn 0 connecting thr b912c800 , thread 9512 , mypolls 0 +thr b912c980 , status 1 +connecting thr b912c980 , thread 9513 , mypolls 0 +myconn 0 connecting thr b912c980 , thread 9513 , mypolls 0 +thr b912cb00 , status 1 +connecting thr b912cb00 , thread 9514 , mypolls 0 +myconn 0 connecting thr b912cb00 , thread 9514 , mypolls 0 +thr b912cc80 , status 1 +connecting thr b912cc80 , thread 9515 , mypolls 0 +myconn 0 connecting thr b912cc80 , thread 9515 , mypolls 0 +thr b912ce00 , status 1 +connecting thr b912ce00 , thread 9516 , mypolls 0 +myconn 0 connecting thr b912ce00 , thread 9516 , mypolls 0 +thr b912cf80 , status 1 +connecting thr b912cf80 , thread 9517 , mypolls 0 +myconn 0 connecting thr b912cf80 , thread 9517 , mypolls 0 +thr b912d100 , status 1 +connecting thr b912d100 , thread 9518 , mypolls 0 +myconn 0 connecting thr b912d100 , thread 9518 , mypolls 0 +thr b912d280 , status 1 +connecting thr b912d280 , thread 9519 , mypolls 0 +myconn 0 connecting thr b912d280 , thread 9519 , mypolls 0 +thr b912d400 , status 1 +connecting thr b912d400 , thread 9520 , mypolls 0 +myconn 0 connecting thr b912d400 , thread 9520 , mypolls 0 +thr b912d580 , status 1 +connecting thr b912d580 , thread 9521 , mypolls 0 +myconn 0 connecting thr b912d580 , thread 9521 , mypolls 0 +thr b912d700 , status 1 +connecting thr b912d700 , thread 9522 , mypolls 0 +myconn 0 connecting thr b912d700 , thread 9522 , mypolls 0 +thr b912d880 , status 1 +connecting thr b912d880 , thread 9523 , mypolls 0 +myconn 0 connecting thr b912d880 , thread 9523 , mypolls 0 +thr b912da00 , status 1 +connecting thr b912da00 , thread 9524 , mypolls 0 +myconn 0 connecting thr b912da00 , thread 9524 , mypolls 0 +thr b912db80 , status 1 +connecting thr b912db80 , thread 9525 , mypolls 0 +myconn 0 connecting thr b912db80 , thread 9525 , mypolls 0 +thr b912dd00 , status 1 +connecting thr b912dd00 , thread 9526 , mypolls 0 +myconn 0 connecting thr b912dd00 , thread 9526 , mypolls 0 +thr b912de80 , status 1 +connecting thr b912de80 , thread 9527 , mypolls 0 +myconn 0 connecting thr b912de80 , thread 9527 , mypolls 0 +thr b8f90000 , status 1 +connecting thr b8f90000 , thread 9528 , mypolls 0 +myconn 0 connecting thr b8f90000 , thread 9528 , mypolls 0 +thr b8f90180 , status 1 +connecting thr b8f90180 , thread 9529 , mypolls 0 +myconn 0 connecting thr b8f90180 , thread 9529 , mypolls 0 +thr b8f90300 , status 1 +connecting thr b8f90300 , thread 9530 , mypolls 0 +myconn 0 connecting thr b8f90300 , thread 9530 , mypolls 0 +thr b8f90480 , status 1 +connecting thr b8f90480 , thread 9531 , mypolls 0 +myconn 0 connecting thr b8f90480 , thread 9531 , mypolls 0 +thr b8f90600 , status 1 +connecting thr b8f90600 , thread 9532 , mypolls 0 +myconn 0 connecting thr b8f90600 , thread 9532 , mypolls 0 +thr b8f90780 , status 1 +connecting thr b8f90780 , thread 9533 , mypolls 0 +myconn 0 connecting thr b8f90780 , thread 9533 , mypolls 0 +thr b8f90900 , status 1 +connecting thr b8f90900 , thread 9534 , mypolls 0 +myconn 0 connecting thr b8f90900 , thread 9534 , mypolls 0 +thr b8f90a80 , status 1 +connecting thr b8f90a80 , thread 9535 , mypolls 0 +myconn 0 connecting thr b8f90a80 , thread 9535 , mypolls 0 +thr b8f90c00 , status 1 +connecting thr b8f90c00 , thread 9536 , mypolls 0 +myconn 0 connecting thr b8f90c00 , thread 9536 , mypolls 0 +thr b8f90d80 , status 1 +connecting thr b8f90d80 , thread 9537 , mypolls 0 +myconn 0 connecting thr b8f90d80 , thread 9537 , mypolls 0 +thr b8f90f00 , status 1 +connecting thr b8f90f00 , thread 9538 , mypolls 0 +myconn 0 connecting thr b8f90f00 , thread 9538 , mypolls 0 +thr b8f91080 , status 1 +connecting thr b8f91080 , thread 9539 , mypolls 0 +myconn 0 connecting thr b8f91080 , thread 9539 , mypolls 0 +thr b8f91200 , status 1 +connecting thr b8f91200 , thread 9540 , mypolls 0 +myconn 0 connecting thr b8f91200 , thread 9540 , mypolls 0 +thr b8f91380 , status 1 +connecting thr b8f91380 , thread 9541 , mypolls 0 +myconn 0 connecting thr b8f91380 , thread 9541 , mypolls 0 +thr b8f91500 , status 1 +connecting thr b8f91500 , thread 9542 , mypolls 0 +myconn 0 connecting thr b8f91500 , thread 9542 , mypolls 0 +thr b8f91680 , status 1 +connecting thr b8f91680 , thread 9543 , mypolls 0 +myconn 0 connecting thr b8f91680 , thread 9543 , mypolls 0 +thr b8f91800 , status 1 +connecting thr b8f91800 , thread 9544 , mypolls 0 +myconn 0 connecting thr b8f91800 , thread 9544 , mypolls 0 +thr b8f91980 , status 1 +connecting thr b8f91980 , thread 9545 , mypolls 0 +myconn 0 connecting thr b8f91980 , thread 9545 , mypolls 0 +thr b8f91b00 , status 1 +connecting thr b8f91b00 , thread 9546 , mypolls 0 +myconn 0 connecting thr b8f91b00 , thread 9546 , mypolls 0 +thr b8f91c80 , status 1 +connecting thr b8f91c80 , thread 9547 , mypolls 0 +myconn 0 connecting thr b8f91c80 , thread 9547 , mypolls 0 +thr b8f91e00 , status 1 +connecting thr b8f91e00 , thread 9548 , mypolls 0 +myconn 0 connecting thr b8f91e00 , thread 9548 , mypolls 0 +thr b8f91f80 , status 1 +connecting thr b8f91f80 , thread 9549 , mypolls 0 +myconn 0 connecting thr b8f91f80 , thread 9549 , mypolls 0 +thr b8f92100 , status 1 +connecting thr b8f92100 , thread 9550 , mypolls 0 +myconn 0 connecting thr b8f92100 , thread 9550 , mypolls 0 +thr b8f92280 , status 1 +connecting thr b8f92280 , thread 9551 , mypolls 0 +myconn 0 connecting thr b8f92280 , thread 9551 , mypolls 0 +thr b8f92400 , status 1 +connecting thr b8f92400 , thread 9552 , mypolls 0 +myconn 0 connecting thr b8f92400 , thread 9552 , mypolls 0 +thr b8f92580 , status 1 +connecting thr b8f92580 , thread 9553 , mypolls 0 +myconn 0 connecting thr b8f92580 , thread 9553 , mypolls 0 +thr b8f92700 , status 1 +connecting thr b8f92700 , thread 9554 , mypolls 0 +myconn 0 connecting thr b8f92700 , thread 9554 , mypolls 0 +thr b8f92880 , status 1 +connecting thr b8f92880 , thread 9555 , mypolls 0 +myconn 0 connecting thr b8f92880 , thread 9555 , mypolls 0 +thr b8f92a00 , status 1 +connecting thr b8f92a00 , thread 9556 , mypolls 0 +myconn 0 connecting thr b8f92a00 , thread 9556 , mypolls 0 +thr b8f92b80 , status 1 +connecting thr b8f92b80 , thread 9557 , mypolls 0 +myconn 0 connecting thr b8f92b80 , thread 9557 , mypolls 0 +thr b8f92d00 , status 1 +connecting thr b8f92d00 , thread 9558 , mypolls 0 +myconn 0 connecting thr b8f92d00 , thread 9558 , mypolls 0 +thr b8f92e80 , status 1 +connecting thr b8f92e80 , thread 9559 , mypolls 0 +myconn 0 connecting thr b8f92e80 , thread 9559 , mypolls 0 +thr b8df0000 , status 1 +connecting thr b8df0000 , thread 9560 , mypolls 0 +myconn 0 connecting thr b8df0000 , thread 9560 , mypolls 0 +thr b8df0180 , status 1 +connecting thr b8df0180 , thread 9561 , mypolls 0 +myconn 0 connecting thr b8df0180 , thread 9561 , mypolls 0 +thr b8df0300 , status 1 +connecting thr b8df0300 , thread 9562 , mypolls 0 +myconn 0 connecting thr b8df0300 , thread 9562 , mypolls 0 +thr b8df0480 , status 1 +connecting thr b8df0480 , thread 9563 , mypolls 0 +myconn 0 connecting thr b8df0480 , thread 9563 , mypolls 0 +thr b8df0600 , status 1 +connecting thr b8df0600 , thread 9564 , mypolls 0 +myconn 0 connecting thr b8df0600 , thread 9564 , mypolls 0 +thr b8df0780 , status 1 +connecting thr b8df0780 , thread 9565 , mypolls 0 +myconn 0 connecting thr b8df0780 , thread 9565 , mypolls 0 +thr b8df0900 , status 1 +connecting thr b8df0900 , thread 9566 , mypolls 0 +myconn 0 connecting thr b8df0900 , thread 9566 , mypolls 0 +thr b8df0a80 , status 1 +connecting thr b8df0a80 , thread 9567 , mypolls 0 +myconn 0 connecting thr b8df0a80 , thread 9567 , mypolls 0 +thr b8df0c00 , status 1 +connecting thr b8df0c00 , thread 9568 , mypolls 0 +myconn 0 connecting thr b8df0c00 , thread 9568 , mypolls 0 +thr b8df0d80 , status 1 +connecting thr b8df0d80 , thread 9569 , mypolls 0 +myconn 0 connecting thr b8df0d80 , thread 9569 , mypolls 0 +thr b8df0f00 , status 1 +connecting thr b8df0f00 , thread 9570 , mypolls 0 +myconn 0 connecting thr b8df0f00 , thread 9570 , mypolls 0 +thr b8df1080 , status 1 +connecting thr b8df1080 , thread 9571 , mypolls 0 +myconn 0 connecting thr b8df1080 , thread 9571 , mypolls 0 +thr b8df1200 , status 1 +connecting thr b8df1200 , thread 9572 , mypolls 0 +myconn 0 connecting thr b8df1200 , thread 9572 , mypolls 0 +thr b8df1380 , status 1 +connecting thr b8df1380 , thread 9573 , mypolls 0 +myconn 0 connecting thr b8df1380 , thread 9573 , mypolls 0 +thr b8df1500 , status 1 +connecting thr b8df1500 , thread 9574 , mypolls 0 +myconn 0 connecting thr b8df1500 , thread 9574 , mypolls 0 +thr b8df1680 , status 1 +connecting thr b8df1680 , thread 9575 , mypolls 0 +myconn 0 connecting thr b8df1680 , thread 9575 , mypolls 0 +thr b8df1800 , status 1 +connecting thr b8df1800 , thread 9576 , mypolls 0 +myconn 0 connecting thr b8df1800 , thread 9576 , mypolls 0 +thr b8df1980 , status 1 +connecting thr b8df1980 , thread 9577 , mypolls 0 +myconn 0 connecting thr b8df1980 , thread 9577 , mypolls 0 +thr b8df1b00 , status 1 +connecting thr b8df1b00 , thread 9578 , mypolls 0 +myconn 0 connecting thr b8df1b00 , thread 9578 , mypolls 0 +thr b8df1c80 , status 1 +connecting thr b8df1c80 , thread 9579 , mypolls 0 +myconn 0 connecting thr b8df1c80 , thread 9579 , mypolls 0 +thr b8df1e00 , status 1 +connecting thr b8df1e00 , thread 9580 , mypolls 0 +myconn 0 connecting thr b8df1e00 , thread 9580 , mypolls 0 +thr b8df1f80 , status 1 +connecting thr b8df1f80 , thread 9581 , mypolls 0 +myconn 0 connecting thr b8df1f80 , thread 9581 , mypolls 0 +thr b8df2100 , status 1 +connecting thr b8df2100 , thread 9582 , mypolls 0 +myconn 0 connecting thr b8df2100 , thread 9582 , mypolls 0 +thr b8df2280 , status 1 +connecting thr b8df2280 , thread 9583 , mypolls 0 +myconn 0 connecting thr b8df2280 , thread 9583 , mypolls 0 +thr b8df2400 , status 1 +connecting thr b8df2400 , thread 9584 , mypolls 0 +myconn 0 connecting thr b8df2400 , thread 9584 , mypolls 0 +thr b8df2580 , status 1 +connecting thr b8df2580 , thread 9585 , mypolls 0 +myconn 0 connecting thr b8df2580 , thread 9585 , mypolls 0 +thr b8df2700 , status 1 +connecting thr b8df2700 , thread 9586 , mypolls 0 +myconn 0 connecting thr b8df2700 , thread 9586 , mypolls 0 +thr b8df2880 , status 1 +connecting thr b8df2880 , thread 9587 , mypolls 0 +myconn 0 connecting thr b8df2880 , thread 9587 , mypolls 0 +thr b8df2a00 , status 1 +connecting thr b8df2a00 , thread 9588 , mypolls 0 +myconn 0 connecting thr b8df2a00 , thread 9588 , mypolls 0 +thr b8df2b80 , status 1 +connecting thr b8df2b80 , thread 9589 , mypolls 0 +myconn 0 connecting thr b8df2b80 , thread 9589 , mypolls 0 +thr b8df2d00 , status 1 +connecting thr b8df2d00 , thread 9590 , mypolls 0 +myconn 0 connecting thr b8df2d00 , thread 9590 , mypolls 0 +thr b8df2e80 , status 1 +connecting thr b8df2e80 , thread 9591 , mypolls 0 +myconn 0 connecting thr b8df2e80 , thread 9591 , mypolls 0 +thr b885e000 , status 1 +connecting thr b885e000 , thread 9592 , mypolls 0 +myconn 0 connecting thr b885e000 , thread 9592 , mypolls 0 +thr b885e180 , status 1 +connecting thr b885e180 , thread 9593 , mypolls 0 +myconn 0 connecting thr b885e180 , thread 9593 , mypolls 0 +thr b885e300 , status 1 +connecting thr b885e300 , thread 9594 , mypolls 0 +myconn 0 connecting thr b885e300 , thread 9594 , mypolls 0 +thr b885e480 , status 1 +connecting thr b885e480 , thread 9595 , mypolls 0 +myconn 0 connecting thr b885e480 , thread 9595 , mypolls 0 +thr b885e600 , status 1 +connecting thr b885e600 , thread 9596 , mypolls 0 +myconn 0 connecting thr b885e600 , thread 9596 , mypolls 0 +thr b885e780 , status 1 +connecting thr b885e780 , thread 9597 , mypolls 0 +myconn 0 connecting thr b885e780 , thread 9597 , mypolls 0 +thr b885e900 , status 1 +connecting thr b885e900 , thread 9598 , mypolls 0 +myconn 0 connecting thr b885e900 , thread 9598 , mypolls 0 +thr b885ea80 , status 1 +connecting thr b885ea80 , thread 9599 , mypolls 0 +myconn 0 connecting thr b885ea80 , thread 9599 , mypolls 0 +thr b885ec00 , status 1 +connecting thr b885ec00 , thread 9600 , mypolls 0 +myconn 0 connecting thr b885ec00 , thread 9600 , mypolls 0 +thr b885ed80 , status 1 +connecting thr b885ed80 , thread 9601 , mypolls 0 +myconn 0 connecting thr b885ed80 , thread 9601 , mypolls 0 +thr b885ef00 , status 1 +connecting thr b885ef00 , thread 9602 , mypolls 0 +myconn 0 connecting thr b885ef00 , thread 9602 , mypolls 0 +thr b885f080 , status 1 +connecting thr b885f080 , thread 9603 , mypolls 0 +myconn 0 connecting thr b885f080 , thread 9603 , mypolls 0 +thr b885f200 , status 1 +connecting thr b885f200 , thread 9604 , mypolls 0 +myconn 0 connecting thr b885f200 , thread 9604 , mypolls 0 +thr b885f380 , status 1 +connecting thr b885f380 , thread 9605 , mypolls 0 +myconn 0 connecting thr b885f380 , thread 9605 , mypolls 0 +thr b885f500 , status 1 +connecting thr b885f500 , thread 9606 , mypolls 0 +myconn 0 connecting thr b885f500 , thread 9606 , mypolls 0 +thr b885f680 , status 1 +connecting thr b885f680 , thread 9607 , mypolls 0 +myconn 0 connecting thr b885f680 , thread 9607 , mypolls 0 +thr b885f800 , status 1 +connecting thr b885f800 , thread 9608 , mypolls 0 +myconn 0 connecting thr b885f800 , thread 9608 , mypolls 0 +thr b885f980 , status 1 +connecting thr b885f980 , thread 9609 , mypolls 0 +myconn 0 connecting thr b885f980 , thread 9609 , mypolls 0 +thr b885fb00 , status 1 +connecting thr b885fb00 , thread 9610 , mypolls 0 +myconn 0 connecting thr b885fb00 , thread 9610 , mypolls 0 +thr b885fc80 , status 1 +connecting thr b885fc80 , thread 9611 , mypolls 0 +myconn 0 connecting thr b885fc80 , thread 9611 , mypolls 0 +thr b885fe00 , status 1 +connecting thr b885fe00 , thread 9612 , mypolls 0 +myconn 0 connecting thr b885fe00 , thread 9612 , mypolls 0 +thr b885ff80 , status 1 +connecting thr b885ff80 , thread 9613 , mypolls 0 +myconn 0 connecting thr b885ff80 , thread 9613 , mypolls 0 +thr b8860100 , status 1 +connecting thr b8860100 , thread 9614 , mypolls 0 +myconn 0 connecting thr b8860100 , thread 9614 , mypolls 0 +thr b8860280 , status 1 +connecting thr b8860280 , thread 9615 , mypolls 0 +myconn 0 connecting thr b8860280 , thread 9615 , mypolls 0 +thr b8860400 , status 1 +connecting thr b8860400 , thread 9616 , mypolls 0 +myconn 0 connecting thr b8860400 , thread 9616 , mypolls 0 +thr b8860580 , status 1 +connecting thr b8860580 , thread 9617 , mypolls 0 +myconn 0 connecting thr b8860580 , thread 9617 , mypolls 0 +thr b8860700 , status 1 +connecting thr b8860700 , thread 9618 , mypolls 0 +myconn 0 connecting thr b8860700 , thread 9618 , mypolls 0 +thr b8860880 , status 1 +connecting thr b8860880 , thread 9619 , mypolls 0 +myconn 0 connecting thr b8860880 , thread 9619 , mypolls 0 +thr b8860a00 , status 1 +connecting thr b8860a00 , thread 9620 , mypolls 0 +myconn 0 connecting thr b8860a00 , thread 9620 , mypolls 0 +thr b8860b80 , status 1 +connecting thr b8860b80 , thread 9621 , mypolls 0 +myconn 0 connecting thr b8860b80 , thread 9621 , mypolls 0 +thr b8860d00 , status 1 +connecting thr b8860d00 , thread 9622 , mypolls 0 +myconn 0 connecting thr b8860d00 , thread 9622 , mypolls 0 +thr b8860e80 , status 1 +connecting thr b8860e80 , thread 9623 , mypolls 0 +myconn 0 connecting thr b8860e80 , thread 9623 , mypolls 0 +thr b86c2000 , status 1 +connecting thr b86c2000 , thread 9624 , mypolls 0 +myconn 0 connecting thr b86c2000 , thread 9624 , mypolls 0 +thr b86c2180 , status 1 +connecting thr b86c2180 , thread 9625 , mypolls 0 +myconn 0 connecting thr b86c2180 , thread 9625 , mypolls 0 +thr b86c2300 , status 1 +connecting thr b86c2300 , thread 9626 , mypolls 0 +myconn 0 connecting thr b86c2300 , thread 9626 , mypolls 0 +thr b86c2480 , status 1 +connecting thr b86c2480 , thread 9627 , mypolls 0 +myconn 0 connecting thr b86c2480 , thread 9627 , mypolls 0 +thr b86c2600 , status 1 +connecting thr b86c2600 , thread 9628 , mypolls 0 +myconn 0 connecting thr b86c2600 , thread 9628 , mypolls 0 +thr b86c2780 , status 1 +connecting thr b86c2780 , thread 9629 , mypolls 0 +myconn 0 connecting thr b86c2780 , thread 9629 , mypolls 0 +thr b86c2900 , status 1 +connecting thr b86c2900 , thread 9630 , mypolls 0 +myconn 0 connecting thr b86c2900 , thread 9630 , mypolls 0 +thr b86c2a80 , status 1 +connecting thr b86c2a80 , thread 9631 , mypolls 0 +myconn 0 connecting thr b86c2a80 , thread 9631 , mypolls 0 +thr b86c2c00 , status 1 +connecting thr b86c2c00 , thread 9632 , mypolls 0 +myconn 0 connecting thr b86c2c00 , thread 9632 , mypolls 0 +thr b86c2d80 , status 1 +connecting thr b86c2d80 , thread 9633 , mypolls 0 +myconn 0 connecting thr b86c2d80 , thread 9633 , mypolls 0 +thr b86c2f00 , status 1 +connecting thr b86c2f00 , thread 9634 , mypolls 0 +myconn 0 connecting thr b86c2f00 , thread 9634 , mypolls 0 +thr b86c3080 , status 1 +connecting thr b86c3080 , thread 9635 , mypolls 0 +myconn 0 connecting thr b86c3080 , thread 9635 , mypolls 0 +thr b86c3200 , status 1 +connecting thr b86c3200 , thread 9636 , mypolls 0 +myconn 0 connecting thr b86c3200 , thread 9636 , mypolls 0 +thr b86c3380 , status 1 +connecting thr b86c3380 , thread 9637 , mypolls 0 +myconn 0 connecting thr b86c3380 , thread 9637 , mypolls 0 +thr b86c3500 , status 1 +connecting thr b86c3500 , thread 9638 , mypolls 0 +myconn 0 connecting thr b86c3500 , thread 9638 , mypolls 0 +thr b86c3680 , status 1 +connecting thr b86c3680 , thread 9639 , mypolls 0 +myconn 0 connecting thr b86c3680 , thread 9639 , mypolls 0 +thr b86c3800 , status 1 +connecting thr b86c3800 , thread 9640 , mypolls 0 +myconn 0 connecting thr b86c3800 , thread 9640 , mypolls 0 +thr b86c3980 , status 1 +connecting thr b86c3980 , thread 9641 , mypolls 0 +myconn 0 connecting thr b86c3980 , thread 9641 , mypolls 0 +thr b86c3b00 , status 1 +connecting thr b86c3b00 , thread 9642 , mypolls 0 +myconn 0 connecting thr b86c3b00 , thread 9642 , mypolls 0 +thr b86c3c80 , status 1 +connecting thr b86c3c80 , thread 9643 , mypolls 0 +myconn 0 connecting thr b86c3c80 , thread 9643 , mypolls 0 +thr b86c3e00 , status 1 +connecting thr b86c3e00 , thread 9644 , mypolls 0 +myconn 0 connecting thr b86c3e00 , thread 9644 , mypolls 0 +thr b86c3f80 , status 1 +connecting thr b86c3f80 , thread 9645 , mypolls 0 +myconn 0 connecting thr b86c3f80 , thread 9645 , mypolls 0 +thr b86c4100 , status 1 +connecting thr b86c4100 , thread 9646 , mypolls 0 +myconn 0 connecting thr b86c4100 , thread 9646 , mypolls 0 +thr b86c4280 , status 1 +connecting thr b86c4280 , thread 9647 , mypolls 0 +myconn 0 connecting thr b86c4280 , thread 9647 , mypolls 0 +thr b86c4400 , status 1 +connecting thr b86c4400 , thread 9648 , mypolls 0 +myconn 0 connecting thr b86c4400 , thread 9648 , mypolls 0 +thr b86c4580 , status 1 +connecting thr b86c4580 , thread 9649 , mypolls 0 +myconn 0 connecting thr b86c4580 , thread 9649 , mypolls 0 +thr b86c4700 , status 1 +connecting thr b86c4700 , thread 9650 , mypolls 0 +myconn 0 connecting thr b86c4700 , thread 9650 , mypolls 0 +thr b86c4880 , status 1 +connecting thr b86c4880 , thread 9651 , mypolls 0 +myconn 0 connecting thr b86c4880 , thread 9651 , mypolls 0 +thr b86c4a00 , status 1 +connecting thr b86c4a00 , thread 9652 , mypolls 0 +myconn 0 connecting thr b86c4a00 , thread 9652 , mypolls 0 +thr b86c4b80 , status 1 +connecting thr b86c4b80 , thread 9653 , mypolls 0 +myconn 0 connecting thr b86c4b80 , thread 9653 , mypolls 0 +thr b86c4d00 , status 1 +connecting thr b86c4d00 , thread 9654 , mypolls 0 +myconn 0 connecting thr b86c4d00 , thread 9654 , mypolls 0 +thr b86c4e80 , status 1 +connecting thr b86c4e80 , thread 9655 , mypolls 0 +myconn 0 connecting thr b86c4e80 , thread 9655 , mypolls 0 +thr b8524000 , status 1 +connecting thr b8524000 , thread 9656 , mypolls 0 +myconn 0 connecting thr b8524000 , thread 9656 , mypolls 0 +thr b8524180 , status 1 +connecting thr b8524180 , thread 9657 , mypolls 0 +myconn 0 connecting thr b8524180 , thread 9657 , mypolls 0 +thr b8524300 , status 1 +connecting thr b8524300 , thread 9658 , mypolls 0 +myconn 0 connecting thr b8524300 , thread 9658 , mypolls 0 +thr b8524480 , status 1 +connecting thr b8524480 , thread 9659 , mypolls 0 +myconn 0 connecting thr b8524480 , thread 9659 , mypolls 0 +thr b8524600 , status 1 +connecting thr b8524600 , thread 9660 , mypolls 0 +myconn 0 connecting thr b8524600 , thread 9660 , mypolls 0 +thr b8524780 , status 1 +connecting thr b8524780 , thread 9661 , mypolls 0 +myconn 0 connecting thr b8524780 , thread 9661 , mypolls 0 +thr b8524900 , status 1 +connecting thr b8524900 , thread 9662 , mypolls 0 +myconn 0 connecting thr b8524900 , thread 9662 , mypolls 0 +thr b8524a80 , status 1 +connecting thr b8524a80 , thread 9663 , mypolls 0 +myconn 0 connecting thr b8524a80 , thread 9663 , mypolls 0 +thr b8524c00 , status 1 +connecting thr b8524c00 , thread 9664 , mypolls 0 +myconn 0 connecting thr b8524c00 , thread 9664 , mypolls 0 +thr b8524d80 , status 1 +connecting thr b8524d80 , thread 9665 , mypolls 0 +myconn 0 connecting thr b8524d80 , thread 9665 , mypolls 0 +thr b8524f00 , status 1 +connecting thr b8524f00 , thread 9666 , mypolls 0 +myconn 0 connecting thr b8524f00 , thread 9666 , mypolls 0 +thr b8525080 , status 1 +connecting thr b8525080 , thread 9667 , mypolls 0 +myconn 0 connecting thr b8525080 , thread 9667 , mypolls 0 +thr b8525200 , status 1 +connecting thr b8525200 , thread 9668 , mypolls 0 +myconn 0 connecting thr b8525200 , thread 9668 , mypolls 0 +thr b8525380 , status 1 +connecting thr b8525380 , thread 9669 , mypolls 0 +myconn 0 connecting thr b8525380 , thread 9669 , mypolls 0 +thr b8525500 , status 1 +connecting thr b8525500 , thread 9670 , mypolls 0 +myconn 0 connecting thr b8525500 , thread 9670 , mypolls 0 +thr b8525680 , status 1 +connecting thr b8525680 , thread 9671 , mypolls 0 +myconn 0 connecting thr b8525680 , thread 9671 , mypolls 0 +thr b8525800 , status 1 +connecting thr b8525800 , thread 9672 , mypolls 0 +myconn 0 connecting thr b8525800 , thread 9672 , mypolls 0 +thr b8525980 , status 1 +connecting thr b8525980 , thread 9673 , mypolls 0 +myconn 0 connecting thr b8525980 , thread 9673 , mypolls 0 +thr b8525b00 , status 1 +connecting thr b8525b00 , thread 9674 , mypolls 0 +myconn 0 connecting thr b8525b00 , thread 9674 , mypolls 0 +thr b8525c80 , status 1 +connecting thr b8525c80 , thread 9675 , mypolls 0 +myconn 0 connecting thr b8525c80 , thread 9675 , mypolls 0 +thr b8525e00 , status 1 +connecting thr b8525e00 , thread 9676 , mypolls 0 +myconn 0 connecting thr b8525e00 , thread 9676 , mypolls 0 +thr b8525f80 , status 1 +connecting thr b8525f80 , thread 9677 , mypolls 0 +myconn 0 connecting thr b8525f80 , thread 9677 , mypolls 0 +thr b8526100 , status 1 +connecting thr b8526100 , thread 9678 , mypolls 0 +myconn 0 connecting thr b8526100 , thread 9678 , mypolls 0 +thr b8526280 , status 1 +connecting thr b8526280 , thread 9679 , mypolls 0 +myconn 0 connecting thr b8526280 , thread 9679 , mypolls 0 +thr b8526400 , status 1 +connecting thr b8526400 , thread 9680 , mypolls 0 +myconn 0 connecting thr b8526400 , thread 9680 , mypolls 0 +thr b8526580 , status 1 +connecting thr b8526580 , thread 9681 , mypolls 0 +myconn 0 connecting thr b8526580 , thread 9681 , mypolls 0 +thr b8526700 , status 1 +connecting thr b8526700 , thread 9682 , mypolls 0 +myconn 0 connecting thr b8526700 , thread 9682 , mypolls 0 +thr b8526880 , status 1 +connecting thr b8526880 , thread 9683 , mypolls 0 +myconn 0 connecting thr b8526880 , thread 9683 , mypolls 0 +thr b8526a00 , status 1 +connecting thr b8526a00 , thread 9684 , mypolls 0 +myconn 0 connecting thr b8526a00 , thread 9684 , mypolls 0 +thr b8526b80 , status 1 +connecting thr b8526b80 , thread 9685 , mypolls 0 +myconn 0 connecting thr b8526b80 , thread 9685 , mypolls 0 +thr b8526d00 , status 1 +connecting thr b8526d00 , thread 9686 , mypolls 0 +myconn 0 connecting thr b8526d00 , thread 9686 , mypolls 0 +thr b8526e80 , status 1 +connecting thr b8526e80 , thread 9687 , mypolls 0 +myconn 0 connecting thr b8526e80 , thread 9687 , mypolls 0 +thr b838d000 , status 1 +connecting thr b838d000 , thread 9688 , mypolls 0 +myconn 0 connecting thr b838d000 , thread 9688 , mypolls 0 +thr b838d180 , status 1 +connecting thr b838d180 , thread 9689 , mypolls 0 +myconn 0 connecting thr b838d180 , thread 9689 , mypolls 0 +thr b838d300 , status 1 +connecting thr b838d300 , thread 9690 , mypolls 0 +myconn 0 connecting thr b838d300 , thread 9690 , mypolls 0 +thr b838d480 , status 1 +connecting thr b838d480 , thread 9691 , mypolls 0 +myconn 0 connecting thr b838d480 , thread 9691 , mypolls 0 +thr b838d600 , status 1 +connecting thr b838d600 , thread 9692 , mypolls 0 +myconn 0 connecting thr b838d600 , thread 9692 , mypolls 0 +thr b838d780 , status 1 +connecting thr b838d780 , thread 9693 , mypolls 0 +myconn 0 connecting thr b838d780 , thread 9693 , mypolls 0 +thr b838d900 , status 1 +connecting thr b838d900 , thread 9694 , mypolls 0 +myconn 0 connecting thr b838d900 , thread 9694 , mypolls 0 +thr b838da80 , status 1 +connecting thr b838da80 , thread 9695 , mypolls 0 +myconn 0 connecting thr b838da80 , thread 9695 , mypolls 0 +thr b838dc00 , status 1 +connecting thr b838dc00 , thread 9696 , mypolls 0 +myconn 0 connecting thr b838dc00 , thread 9696 , mypolls 0 +thr b838dd80 , status 1 +connecting thr b838dd80 , thread 9697 , mypolls 0 +myconn 0 connecting thr b838dd80 , thread 9697 , mypolls 0 +thr b838df00 , status 1 +connecting thr b838df00 , thread 9698 , mypolls 0 +myconn 0 connecting thr b838df00 , thread 9698 , mypolls 0 +thr b838e080 , status 1 +connecting thr b838e080 , thread 9699 , mypolls 0 +myconn 0 connecting thr b838e080 , thread 9699 , mypolls 0 +thr b838e200 , status 1 +connecting thr b838e200 , thread 9700 , mypolls 0 +myconn 0 connecting thr b838e200 , thread 9700 , mypolls 0 +thr b838e380 , status 1 +connecting thr b838e380 , thread 9701 , mypolls 0 +myconn 0 connecting thr b838e380 , thread 9701 , mypolls 0 +thr b838e500 , status 1 +connecting thr b838e500 , thread 9702 , mypolls 0 +myconn 0 connecting thr b838e500 , thread 9702 , mypolls 0 +thr b838e680 , status 1 +connecting thr b838e680 , thread 9703 , mypolls 0 +myconn 0 connecting thr b838e680 , thread 9703 , mypolls 0 +thr b838e800 , status 1 +connecting thr b838e800 , thread 9704 , mypolls 0 +myconn 0 connecting thr b838e800 , thread 9704 , mypolls 0 +thr b838e980 , status 1 +connecting thr b838e980 , thread 9705 , mypolls 0 +myconn 0 connecting thr b838e980 , thread 9705 , mypolls 0 +thr b838eb00 , status 1 +connecting thr b838eb00 , thread 9706 , mypolls 0 +myconn 0 connecting thr b838eb00 , thread 9706 , mypolls 0 +thr b838ec80 , status 1 +connecting thr b838ec80 , thread 9707 , mypolls 0 +myconn 0 connecting thr b838ec80 , thread 9707 , mypolls 0 +thr b838ee00 , status 1 +connecting thr b838ee00 , thread 9708 , mypolls 0 +myconn 0 connecting thr b838ee00 , thread 9708 , mypolls 0 +thr b838ef80 , status 1 +connecting thr b838ef80 , thread 9709 , mypolls 0 +myconn 0 connecting thr b838ef80 , thread 9709 , mypolls 0 +thr b838f100 , status 1 +connecting thr b838f100 , thread 9710 , mypolls 0 +myconn 0 connecting thr b838f100 , thread 9710 , mypolls 0 +thr b838f280 , status 1 +connecting thr b838f280 , thread 9711 , mypolls 0 +myconn 0 connecting thr b838f280 , thread 9711 , mypolls 0 +thr b838f400 , status 1 +connecting thr b838f400 , thread 9712 , mypolls 0 +myconn 0 connecting thr b838f400 , thread 9712 , mypolls 0 +thr b838f580 , status 1 +connecting thr b838f580 , thread 9713 , mypolls 0 +myconn 0 connecting thr b838f580 , thread 9713 , mypolls 0 +thr b838f700 , status 1 +connecting thr b838f700 , thread 9714 , mypolls 0 +myconn 0 connecting thr b838f700 , thread 9714 , mypolls 0 +thr b838f880 , status 1 +connecting thr b838f880 , thread 9715 , mypolls 0 +myconn 0 connecting thr b838f880 , thread 9715 , mypolls 0 +thr b838fa00 , status 1 +connecting thr b838fa00 , thread 9716 , mypolls 0 +myconn 0 connecting thr b838fa00 , thread 9716 , mypolls 0 +thr b838fb80 , status 1 +connecting thr b838fb80 , thread 9717 , mypolls 0 +myconn 0 connecting thr b838fb80 , thread 9717 , mypolls 0 +thr b838fd00 , status 1 +connecting thr b838fd00 , thread 9718 , mypolls 0 +myconn 0 connecting thr b838fd00 , thread 9718 , mypolls 0 +thr b838fe80 , status 1 +connecting thr b838fe80 , thread 9719 , mypolls 0 +myconn 0 connecting thr b838fe80 , thread 9719 , mypolls 0 +thr b81ed000 , status 1 +connecting thr b81ed000 , thread 9720 , mypolls 0 +myconn 0 connecting thr b81ed000 , thread 9720 , mypolls 0 +thr b81ed180 , status 1 +connecting thr b81ed180 , thread 9721 , mypolls 0 +myconn 0 connecting thr b81ed180 , thread 9721 , mypolls 0 +thr b81ed300 , status 1 +connecting thr b81ed300 , thread 9722 , mypolls 0 +myconn 0 connecting thr b81ed300 , thread 9722 , mypolls 0 +thr b81ed480 , status 1 +connecting thr b81ed480 , thread 9723 , mypolls 0 +myconn 0 connecting thr b81ed480 , thread 9723 , mypolls 0 +thr b81ed600 , status 1 +connecting thr b81ed600 , thread 9724 , mypolls 0 +myconn 0 connecting thr b81ed600 , thread 9724 , mypolls 0 +thr b81ed780 , status 1 +connecting thr b81ed780 , thread 9725 , mypolls 0 +myconn 0 connecting thr b81ed780 , thread 9725 , mypolls 0 +thr b81ed900 , status 1 +connecting thr b81ed900 , thread 9726 , mypolls 0 +myconn 0 connecting thr b81ed900 , thread 9726 , mypolls 0 +thr b81eda80 , status 1 +connecting thr b81eda80 , thread 9727 , mypolls 0 +myconn 0 connecting thr b81eda80 , thread 9727 , mypolls 0 +thr b81edc00 , status 1 +connecting thr b81edc00 , thread 9728 , mypolls 0 +myconn 0 connecting thr b81edc00 , thread 9728 , mypolls 0 +thr b81edd80 , status 1 +connecting thr b81edd80 , thread 9729 , mypolls 0 +myconn 0 connecting thr b81edd80 , thread 9729 , mypolls 0 +thr b81edf00 , status 1 +connecting thr b81edf00 , thread 9730 , mypolls 0 +myconn 0 connecting thr b81edf00 , thread 9730 , mypolls 0 +thr b81ee080 , status 1 +connecting thr b81ee080 , thread 9731 , mypolls 0 +myconn 0 connecting thr b81ee080 , thread 9731 , mypolls 0 +thr b81ee200 , status 1 +connecting thr b81ee200 , thread 9732 , mypolls 0 +myconn 0 connecting thr b81ee200 , thread 9732 , mypolls 0 +thr b81ee380 , status 1 +connecting thr b81ee380 , thread 9733 , mypolls 0 +myconn 0 connecting thr b81ee380 , thread 9733 , mypolls 0 +thr b81ee500 , status 1 +connecting thr b81ee500 , thread 9734 , mypolls 0 +myconn 0 connecting thr b81ee500 , thread 9734 , mypolls 0 +thr b81ee680 , status 1 +connecting thr b81ee680 , thread 9735 , mypolls 0 +myconn 0 connecting thr b81ee680 , thread 9735 , mypolls 0 +thr b81ee800 , status 1 +connecting thr b81ee800 , thread 9736 , mypolls 0 +myconn 0 connecting thr b81ee800 , thread 9736 , mypolls 0 +thr b81ee980 , status 1 +connecting thr b81ee980 , thread 9737 , mypolls 0 +myconn 0 connecting thr b81ee980 , thread 9737 , mypolls 0 +thr b81eeb00 , status 1 +connecting thr b81eeb00 , thread 9738 , mypolls 0 +myconn 0 connecting thr b81eeb00 , thread 9738 , mypolls 0 +thr b81eec80 , status 1 +connecting thr b81eec80 , thread 9739 , mypolls 0 +myconn 0 connecting thr b81eec80 , thread 9739 , mypolls 0 +thr b81eee00 , status 1 +connecting thr b81eee00 , thread 9740 , mypolls 0 +myconn 0 connecting thr b81eee00 , thread 9740 , mypolls 0 +thr b81eef80 , status 1 +connecting thr b81eef80 , thread 9741 , mypolls 0 +myconn 0 connecting thr b81eef80 , thread 9741 , mypolls 0 +thr b81ef100 , status 1 +connecting thr b81ef100 , thread 9742 , mypolls 0 +myconn 0 connecting thr b81ef100 , thread 9742 , mypolls 0 +thr b81ef280 , status 1 +connecting thr b81ef280 , thread 9743 , mypolls 0 +myconn 0 connecting thr b81ef280 , thread 9743 , mypolls 0 +thr b81ef400 , status 1 +connecting thr b81ef400 , thread 9744 , mypolls 0 +myconn 0 connecting thr b81ef400 , thread 9744 , mypolls 0 +thr b81ef580 , status 1 +connecting thr b81ef580 , thread 9745 , mypolls 0 +myconn 0 connecting thr b81ef580 , thread 9745 , mypolls 0 +thr b81ef700 , status 1 +connecting thr b81ef700 , thread 9746 , mypolls 0 +myconn 0 connecting thr b81ef700 , thread 9746 , mypolls 0 +thr b81ef880 , status 1 +connecting thr b81ef880 , thread 9747 , mypolls 0 +myconn 0 connecting thr b81ef880 , thread 9747 , mypolls 0 +thr b81efa00 , status 1 +connecting thr b81efa00 , thread 9748 , mypolls 0 +myconn 0 connecting thr b81efa00 , thread 9748 , mypolls 0 +thr b81efb80 , status 1 +connecting thr b81efb80 , thread 9749 , mypolls 0 +myconn 0 connecting thr b81efb80 , thread 9749 , mypolls 0 +thr b81efd00 , status 1 +connecting thr b81efd00 , thread 9750 , mypolls 0 +myconn 0 connecting thr b81efd00 , thread 9750 , mypolls 0 +thr b81efe80 , status 1 +connecting thr b81efe80 , thread 9751 , mypolls 0 +myconn 0 connecting thr b81efe80 , thread 9751 , mypolls 0 +thr b7ffc000 , status 1 +connecting thr b7ffc000 , thread 9752 , mypolls 0 +myconn 0 connecting thr b7ffc000 , thread 9752 , mypolls 0 +thr b7ffc180 , status 1 +connecting thr b7ffc180 , thread 9753 , mypolls 0 +myconn 0 connecting thr b7ffc180 , thread 9753 , mypolls 0 +thr b7ffc300 , status 1 +connecting thr b7ffc300 , thread 9754 , mypolls 0 +myconn 0 connecting thr b7ffc300 , thread 9754 , mypolls 0 +thr b7ffc480 , status 1 +connecting thr b7ffc480 , thread 9755 , mypolls 0 +myconn 0 connecting thr b7ffc480 , thread 9755 , mypolls 0 +thr b7ffc600 , status 1 +connecting thr b7ffc600 , thread 9756 , mypolls 0 +myconn 0 connecting thr b7ffc600 , thread 9756 , mypolls 0 +thr b7ffc780 , status 1 +connecting thr b7ffc780 , thread 9757 , mypolls 0 +myconn 0 connecting thr b7ffc780 , thread 9757 , mypolls 0 +thr b7ffc900 , status 1 +connecting thr b7ffc900 , thread 9758 , mypolls 0 +myconn 0 connecting thr b7ffc900 , thread 9758 , mypolls 0 +thr b7ffca80 , status 1 +connecting thr b7ffca80 , thread 9759 , mypolls 0 +myconn 0 connecting thr b7ffca80 , thread 9759 , mypolls 0 +thr b7ffcc00 , status 1 +connecting thr b7ffcc00 , thread 9760 , mypolls 0 +myconn 0 connecting thr b7ffcc00 , thread 9760 , mypolls 0 +thr b7ffcd80 , status 1 +connecting thr b7ffcd80 , thread 9761 , mypolls 0 +myconn 0 connecting thr b7ffcd80 , thread 9761 , mypolls 0 +thr b7ffcf00 , status 1 +connecting thr b7ffcf00 , thread 9762 , mypolls 0 +myconn 0 connecting thr b7ffcf00 , thread 9762 , mypolls 0 +thr b7ffd080 , status 1 +connecting thr b7ffd080 , thread 9763 , mypolls 0 +myconn 0 connecting thr b7ffd080 , thread 9763 , mypolls 0 +thr b7ffd200 , status 1 +connecting thr b7ffd200 , thread 9764 , mypolls 0 +myconn 0 connecting thr b7ffd200 , thread 9764 , mypolls 0 +thr b7ffd380 , status 1 +connecting thr b7ffd380 , thread 9765 , mypolls 0 +myconn 0 connecting thr b7ffd380 , thread 9765 , mypolls 0 +thr b7ffd500 , status 1 +connecting thr b7ffd500 , thread 9766 , mypolls 0 +myconn 0 connecting thr b7ffd500 , thread 9766 , mypolls 0 +thr b7ffd680 , status 1 +connecting thr b7ffd680 , thread 9767 , mypolls 0 +myconn 0 connecting thr b7ffd680 , thread 9767 , mypolls 0 +thr b7ffd800 , status 1 +connecting thr b7ffd800 , thread 9768 , mypolls 0 +myconn 0 connecting thr b7ffd800 , thread 9768 , mypolls 0 +thr b7ffd980 , status 1 +connecting thr b7ffd980 , thread 9769 , mypolls 0 +myconn 0 connecting thr b7ffd980 , thread 9769 , mypolls 0 +thr b7ffdb00 , status 1 +connecting thr b7ffdb00 , thread 9770 , mypolls 0 +myconn 0 connecting thr b7ffdb00 , thread 9770 , mypolls 0 +thr b7ffdc80 , status 1 +connecting thr b7ffdc80 , thread 9771 , mypolls 0 +myconn 0 connecting thr b7ffdc80 , thread 9771 , mypolls 0 +thr b7ffde00 , status 1 +connecting thr b7ffde00 , thread 9772 , mypolls 0 +myconn 0 connecting thr b7ffde00 , thread 9772 , mypolls 0 +thr b7ffdf80 , status 1 +connecting thr b7ffdf80 , thread 9773 , mypolls 0 +myconn 0 connecting thr b7ffdf80 , thread 9773 , mypolls 0 +thr b7ffe100 , status 1 +connecting thr b7ffe100 , thread 9774 , mypolls 0 +myconn 0 connecting thr b7ffe100 , thread 9774 , mypolls 0 +thr b7ffe280 , status 1 +connecting thr b7ffe280 , thread 9775 , mypolls 0 +myconn 0 connecting thr b7ffe280 , thread 9775 , mypolls 0 +thr b7ffe400 , status 1 +connecting thr b7ffe400 , thread 9776 , mypolls 0 +myconn 0 connecting thr b7ffe400 , thread 9776 , mypolls 0 +thr b7ffe580 , status 1 +connecting thr b7ffe580 , thread 9777 , mypolls 0 +myconn 0 connecting thr b7ffe580 , thread 9777 , mypolls 0 +thr b7ffe700 , status 1 +connecting thr b7ffe700 , thread 9778 , mypolls 0 +myconn 0 connecting thr b7ffe700 , thread 9778 , mypolls 0 +thr b7ffe880 , status 1 +connecting thr b7ffe880 , thread 9779 , mypolls 0 +myconn 0 connecting thr b7ffe880 , thread 9779 , mypolls 0 +thr b7ffea00 , status 1 +connecting thr b7ffea00 , thread 9780 , mypolls 0 +myconn 0 connecting thr b7ffea00 , thread 9780 , mypolls 0 +thr b7ffeb80 , status 1 +connecting thr b7ffeb80 , thread 9781 , mypolls 0 +myconn 0 connecting thr b7ffeb80 , thread 9781 , mypolls 0 +thr b7ffed00 , status 1 +connecting thr b7ffed00 , thread 9782 , mypolls 0 +myconn 0 connecting thr b7ffed00 , thread 9782 , mypolls 0 +thr b7ffee80 , status 1 +connecting thr b7ffee80 , thread 9783 , mypolls 0 +myconn 0 connecting thr b7ffee80 , thread 9783 , mypolls 0 +thr b7ac1000 , status 1 +connecting thr b7ac1000 , thread 9784 , mypolls 0 +myconn 0 connecting thr b7ac1000 , thread 9784 , mypolls 0 +thr b7ac1180 , status 1 +connecting thr b7ac1180 , thread 9785 , mypolls 0 +myconn 0 connecting thr b7ac1180 , thread 9785 , mypolls 0 +thr b7ac1300 , status 1 +connecting thr b7ac1300 , thread 9786 , mypolls 0 +myconn 0 connecting thr b7ac1300 , thread 9786 , mypolls 0 +thr b7ac1480 , status 1 +connecting thr b7ac1480 , thread 9787 , mypolls 0 +myconn 0 connecting thr b7ac1480 , thread 9787 , mypolls 0 +thr b7ac1600 , status 1 +connecting thr b7ac1600 , thread 9788 , mypolls 0 +myconn 0 connecting thr b7ac1600 , thread 9788 , mypolls 0 +thr b7ac1780 , status 1 +connecting thr b7ac1780 , thread 9789 , mypolls 0 +myconn 0 connecting thr b7ac1780 , thread 9789 , mypolls 0 +thr b7ac1900 , status 1 +connecting thr b7ac1900 , thread 9790 , mypolls 0 +myconn 0 connecting thr b7ac1900 , thread 9790 , mypolls 0 +thr b7ac1a80 , status 1 +connecting thr b7ac1a80 , thread 9791 , mypolls 0 +myconn 0 connecting thr b7ac1a80 , thread 9791 , mypolls 0 +thr b7ac1c00 , status 1 +connecting thr b7ac1c00 , thread 9792 , mypolls 0 +myconn 0 connecting thr b7ac1c00 , thread 9792 , mypolls 0 +thr b7ac1d80 , status 1 +connecting thr b7ac1d80 , thread 9793 , mypolls 0 +myconn 0 connecting thr b7ac1d80 , thread 9793 , mypolls 0 +thr b7ac1f00 , status 1 +connecting thr b7ac1f00 , thread 9794 , mypolls 0 +myconn 0 connecting thr b7ac1f00 , thread 9794 , mypolls 0 +thr b7ac2080 , status 1 +connecting thr b7ac2080 , thread 9795 , mypolls 0 +myconn 0 connecting thr b7ac2080 , thread 9795 , mypolls 0 +thr b7ac2200 , status 1 +connecting thr b7ac2200 , thread 9796 , mypolls 0 +myconn 0 connecting thr b7ac2200 , thread 9796 , mypolls 0 +thr b7ac2380 , status 1 +connecting thr b7ac2380 , thread 9797 , mypolls 0 +myconn 0 connecting thr b7ac2380 , thread 9797 , mypolls 0 +thr b7ac2500 , status 1 +connecting thr b7ac2500 , thread 9798 , mypolls 0 +myconn 0 connecting thr b7ac2500 , thread 9798 , mypolls 0 +thr b7ac2680 , status 1 +connecting thr b7ac2680 , thread 9799 , mypolls 0 +myconn 0 connecting thr b7ac2680 , thread 9799 , mypolls 0 +thr b7ac2800 , status 1 +connecting thr b7ac2800 , thread 9800 , mypolls 0 +myconn 0 connecting thr b7ac2800 , thread 9800 , mypolls 0 +thr b7ac2980 , status 1 +connecting thr b7ac2980 , thread 9801 , mypolls 0 +myconn 0 connecting thr b7ac2980 , thread 9801 , mypolls 0 +thr b7ac2b00 , status 1 +connecting thr b7ac2b00 , thread 9802 , mypolls 0 +myconn 0 connecting thr b7ac2b00 , thread 9802 , mypolls 0 +thr b7ac2c80 , status 1 +connecting thr b7ac2c80 , thread 9803 , mypolls 0 +myconn 0 connecting thr b7ac2c80 , thread 9803 , mypolls 0 +thr b7ac2e00 , status 1 +connecting thr b7ac2e00 , thread 9804 , mypolls 0 +myconn 0 connecting thr b7ac2e00 , thread 9804 , mypolls 0 +thr b7ac2f80 , status 1 +connecting thr b7ac2f80 , thread 9805 , mypolls 0 +myconn 0 connecting thr b7ac2f80 , thread 9805 , mypolls 0 +thr b7ac3100 , status 1 +connecting thr b7ac3100 , thread 9806 , mypolls 0 +myconn 0 connecting thr b7ac3100 , thread 9806 , mypolls 0 +thr b7ac3280 , status 1 +connecting thr b7ac3280 , thread 9807 , mypolls 0 +myconn 0 connecting thr b7ac3280 , thread 9807 , mypolls 0 +thr b7ac3400 , status 1 +connecting thr b7ac3400 , thread 9808 , mypolls 0 +myconn 0 connecting thr b7ac3400 , thread 9808 , mypolls 0 +thr b7ac3580 , status 1 +connecting thr b7ac3580 , thread 9809 , mypolls 0 +myconn 0 connecting thr b7ac3580 , thread 9809 , mypolls 0 +thr b7ac3700 , status 1 +connecting thr b7ac3700 , thread 9810 , mypolls 0 +myconn 0 connecting thr b7ac3700 , thread 9810 , mypolls 0 +thr b7ac3880 , status 1 +connecting thr b7ac3880 , thread 9811 , mypolls 0 +myconn 0 connecting thr b7ac3880 , thread 9811 , mypolls 0 +thr b7ac3a00 , status 1 +connecting thr b7ac3a00 , thread 9812 , mypolls 0 +myconn 0 connecting thr b7ac3a00 , thread 9812 , mypolls 0 +thr b7ac3b80 , status 1 +connecting thr b7ac3b80 , thread 9813 , mypolls 0 +myconn 0 connecting thr b7ac3b80 , thread 9813 , mypolls 0 +thr b7ac3d00 , status 1 +connecting thr b7ac3d00 , thread 9814 , mypolls 0 +myconn 0 connecting thr b7ac3d00 , thread 9814 , mypolls 0 +thr b7ac3e80 , status 1 +connecting thr b7ac3e80 , thread 9815 , mypolls 0 +myconn 0 connecting thr b7ac3e80 , thread 9815 , mypolls 0 +thr b7920000 , status 1 +connecting thr b7920000 , thread 9816 , mypolls 0 +myconn 0 connecting thr b7920000 , thread 9816 , mypolls 0 +thr b7920180 , status 1 +connecting thr b7920180 , thread 9817 , mypolls 0 +myconn 0 connecting thr b7920180 , thread 9817 , mypolls 0 +thr b7920300 , status 1 +connecting thr b7920300 , thread 9818 , mypolls 0 +myconn 0 connecting thr b7920300 , thread 9818 , mypolls 0 +thr b7920480 , status 1 +connecting thr b7920480 , thread 9819 , mypolls 0 +myconn 0 connecting thr b7920480 , thread 9819 , mypolls 0 +thr b7920600 , status 1 +connecting thr b7920600 , thread 9820 , mypolls 0 +myconn 0 connecting thr b7920600 , thread 9820 , mypolls 0 +thr b7920780 , status 1 +connecting thr b7920780 , thread 9821 , mypolls 0 +myconn 0 connecting thr b7920780 , thread 9821 , mypolls 0 +thr b7920900 , status 1 +connecting thr b7920900 , thread 9822 , mypolls 0 +myconn 0 connecting thr b7920900 , thread 9822 , mypolls 0 +thr b7920a80 , status 1 +connecting thr b7920a80 , thread 9823 , mypolls 0 +myconn 0 connecting thr b7920a80 , thread 9823 , mypolls 0 +thr b7920c00 , status 1 +connecting thr b7920c00 , thread 9824 , mypolls 0 +myconn 0 connecting thr b7920c00 , thread 9824 , mypolls 0 +thr b7920d80 , status 1 +connecting thr b7920d80 , thread 9825 , mypolls 0 +myconn 0 connecting thr b7920d80 , thread 9825 , mypolls 0 +thr b7920f00 , status 1 +connecting thr b7920f00 , thread 9826 , mypolls 0 +myconn 0 connecting thr b7920f00 , thread 9826 , mypolls 0 +thr b7921080 , status 1 +connecting thr b7921080 , thread 9827 , mypolls 0 +myconn 0 connecting thr b7921080 , thread 9827 , mypolls 0 +thr b7921200 , status 1 +connecting thr b7921200 , thread 9828 , mypolls 0 +myconn 0 connecting thr b7921200 , thread 9828 , mypolls 0 +thr b7921380 , status 1 +connecting thr b7921380 , thread 9829 , mypolls 0 +myconn 0 connecting thr b7921380 , thread 9829 , mypolls 0 +thr b7921500 , status 1 +connecting thr b7921500 , thread 9830 , mypolls 0 +myconn 0 connecting thr b7921500 , thread 9830 , mypolls 0 +thr b7921680 , status 1 +connecting thr b7921680 , thread 9831 , mypolls 0 +myconn 0 connecting thr b7921680 , thread 9831 , mypolls 0 +thr b7921800 , status 1 +connecting thr b7921800 , thread 9832 , mypolls 0 +myconn 0 connecting thr b7921800 , thread 9832 , mypolls 0 +thr b7921980 , status 1 +connecting thr b7921980 , thread 9833 , mypolls 0 +myconn 0 connecting thr b7921980 , thread 9833 , mypolls 0 +thr b7921b00 , status 1 +connecting thr b7921b00 , thread 9834 , mypolls 0 +myconn 0 connecting thr b7921b00 , thread 9834 , mypolls 0 +thr b7921c80 , status 1 +connecting thr b7921c80 , thread 9835 , mypolls 0 +myconn 0 connecting thr b7921c80 , thread 9835 , mypolls 0 +thr b7921e00 , status 1 +connecting thr b7921e00 , thread 9836 , mypolls 0 +myconn 0 connecting thr b7921e00 , thread 9836 , mypolls 0 +thr b7921f80 , status 1 +connecting thr b7921f80 , thread 9837 , mypolls 0 +myconn 0 connecting thr b7921f80 , thread 9837 , mypolls 0 +thr b7922100 , status 1 +connecting thr b7922100 , thread 9838 , mypolls 0 +myconn 0 connecting thr b7922100 , thread 9838 , mypolls 0 +thr b7922280 , status 1 +connecting thr b7922280 , thread 9839 , mypolls 0 +myconn 0 connecting thr b7922280 , thread 9839 , mypolls 0 +thr b7922400 , status 1 +connecting thr b7922400 , thread 9840 , mypolls 0 +myconn 0 connecting thr b7922400 , thread 9840 , mypolls 0 +thr b7922580 , status 1 +connecting thr b7922580 , thread 9841 , mypolls 0 +myconn 0 connecting thr b7922580 , thread 9841 , mypolls 0 +thr b7922700 , status 1 +connecting thr b7922700 , thread 9842 , mypolls 0 +myconn 0 connecting thr b7922700 , thread 9842 , mypolls 0 +thr b7922880 , status 1 +connecting thr b7922880 , thread 9843 , mypolls 0 +myconn 0 connecting thr b7922880 , thread 9843 , mypolls 0 +thr b7922a00 , status 1 +connecting thr b7922a00 , thread 9844 , mypolls 0 +myconn 0 connecting thr b7922a00 , thread 9844 , mypolls 0 +thr b7922b80 , status 1 +connecting thr b7922b80 , thread 9845 , mypolls 0 +myconn 0 connecting thr b7922b80 , thread 9845 , mypolls 0 +thr b7922d00 , status 1 +connecting thr b7922d00 , thread 9846 , mypolls 0 +myconn 0 connecting thr b7922d00 , thread 9846 , mypolls 0 +thr b7922e80 , status 1 +connecting thr b7922e80 , thread 9847 , mypolls 0 +myconn 0 connecting thr b7922e80 , thread 9847 , mypolls 0 +thr b7780000 , status 1 +connecting thr b7780000 , thread 9848 , mypolls 0 +myconn 0 connecting thr b7780000 , thread 9848 , mypolls 0 +thr b7780180 , status 1 +connecting thr b7780180 , thread 9849 , mypolls 0 +myconn 0 connecting thr b7780180 , thread 9849 , mypolls 0 +thr b7780300 , status 1 +connecting thr b7780300 , thread 9850 , mypolls 0 +myconn 0 connecting thr b7780300 , thread 9850 , mypolls 0 +thr b7780480 , status 1 +connecting thr b7780480 , thread 9851 , mypolls 0 +myconn 0 connecting thr b7780480 , thread 9851 , mypolls 0 +thr b7780600 , status 1 +connecting thr b7780600 , thread 9852 , mypolls 0 +myconn 0 connecting thr b7780600 , thread 9852 , mypolls 0 +thr b7780780 , status 1 +connecting thr b7780780 , thread 9853 , mypolls 0 +myconn 0 connecting thr b7780780 , thread 9853 , mypolls 0 +thr b7780900 , status 1 +connecting thr b7780900 , thread 9854 , mypolls 0 +myconn 0 connecting thr b7780900 , thread 9854 , mypolls 0 +thr b7780a80 , status 1 +connecting thr b7780a80 , thread 9855 , mypolls 0 +myconn 0 connecting thr b7780a80 , thread 9855 , mypolls 0 +thr b7780c00 , status 1 +connecting thr b7780c00 , thread 9856 , mypolls 0 +myconn 0 connecting thr b7780c00 , thread 9856 , mypolls 0 +thr b7780d80 , status 1 +connecting thr b7780d80 , thread 9857 , mypolls 0 +myconn 0 connecting thr b7780d80 , thread 9857 , mypolls 0 +thr b7780f00 , status 1 +connecting thr b7780f00 , thread 9858 , mypolls 0 +myconn 0 connecting thr b7780f00 , thread 9858 , mypolls 0 +thr b7781080 , status 1 +connecting thr b7781080 , thread 9859 , mypolls 0 +myconn 0 connecting thr b7781080 , thread 9859 , mypolls 0 +thr b7781200 , status 1 +connecting thr b7781200 , thread 9860 , mypolls 0 +myconn 0 connecting thr b7781200 , thread 9860 , mypolls 0 +thr b7781380 , status 1 +connecting thr b7781380 , thread 9861 , mypolls 0 +myconn 0 connecting thr b7781380 , thread 9861 , mypolls 0 +thr b7781500 , status 1 +connecting thr b7781500 , thread 9862 , mypolls 0 +myconn 0 connecting thr b7781500 , thread 9862 , mypolls 0 +thr b7781680 , status 1 +connecting thr b7781680 , thread 9863 , mypolls 0 +myconn 0 connecting thr b7781680 , thread 9863 , mypolls 0 +thr b7781800 , status 1 +connecting thr b7781800 , thread 9864 , mypolls 0 +myconn 0 connecting thr b7781800 , thread 9864 , mypolls 0 +thr b7781980 , status 1 +connecting thr b7781980 , thread 9865 , mypolls 0 +myconn 0 connecting thr b7781980 , thread 9865 , mypolls 0 +thr b7781b00 , status 1 +connecting thr b7781b00 , thread 9866 , mypolls 0 +myconn 0 connecting thr b7781b00 , thread 9866 , mypolls 0 +thr b7781c80 , status 1 +connecting thr b7781c80 , thread 9867 , mypolls 0 +myconn 0 connecting thr b7781c80 , thread 9867 , mypolls 0 +thr b7781e00 , status 1 +connecting thr b7781e00 , thread 9868 , mypolls 0 +myconn 0 connecting thr b7781e00 , thread 9868 , mypolls 0 +thr b7781f80 , status 1 +connecting thr b7781f80 , thread 9869 , mypolls 0 +myconn 0 connecting thr b7781f80 , thread 9869 , mypolls 0 +thr b7782100 , status 1 +connecting thr b7782100 , thread 9870 , mypolls 0 +myconn 0 connecting thr b7782100 , thread 9870 , mypolls 0 +thr b7782280 , status 1 +connecting thr b7782280 , thread 9871 , mypolls 0 +myconn 0 connecting thr b7782280 , thread 9871 , mypolls 0 +thr b7782400 , status 1 +connecting thr b7782400 , thread 9872 , mypolls 0 +myconn 0 connecting thr b7782400 , thread 9872 , mypolls 0 +thr b7782580 , status 1 +connecting thr b7782580 , thread 9873 , mypolls 0 +myconn 0 connecting thr b7782580 , thread 9873 , mypolls 0 +thr b7782700 , status 1 +connecting thr b7782700 , thread 9874 , mypolls 0 +myconn 0 connecting thr b7782700 , thread 9874 , mypolls 0 +thr b7782880 , status 1 +connecting thr b7782880 , thread 9875 , mypolls 0 +myconn 0 connecting thr b7782880 , thread 9875 , mypolls 0 +thr b7782a00 , status 1 +connecting thr b7782a00 , thread 9876 , mypolls 0 +myconn 0 connecting thr b7782a00 , thread 9876 , mypolls 0 +thr b7782b80 , status 1 +connecting thr b7782b80 , thread 9877 , mypolls 0 +myconn 0 connecting thr b7782b80 , thread 9877 , mypolls 0 +thr b7782d00 , status 1 +connecting thr b7782d00 , thread 9878 , mypolls 0 +myconn 0 connecting thr b7782d00 , thread 9878 , mypolls 0 +thr b7782e80 , status 1 +connecting thr b7782e80 , thread 9879 , mypolls 0 +myconn 0 connecting thr b7782e80 , thread 9879 , mypolls 0 +thr b75e4000 , status 1 +connecting thr b75e4000 , thread 9880 , mypolls 0 +myconn 0 connecting thr b75e4000 , thread 9880 , mypolls 0 +thr b75e4180 , status 1 +connecting thr b75e4180 , thread 9881 , mypolls 0 +myconn 0 connecting thr b75e4180 , thread 9881 , mypolls 0 +thr b75e4300 , status 1 +connecting thr b75e4300 , thread 9882 , mypolls 0 +myconn 0 connecting thr b75e4300 , thread 9882 , mypolls 0 +thr b75e4480 , status 1 +connecting thr b75e4480 , thread 9883 , mypolls 0 +myconn 0 connecting thr b75e4480 , thread 9883 , mypolls 0 +thr b75e4600 , status 1 +connecting thr b75e4600 , thread 9884 , mypolls 0 +myconn 0 connecting thr b75e4600 , thread 9884 , mypolls 0 +thr b75e4780 , status 1 +connecting thr b75e4780 , thread 9885 , mypolls 0 +myconn 0 connecting thr b75e4780 , thread 9885 , mypolls 0 +thr b75e4900 , status 1 +connecting thr b75e4900 , thread 9886 , mypolls 0 +myconn 0 connecting thr b75e4900 , thread 9886 , mypolls 0 +thr b75e4a80 , status 1 +connecting thr b75e4a80 , thread 9887 , mypolls 0 +myconn 0 connecting thr b75e4a80 , thread 9887 , mypolls 0 +thr b75e4c00 , status 1 +connecting thr b75e4c00 , thread 9888 , mypolls 0 +myconn 0 connecting thr b75e4c00 , thread 9888 , mypolls 0 +thr b75e4d80 , status 1 +connecting thr b75e4d80 , thread 9889 , mypolls 0 +myconn 0 connecting thr b75e4d80 , thread 9889 , mypolls 0 +thr b75e4f00 , status 1 +connecting thr b75e4f00 , thread 9890 , mypolls 0 +myconn 0 connecting thr b75e4f00 , thread 9890 , mypolls 0 +thr b75e5080 , status 1 +connecting thr b75e5080 , thread 9891 , mypolls 0 +myconn 0 connecting thr b75e5080 , thread 9891 , mypolls 0 +thr b75e5200 , status 1 +connecting thr b75e5200 , thread 9892 , mypolls 0 +myconn 0 connecting thr b75e5200 , thread 9892 , mypolls 0 +thr b75e5380 , status 1 +connecting thr b75e5380 , thread 9893 , mypolls 0 +myconn 0 connecting thr b75e5380 , thread 9893 , mypolls 0 +thr b75e5500 , status 1 +connecting thr b75e5500 , thread 9894 , mypolls 0 +myconn 0 connecting thr b75e5500 , thread 9894 , mypolls 0 +thr b75e5680 , status 1 +connecting thr b75e5680 , thread 9895 , mypolls 0 +myconn 0 connecting thr b75e5680 , thread 9895 , mypolls 0 +thr b75e5800 , status 1 +connecting thr b75e5800 , thread 9896 , mypolls 0 +myconn 0 connecting thr b75e5800 , thread 9896 , mypolls 0 +thr b75e5980 , status 1 +connecting thr b75e5980 , thread 9897 , mypolls 0 +myconn 0 connecting thr b75e5980 , thread 9897 , mypolls 0 +thr b75e5b00 , status 1 +connecting thr b75e5b00 , thread 9898 , mypolls 0 +myconn 0 connecting thr b75e5b00 , thread 9898 , mypolls 0 +thr b75e5c80 , status 1 +connecting thr b75e5c80 , thread 9899 , mypolls 0 +myconn 0 connecting thr b75e5c80 , thread 9899 , mypolls 0 +thr b75e5e00 , status 1 +connecting thr b75e5e00 , thread 9900 , mypolls 0 +myconn 0 connecting thr b75e5e00 , thread 9900 , mypolls 0 +thr b75e5f80 , status 1 +connecting thr b75e5f80 , thread 9901 , mypolls 0 +myconn 0 connecting thr b75e5f80 , thread 9901 , mypolls 0 +thr b75e6100 , status 1 +connecting thr b75e6100 , thread 9902 , mypolls 0 +myconn 0 connecting thr b75e6100 , thread 9902 , mypolls 0 +thr b75e6280 , status 1 +connecting thr b75e6280 , thread 9903 , mypolls 0 +myconn 0 connecting thr b75e6280 , thread 9903 , mypolls 0 +thr b75e6400 , status 1 +connecting thr b75e6400 , thread 9904 , mypolls 0 +myconn 0 connecting thr b75e6400 , thread 9904 , mypolls 0 +thr b75e6580 , status 1 +connecting thr b75e6580 , thread 9905 , mypolls 0 +myconn 0 connecting thr b75e6580 , thread 9905 , mypolls 0 +thr b75e6700 , status 1 +connecting thr b75e6700 , thread 9906 , mypolls 0 +myconn 0 connecting thr b75e6700 , thread 9906 , mypolls 0 +thr b75e6880 , status 1 +connecting thr b75e6880 , thread 9907 , mypolls 0 +myconn 0 connecting thr b75e6880 , thread 9907 , mypolls 0 +thr b75e6a00 , status 1 +connecting thr b75e6a00 , thread 9908 , mypolls 0 +myconn 0 connecting thr b75e6a00 , thread 9908 , mypolls 0 +thr b75e6b80 , status 1 +connecting thr b75e6b80 , thread 9909 , mypolls 0 +myconn 0 connecting thr b75e6b80 , thread 9909 , mypolls 0 +thr b75e6d00 , status 1 +connecting thr b75e6d00 , thread 9910 , mypolls 0 +myconn 0 connecting thr b75e6d00 , thread 9910 , mypolls 0 +thr b75e6e80 , status 1 +connecting thr b75e6e80 , thread 9911 , mypolls 0 +myconn 0 connecting thr b75e6e80 , thread 9911 , mypolls 0 +thr b73fc000 , status 1 +connecting thr b73fc000 , thread 9912 , mypolls 0 +myconn 0 connecting thr b73fc000 , thread 9912 , mypolls 0 +thr b73fc180 , status 1 +connecting thr b73fc180 , thread 9913 , mypolls 0 +myconn 0 connecting thr b73fc180 , thread 9913 , mypolls 0 +thr b73fc300 , status 1 +connecting thr b73fc300 , thread 9914 , mypolls 0 +myconn 0 connecting thr b73fc300 , thread 9914 , mypolls 0 +thr b73fc480 , status 1 +connecting thr b73fc480 , thread 9915 , mypolls 0 +myconn 0 connecting thr b73fc480 , thread 9915 , mypolls 0 +thr b73fc600 , status 1 +connecting thr b73fc600 , thread 9916 , mypolls 0 +myconn 0 connecting thr b73fc600 , thread 9916 , mypolls 0 +thr b73fc780 , status 1 +connecting thr b73fc780 , thread 9917 , mypolls 0 +myconn 0 connecting thr b73fc780 , thread 9917 , mypolls 0 +thr b73fc900 , status 1 +connecting thr b73fc900 , thread 9918 , mypolls 0 +myconn 0 connecting thr b73fc900 , thread 9918 , mypolls 0 +thr b73fca80 , status 1 +connecting thr b73fca80 , thread 9919 , mypolls 0 +myconn 0 connecting thr b73fca80 , thread 9919 , mypolls 0 +thr b73fcc00 , status 1 +connecting thr b73fcc00 , thread 9920 , mypolls 0 +myconn 0 connecting thr b73fcc00 , thread 9920 , mypolls 0 +thr b73fcd80 , status 1 +connecting thr b73fcd80 , thread 9921 , mypolls 0 +myconn 0 connecting thr b73fcd80 , thread 9921 , mypolls 0 +thr b73fcf00 , status 1 +connecting thr b73fcf00 , thread 9922 , mypolls 0 +myconn 0 connecting thr b73fcf00 , thread 9922 , mypolls 0 +thr b73fd080 , status 1 +connecting thr b73fd080 , thread 9923 , mypolls 0 +myconn 0 connecting thr b73fd080 , thread 9923 , mypolls 0 +thr b73fd200 , status 1 +connecting thr b73fd200 , thread 9924 , mypolls 0 +myconn 0 connecting thr b73fd200 , thread 9924 , mypolls 0 +thr b73fd380 , status 1 +connecting thr b73fd380 , thread 9925 , mypolls 0 +myconn 0 connecting thr b73fd380 , thread 9925 , mypolls 0 +thr b73fd500 , status 1 +connecting thr b73fd500 , thread 9926 , mypolls 0 +myconn 0 connecting thr b73fd500 , thread 9926 , mypolls 0 +thr b73fd680 , status 1 +connecting thr b73fd680 , thread 9927 , mypolls 0 +myconn 0 connecting thr b73fd680 , thread 9927 , mypolls 0 +thr b73fd800 , status 1 +connecting thr b73fd800 , thread 9928 , mypolls 0 +myconn 0 connecting thr b73fd800 , thread 9928 , mypolls 0 +thr b73fd980 , status 1 +connecting thr b73fd980 , thread 9929 , mypolls 0 +myconn 0 connecting thr b73fd980 , thread 9929 , mypolls 0 +thr b73fdb00 , status 1 +connecting thr b73fdb00 , thread 9930 , mypolls 0 +myconn 0 connecting thr b73fdb00 , thread 9930 , mypolls 0 +thr b73fdc80 , status 1 +connecting thr b73fdc80 , thread 9931 , mypolls 0 +myconn 0 connecting thr b73fdc80 , thread 9931 , mypolls 0 +thr b73fde00 , status 1 +connecting thr b73fde00 , thread 9932 , mypolls 0 +myconn 0 connecting thr b73fde00 , thread 9932 , mypolls 0 +thr b73fdf80 , status 1 +connecting thr b73fdf80 , thread 9933 , mypolls 0 +myconn 0 connecting thr b73fdf80 , thread 9933 , mypolls 0 +thr b73fe100 , status 1 +connecting thr b73fe100 , thread 9934 , mypolls 0 +myconn 0 connecting thr b73fe100 , thread 9934 , mypolls 0 +thr b73fe280 , status 1 +connecting thr b73fe280 , thread 9935 , mypolls 0 +myconn 0 connecting thr b73fe280 , thread 9935 , mypolls 0 +thr b73fe400 , status 1 +connecting thr b73fe400 , thread 9936 , mypolls 0 +myconn 0 connecting thr b73fe400 , thread 9936 , mypolls 0 +thr b73fe580 , status 1 +connecting thr b73fe580 , thread 9937 , mypolls 0 +myconn 0 connecting thr b73fe580 , thread 9937 , mypolls 0 +thr b73fe700 , status 1 +connecting thr b73fe700 , thread 9938 , mypolls 0 +myconn 0 connecting thr b73fe700 , thread 9938 , mypolls 0 +thr b73fe880 , status 1 +connecting thr b73fe880 , thread 9939 , mypolls 0 +myconn 0 connecting thr b73fe880 , thread 9939 , mypolls 0 +thr b73fea00 , status 1 +connecting thr b73fea00 , thread 9940 , mypolls 0 +myconn 0 connecting thr b73fea00 , thread 9940 , mypolls 0 +thr b73feb80 , status 1 +connecting thr b73feb80 , thread 9941 , mypolls 0 +myconn 0 connecting thr b73feb80 , thread 9941 , mypolls 0 +thr b73fed00 , status 1 +connecting thr b73fed00 , thread 9942 , mypolls 0 +myconn 0 connecting thr b73fed00 , thread 9942 , mypolls 0 +thr b73fee80 , status 1 +connecting thr b73fee80 , thread 9943 , mypolls 0 +myconn 0 connecting thr b73fee80 , thread 9943 , mypolls 0 +thr b71fc000 , status 1 +connecting thr b71fc000 , thread 9944 , mypolls 0 +myconn 0 connecting thr b71fc000 , thread 9944 , mypolls 0 +thr b71fc180 , status 1 +connecting thr b71fc180 , thread 9945 , mypolls 0 +myconn 0 connecting thr b71fc180 , thread 9945 , mypolls 0 +thr b71fc300 , status 1 +connecting thr b71fc300 , thread 9946 , mypolls 0 +myconn 0 connecting thr b71fc300 , thread 9946 , mypolls 0 +thr b71fc480 , status 1 +connecting thr b71fc480 , thread 9947 , mypolls 0 +myconn 0 connecting thr b71fc480 , thread 9947 , mypolls 0 +thr b71fc600 , status 1 +connecting thr b71fc600 , thread 9948 , mypolls 0 +myconn 0 connecting thr b71fc600 , thread 9948 , mypolls 0 +thr b71fc780 , status 1 +connecting thr b71fc780 , thread 9949 , mypolls 0 +myconn 0 connecting thr b71fc780 , thread 9949 , mypolls 0 +thr b71fc900 , status 1 +connecting thr b71fc900 , thread 9950 , mypolls 0 +myconn 0 connecting thr b71fc900 , thread 9950 , mypolls 0 +thr b71fca80 , status 1 +connecting thr b71fca80 , thread 9951 , mypolls 0 +myconn 0 connecting thr b71fca80 , thread 9951 , mypolls 0 +thr b71fcc00 , status 1 +connecting thr b71fcc00 , thread 9952 , mypolls 0 +myconn 0 connecting thr b71fcc00 , thread 9952 , mypolls 0 +thr b71fcd80 , status 1 +connecting thr b71fcd80 , thread 9953 , mypolls 0 +myconn 0 connecting thr b71fcd80 , thread 9953 , mypolls 0 +thr b71fcf00 , status 1 +connecting thr b71fcf00 , thread 9954 , mypolls 0 +myconn 0 connecting thr b71fcf00 , thread 9954 , mypolls 0 +thr b71fd080 , status 1 +connecting thr b71fd080 , thread 9955 , mypolls 0 +myconn 0 connecting thr b71fd080 , thread 9955 , mypolls 0 +thr b71fd200 , status 1 +connecting thr b71fd200 , thread 9956 , mypolls 0 +myconn 0 connecting thr b71fd200 , thread 9956 , mypolls 0 +thr b71fd380 , status 1 +connecting thr b71fd380 , thread 9957 , mypolls 0 +myconn 0 connecting thr b71fd380 , thread 9957 , mypolls 0 +thr b71fd500 , status 1 +connecting thr b71fd500 , thread 9958 , mypolls 0 +myconn 0 connecting thr b71fd500 , thread 9958 , mypolls 0 +thr b71fd680 , status 1 +connecting thr b71fd680 , thread 9959 , mypolls 0 +myconn 0 connecting thr b71fd680 , thread 9959 , mypolls 0 +thr b71fd800 , status 1 +connecting thr b71fd800 , thread 9960 , mypolls 0 +myconn 0 connecting thr b71fd800 , thread 9960 , mypolls 0 +thr b71fd980 , status 1 +connecting thr b71fd980 , thread 9961 , mypolls 0 +myconn 0 connecting thr b71fd980 , thread 9961 , mypolls 0 +thr b71fdb00 , status 1 +connecting thr b71fdb00 , thread 9962 , mypolls 0 +myconn 0 connecting thr b71fdb00 , thread 9962 , mypolls 0 +thr b71fdc80 , status 1 +connecting thr b71fdc80 , thread 9963 , mypolls 0 +myconn 0 connecting thr b71fdc80 , thread 9963 , mypolls 0 +thr b71fde00 , status 1 +connecting thr b71fde00 , thread 9964 , mypolls 0 +myconn 0 connecting thr b71fde00 , thread 9964 , mypolls 0 +thr b71fdf80 , status 1 +connecting thr b71fdf80 , thread 9965 , mypolls 0 +myconn 0 connecting thr b71fdf80 , thread 9965 , mypolls 0 +thr b71fe100 , status 1 +connecting thr b71fe100 , thread 9966 , mypolls 0 +myconn 0 connecting thr b71fe100 , thread 9966 , mypolls 0 +thr b71fe280 , status 1 +connecting thr b71fe280 , thread 9967 , mypolls 0 +myconn 0 connecting thr b71fe280 , thread 9967 , mypolls 0 +thr b71fe400 , status 1 +connecting thr b71fe400 , thread 9968 , mypolls 0 +myconn 0 connecting thr b71fe400 , thread 9968 , mypolls 0 +thr b71fe580 , status 1 +connecting thr b71fe580 , thread 9969 , mypolls 0 +myconn 0 connecting thr b71fe580 , thread 9969 , mypolls 0 +thr b71fe700 , status 1 +connecting thr b71fe700 , thread 9970 , mypolls 0 +myconn 0 connecting thr b71fe700 , thread 9970 , mypolls 0 +thr b71fe880 , status 1 +connecting thr b71fe880 , thread 9971 , mypolls 0 +myconn 0 connecting thr b71fe880 , thread 9971 , mypolls 0 +thr b71fea00 , status 1 +connecting thr b71fea00 , thread 9972 , mypolls 0 +myconn 0 connecting thr b71fea00 , thread 9972 , mypolls 0 +thr b71feb80 , status 1 +connecting thr b71feb80 , thread 9973 , mypolls 0 +myconn 0 connecting thr b71feb80 , thread 9973 , mypolls 0 +thr b71fed00 , status 1 +connecting thr b71fed00 , thread 9974 , mypolls 0 +myconn 0 connecting thr b71fed00 , thread 9974 , mypolls 0 +thr b71fee80 , status 1 +connecting thr b71fee80 , thread 9975 , mypolls 0 +myconn 0 connecting thr b71fee80 , thread 9975 , mypolls 0 +thr b6d17000 , status 1 +connecting thr b6d17000 , thread 9976 , mypolls 0 +myconn 0 connecting thr b6d17000 , thread 9976 , mypolls 0 +thr b6d17180 , status 1 +connecting thr b6d17180 , thread 9977 , mypolls 0 +myconn 0 connecting thr b6d17180 , thread 9977 , mypolls 0 +thr b6d17300 , status 1 +connecting thr b6d17300 , thread 9978 , mypolls 0 +myconn 0 connecting thr b6d17300 , thread 9978 , mypolls 0 +thr b6d17480 , status 1 +connecting thr b6d17480 , thread 9979 , mypolls 0 +myconn 0 connecting thr b6d17480 , thread 9979 , mypolls 0 +thr b6d17600 , status 1 +connecting thr b6d17600 , thread 9980 , mypolls 0 +myconn 0 connecting thr b6d17600 , thread 9980 , mypolls 0 +thr b6d17780 , status 1 +connecting thr b6d17780 , thread 9981 , mypolls 0 +myconn 0 connecting thr b6d17780 , thread 9981 , mypolls 0 +thr b6d17900 , status 1 +connecting thr b6d17900 , thread 9982 , mypolls 0 +myconn 0 connecting thr b6d17900 , thread 9982 , mypolls 0 +thr b6d17a80 , status 1 +connecting thr b6d17a80 , thread 9983 , mypolls 0 +myconn 0 connecting thr b6d17a80 , thread 9983 , mypolls 0 +thr b6d17c00 , status 1 +connecting thr b6d17c00 , thread 9984 , mypolls 0 +myconn 0 connecting thr b6d17c00 , thread 9984 , mypolls 0 +thr b6d17d80 , status 1 +connecting thr b6d17d80 , thread 9985 , mypolls 0 +myconn 0 connecting thr b6d17d80 , thread 9985 , mypolls 0 +thr b6d17f00 , status 1 +connecting thr b6d17f00 , thread 9986 , mypolls 0 +myconn 0 connecting thr b6d17f00 , thread 9986 , mypolls 0 +thr b6d18080 , status 1 +connecting thr b6d18080 , thread 9987 , mypolls 0 +myconn 0 connecting thr b6d18080 , thread 9987 , mypolls 0 +thr b6d18200 , status 1 +connecting thr b6d18200 , thread 9988 , mypolls 0 +myconn 0 connecting thr b6d18200 , thread 9988 , mypolls 0 +thr b6d18380 , status 1 +connecting thr b6d18380 , thread 9989 , mypolls 0 +myconn 0 connecting thr b6d18380 , thread 9989 , mypolls 0 +thr b6d18500 , status 1 +connecting thr b6d18500 , thread 9990 , mypolls 0 +myconn 0 connecting thr b6d18500 , thread 9990 , mypolls 0 +thr b6d18680 , status 1 +connecting thr b6d18680 , thread 9991 , mypolls 0 +myconn 0 connecting thr b6d18680 , thread 9991 , mypolls 0 +thr b6d18800 , status 1 +connecting thr b6d18800 , thread 9992 , mypolls 0 +myconn 0 connecting thr b6d18800 , thread 9992 , mypolls 0 +thr b6d18980 , status 1 +connecting thr b6d18980 , thread 9993 , mypolls 0 +myconn 0 connecting thr b6d18980 , thread 9993 , mypolls 0 +thr b6d18b00 , status 1 +connecting thr b6d18b00 , thread 9994 , mypolls 0 +myconn 0 connecting thr b6d18b00 , thread 9994 , mypolls 0 +thr b6d18c80 , status 1 +connecting thr b6d18c80 , thread 9995 , mypolls 0 +myconn 0 connecting thr b6d18c80 , thread 9995 , mypolls 0 +thr b6d18e00 , status 1 +connecting thr b6d18e00 , thread 9996 , mypolls 0 +myconn 0 connecting thr b6d18e00 , thread 9996 , mypolls 0 +thr b6d18f80 , status 1 +connecting thr b6d18f80 , thread 9997 , mypolls 0 +myconn 0 connecting thr b6d18f80 , thread 9997 , mypolls 0 +thr b6d19100 , status 1 +connecting thr b6d19100 , thread 9998 , mypolls 0 +myconn 0 connecting thr b6d19100 , thread 9998 , mypolls 0 +thr b6d19280 , status 1 +connecting thr b6d19280 , thread 9999 , mypolls 0 +myconn 0 connecting thr b6d19280 , thread 9999 , mypolls 0 +thr b6d19400 , status 1 +connecting thr b6d19400 , thread 10000 , mypolls 0 +myconn 0 connecting thr b6d19400 , thread 10000 , mypolls 0 +thr b6d19580 , status 1 +connecting thr b6d19580 , thread 10001 , mypolls 0 +myconn 0 connecting thr b6d19580 , thread 10001 , mypolls 0 +thr b6d19700 , status 1 +connecting thr b6d19700 , thread 10002 , mypolls 0 +myconn 0 connecting thr b6d19700 , thread 10002 , mypolls 0 +thr b6d19880 , status 1 +connecting thr b6d19880 , thread 10003 , mypolls 0 +myconn 0 connecting thr b6d19880 , thread 10003 , mypolls 0 +thr b6d19a00 , status 1 +connecting thr b6d19a00 , thread 10004 , mypolls 0 +myconn 0 connecting thr b6d19a00 , thread 10004 , mypolls 0 +thr b6d19b80 , status 1 +connecting thr b6d19b80 , thread 10005 , mypolls 0 +myconn 0 connecting thr b6d19b80 , thread 10005 , mypolls 0 +thr b6d19d00 , status 1 +connecting thr b6d19d00 , thread 10006 , mypolls 0 +myconn 0 connecting thr b6d19d00 , thread 10006 , mypolls 0 +thr b6d19e80 , status 1 +connecting thr b6d19e80 , thread 10007 , mypolls 0 +myconn 0 connecting thr b6d19e80 , thread 10007 , mypolls 0 +thr b6b7d000 , status 1 +connecting thr b6b7d000 , thread 10008 , mypolls 0 +myconn 0 connecting thr b6b7d000 , thread 10008 , mypolls 0 +thr b6b7d180 , status 1 +connecting thr b6b7d180 , thread 10009 , mypolls 0 +myconn 0 connecting thr b6b7d180 , thread 10009 , mypolls 0 +thr b6b7d300 , status 1 +connecting thr b6b7d300 , thread 10010 , mypolls 0 +myconn 0 connecting thr b6b7d300 , thread 10010 , mypolls 0 +thr b6b7d480 , status 1 +connecting thr b6b7d480 , thread 10011 , mypolls 0 +myconn 0 connecting thr b6b7d480 , thread 10011 , mypolls 0 +thr b6b7d600 , status 1 +connecting thr b6b7d600 , thread 10012 , mypolls 0 +myconn 0 connecting thr b6b7d600 , thread 10012 , mypolls 0 +thr b6b7d780 , status 1 +connecting thr b6b7d780 , thread 10013 , mypolls 0 +myconn 0 connecting thr b6b7d780 , thread 10013 , mypolls 0 +thr b6b7d900 , status 1 +connecting thr b6b7d900 , thread 10014 , mypolls 0 +myconn 0 connecting thr b6b7d900 , thread 10014 , mypolls 0 +thr b6b7da80 , status 1 +connecting thr b6b7da80 , thread 10015 , mypolls 0 +myconn 0 connecting thr b6b7da80 , thread 10015 , mypolls 0 +thr b6b7dc00 , status 1 +connecting thr b6b7dc00 , thread 10016 , mypolls 0 +myconn 0 connecting thr b6b7dc00 , thread 10016 , mypolls 0 +thr b6b7dd80 , status 1 +connecting thr b6b7dd80 , thread 10017 , mypolls 0 +myconn 0 connecting thr b6b7dd80 , thread 10017 , mypolls 0 +thr b6b7df00 , status 1 +connecting thr b6b7df00 , thread 10018 , mypolls 0 +myconn 0 connecting thr b6b7df00 , thread 10018 , mypolls 0 +thr b6b7e080 , status 1 +connecting thr b6b7e080 , thread 10019 , mypolls 0 +myconn 0 connecting thr b6b7e080 , thread 10019 , mypolls 0 +thr b6b7e200 , status 1 +connecting thr b6b7e200 , thread 10020 , mypolls 0 +myconn 0 connecting thr b6b7e200 , thread 10020 , mypolls 0 +thr b6b7e380 , status 1 +connecting thr b6b7e380 , thread 10021 , mypolls 0 +myconn 0 connecting thr b6b7e380 , thread 10021 , mypolls 0 +thr b6b7e500 , status 1 +connecting thr b6b7e500 , thread 10022 , mypolls 0 +myconn 0 connecting thr b6b7e500 , thread 10022 , mypolls 0 +thr b6b7e680 , status 1 +connecting thr b6b7e680 , thread 10023 , mypolls 0 +myconn 0 connecting thr b6b7e680 , thread 10023 , mypolls 0 +thr b6b7e800 , status 1 +connecting thr b6b7e800 , thread 10024 , mypolls 0 +myconn 0 connecting thr b6b7e800 , thread 10024 , mypolls 0 +thr b6b7e980 , status 1 +connecting thr b6b7e980 , thread 10025 , mypolls 0 +myconn 0 connecting thr b6b7e980 , thread 10025 , mypolls 0 +thr b6b7eb00 , status 1 +connecting thr b6b7eb00 , thread 10026 , mypolls 0 +myconn 0 connecting thr b6b7eb00 , thread 10026 , mypolls 0 +thr b6b7ec80 , status 1 +connecting thr b6b7ec80 , thread 10027 , mypolls 0 +myconn 0 connecting thr b6b7ec80 , thread 10027 , mypolls 0 +thr b6b7ee00 , status 1 +connecting thr b6b7ee00 , thread 10028 , mypolls 0 +myconn 0 connecting thr b6b7ee00 , thread 10028 , mypolls 0 +thr b6b7ef80 , status 1 +connecting thr b6b7ef80 , thread 10029 , mypolls 0 +myconn 0 connecting thr b6b7ef80 , thread 10029 , mypolls 0 +thr b6b7f100 , status 1 +connecting thr b6b7f100 , thread 10030 , mypolls 0 +myconn 0 connecting thr b6b7f100 , thread 10030 , mypolls 0 +thr b6b7f280 , status 1 +connecting thr b6b7f280 , thread 10031 , mypolls 0 +myconn 0 connecting thr b6b7f280 , thread 10031 , mypolls 0 +thr b6b7f400 , status 1 +connecting thr b6b7f400 , thread 10032 , mypolls 0 +myconn 0 connecting thr b6b7f400 , thread 10032 , mypolls 0 +thr b6b7f580 , status 1 +connecting thr b6b7f580 , thread 10033 , mypolls 0 +myconn 0 connecting thr b6b7f580 , thread 10033 , mypolls 0 +thr b6b7f700 , status 1 +connecting thr b6b7f700 , thread 10034 , mypolls 0 +myconn 0 connecting thr b6b7f700 , thread 10034 , mypolls 0 +thr b6b7f880 , status 1 +connecting thr b6b7f880 , thread 10035 , mypolls 0 +myconn 0 connecting thr b6b7f880 , thread 10035 , mypolls 0 +thr b6b7fa00 , status 1 +connecting thr b6b7fa00 , thread 10036 , mypolls 0 +myconn 0 connecting thr b6b7fa00 , thread 10036 , mypolls 0 +thr b6b7fb80 , status 1 +connecting thr b6b7fb80 , thread 10037 , mypolls 0 +myconn 0 connecting thr b6b7fb80 , thread 10037 , mypolls 0 +thr b6b7fd00 , status 1 +connecting thr b6b7fd00 , thread 10038 , mypolls 0 +myconn 0 connecting thr b6b7fd00 , thread 10038 , mypolls 0 +thr b6b7fe80 , status 1 +connecting thr b6b7fe80 , thread 10039 , mypolls 0 +myconn 0 connecting thr b6b7fe80 , thread 10039 , mypolls 0 +thr b69de000 , status 1 +connecting thr b69de000 , thread 10040 , mypolls 0 +myconn 0 connecting thr b69de000 , thread 10040 , mypolls 0 +thr b69de180 , status 1 +connecting thr b69de180 , thread 10041 , mypolls 0 +myconn 0 connecting thr b69de180 , thread 10041 , mypolls 0 +thr b69de300 , status 1 +connecting thr b69de300 , thread 10042 , mypolls 0 +myconn 0 connecting thr b69de300 , thread 10042 , mypolls 0 +thr b69de480 , status 1 +connecting thr b69de480 , thread 10043 , mypolls 0 +myconn 0 connecting thr b69de480 , thread 10043 , mypolls 0 +thr b69de600 , status 1 +connecting thr b69de600 , thread 10044 , mypolls 0 +myconn 0 connecting thr b69de600 , thread 10044 , mypolls 0 +thr b69de780 , status 1 +connecting thr b69de780 , thread 10045 , mypolls 0 +myconn 0 connecting thr b69de780 , thread 10045 , mypolls 0 +thr b69de900 , status 1 +connecting thr b69de900 , thread 10046 , mypolls 0 +myconn 0 connecting thr b69de900 , thread 10046 , mypolls 0 +thr b69dea80 , status 1 +connecting thr b69dea80 , thread 10047 , mypolls 0 +myconn 0 connecting thr b69dea80 , thread 10047 , mypolls 0 +thr b69dec00 , status 1 +connecting thr b69dec00 , thread 10048 , mypolls 0 +myconn 0 connecting thr b69dec00 , thread 10048 , mypolls 0 +thr b69ded80 , status 1 +connecting thr b69ded80 , thread 10049 , mypolls 0 +myconn 0 connecting thr b69ded80 , thread 10049 , mypolls 0 +thr b69def00 , status 1 +connecting thr b69def00 , thread 10050 , mypolls 0 +myconn 0 connecting thr b69def00 , thread 10050 , mypolls 0 +thr b69df080 , status 1 +connecting thr b69df080 , thread 10051 , mypolls 0 +myconn 0 connecting thr b69df080 , thread 10051 , mypolls 0 +thr b69df200 , status 1 +connecting thr b69df200 , thread 10052 , mypolls 0 +myconn 0 connecting thr b69df200 , thread 10052 , mypolls 0 +thr b69df380 , status 1 +connecting thr b69df380 , thread 10053 , mypolls 0 +myconn 0 connecting thr b69df380 , thread 10053 , mypolls 0 +thr b69df500 , status 1 +connecting thr b69df500 , thread 10054 , mypolls 0 +myconn 0 connecting thr b69df500 , thread 10054 , mypolls 0 +thr b69df680 , status 1 +connecting thr b69df680 , thread 10055 , mypolls 0 +myconn 0 connecting thr b69df680 , thread 10055 , mypolls 0 +thr b69df800 , status 1 +connecting thr b69df800 , thread 10056 , mypolls 0 +myconn 0 connecting thr b69df800 , thread 10056 , mypolls 0 +thr b69df980 , status 1 +connecting thr b69df980 , thread 10057 , mypolls 0 +myconn 0 connecting thr b69df980 , thread 10057 , mypolls 0 +thr b69dfb00 , status 1 +connecting thr b69dfb00 , thread 10058 , mypolls 0 +myconn 0 connecting thr b69dfb00 , thread 10058 , mypolls 0 +thr b69dfc80 , status 1 +connecting thr b69dfc80 , thread 10059 , mypolls 0 +myconn 0 connecting thr b69dfc80 , thread 10059 , mypolls 0 +thr b69dfe00 , status 1 +connecting thr b69dfe00 , thread 10060 , mypolls 0 +myconn 0 connecting thr b69dfe00 , thread 10060 , mypolls 0 +thr b69dff80 , status 1 +connecting thr b69dff80 , thread 10061 , mypolls 0 +myconn 0 connecting thr b69dff80 , thread 10061 , mypolls 0 +thr b69e0100 , status 1 +connecting thr b69e0100 , thread 10062 , mypolls 0 +myconn 0 connecting thr b69e0100 , thread 10062 , mypolls 0 +thr b69e0280 , status 1 +connecting thr b69e0280 , thread 10063 , mypolls 0 +myconn 0 connecting thr b69e0280 , thread 10063 , mypolls 0 +thr b69e0400 , status 1 +connecting thr b69e0400 , thread 10064 , mypolls 0 +myconn 0 connecting thr b69e0400 , thread 10064 , mypolls 0 +thr b69e0580 , status 1 +connecting thr b69e0580 , thread 10065 , mypolls 0 +myconn 0 connecting thr b69e0580 , thread 10065 , mypolls 0 +thr b69e0700 , status 1 +connecting thr b69e0700 , thread 10066 , mypolls 0 +myconn 0 connecting thr b69e0700 , thread 10066 , mypolls 0 +thr b69e0880 , status 1 +connecting thr b69e0880 , thread 10067 , mypolls 0 +myconn 0 connecting thr b69e0880 , thread 10067 , mypolls 0 +thr b69e0a00 , status 1 +connecting thr b69e0a00 , thread 10068 , mypolls 0 +myconn 0 connecting thr b69e0a00 , thread 10068 , mypolls 0 +thr b69e0b80 , status 1 +connecting thr b69e0b80 , thread 10069 , mypolls 0 +myconn 0 connecting thr b69e0b80 , thread 10069 , mypolls 0 +thr b69e0d00 , status 1 +connecting thr b69e0d00 , thread 10070 , mypolls 0 +myconn 0 connecting thr b69e0d00 , thread 10070 , mypolls 0 +thr b69e0e80 , status 1 +connecting thr b69e0e80 , thread 10071 , mypolls 0 +myconn 0 connecting thr b69e0e80 , thread 10071 , mypolls 0 +thr b67f9000 , status 1 +connecting thr b67f9000 , thread 10072 , mypolls 0 +myconn 0 connecting thr b67f9000 , thread 10072 , mypolls 0 +thr b67f9180 , status 1 +connecting thr b67f9180 , thread 10073 , mypolls 0 +myconn 0 connecting thr b67f9180 , thread 10073 , mypolls 0 +thr b67f9300 , status 1 +connecting thr b67f9300 , thread 10074 , mypolls 0 +myconn 0 connecting thr b67f9300 , thread 10074 , mypolls 0 +thr b67f9480 , status 1 +connecting thr b67f9480 , thread 10075 , mypolls 0 +myconn 0 connecting thr b67f9480 , thread 10075 , mypolls 0 +thr b67f9600 , status 1 +connecting thr b67f9600 , thread 10076 , mypolls 0 +myconn 0 connecting thr b67f9600 , thread 10076 , mypolls 0 +thr b67f9780 , status 1 +connecting thr b67f9780 , thread 10077 , mypolls 0 +myconn 0 connecting thr b67f9780 , thread 10077 , mypolls 0 +thr b67f9900 , status 1 +connecting thr b67f9900 , thread 10078 , mypolls 0 +myconn 0 connecting thr b67f9900 , thread 10078 , mypolls 0 +thr b67f9a80 , status 1 +connecting thr b67f9a80 , thread 10079 , mypolls 0 +myconn 0 connecting thr b67f9a80 , thread 10079 , mypolls 0 +thr b67f9c00 , status 1 +connecting thr b67f9c00 , thread 10080 , mypolls 0 +myconn 0 connecting thr b67f9c00 , thread 10080 , mypolls 0 +thr b67f9d80 , status 1 +connecting thr b67f9d80 , thread 10081 , mypolls 0 +myconn 0 connecting thr b67f9d80 , thread 10081 , mypolls 0 +thr b67f9f00 , status 1 +connecting thr b67f9f00 , thread 10082 , mypolls 0 +myconn 0 connecting thr b67f9f00 , thread 10082 , mypolls 0 +thr b67fa080 , status 1 +connecting thr b67fa080 , thread 10083 , mypolls 0 +myconn 0 connecting thr b67fa080 , thread 10083 , mypolls 0 +thr b67fa200 , status 1 +connecting thr b67fa200 , thread 10084 , mypolls 0 +myconn 0 connecting thr b67fa200 , thread 10084 , mypolls 0 +thr b67fa380 , status 1 +connecting thr b67fa380 , thread 10085 , mypolls 0 +myconn 0 connecting thr b67fa380 , thread 10085 , mypolls 0 +thr b67fa500 , status 1 +connecting thr b67fa500 , thread 10086 , mypolls 0 +myconn 0 connecting thr b67fa500 , thread 10086 , mypolls 0 +thr b67fa680 , status 1 +connecting thr b67fa680 , thread 10087 , mypolls 0 +myconn 0 connecting thr b67fa680 , thread 10087 , mypolls 0 +thr b67fa800 , status 1 +connecting thr b67fa800 , thread 10088 , mypolls 0 +myconn 0 connecting thr b67fa800 , thread 10088 , mypolls 0 +thr b67fa980 , status 1 +connecting thr b67fa980 , thread 10089 , mypolls 0 +myconn 0 connecting thr b67fa980 , thread 10089 , mypolls 0 +thr b67fab00 , status 1 +connecting thr b67fab00 , thread 10090 , mypolls 0 +myconn 0 connecting thr b67fab00 , thread 10090 , mypolls 0 +thr b67fac80 , status 1 +connecting thr b67fac80 , thread 10091 , mypolls 0 +myconn 0 connecting thr b67fac80 , thread 10091 , mypolls 0 +thr b67fae00 , status 1 +connecting thr b67fae00 , thread 10092 , mypolls 0 +myconn 0 connecting thr b67fae00 , thread 10092 , mypolls 0 +thr b67faf80 , status 1 +connecting thr b67faf80 , thread 10093 , mypolls 0 +myconn 0 connecting thr b67faf80 , thread 10093 , mypolls 0 +thr b67fb100 , status 1 +connecting thr b67fb100 , thread 10094 , mypolls 0 +myconn 0 connecting thr b67fb100 , thread 10094 , mypolls 0 +thr b67fb280 , status 1 +connecting thr b67fb280 , thread 10095 , mypolls 0 +myconn 0 connecting thr b67fb280 , thread 10095 , mypolls 0 +thr b67fb400 , status 1 +connecting thr b67fb400 , thread 10096 , mypolls 0 +myconn 0 connecting thr b67fb400 , thread 10096 , mypolls 0 +thr b67fb580 , status 1 +connecting thr b67fb580 , thread 10097 , mypolls 0 +myconn 0 connecting thr b67fb580 , thread 10097 , mypolls 0 +thr b67fb700 , status 1 +connecting thr b67fb700 , thread 10098 , mypolls 0 +myconn 0 connecting thr b67fb700 , thread 10098 , mypolls 0 +thr b67fb880 , status 1 +connecting thr b67fb880 , thread 10099 , mypolls 0 +myconn 0 connecting thr b67fb880 , thread 10099 , mypolls 0 +thr b67fba00 , status 1 +connecting thr b67fba00 , thread 10100 , mypolls 0 +myconn 0 connecting thr b67fba00 , thread 10100 , mypolls 0 +thr b67fbb80 , status 1 +connecting thr b67fbb80 , thread 10101 , mypolls 0 +myconn 0 connecting thr b67fbb80 , thread 10101 , mypolls 0 +thr b67fbd00 , status 1 +connecting thr b67fbd00 , thread 10102 , mypolls 0 +myconn 0 connecting thr b67fbd00 , thread 10102 , mypolls 0 +thr b67fbe80 , status 1 +connecting thr b67fbe80 , thread 10103 , mypolls 0 +myconn 0 connecting thr b67fbe80 , thread 10103 , mypolls 0 +thr b62b1000 , status 1 +connecting thr b62b1000 , thread 10104 , mypolls 0 +myconn 0 connecting thr b62b1000 , thread 10104 , mypolls 0 +thr b62b1180 , status 1 +connecting thr b62b1180 , thread 10105 , mypolls 0 +myconn 0 connecting thr b62b1180 , thread 10105 , mypolls 0 +thr b62b1300 , status 1 +connecting thr b62b1300 , thread 10106 , mypolls 0 +myconn 0 connecting thr b62b1300 , thread 10106 , mypolls 0 +thr b62b1480 , status 1 +connecting thr b62b1480 , thread 10107 , mypolls 0 +myconn 0 connecting thr b62b1480 , thread 10107 , mypolls 0 +thr b62b1600 , status 1 +connecting thr b62b1600 , thread 10108 , mypolls 0 +myconn 0 connecting thr b62b1600 , thread 10108 , mypolls 0 +thr b62b1780 , status 1 +connecting thr b62b1780 , thread 10109 , mypolls 0 +myconn 0 connecting thr b62b1780 , thread 10109 , mypolls 0 +thr b62b1900 , status 1 +connecting thr b62b1900 , thread 10110 , mypolls 0 +myconn 0 connecting thr b62b1900 , thread 10110 , mypolls 0 +thr b62b1a80 , status 1 +connecting thr b62b1a80 , thread 10111 , mypolls 0 +myconn 0 connecting thr b62b1a80 , thread 10111 , mypolls 0 +thr b62b1c00 , status 1 +connecting thr b62b1c00 , thread 10112 , mypolls 0 +myconn 0 connecting thr b62b1c00 , thread 10112 , mypolls 0 +thr b62b1d80 , status 1 +connecting thr b62b1d80 , thread 10113 , mypolls 0 +myconn 0 connecting thr b62b1d80 , thread 10113 , mypolls 0 +thr b62b1f00 , status 1 +connecting thr b62b1f00 , thread 10114 , mypolls 0 +myconn 0 connecting thr b62b1f00 , thread 10114 , mypolls 0 +thr b62b2080 , status 1 +connecting thr b62b2080 , thread 10115 , mypolls 0 +myconn 0 connecting thr b62b2080 , thread 10115 , mypolls 0 +thr b62b2200 , status 1 +connecting thr b62b2200 , thread 10116 , mypolls 0 +myconn 0 connecting thr b62b2200 , thread 10116 , mypolls 0 +thr b62b2380 , status 1 +connecting thr b62b2380 , thread 10117 , mypolls 0 +myconn 0 connecting thr b62b2380 , thread 10117 , mypolls 0 +thr b62b2500 , status 1 +connecting thr b62b2500 , thread 10118 , mypolls 0 +myconn 0 connecting thr b62b2500 , thread 10118 , mypolls 0 +thr b62b2680 , status 1 +connecting thr b62b2680 , thread 10119 , mypolls 0 +myconn 0 connecting thr b62b2680 , thread 10119 , mypolls 0 +thr b62b2800 , status 1 +connecting thr b62b2800 , thread 10120 , mypolls 0 +myconn 0 connecting thr b62b2800 , thread 10120 , mypolls 0 +thr b62b2980 , status 1 +connecting thr b62b2980 , thread 10121 , mypolls 0 +myconn 0 connecting thr b62b2980 , thread 10121 , mypolls 0 +thr b62b2b00 , status 1 +connecting thr b62b2b00 , thread 10122 , mypolls 0 +myconn 0 connecting thr b62b2b00 , thread 10122 , mypolls 0 +thr b62b2c80 , status 1 +connecting thr b62b2c80 , thread 10123 , mypolls 0 +myconn 0 connecting thr b62b2c80 , thread 10123 , mypolls 0 +thr b62b2e00 , status 1 +connecting thr b62b2e00 , thread 10124 , mypolls 0 +myconn 0 connecting thr b62b2e00 , thread 10124 , mypolls 0 +thr b62b2f80 , status 1 +connecting thr b62b2f80 , thread 10125 , mypolls 0 +myconn 0 connecting thr b62b2f80 , thread 10125 , mypolls 0 +thr b62b3100 , status 1 +connecting thr b62b3100 , thread 10126 , mypolls 0 +myconn 0 connecting thr b62b3100 , thread 10126 , mypolls 0 +thr b62b3280 , status 1 +connecting thr b62b3280 , thread 10127 , mypolls 0 +myconn 0 connecting thr b62b3280 , thread 10127 , mypolls 0 +thr b62b3400 , status 1 +connecting thr b62b3400 , thread 10128 , mypolls 0 +myconn 0 connecting thr b62b3400 , thread 10128 , mypolls 0 +thr b62b3580 , status 1 +connecting thr b62b3580 , thread 10129 , mypolls 0 +myconn 0 connecting thr b62b3580 , thread 10129 , mypolls 0 +thr b62b3700 , status 1 +connecting thr b62b3700 , thread 10130 , mypolls 0 +myconn 0 connecting thr b62b3700 , thread 10130 , mypolls 0 +thr b62b3880 , status 1 +connecting thr b62b3880 , thread 10131 , mypolls 0 +myconn 0 connecting thr b62b3880 , thread 10131 , mypolls 0 +thr b62b3a00 , status 1 +connecting thr b62b3a00 , thread 10132 , mypolls 0 +myconn 0 connecting thr b62b3a00 , thread 10132 , mypolls 0 +thr b62b3b80 , status 1 +connecting thr b62b3b80 , thread 10133 , mypolls 0 +myconn 0 connecting thr b62b3b80 , thread 10133 , mypolls 0 +thr b62b3d00 , status 1 +connecting thr b62b3d00 , thread 10134 , mypolls 0 +myconn 0 connecting thr b62b3d00 , thread 10134 , mypolls 0 +thr b62b3e80 , status 1 +connecting thr b62b3e80 , thread 10135 , mypolls 0 +myconn 0 connecting thr b62b3e80 , thread 10135 , mypolls 0 +thr b6113000 , status 1 +connecting thr b6113000 , thread 10136 , mypolls 0 +myconn 0 connecting thr b6113000 , thread 10136 , mypolls 0 +thr b6113180 , status 1 +connecting thr b6113180 , thread 10137 , mypolls 0 +myconn 0 connecting thr b6113180 , thread 10137 , mypolls 0 +thr b6113300 , status 1 +connecting thr b6113300 , thread 10138 , mypolls 0 +myconn 0 connecting thr b6113300 , thread 10138 , mypolls 0 +thr b6113480 , status 1 +connecting thr b6113480 , thread 10139 , mypolls 0 +myconn 0 connecting thr b6113480 , thread 10139 , mypolls 0 +thr b6113600 , status 1 +connecting thr b6113600 , thread 10140 , mypolls 0 +myconn 0 connecting thr b6113600 , thread 10140 , mypolls 0 +thr b6113780 , status 1 +connecting thr b6113780 , thread 10141 , mypolls 0 +myconn 0 connecting thr b6113780 , thread 10141 , mypolls 0 +thr b6113900 , status 1 +connecting thr b6113900 , thread 10142 , mypolls 0 +myconn 0 connecting thr b6113900 , thread 10142 , mypolls 0 +thr b6113a80 , status 1 +connecting thr b6113a80 , thread 10143 , mypolls 0 +myconn 0 connecting thr b6113a80 , thread 10143 , mypolls 0 +thr b6113c00 , status 1 +connecting thr b6113c00 , thread 10144 , mypolls 0 +myconn 0 connecting thr b6113c00 , thread 10144 , mypolls 0 +thr b6113d80 , status 1 +connecting thr b6113d80 , thread 10145 , mypolls 0 +myconn 0 connecting thr b6113d80 , thread 10145 , mypolls 0 +thr b6113f00 , status 1 +connecting thr b6113f00 , thread 10146 , mypolls 0 +myconn 0 connecting thr b6113f00 , thread 10146 , mypolls 0 +thr b6114080 , status 1 +connecting thr b6114080 , thread 10147 , mypolls 0 +myconn 0 connecting thr b6114080 , thread 10147 , mypolls 0 +thr b6114200 , status 1 +connecting thr b6114200 , thread 10148 , mypolls 0 +myconn 0 connecting thr b6114200 , thread 10148 , mypolls 0 +thr b6114380 , status 1 +connecting thr b6114380 , thread 10149 , mypolls 0 +myconn 0 connecting thr b6114380 , thread 10149 , mypolls 0 +thr b6114500 , status 1 +connecting thr b6114500 , thread 10150 , mypolls 0 +myconn 0 connecting thr b6114500 , thread 10150 , mypolls 0 +thr b6114680 , status 1 +connecting thr b6114680 , thread 10151 , mypolls 0 +myconn 0 connecting thr b6114680 , thread 10151 , mypolls 0 +thr b6114800 , status 1 +connecting thr b6114800 , thread 10152 , mypolls 0 +myconn 0 connecting thr b6114800 , thread 10152 , mypolls 0 +thr b6114980 , status 1 +connecting thr b6114980 , thread 10153 , mypolls 0 +myconn 0 connecting thr b6114980 , thread 10153 , mypolls 0 +thr b6114b00 , status 1 +connecting thr b6114b00 , thread 10154 , mypolls 0 +myconn 0 connecting thr b6114b00 , thread 10154 , mypolls 0 +thr b6114c80 , status 1 +connecting thr b6114c80 , thread 10155 , mypolls 0 +myconn 0 connecting thr b6114c80 , thread 10155 , mypolls 0 +thr b6114e00 , status 1 +connecting thr b6114e00 , thread 10156 , mypolls 0 +myconn 0 connecting thr b6114e00 , thread 10156 , mypolls 0 +thr b6114f80 , status 1 +connecting thr b6114f80 , thread 10157 , mypolls 0 +myconn 0 connecting thr b6114f80 , thread 10157 , mypolls 0 +thr b6115100 , status 1 +connecting thr b6115100 , thread 10158 , mypolls 0 +myconn 0 connecting thr b6115100 , thread 10158 , mypolls 0 +thr b6115280 , status 1 +connecting thr b6115280 , thread 10159 , mypolls 0 +myconn 0 connecting thr b6115280 , thread 10159 , mypolls 0 +thr b6115400 , status 1 +connecting thr b6115400 , thread 10160 , mypolls 0 +myconn 0 connecting thr b6115400 , thread 10160 , mypolls 0 +thr b6115580 , status 1 +connecting thr b6115580 , thread 10161 , mypolls 0 +myconn 0 connecting thr b6115580 , thread 10161 , mypolls 0 +thr b6115700 , status 1 +connecting thr b6115700 , thread 10162 , mypolls 0 +myconn 0 connecting thr b6115700 , thread 10162 , mypolls 0 +thr b6115880 , status 1 +connecting thr b6115880 , thread 10163 , mypolls 0 +myconn 0 connecting thr b6115880 , thread 10163 , mypolls 0 +thr b6115a00 , status 1 +connecting thr b6115a00 , thread 10164 , mypolls 0 +myconn 0 connecting thr b6115a00 , thread 10164 , mypolls 0 +thr b6115b80 , status 1 +connecting thr b6115b80 , thread 10165 , mypolls 0 +myconn 0 connecting thr b6115b80 , thread 10165 , mypolls 0 +thr b6115d00 , status 1 +connecting thr b6115d00 , thread 10166 , mypolls 0 +myconn 0 connecting thr b6115d00 , thread 10166 , mypolls 0 +thr b6115e80 , status 1 +connecting thr b6115e80 , thread 10167 , mypolls 0 +myconn 0 connecting thr b6115e80 , thread 10167 , mypolls 0 +thr b5f73000 , status 1 +connecting thr b5f73000 , thread 10168 , mypolls 0 +myconn 0 connecting thr b5f73000 , thread 10168 , mypolls 0 +thr b5f73180 , status 1 +connecting thr b5f73180 , thread 10169 , mypolls 0 +myconn 0 connecting thr b5f73180 , thread 10169 , mypolls 0 +thr b5f73300 , status 1 +connecting thr b5f73300 , thread 10170 , mypolls 0 +myconn 0 connecting thr b5f73300 , thread 10170 , mypolls 0 +thr b5f73480 , status 1 +connecting thr b5f73480 , thread 10171 , mypolls 0 +myconn 0 connecting thr b5f73480 , thread 10171 , mypolls 0 +thr b5f73600 , status 1 +connecting thr b5f73600 , thread 10172 , mypolls 0 +myconn 0 connecting thr b5f73600 , thread 10172 , mypolls 0 +thr b5f73780 , status 1 +connecting thr b5f73780 , thread 10173 , mypolls 0 +myconn 0 connecting thr b5f73780 , thread 10173 , mypolls 0 +thr b5f73900 , status 1 +connecting thr b5f73900 , thread 10174 , mypolls 0 +myconn 0 connecting thr b5f73900 , thread 10174 , mypolls 0 +thr b5f73a80 , status 1 +connecting thr b5f73a80 , thread 10175 , mypolls 0 +myconn 0 connecting thr b5f73a80 , thread 10175 , mypolls 0 +thr b5f73c00 , status 1 +connecting thr b5f73c00 , thread 10176 , mypolls 0 +myconn 0 connecting thr b5f73c00 , thread 10176 , mypolls 0 +thr b5f73d80 , status 1 +connecting thr b5f73d80 , thread 10177 , mypolls 0 +myconn 0 connecting thr b5f73d80 , thread 10177 , mypolls 0 +thr b5f73f00 , status 1 +connecting thr b5f73f00 , thread 10178 , mypolls 0 +myconn 0 connecting thr b5f73f00 , thread 10178 , mypolls 0 +thr b5f74080 , status 1 +connecting thr b5f74080 , thread 10179 , mypolls 0 +myconn 0 connecting thr b5f74080 , thread 10179 , mypolls 0 +thr b5f74200 , status 1 +connecting thr b5f74200 , thread 10180 , mypolls 0 +myconn 0 connecting thr b5f74200 , thread 10180 , mypolls 0 +thr b5f74380 , status 1 +connecting thr b5f74380 , thread 10181 , mypolls 0 +myconn 0 connecting thr b5f74380 , thread 10181 , mypolls 0 +thr b5f74500 , status 1 +connecting thr b5f74500 , thread 10182 , mypolls 0 +myconn 0 connecting thr b5f74500 , thread 10182 , mypolls 0 +thr b5f74680 , status 1 +connecting thr b5f74680 , thread 10183 , mypolls 0 +myconn 0 connecting thr b5f74680 , thread 10183 , mypolls 0 +thr b5f74800 , status 1 +connecting thr b5f74800 , thread 10184 , mypolls 0 +myconn 0 connecting thr b5f74800 , thread 10184 , mypolls 0 +thr b5f74980 , status 1 +connecting thr b5f74980 , thread 10185 , mypolls 0 +myconn 0 connecting thr b5f74980 , thread 10185 , mypolls 0 +thr b5f74b00 , status 1 +connecting thr b5f74b00 , thread 10186 , mypolls 0 +myconn 0 connecting thr b5f74b00 , thread 10186 , mypolls 0 +thr b5f74c80 , status 1 +connecting thr b5f74c80 , thread 10187 , mypolls 0 +myconn 0 connecting thr b5f74c80 , thread 10187 , mypolls 0 +thr b5f74e00 , status 1 +connecting thr b5f74e00 , thread 10188 , mypolls 0 +myconn 0 connecting thr b5f74e00 , thread 10188 , mypolls 0 +thr b5f74f80 , status 1 +connecting thr b5f74f80 , thread 10189 , mypolls 0 +myconn 0 connecting thr b5f74f80 , thread 10189 , mypolls 0 +thr b5f75100 , status 1 +connecting thr b5f75100 , thread 10190 , mypolls 0 +myconn 0 connecting thr b5f75100 , thread 10190 , mypolls 0 +thr b5f75280 , status 1 +connecting thr b5f75280 , thread 10191 , mypolls 0 +myconn 0 connecting thr b5f75280 , thread 10191 , mypolls 0 +thr b5f75400 , status 1 +connecting thr b5f75400 , thread 10192 , mypolls 0 +myconn 0 connecting thr b5f75400 , thread 10192 , mypolls 0 +thr b5f75580 , status 1 +connecting thr b5f75580 , thread 10193 , mypolls 0 +myconn 0 connecting thr b5f75580 , thread 10193 , mypolls 0 +thr b5f75700 , status 1 +connecting thr b5f75700 , thread 10194 , mypolls 0 +myconn 0 connecting thr b5f75700 , thread 10194 , mypolls 0 +thr b5f75880 , status 1 +connecting thr b5f75880 , thread 10195 , mypolls 0 +myconn 0 connecting thr b5f75880 , thread 10195 , mypolls 0 +thr b5f75a00 , status 1 +connecting thr b5f75a00 , thread 10196 , mypolls 0 +myconn 0 connecting thr b5f75a00 , thread 10196 , mypolls 0 +thr b5f75b80 , status 1 +connecting thr b5f75b80 , thread 10197 , mypolls 0 +myconn 0 connecting thr b5f75b80 , thread 10197 , mypolls 0 +thr b5f75d00 , status 1 +connecting thr b5f75d00 , thread 10198 , mypolls 0 +myconn 0 connecting thr b5f75d00 , thread 10198 , mypolls 0 +thr b5f75e80 , status 1 +connecting thr b5f75e80 , thread 10199 , mypolls 0 +myconn 0 connecting thr b5f75e80 , thread 10199 , mypolls 0 +thr b5dd6000 , status 1 +connecting thr b5dd6000 , thread 10200 , mypolls 0 +myconn 0 connecting thr b5dd6000 , thread 10200 , mypolls 0 +thr b5dd6180 , status 1 +connecting thr b5dd6180 , thread 10201 , mypolls 0 +myconn 0 connecting thr b5dd6180 , thread 10201 , mypolls 0 +thr b5dd6300 , status 1 +connecting thr b5dd6300 , thread 10202 , mypolls 0 +myconn 0 connecting thr b5dd6300 , thread 10202 , mypolls 0 +thr b5dd6480 , status 1 +connecting thr b5dd6480 , thread 10203 , mypolls 0 +myconn 0 connecting thr b5dd6480 , thread 10203 , mypolls 0 +thr b5dd6600 , status 1 +connecting thr b5dd6600 , thread 10204 , mypolls 0 +myconn 0 connecting thr b5dd6600 , thread 10204 , mypolls 0 +thr b5dd6780 , status 1 +connecting thr b5dd6780 , thread 10205 , mypolls 0 +myconn 0 connecting thr b5dd6780 , thread 10205 , mypolls 0 +thr b5dd6900 , status 1 +connecting thr b5dd6900 , thread 10206 , mypolls 0 +myconn 0 connecting thr b5dd6900 , thread 10206 , mypolls 0 +thr b5dd6a80 , status 1 +connecting thr b5dd6a80 , thread 10207 , mypolls 0 +myconn 0 connecting thr b5dd6a80 , thread 10207 , mypolls 0 +thr b5dd6c00 , status 1 +connecting thr b5dd6c00 , thread 10208 , mypolls 0 +myconn 0 connecting thr b5dd6c00 , thread 10208 , mypolls 0 +thr b5dd6d80 , status 1 +connecting thr b5dd6d80 , thread 10209 , mypolls 0 +myconn 0 connecting thr b5dd6d80 , thread 10209 , mypolls 0 +thr b5dd6f00 , status 1 +connecting thr b5dd6f00 , thread 10210 , mypolls 0 +myconn 0 connecting thr b5dd6f00 , thread 10210 , mypolls 0 +thr b5dd7080 , status 1 +connecting thr b5dd7080 , thread 10211 , mypolls 0 +myconn 0 connecting thr b5dd7080 , thread 10211 , mypolls 0 +thr b5dd7200 , status 1 +connecting thr b5dd7200 , thread 10212 , mypolls 0 +myconn 0 connecting thr b5dd7200 , thread 10212 , mypolls 0 +thr b5dd7380 , status 1 +connecting thr b5dd7380 , thread 10213 , mypolls 0 +myconn 0 connecting thr b5dd7380 , thread 10213 , mypolls 0 +thr b5dd7500 , status 1 +connecting thr b5dd7500 , thread 10214 , mypolls 0 +myconn 0 connecting thr b5dd7500 , thread 10214 , mypolls 0 +thr b5dd7680 , status 1 +connecting thr b5dd7680 , thread 10215 , mypolls 0 +myconn 0 connecting thr b5dd7680 , thread 10215 , mypolls 0 +thr b5dd7800 , status 1 +connecting thr b5dd7800 , thread 10216 , mypolls 0 +myconn 0 connecting thr b5dd7800 , thread 10216 , mypolls 0 +thr b5dd7980 , status 1 +connecting thr b5dd7980 , thread 10217 , mypolls 0 +myconn 0 connecting thr b5dd7980 , thread 10217 , mypolls 0 +thr b5dd7b00 , status 1 +connecting thr b5dd7b00 , thread 10218 , mypolls 0 +myconn 0 connecting thr b5dd7b00 , thread 10218 , mypolls 0 +thr b5dd7c80 , status 1 +connecting thr b5dd7c80 , thread 10219 , mypolls 0 +myconn 0 connecting thr b5dd7c80 , thread 10219 , mypolls 0 +thr b5dd7e00 , status 1 +connecting thr b5dd7e00 , thread 10220 , mypolls 0 +myconn 0 connecting thr b5dd7e00 , thread 10220 , mypolls 0 +thr b5dd7f80 , status 1 +connecting thr b5dd7f80 , thread 10221 , mypolls 0 +myconn 0 connecting thr b5dd7f80 , thread 10221 , mypolls 0 +thr b5dd8100 , status 1 +connecting thr b5dd8100 , thread 10222 , mypolls 0 +myconn 0 connecting thr b5dd8100 , thread 10222 , mypolls 0 +thr b5dd8280 , status 1 +connecting thr b5dd8280 , thread 10223 , mypolls 0 +myconn 0 connecting thr b5dd8280 , thread 10223 , mypolls 0 +thr b5dd8400 , status 1 +connecting thr b5dd8400 , thread 10224 , mypolls 0 +myconn 0 connecting thr b5dd8400 , thread 10224 , mypolls 0 +thr b5dd8580 , status 1 +connecting thr b5dd8580 , thread 10225 , mypolls 0 +myconn 0 connecting thr b5dd8580 , thread 10225 , mypolls 0 +thr b5dd8700 , status 1 +connecting thr b5dd8700 , thread 10226 , mypolls 0 +myconn 0 connecting thr b5dd8700 , thread 10226 , mypolls 0 +thr b5dd8880 , status 1 +connecting thr b5dd8880 , thread 10227 , mypolls 0 +myconn 0 connecting thr b5dd8880 , thread 10227 , mypolls 0 +thr b5dd8a00 , status 1 +connecting thr b5dd8a00 , thread 10228 , mypolls 0 +myconn 0 connecting thr b5dd8a00 , thread 10228 , mypolls 0 +thr b5dd8b80 , status 1 +connecting thr b5dd8b80 , thread 10229 , mypolls 0 +myconn 0 connecting thr b5dd8b80 , thread 10229 , mypolls 0 +thr b5dd8d00 , status 1 +connecting thr b5dd8d00 , thread 10230 , mypolls 0 +myconn 0 connecting thr b5dd8d00 , thread 10230 , mypolls 0 +thr b5dd8e80 , status 1 +connecting thr b5dd8e80 , thread 10231 , mypolls 0 +myconn 0 connecting thr b5dd8e80 , thread 10231 , mypolls 0 +thr b5bf9000 , status 1 +connecting thr b5bf9000 , thread 10232 , mypolls 0 +myconn 0 connecting thr b5bf9000 , thread 10232 , mypolls 0 +thr b5bf9180 , status 1 +connecting thr b5bf9180 , thread 10233 , mypolls 0 +myconn 0 connecting thr b5bf9180 , thread 10233 , mypolls 0 +thr b5bf9300 , status 1 +connecting thr b5bf9300 , thread 10234 , mypolls 0 +myconn 0 connecting thr b5bf9300 , thread 10234 , mypolls 0 +thr b5bf9480 , status 1 +connecting thr b5bf9480 , thread 10235 , mypolls 0 +myconn 0 connecting thr b5bf9480 , thread 10235 , mypolls 0 +thr b5bf9600 , status 1 +connecting thr b5bf9600 , thread 10236 , mypolls 0 +myconn 0 connecting thr b5bf9600 , thread 10236 , mypolls 0 +thr b5bf9780 , status 1 +connecting thr b5bf9780 , thread 10237 , mypolls 0 +myconn 0 connecting thr b5bf9780 , thread 10237 , mypolls 0 +thr b5bf9900 , status 1 +connecting thr b5bf9900 , thread 10238 , mypolls 0 +myconn 0 connecting thr b5bf9900 , thread 10238 , mypolls 0 +thr b5bf9a80 , status 1 +connecting thr b5bf9a80 , thread 10239 , mypolls 0 +myconn 0 connecting thr b5bf9a80 , thread 10239 , mypolls 0 +thr b5bf9c00 , status 1 +connecting thr b5bf9c00 , thread 10240 , mypolls 0 +myconn 0 connecting thr b5bf9c00 , thread 10240 , mypolls 0 +thr b5bf9d80 , status 1 +connecting thr b5bf9d80 , thread 10241 , mypolls 0 +myconn 0 connecting thr b5bf9d80 , thread 10241 , mypolls 0 +thr b5bf9f00 , status 1 +connecting thr b5bf9f00 , thread 10242 , mypolls 0 +myconn 0 connecting thr b5bf9f00 , thread 10242 , mypolls 0 +thr b5bfa080 , status 1 +connecting thr b5bfa080 , thread 10243 , mypolls 0 +myconn 0 connecting thr b5bfa080 , thread 10243 , mypolls 0 +thr b5bfa200 , status 1 +connecting thr b5bfa200 , thread 10244 , mypolls 0 +myconn 0 connecting thr b5bfa200 , thread 10244 , mypolls 0 +thr b5bfa380 , status 1 +connecting thr b5bfa380 , thread 10245 , mypolls 0 +myconn 0 connecting thr b5bfa380 , thread 10245 , mypolls 0 +thr b5bfa500 , status 1 +connecting thr b5bfa500 , thread 10246 , mypolls 0 +myconn 0 connecting thr b5bfa500 , thread 10246 , mypolls 0 +thr b5bfa680 , status 1 +connecting thr b5bfa680 , thread 10247 , mypolls 0 +myconn 0 connecting thr b5bfa680 , thread 10247 , mypolls 0 +thr b5bfa800 , status 1 +connecting thr b5bfa800 , thread 10248 , mypolls 0 +myconn 0 connecting thr b5bfa800 , thread 10248 , mypolls 0 +thr b5bfa980 , status 1 +connecting thr b5bfa980 , thread 10249 , mypolls 0 +myconn 0 connecting thr b5bfa980 , thread 10249 , mypolls 0 +thr b5bfab00 , status 1 +connecting thr b5bfab00 , thread 10250 , mypolls 0 +myconn 0 connecting thr b5bfab00 , thread 10250 , mypolls 0 +thr b5bfac80 , status 1 +connecting thr b5bfac80 , thread 10251 , mypolls 0 +myconn 0 connecting thr b5bfac80 , thread 10251 , mypolls 0 +thr b5bfae00 , status 1 +connecting thr b5bfae00 , thread 10252 , mypolls 0 +myconn 0 connecting thr b5bfae00 , thread 10252 , mypolls 0 +thr b5bfaf80 , status 1 +connecting thr b5bfaf80 , thread 10253 , mypolls 0 +myconn 0 connecting thr b5bfaf80 , thread 10253 , mypolls 0 +thr b5bfb100 , status 1 +connecting thr b5bfb100 , thread 10254 , mypolls 0 +myconn 0 connecting thr b5bfb100 , thread 10254 , mypolls 0 +thr b5bfb280 , status 1 +connecting thr b5bfb280 , thread 10255 , mypolls 0 +myconn 0 connecting thr b5bfb280 , thread 10255 , mypolls 0 +thr b5bfb400 , status 1 +connecting thr b5bfb400 , thread 10256 , mypolls 0 +myconn 0 connecting thr b5bfb400 , thread 10256 , mypolls 0 +thr b5bfb580 , status 1 +connecting thr b5bfb580 , thread 10257 , mypolls 0 +myconn 0 connecting thr b5bfb580 , thread 10257 , mypolls 0 +thr b5bfb700 , status 1 +connecting thr b5bfb700 , thread 10258 , mypolls 0 +myconn 0 connecting thr b5bfb700 , thread 10258 , mypolls 0 +thr b5bfb880 , status 1 +connecting thr b5bfb880 , thread 10259 , mypolls 0 +myconn 0 connecting thr b5bfb880 , thread 10259 , mypolls 0 +thr b5bfba00 , status 1 +connecting thr b5bfba00 , thread 10260 , mypolls 0 +myconn 0 connecting thr b5bfba00 , thread 10260 , mypolls 0 +thr b5bfbb80 , status 1 +connecting thr b5bfbb80 , thread 10261 , mypolls 0 +myconn 0 connecting thr b5bfbb80 , thread 10261 , mypolls 0 +thr b5bfbd00 , status 1 +connecting thr b5bfbd00 , thread 10262 , mypolls 0 +myconn 0 connecting thr b5bfbd00 , thread 10262 , mypolls 0 +thr b5bfbe80 , status 1 +connecting thr b5bfbe80 , thread 10263 , mypolls 0 +myconn 0 connecting thr b5bfbe80 , thread 10263 , mypolls 0 +thr b56a8000 , status 1 +connecting thr b56a8000 , thread 10264 , mypolls 0 +myconn 0 connecting thr b56a8000 , thread 10264 , mypolls 0 +thr b56a8180 , status 1 +connecting thr b56a8180 , thread 10265 , mypolls 0 +myconn 0 connecting thr b56a8180 , thread 10265 , mypolls 0 +thr b56a8300 , status 1 +connecting thr b56a8300 , thread 10266 , mypolls 0 +myconn 0 connecting thr b56a8300 , thread 10266 , mypolls 0 +thr b56a8480 , status 1 +connecting thr b56a8480 , thread 10267 , mypolls 0 +myconn 0 connecting thr b56a8480 , thread 10267 , mypolls 0 +thr b56a8600 , status 1 +connecting thr b56a8600 , thread 10268 , mypolls 0 +myconn 0 connecting thr b56a8600 , thread 10268 , mypolls 0 +thr b56a8780 , status 1 +connecting thr b56a8780 , thread 10269 , mypolls 0 +myconn 0 connecting thr b56a8780 , thread 10269 , mypolls 0 +thr b56a8900 , status 1 +connecting thr b56a8900 , thread 10270 , mypolls 0 +myconn 0 connecting thr b56a8900 , thread 10270 , mypolls 0 +thr b56a8a80 , status 1 +connecting thr b56a8a80 , thread 10271 , mypolls 0 +myconn 0 connecting thr b56a8a80 , thread 10271 , mypolls 0 +thr b56a8c00 , status 1 +connecting thr b56a8c00 , thread 10272 , mypolls 0 +myconn 0 connecting thr b56a8c00 , thread 10272 , mypolls 0 +thr b56a8d80 , status 1 +connecting thr b56a8d80 , thread 10273 , mypolls 0 +myconn 0 connecting thr b56a8d80 , thread 10273 , mypolls 0 +thr b56a8f00 , status 1 +connecting thr b56a8f00 , thread 10274 , mypolls 0 +myconn 0 connecting thr b56a8f00 , thread 10274 , mypolls 0 +thr b56a9080 , status 1 +connecting thr b56a9080 , thread 10275 , mypolls 0 +myconn 0 connecting thr b56a9080 , thread 10275 , mypolls 0 +thr b56a9200 , status 1 +connecting thr b56a9200 , thread 10276 , mypolls 0 +myconn 0 connecting thr b56a9200 , thread 10276 , mypolls 0 +thr b56a9380 , status 1 +connecting thr b56a9380 , thread 10277 , mypolls 0 +myconn 0 connecting thr b56a9380 , thread 10277 , mypolls 0 +thr b56a9500 , status 1 +connecting thr b56a9500 , thread 10278 , mypolls 0 +myconn 0 connecting thr b56a9500 , thread 10278 , mypolls 0 +thr b56a9680 , status 1 +connecting thr b56a9680 , thread 10279 , mypolls 0 +myconn 0 connecting thr b56a9680 , thread 10279 , mypolls 0 +thr b56a9800 , status 1 +connecting thr b56a9800 , thread 10280 , mypolls 0 +myconn 0 connecting thr b56a9800 , thread 10280 , mypolls 0 +thr b56a9980 , status 1 +connecting thr b56a9980 , thread 10281 , mypolls 0 +myconn 0 connecting thr b56a9980 , thread 10281 , mypolls 0 +thr b56a9b00 , status 1 +connecting thr b56a9b00 , thread 10282 , mypolls 0 +myconn 0 connecting thr b56a9b00 , thread 10282 , mypolls 0 +thr b56a9c80 , status 1 +connecting thr b56a9c80 , thread 10283 , mypolls 0 +myconn 0 connecting thr b56a9c80 , thread 10283 , mypolls 0 +thr b56a9e00 , status 1 +connecting thr b56a9e00 , thread 10284 , mypolls 0 +myconn 0 connecting thr b56a9e00 , thread 10284 , mypolls 0 +thr b56a9f80 , status 1 +connecting thr b56a9f80 , thread 10285 , mypolls 0 +myconn 0 connecting thr b56a9f80 , thread 10285 , mypolls 0 +thr b56aa100 , status 1 +connecting thr b56aa100 , thread 10286 , mypolls 0 +myconn 0 connecting thr b56aa100 , thread 10286 , mypolls 0 +thr b56aa280 , status 1 +connecting thr b56aa280 , thread 10287 , mypolls 0 +myconn 0 connecting thr b56aa280 , thread 10287 , mypolls 0 +thr b56aa400 , status 1 +connecting thr b56aa400 , thread 10288 , mypolls 0 +myconn 0 connecting thr b56aa400 , thread 10288 , mypolls 0 +thr b56aa580 , status 1 +connecting thr b56aa580 , thread 10289 , mypolls 0 +myconn 0 connecting thr b56aa580 , thread 10289 , mypolls 0 +thr b56aa700 , status 1 +connecting thr b56aa700 , thread 10290 , mypolls 0 +myconn 0 connecting thr b56aa700 , thread 10290 , mypolls 0 +thr b56aa880 , status 1 +connecting thr b56aa880 , thread 10291 , mypolls 0 +myconn 0 connecting thr b56aa880 , thread 10291 , mypolls 0 +thr b56aaa00 , status 1 +connecting thr b56aaa00 , thread 10292 , mypolls 0 +myconn 0 connecting thr b56aaa00 , thread 10292 , mypolls 0 +thr b56aab80 , status 1 +connecting thr b56aab80 , thread 10293 , mypolls 0 +myconn 0 connecting thr b56aab80 , thread 10293 , mypolls 0 +thr b56aad00 , status 1 +connecting thr b56aad00 , thread 10294 , mypolls 0 +myconn 0 connecting thr b56aad00 , thread 10294 , mypolls 0 +thr b56aae80 , status 1 +connecting thr b56aae80 , thread 10295 , mypolls 0 +myconn 0 connecting thr b56aae80 , thread 10295 , mypolls 0 +thr b550f000 , status 1 +connecting thr b550f000 , thread 10296 , mypolls 0 +myconn 0 connecting thr b550f000 , thread 10296 , mypolls 0 +thr b550f180 , status 1 +connecting thr b550f180 , thread 10297 , mypolls 0 +myconn 0 connecting thr b550f180 , thread 10297 , mypolls 0 +thr b550f300 , status 1 +connecting thr b550f300 , thread 10298 , mypolls 0 +myconn 0 connecting thr b550f300 , thread 10298 , mypolls 0 +thr b550f480 , status 1 +connecting thr b550f480 , thread 10299 , mypolls 0 +myconn 0 connecting thr b550f480 , thread 10299 , mypolls 0 +thr b550f600 , status 1 +connecting thr b550f600 , thread 10300 , mypolls 0 +myconn 0 connecting thr b550f600 , thread 10300 , mypolls 0 +thr b550f780 , status 1 +connecting thr b550f780 , thread 10301 , mypolls 0 +myconn 0 connecting thr b550f780 , thread 10301 , mypolls 0 +thr b550f900 , status 1 +connecting thr b550f900 , thread 10302 , mypolls 0 +myconn 0 connecting thr b550f900 , thread 10302 , mypolls 0 +thr b550fa80 , status 1 +connecting thr b550fa80 , thread 10303 , mypolls 0 +myconn 0 connecting thr b550fa80 , thread 10303 , mypolls 0 +thr b550fc00 , status 1 +connecting thr b550fc00 , thread 10304 , mypolls 0 +myconn 0 connecting thr b550fc00 , thread 10304 , mypolls 0 +thr b550fd80 , status 1 +connecting thr b550fd80 , thread 10305 , mypolls 0 +myconn 0 connecting thr b550fd80 , thread 10305 , mypolls 0 +thr b550ff00 , status 1 +connecting thr b550ff00 , thread 10306 , mypolls 0 +myconn 0 connecting thr b550ff00 , thread 10306 , mypolls 0 +thr b5510080 , status 1 +connecting thr b5510080 , thread 10307 , mypolls 0 +myconn 0 connecting thr b5510080 , thread 10307 , mypolls 0 +thr b5510200 , status 1 +connecting thr b5510200 , thread 10308 , mypolls 0 +myconn 0 connecting thr b5510200 , thread 10308 , mypolls 0 +thr b5510380 , status 1 +connecting thr b5510380 , thread 10309 , mypolls 0 +myconn 0 connecting thr b5510380 , thread 10309 , mypolls 0 +thr b5510500 , status 1 +connecting thr b5510500 , thread 10310 , mypolls 0 +myconn 0 connecting thr b5510500 , thread 10310 , mypolls 0 +thr b5510680 , status 1 +connecting thr b5510680 , thread 10311 , mypolls 0 +myconn 0 connecting thr b5510680 , thread 10311 , mypolls 0 +thr b5510800 , status 1 +connecting thr b5510800 , thread 10312 , mypolls 0 +myconn 0 connecting thr b5510800 , thread 10312 , mypolls 0 +thr b5510980 , status 1 +connecting thr b5510980 , thread 10313 , mypolls 0 +myconn 0 connecting thr b5510980 , thread 10313 , mypolls 0 +thr b5510b00 , status 1 +connecting thr b5510b00 , thread 10314 , mypolls 0 +myconn 0 connecting thr b5510b00 , thread 10314 , mypolls 0 +thr b5510c80 , status 1 +connecting thr b5510c80 , thread 10315 , mypolls 0 +myconn 0 connecting thr b5510c80 , thread 10315 , mypolls 0 +thr b5510e00 , status 1 +connecting thr b5510e00 , thread 10316 , mypolls 0 +myconn 0 connecting thr b5510e00 , thread 10316 , mypolls 0 +thr b5510f80 , status 1 +connecting thr b5510f80 , thread 10317 , mypolls 0 +myconn 0 connecting thr b5510f80 , thread 10317 , mypolls 0 +thr b5511100 , status 1 +connecting thr b5511100 , thread 10318 , mypolls 0 +myconn 0 connecting thr b5511100 , thread 10318 , mypolls 0 +thr b5511280 , status 1 +connecting thr b5511280 , thread 10319 , mypolls 0 +myconn 0 connecting thr b5511280 , thread 10319 , mypolls 0 +thr b5511400 , status 1 +connecting thr b5511400 , thread 10320 , mypolls 0 +myconn 0 connecting thr b5511400 , thread 10320 , mypolls 0 +thr b5511580 , status 1 +connecting thr b5511580 , thread 10321 , mypolls 0 +myconn 0 connecting thr b5511580 , thread 10321 , mypolls 0 +thr b5511700 , status 1 +connecting thr b5511700 , thread 10322 , mypolls 0 +myconn 0 connecting thr b5511700 , thread 10322 , mypolls 0 +thr b5511880 , status 1 +connecting thr b5511880 , thread 10323 , mypolls 0 +myconn 0 connecting thr b5511880 , thread 10323 , mypolls 0 +thr b5511a00 , status 1 +connecting thr b5511a00 , thread 10324 , mypolls 0 +myconn 0 connecting thr b5511a00 , thread 10324 , mypolls 0 +thr b5511b80 , status 1 +connecting thr b5511b80 , thread 10325 , mypolls 0 +myconn 0 connecting thr b5511b80 , thread 10325 , mypolls 0 +thr b5511d00 , status 1 +connecting thr b5511d00 , thread 10326 , mypolls 0 +myconn 0 connecting thr b5511d00 , thread 10326 , mypolls 0 +thr b5511e80 , status 1 +connecting thr b5511e80 , thread 10327 , mypolls 0 +myconn 0 connecting thr b5511e80 , thread 10327 , mypolls 0 +thr b5371000 , status 1 +connecting thr b5371000 , thread 10328 , mypolls 0 +myconn 0 connecting thr b5371000 , thread 10328 , mypolls 0 +thr b5371180 , status 1 +connecting thr b5371180 , thread 10329 , mypolls 0 +myconn 0 connecting thr b5371180 , thread 10329 , mypolls 0 +thr b5371300 , status 1 +connecting thr b5371300 , thread 10330 , mypolls 0 +myconn 0 connecting thr b5371300 , thread 10330 , mypolls 0 +thr b5371480 , status 1 +connecting thr b5371480 , thread 10331 , mypolls 0 +myconn 0 connecting thr b5371480 , thread 10331 , mypolls 0 +thr b5371600 , status 1 +connecting thr b5371600 , thread 10332 , mypolls 0 +myconn 0 connecting thr b5371600 , thread 10332 , mypolls 0 +thr b5371780 , status 1 +connecting thr b5371780 , thread 10333 , mypolls 0 +myconn 0 connecting thr b5371780 , thread 10333 , mypolls 0 +thr b5371900 , status 1 +connecting thr b5371900 , thread 10334 , mypolls 0 +myconn 0 connecting thr b5371900 , thread 10334 , mypolls 0 +thr b5371a80 , status 1 +connecting thr b5371a80 , thread 10335 , mypolls 0 +myconn 0 connecting thr b5371a80 , thread 10335 , mypolls 0 +thr b5371c00 , status 1 +connecting thr b5371c00 , thread 10336 , mypolls 0 +myconn 0 connecting thr b5371c00 , thread 10336 , mypolls 0 +thr b5371d80 , status 1 +connecting thr b5371d80 , thread 10337 , mypolls 0 +myconn 0 connecting thr b5371d80 , thread 10337 , mypolls 0 +thr b5371f00 , status 1 +connecting thr b5371f00 , thread 10338 , mypolls 0 +myconn 0 connecting thr b5371f00 , thread 10338 , mypolls 0 +thr b5372080 , status 1 +connecting thr b5372080 , thread 10339 , mypolls 0 +myconn 0 connecting thr b5372080 , thread 10339 , mypolls 0 +thr b5372200 , status 1 +connecting thr b5372200 , thread 10340 , mypolls 0 +myconn 0 connecting thr b5372200 , thread 10340 , mypolls 0 +thr b5372380 , status 1 +connecting thr b5372380 , thread 10341 , mypolls 0 +myconn 0 connecting thr b5372380 , thread 10341 , mypolls 0 +thr b5372500 , status 1 +connecting thr b5372500 , thread 10342 , mypolls 0 +myconn 0 connecting thr b5372500 , thread 10342 , mypolls 0 +thr b5372680 , status 1 +connecting thr b5372680 , thread 10343 , mypolls 0 +myconn 0 connecting thr b5372680 , thread 10343 , mypolls 0 +thr b5372800 , status 1 +connecting thr b5372800 , thread 10344 , mypolls 0 +myconn 0 connecting thr b5372800 , thread 10344 , mypolls 0 +thr b5372980 , status 1 +connecting thr b5372980 , thread 10345 , mypolls 0 +myconn 0 connecting thr b5372980 , thread 10345 , mypolls 0 +thr b5372b00 , status 1 +connecting thr b5372b00 , thread 10346 , mypolls 0 +myconn 0 connecting thr b5372b00 , thread 10346 , mypolls 0 +thr b5372c80 , status 1 +connecting thr b5372c80 , thread 10347 , mypolls 0 +myconn 0 connecting thr b5372c80 , thread 10347 , mypolls 0 +thr b5372e00 , status 1 +connecting thr b5372e00 , thread 10348 , mypolls 0 +myconn 0 connecting thr b5372e00 , thread 10348 , mypolls 0 +thr b5372f80 , status 1 +connecting thr b5372f80 , thread 10349 , mypolls 0 +myconn 0 connecting thr b5372f80 , thread 10349 , mypolls 0 +thr b5373100 , status 1 +connecting thr b5373100 , thread 10350 , mypolls 0 +myconn 0 connecting thr b5373100 , thread 10350 , mypolls 0 +thr b5373280 , status 1 +connecting thr b5373280 , thread 10351 , mypolls 0 +myconn 0 connecting thr b5373280 , thread 10351 , mypolls 0 +thr b5373400 , status 1 +connecting thr b5373400 , thread 10352 , mypolls 0 +myconn 0 connecting thr b5373400 , thread 10352 , mypolls 0 +thr b5373580 , status 1 +connecting thr b5373580 , thread 10353 , mypolls 0 +myconn 0 connecting thr b5373580 , thread 10353 , mypolls 0 +thr b5373700 , status 1 +connecting thr b5373700 , thread 10354 , mypolls 0 +myconn 0 connecting thr b5373700 , thread 10354 , mypolls 0 +thr b5373880 , status 1 +connecting thr b5373880 , thread 10355 , mypolls 0 +myconn 0 connecting thr b5373880 , thread 10355 , mypolls 0 +thr b5373a00 , status 1 +connecting thr b5373a00 , thread 10356 , mypolls 0 +myconn 0 connecting thr b5373a00 , thread 10356 , mypolls 0 +thr b5373b80 , status 1 +connecting thr b5373b80 , thread 10357 , mypolls 0 +myconn 0 connecting thr b5373b80 , thread 10357 , mypolls 0 +thr b5373d00 , status 1 +connecting thr b5373d00 , thread 10358 , mypolls 0 +myconn 0 connecting thr b5373d00 , thread 10358 , mypolls 0 +thr b5373e80 , status 1 +connecting thr b5373e80 , thread 10359 , mypolls 0 +myconn 0 connecting thr b5373e80 , thread 10359 , mypolls 0 +thr b51d0000 , status 1 +connecting thr b51d0000 , thread 10360 , mypolls 0 +myconn 0 connecting thr b51d0000 , thread 10360 , mypolls 0 +thr b51d0180 , status 1 +connecting thr b51d0180 , thread 10361 , mypolls 0 +myconn 0 connecting thr b51d0180 , thread 10361 , mypolls 0 +thr b51d0300 , status 1 +connecting thr b51d0300 , thread 10362 , mypolls 0 +myconn 0 connecting thr b51d0300 , thread 10362 , mypolls 0 +thr b51d0480 , status 1 +connecting thr b51d0480 , thread 10363 , mypolls 0 +myconn 0 connecting thr b51d0480 , thread 10363 , mypolls 0 +thr b51d0600 , status 1 +connecting thr b51d0600 , thread 10364 , mypolls 0 +myconn 0 connecting thr b51d0600 , thread 10364 , mypolls 0 +thr b51d0780 , status 1 +connecting thr b51d0780 , thread 10365 , mypolls 0 +myconn 0 connecting thr b51d0780 , thread 10365 , mypolls 0 +thr b51d0900 , status 1 +connecting thr b51d0900 , thread 10366 , mypolls 0 +myconn 0 connecting thr b51d0900 , thread 10366 , mypolls 0 +thr b51d0a80 , status 1 +connecting thr b51d0a80 , thread 10367 , mypolls 0 +myconn 0 connecting thr b51d0a80 , thread 10367 , mypolls 0 +thr b51d0c00 , status 1 +connecting thr b51d0c00 , thread 10368 , mypolls 0 +myconn 0 connecting thr b51d0c00 , thread 10368 , mypolls 0 +thr b51d0d80 , status 1 +connecting thr b51d0d80 , thread 10369 , mypolls 0 +myconn 0 connecting thr b51d0d80 , thread 10369 , mypolls 0 +thr b51d0f00 , status 1 +connecting thr b51d0f00 , thread 10370 , mypolls 0 +myconn 0 connecting thr b51d0f00 , thread 10370 , mypolls 0 +thr b51d1080 , status 1 +connecting thr b51d1080 , thread 10371 , mypolls 0 +myconn 0 connecting thr b51d1080 , thread 10371 , mypolls 0 +thr b51d1200 , status 1 +connecting thr b51d1200 , thread 10372 , mypolls 0 +myconn 0 connecting thr b51d1200 , thread 10372 , mypolls 0 +thr b51d1380 , status 1 +connecting thr b51d1380 , thread 10373 , mypolls 0 +myconn 0 connecting thr b51d1380 , thread 10373 , mypolls 0 +thr b51d1500 , status 1 +connecting thr b51d1500 , thread 10374 , mypolls 0 +myconn 0 connecting thr b51d1500 , thread 10374 , mypolls 0 +thr b51d1680 , status 1 +connecting thr b51d1680 , thread 10375 , mypolls 0 +myconn 0 connecting thr b51d1680 , thread 10375 , mypolls 0 +thr b51d1800 , status 1 +connecting thr b51d1800 , thread 10376 , mypolls 0 +myconn 0 connecting thr b51d1800 , thread 10376 , mypolls 0 +thr b51d1980 , status 1 +connecting thr b51d1980 , thread 10377 , mypolls 0 +myconn 0 connecting thr b51d1980 , thread 10377 , mypolls 0 +thr b51d1b00 , status 1 +connecting thr b51d1b00 , thread 10378 , mypolls 0 +myconn 0 connecting thr b51d1b00 , thread 10378 , mypolls 0 +thr b51d1c80 , status 1 +connecting thr b51d1c80 , thread 10379 , mypolls 0 +myconn 0 connecting thr b51d1c80 , thread 10379 , mypolls 0 +thr b51d1e00 , status 1 +connecting thr b51d1e00 , thread 10380 , mypolls 0 +myconn 0 connecting thr b51d1e00 , thread 10380 , mypolls 0 +thr b51d1f80 , status 1 +connecting thr b51d1f80 , thread 10381 , mypolls 0 +myconn 0 connecting thr b51d1f80 , thread 10381 , mypolls 0 +thr b51d2100 , status 1 +connecting thr b51d2100 , thread 10382 , mypolls 0 +myconn 0 connecting thr b51d2100 , thread 10382 , mypolls 0 +thr b51d2280 , status 1 +connecting thr b51d2280 , thread 10383 , mypolls 0 +myconn 0 connecting thr b51d2280 , thread 10383 , mypolls 0 +thr b51d2400 , status 1 +connecting thr b51d2400 , thread 10384 , mypolls 0 +myconn 0 connecting thr b51d2400 , thread 10384 , mypolls 0 +thr b51d2580 , status 1 +connecting thr b51d2580 , thread 10385 , mypolls 0 +myconn 0 connecting thr b51d2580 , thread 10385 , mypolls 0 +thr b51d2700 , status 1 +connecting thr b51d2700 , thread 10386 , mypolls 0 +myconn 0 connecting thr b51d2700 , thread 10386 , mypolls 0 +thr b51d2880 , status 1 +connecting thr b51d2880 , thread 10387 , mypolls 0 +myconn 0 connecting thr b51d2880 , thread 10387 , mypolls 0 +thr b51d2a00 , status 1 +connecting thr b51d2a00 , thread 10388 , mypolls 0 +myconn 0 connecting thr b51d2a00 , thread 10388 , mypolls 0 +thr b51d2b80 , status 1 +connecting thr b51d2b80 , thread 10389 , mypolls 0 +myconn 0 connecting thr b51d2b80 , thread 10389 , mypolls 0 +thr b51d2d00 , status 1 +connecting thr b51d2d00 , thread 10390 , mypolls 0 +myconn 0 connecting thr b51d2d00 , thread 10390 , mypolls 0 +thr b51d2e80 , status 1 +connecting thr b51d2e80 , thread 10391 , mypolls 0 +myconn 0 connecting thr b51d2e80 , thread 10391 , mypolls 0 +thr b4c43000 , status 1 +connecting thr b4c43000 , thread 10392 , mypolls 0 +myconn 0 connecting thr b4c43000 , thread 10392 , mypolls 0 +thr b4c43180 , status 1 +connecting thr b4c43180 , thread 10393 , mypolls 0 +myconn 0 connecting thr b4c43180 , thread 10393 , mypolls 0 +thr b4c43300 , status 1 +connecting thr b4c43300 , thread 10394 , mypolls 0 +myconn 0 connecting thr b4c43300 , thread 10394 , mypolls 0 +thr b4c43480 , status 1 +connecting thr b4c43480 , thread 10395 , mypolls 0 +myconn 0 connecting thr b4c43480 , thread 10395 , mypolls 0 +thr b4c43600 , status 1 +connecting thr b4c43600 , thread 10396 , mypolls 0 +myconn 0 connecting thr b4c43600 , thread 10396 , mypolls 0 +thr b4c43780 , status 1 +connecting thr b4c43780 , thread 10397 , mypolls 0 +myconn 0 connecting thr b4c43780 , thread 10397 , mypolls 0 +thr b4c43900 , status 1 +connecting thr b4c43900 , thread 10398 , mypolls 0 +myconn 0 connecting thr b4c43900 , thread 10398 , mypolls 0 +thr b4c43a80 , status 1 +connecting thr b4c43a80 , thread 10399 , mypolls 0 +myconn 0 connecting thr b4c43a80 , thread 10399 , mypolls 0 +thr b4c43c00 , status 1 +connecting thr b4c43c00 , thread 10400 , mypolls 0 +myconn 0 connecting thr b4c43c00 , thread 10400 , mypolls 0 +thr b4c43d80 , status 1 +connecting thr b4c43d80 , thread 10401 , mypolls 0 +myconn 0 connecting thr b4c43d80 , thread 10401 , mypolls 0 +thr b4c43f00 , status 1 +connecting thr b4c43f00 , thread 10402 , mypolls 0 +myconn 0 connecting thr b4c43f00 , thread 10402 , mypolls 0 +thr b4c44080 , status 1 +connecting thr b4c44080 , thread 10403 , mypolls 0 +myconn 0 connecting thr b4c44080 , thread 10403 , mypolls 0 +thr b4c44200 , status 1 +connecting thr b4c44200 , thread 10404 , mypolls 0 +myconn 0 connecting thr b4c44200 , thread 10404 , mypolls 0 +thr b4c44380 , status 1 +connecting thr b4c44380 , thread 10405 , mypolls 0 +myconn 0 connecting thr b4c44380 , thread 10405 , mypolls 0 +thr b4c44500 , status 1 +connecting thr b4c44500 , thread 10406 , mypolls 0 +myconn 0 connecting thr b4c44500 , thread 10406 , mypolls 0 +thr b4c44680 , status 1 +connecting thr b4c44680 , thread 10407 , mypolls 0 +myconn 0 connecting thr b4c44680 , thread 10407 , mypolls 0 +thr b4c44800 , status 1 +connecting thr b4c44800 , thread 10408 , mypolls 0 +myconn 0 connecting thr b4c44800 , thread 10408 , mypolls 0 +thr b4c44980 , status 1 +connecting thr b4c44980 , thread 10409 , mypolls 0 +myconn 0 connecting thr b4c44980 , thread 10409 , mypolls 0 +thr b4c44b00 , status 1 +connecting thr b4c44b00 , thread 10410 , mypolls 0 +myconn 0 connecting thr b4c44b00 , thread 10410 , mypolls 0 +thr b4c44c80 , status 1 +connecting thr b4c44c80 , thread 10411 , mypolls 0 +myconn 0 connecting thr b4c44c80 , thread 10411 , mypolls 0 +thr b4c44e00 , status 1 +connecting thr b4c44e00 , thread 10412 , mypolls 0 +myconn 0 connecting thr b4c44e00 , thread 10412 , mypolls 0 +thr b4c44f80 , status 1 +connecting thr b4c44f80 , thread 10413 , mypolls 0 +myconn 0 connecting thr b4c44f80 , thread 10413 , mypolls 0 +thr b4c45100 , status 1 +connecting thr b4c45100 , thread 10414 , mypolls 0 +myconn 0 connecting thr b4c45100 , thread 10414 , mypolls 0 +thr b4c45280 , status 1 +connecting thr b4c45280 , thread 10415 , mypolls 0 +myconn 0 connecting thr b4c45280 , thread 10415 , mypolls 0 +thr b4c45400 , status 1 +connecting thr b4c45400 , thread 10416 , mypolls 0 +myconn 0 connecting thr b4c45400 , thread 10416 , mypolls 0 +thr b4c45580 , status 1 +connecting thr b4c45580 , thread 10417 , mypolls 0 +myconn 0 connecting thr b4c45580 , thread 10417 , mypolls 0 +thr b4c45700 , status 1 +connecting thr b4c45700 , thread 10418 , mypolls 0 +myconn 0 connecting thr b4c45700 , thread 10418 , mypolls 0 +thr b4c45880 , status 1 +connecting thr b4c45880 , thread 10419 , mypolls 0 +myconn 0 connecting thr b4c45880 , thread 10419 , mypolls 0 +thr b4c45a00 , status 1 +connecting thr b4c45a00 , thread 10420 , mypolls 0 +myconn 0 connecting thr b4c45a00 , thread 10420 , mypolls 0 +thr b4c45b80 , status 1 +connecting thr b4c45b80 , thread 10421 , mypolls 0 +myconn 0 connecting thr b4c45b80 , thread 10421 , mypolls 0 +thr b4c45d00 , status 1 +connecting thr b4c45d00 , thread 10422 , mypolls 0 +myconn 0 connecting thr b4c45d00 , thread 10422 , mypolls 0 +thr b4c45e80 , status 1 +connecting thr b4c45e80 , thread 10423 , mypolls 0 +myconn 0 connecting thr b4c45e80 , thread 10423 , mypolls 0 +thr b4dfd000 , status 1 +connecting thr b4dfd000 , thread 10424 , mypolls 0 +myconn 0 connecting thr b4dfd000 , thread 10424 , mypolls 0 +thr b4dfd180 , status 1 +connecting thr b4dfd180 , thread 10425 , mypolls 0 +myconn 0 connecting thr b4dfd180 , thread 10425 , mypolls 0 +thr b4dfd300 , status 1 +connecting thr b4dfd300 , thread 10426 , mypolls 0 +myconn 0 connecting thr b4dfd300 , thread 10426 , mypolls 0 +thr b4dfd480 , status 1 +connecting thr b4dfd480 , thread 10427 , mypolls 0 +myconn 0 connecting thr b4dfd480 , thread 10427 , mypolls 0 +thr b4dfd600 , status 1 +connecting thr b4dfd600 , thread 10428 , mypolls 0 +myconn 0 connecting thr b4dfd600 , thread 10428 , mypolls 0 +thr b4dfd780 , status 1 +connecting thr b4dfd780 , thread 10429 , mypolls 0 +myconn 0 connecting thr b4dfd780 , thread 10429 , mypolls 0 +thr b4dfd900 , status 1 +connecting thr b4dfd900 , thread 10430 , mypolls 0 +myconn 0 connecting thr b4dfd900 , thread 10430 , mypolls 0 +thr b4dfda80 , status 1 +connecting thr b4dfda80 , thread 10431 , mypolls 0 +myconn 0 connecting thr b4dfda80 , thread 10431 , mypolls 0 +thr b4dfdc00 , status 1 +connecting thr b4dfdc00 , thread 10432 , mypolls 0 +myconn 0 connecting thr b4dfdc00 , thread 10432 , mypolls 0 +thr b4dfdd80 , status 1 +connecting thr b4dfdd80 , thread 10433 , mypolls 0 +myconn 0 connecting thr b4dfdd80 , thread 10433 , mypolls 0 +thr b4dfdf00 , status 1 +connecting thr b4dfdf00 , thread 10434 , mypolls 0 +myconn 0 connecting thr b4dfdf00 , thread 10434 , mypolls 0 +thr b4dfe080 , status 1 +connecting thr b4dfe080 , thread 10435 , mypolls 0 +myconn 0 connecting thr b4dfe080 , thread 10435 , mypolls 0 +thr b4dfe200 , status 1 +connecting thr b4dfe200 , thread 10436 , mypolls 0 +myconn 0 connecting thr b4dfe200 , thread 10436 , mypolls 0 +thr b4dfe380 , status 1 +connecting thr b4dfe380 , thread 10437 , mypolls 0 +myconn 0 connecting thr b4dfe380 , thread 10437 , mypolls 0 +thr b4dfe500 , status 1 +connecting thr b4dfe500 , thread 10438 , mypolls 0 +myconn 0 connecting thr b4dfe500 , thread 10438 , mypolls 0 +thr b4dfe680 , status 1 +connecting thr b4dfe680 , thread 10439 , mypolls 0 +myconn 0 connecting thr b4dfe680 , thread 10439 , mypolls 0 +thr b4dfe800 , status 1 +connecting thr b4dfe800 , thread 10440 , mypolls 0 +myconn 0 connecting thr b4dfe800 , thread 10440 , mypolls 0 +thr b4dfe980 , status 1 +connecting thr b4dfe980 , thread 10441 , mypolls 0 +myconn 0 connecting thr b4dfe980 , thread 10441 , mypolls 0 +thr b4dfeb00 , status 1 +connecting thr b4dfeb00 , thread 10442 , mypolls 0 +myconn 0 connecting thr b4dfeb00 , thread 10442 , mypolls 0 +thr b4dfec80 , status 1 +connecting thr b4dfec80 , thread 10443 , mypolls 0 +myconn 0 connecting thr b4dfec80 , thread 10443 , mypolls 0 +thr b4dfee00 , status 1 +connecting thr b4dfee00 , thread 10444 , mypolls 0 +myconn 0 connecting thr b4dfee00 , thread 10444 , mypolls 0 +thr b4dfef80 , status 1 +connecting thr b4dfef80 , thread 10445 , mypolls 0 +myconn 0 connecting thr b4dfef80 , thread 10445 , mypolls 0 +thr b4dff100 , status 1 +connecting thr b4dff100 , thread 10446 , mypolls 0 +myconn 0 connecting thr b4dff100 , thread 10446 , mypolls 0 +thr b4dff280 , status 1 +connecting thr b4dff280 , thread 10447 , mypolls 0 +myconn 0 connecting thr b4dff280 , thread 10447 , mypolls 0 +thr b4dff400 , status 1 +connecting thr b4dff400 , thread 10448 , mypolls 0 +myconn 0 connecting thr b4dff400 , thread 10448 , mypolls 0 +thr b4dff580 , status 1 +connecting thr b4dff580 , thread 10449 , mypolls 0 +myconn 0 connecting thr b4dff580 , thread 10449 , mypolls 0 +thr b4dff700 , status 1 +connecting thr b4dff700 , thread 10450 , mypolls 0 +myconn 0 connecting thr b4dff700 , thread 10450 , mypolls 0 +thr b4dff880 , status 1 +connecting thr b4dff880 , thread 10451 , mypolls 0 +myconn 0 connecting thr b4dff880 , thread 10451 , mypolls 0 +thr b4dffa00 , status 1 +connecting thr b4dffa00 , thread 10452 , mypolls 0 +myconn 0 connecting thr b4dffa00 , thread 10452 , mypolls 0 +thr b4dffb80 , status 1 +connecting thr b4dffb80 , thread 10453 , mypolls 0 +myconn 0 connecting thr b4dffb80 , thread 10453 , mypolls 0 +thr b4dffd00 , status 1 +connecting thr b4dffd00 , thread 10454 , mypolls 0 +myconn 0 connecting thr b4dffd00 , thread 10454 , mypolls 0 +thr b4dffe80 , status 1 +connecting thr b4dffe80 , thread 10455 , mypolls 0 +myconn 0 connecting thr b4dffe80 , thread 10455 , mypolls 0 +thr b4907000 , status 1 +connecting thr b4907000 , thread 10456 , mypolls 0 +myconn 0 connecting thr b4907000 , thread 10456 , mypolls 0 +thr b4907180 , status 1 +connecting thr b4907180 , thread 10457 , mypolls 0 +myconn 0 connecting thr b4907180 , thread 10457 , mypolls 0 +thr b4907300 , status 1 +connecting thr b4907300 , thread 10458 , mypolls 0 +myconn 0 connecting thr b4907300 , thread 10458 , mypolls 0 +thr b4907480 , status 1 +connecting thr b4907480 , thread 10459 , mypolls 0 +myconn 0 connecting thr b4907480 , thread 10459 , mypolls 0 +thr b4907600 , status 1 +connecting thr b4907600 , thread 10460 , mypolls 0 +myconn 0 connecting thr b4907600 , thread 10460 , mypolls 0 +thr b4907780 , status 1 +connecting thr b4907780 , thread 10461 , mypolls 0 +myconn 0 connecting thr b4907780 , thread 10461 , mypolls 0 +thr b4907900 , status 1 +connecting thr b4907900 , thread 10462 , mypolls 0 +myconn 0 connecting thr b4907900 , thread 10462 , mypolls 0 +thr b4907a80 , status 1 +connecting thr b4907a80 , thread 10463 , mypolls 0 +myconn 0 connecting thr b4907a80 , thread 10463 , mypolls 0 +thr b4907c00 , status 1 +connecting thr b4907c00 , thread 10464 , mypolls 0 +myconn 0 connecting thr b4907c00 , thread 10464 , mypolls 0 +thr b4907d80 , status 1 +connecting thr b4907d80 , thread 10465 , mypolls 0 +myconn 0 connecting thr b4907d80 , thread 10465 , mypolls 0 +thr b4907f00 , status 1 +connecting thr b4907f00 , thread 10466 , mypolls 0 +myconn 0 connecting thr b4907f00 , thread 10466 , mypolls 0 +thr b4908080 , status 1 +connecting thr b4908080 , thread 10467 , mypolls 0 +myconn 0 connecting thr b4908080 , thread 10467 , mypolls 0 +thr b4908200 , status 1 +connecting thr b4908200 , thread 10468 , mypolls 0 +myconn 0 connecting thr b4908200 , thread 10468 , mypolls 0 +thr b4908380 , status 1 +connecting thr b4908380 , thread 10469 , mypolls 0 +myconn 0 connecting thr b4908380 , thread 10469 , mypolls 0 +thr b4908500 , status 1 +connecting thr b4908500 , thread 10470 , mypolls 0 +myconn 0 connecting thr b4908500 , thread 10470 , mypolls 0 +thr b4908680 , status 1 +connecting thr b4908680 , thread 10471 , mypolls 0 +myconn 0 connecting thr b4908680 , thread 10471 , mypolls 0 +thr b4908800 , status 1 +connecting thr b4908800 , thread 10472 , mypolls 0 +myconn 0 connecting thr b4908800 , thread 10472 , mypolls 0 +thr b4908980 , status 1 +connecting thr b4908980 , thread 10473 , mypolls 0 +myconn 0 connecting thr b4908980 , thread 10473 , mypolls 0 +thr b4908b00 , status 1 +connecting thr b4908b00 , thread 10474 , mypolls 0 +myconn 0 connecting thr b4908b00 , thread 10474 , mypolls 0 +thr b4908c80 , status 1 +connecting thr b4908c80 , thread 10475 , mypolls 0 +myconn 0 connecting thr b4908c80 , thread 10475 , mypolls 0 +thr b4908e00 , status 1 +connecting thr b4908e00 , thread 10476 , mypolls 0 +myconn 0 connecting thr b4908e00 , thread 10476 , mypolls 0 +thr b4908f80 , status 1 +connecting thr b4908f80 , thread 10477 , mypolls 0 +myconn 0 connecting thr b4908f80 , thread 10477 , mypolls 0 +thr b4909100 , status 1 +connecting thr b4909100 , thread 10478 , mypolls 0 +myconn 0 connecting thr b4909100 , thread 10478 , mypolls 0 +thr b4909280 , status 1 +connecting thr b4909280 , thread 10479 , mypolls 0 +myconn 0 connecting thr b4909280 , thread 10479 , mypolls 0 +thr b4909400 , status 1 +connecting thr b4909400 , thread 10480 , mypolls 0 +myconn 0 connecting thr b4909400 , thread 10480 , mypolls 0 +thr b4909580 , status 1 +connecting thr b4909580 , thread 10481 , mypolls 0 +myconn 0 connecting thr b4909580 , thread 10481 , mypolls 0 +thr b4909700 , status 1 +connecting thr b4909700 , thread 10482 , mypolls 0 +myconn 0 connecting thr b4909700 , thread 10482 , mypolls 0 +thr b4909880 , status 1 +connecting thr b4909880 , thread 10483 , mypolls 0 +myconn 0 connecting thr b4909880 , thread 10483 , mypolls 0 +thr b4909a00 , status 1 +connecting thr b4909a00 , thread 10484 , mypolls 0 +myconn 0 connecting thr b4909a00 , thread 10484 , mypolls 0 +thr b4909b80 , status 1 +connecting thr b4909b80 , thread 10485 , mypolls 0 +myconn 0 connecting thr b4909b80 , thread 10485 , mypolls 0 +thr b4909d00 , status 1 +connecting thr b4909d00 , thread 10486 , mypolls 0 +myconn 0 connecting thr b4909d00 , thread 10486 , mypolls 0 +thr b4909e80 , status 1 +connecting thr b4909e80 , thread 10487 , mypolls 0 +myconn 0 connecting thr b4909e80 , thread 10487 , mypolls 0 +thr b476e000 , status 1 +connecting thr b476e000 , thread 10488 , mypolls 0 +myconn 0 connecting thr b476e000 , thread 10488 , mypolls 0 +thr b476e180 , status 1 +connecting thr b476e180 , thread 10489 , mypolls 0 +myconn 0 connecting thr b476e180 , thread 10489 , mypolls 0 +thr b476e300 , status 1 +connecting thr b476e300 , thread 10490 , mypolls 0 +myconn 0 connecting thr b476e300 , thread 10490 , mypolls 0 +thr b476e480 , status 1 +connecting thr b476e480 , thread 10491 , mypolls 0 +myconn 0 connecting thr b476e480 , thread 10491 , mypolls 0 +thr b476e600 , status 1 +connecting thr b476e600 , thread 10492 , mypolls 0 +myconn 0 connecting thr b476e600 , thread 10492 , mypolls 0 +thr b476e780 , status 1 +connecting thr b476e780 , thread 10493 , mypolls 0 +myconn 0 connecting thr b476e780 , thread 10493 , mypolls 0 +thr b476e900 , status 1 +connecting thr b476e900 , thread 10494 , mypolls 0 +myconn 0 connecting thr b476e900 , thread 10494 , mypolls 0 +thr b476ea80 , status 1 +connecting thr b476ea80 , thread 10495 , mypolls 0 +myconn 0 connecting thr b476ea80 , thread 10495 , mypolls 0 +thr b476ec00 , status 1 +connecting thr b476ec00 , thread 10496 , mypolls 0 +myconn 0 connecting thr b476ec00 , thread 10496 , mypolls 0 +thr b476ed80 , status 1 +connecting thr b476ed80 , thread 10497 , mypolls 0 +myconn 0 connecting thr b476ed80 , thread 10497 , mypolls 0 +thr b476ef00 , status 1 +connecting thr b476ef00 , thread 10498 , mypolls 0 +myconn 0 connecting thr b476ef00 , thread 10498 , mypolls 0 +thr b476f080 , status 1 +connecting thr b476f080 , thread 10499 , mypolls 0 +myconn 0 connecting thr b476f080 , thread 10499 , mypolls 0 +thr b476f200 , status 1 +connecting thr b476f200 , thread 10500 , mypolls 0 +myconn 0 connecting thr b476f200 , thread 10500 , mypolls 0 +thr b476f380 , status 1 +connecting thr b476f380 , thread 10501 , mypolls 0 +myconn 0 connecting thr b476f380 , thread 10501 , mypolls 0 +thr b476f500 , status 1 +connecting thr b476f500 , thread 10502 , mypolls 0 +myconn 0 connecting thr b476f500 , thread 10502 , mypolls 0 +thr b476f680 , status 1 +connecting thr b476f680 , thread 10503 , mypolls 0 +myconn 0 connecting thr b476f680 , thread 10503 , mypolls 0 +thr b476f800 , status 1 +connecting thr b476f800 , thread 10504 , mypolls 0 +myconn 0 connecting thr b476f800 , thread 10504 , mypolls 0 +thr b476f980 , status 1 +connecting thr b476f980 , thread 10505 , mypolls 0 +myconn 0 connecting thr b476f980 , thread 10505 , mypolls 0 +thr b476fb00 , status 1 +connecting thr b476fb00 , thread 10506 , mypolls 0 +myconn 0 connecting thr b476fb00 , thread 10506 , mypolls 0 +thr b476fc80 , status 1 +connecting thr b476fc80 , thread 10507 , mypolls 0 +myconn 0 connecting thr b476fc80 , thread 10507 , mypolls 0 +thr b476fe00 , status 1 +connecting thr b476fe00 , thread 10508 , mypolls 0 +myconn 0 connecting thr b476fe00 , thread 10508 , mypolls 0 +thr b476ff80 , status 1 +connecting thr b476ff80 , thread 10509 , mypolls 0 +myconn 0 connecting thr b476ff80 , thread 10509 , mypolls 0 +thr b4770100 , status 1 +connecting thr b4770100 , thread 10510 , mypolls 0 +myconn 0 connecting thr b4770100 , thread 10510 , mypolls 0 +thr b4770280 , status 1 +connecting thr b4770280 , thread 10511 , mypolls 0 +myconn 0 connecting thr b4770280 , thread 10511 , mypolls 0 +thr b4770400 , status 1 +connecting thr b4770400 , thread 10512 , mypolls 0 +myconn 0 connecting thr b4770400 , thread 10512 , mypolls 0 +thr b4770580 , status 1 +connecting thr b4770580 , thread 10513 , mypolls 0 +myconn 0 connecting thr b4770580 , thread 10513 , mypolls 0 +thr b4770700 , status 1 +connecting thr b4770700 , thread 10514 , mypolls 0 +myconn 0 connecting thr b4770700 , thread 10514 , mypolls 0 +thr b4770880 , status 1 +connecting thr b4770880 , thread 10515 , mypolls 0 +myconn 0 connecting thr b4770880 , thread 10515 , mypolls 0 +thr b4770a00 , status 1 +connecting thr b4770a00 , thread 10516 , mypolls 0 +myconn 0 connecting thr b4770a00 , thread 10516 , mypolls 0 +thr b4770b80 , status 1 +connecting thr b4770b80 , thread 10517 , mypolls 0 +myconn 0 connecting thr b4770b80 , thread 10517 , mypolls 0 +thr b4770d00 , status 1 +connecting thr b4770d00 , thread 10518 , mypolls 0 +myconn 0 connecting thr b4770d00 , thread 10518 , mypolls 0 +thr b4770e80 , status 1 +connecting thr b4770e80 , thread 10519 , mypolls 0 +myconn 0 connecting thr b4770e80 , thread 10519 , mypolls 0 +thr b45cd000 , status 1 +connecting thr b45cd000 , thread 10520 , mypolls 0 +myconn 0 connecting thr b45cd000 , thread 10520 , mypolls 0 +thr b45cd180 , status 1 +connecting thr b45cd180 , thread 10521 , mypolls 0 +myconn 0 connecting thr b45cd180 , thread 10521 , mypolls 0 +thr b45cd300 , status 1 +connecting thr b45cd300 , thread 10522 , mypolls 0 +myconn 0 connecting thr b45cd300 , thread 10522 , mypolls 0 +thr b45cd480 , status 1 +connecting thr b45cd480 , thread 10523 , mypolls 0 +myconn 0 connecting thr b45cd480 , thread 10523 , mypolls 0 +thr b45cd600 , status 1 +connecting thr b45cd600 , thread 10524 , mypolls 0 +myconn 0 connecting thr b45cd600 , thread 10524 , mypolls 0 +thr b45cd780 , status 1 +connecting thr b45cd780 , thread 10525 , mypolls 0 +myconn 0 connecting thr b45cd780 , thread 10525 , mypolls 0 +thr b45cd900 , status 1 +connecting thr b45cd900 , thread 10526 , mypolls 0 +myconn 0 connecting thr b45cd900 , thread 10526 , mypolls 0 +thr b45cda80 , status 1 +connecting thr b45cda80 , thread 10527 , mypolls 0 +myconn 0 connecting thr b45cda80 , thread 10527 , mypolls 0 +thr b45cdc00 , status 1 +connecting thr b45cdc00 , thread 10528 , mypolls 0 +myconn 0 connecting thr b45cdc00 , thread 10528 , mypolls 0 +thr b45cdd80 , status 1 +connecting thr b45cdd80 , thread 10529 , mypolls 0 +myconn 0 connecting thr b45cdd80 , thread 10529 , mypolls 0 +thr b45cdf00 , status 1 +connecting thr b45cdf00 , thread 10530 , mypolls 0 +myconn 0 connecting thr b45cdf00 , thread 10530 , mypolls 0 +thr b45ce080 , status 1 +connecting thr b45ce080 , thread 10531 , mypolls 0 +myconn 0 connecting thr b45ce080 , thread 10531 , mypolls 0 +thr b45ce200 , status 1 +connecting thr b45ce200 , thread 10532 , mypolls 0 +myconn 0 connecting thr b45ce200 , thread 10532 , mypolls 0 +thr b45ce380 , status 1 +connecting thr b45ce380 , thread 10533 , mypolls 0 +myconn 0 connecting thr b45ce380 , thread 10533 , mypolls 0 +thr b45ce500 , status 1 +connecting thr b45ce500 , thread 10534 , mypolls 0 +myconn 0 connecting thr b45ce500 , thread 10534 , mypolls 0 +thr b45ce680 , status 1 +connecting thr b45ce680 , thread 10535 , mypolls 0 +myconn 0 connecting thr b45ce680 , thread 10535 , mypolls 0 +thr b45ce800 , status 1 +connecting thr b45ce800 , thread 10536 , mypolls 0 +myconn 0 connecting thr b45ce800 , thread 10536 , mypolls 0 +thr b45ce980 , status 1 +connecting thr b45ce980 , thread 10537 , mypolls 0 +myconn 0 connecting thr b45ce980 , thread 10537 , mypolls 0 +thr b45ceb00 , status 1 +connecting thr b45ceb00 , thread 10538 , mypolls 0 +myconn 0 connecting thr b45ceb00 , thread 10538 , mypolls 0 +thr b45cec80 , status 1 +connecting thr b45cec80 , thread 10539 , mypolls 0 +myconn 0 connecting thr b45cec80 , thread 10539 , mypolls 0 +thr b45cee00 , status 1 +connecting thr b45cee00 , thread 10540 , mypolls 0 +myconn 0 connecting thr b45cee00 , thread 10540 , mypolls 0 +thr b45cef80 , status 1 +connecting thr b45cef80 , thread 10541 , mypolls 0 +myconn 0 connecting thr b45cef80 , thread 10541 , mypolls 0 +thr b45cf100 , status 1 +connecting thr b45cf100 , thread 10542 , mypolls 0 +myconn 0 connecting thr b45cf100 , thread 10542 , mypolls 0 +thr b45cf280 , status 1 +connecting thr b45cf280 , thread 10543 , mypolls 0 +myconn 0 connecting thr b45cf280 , thread 10543 , mypolls 0 +thr b45cf400 , status 1 +connecting thr b45cf400 , thread 10544 , mypolls 0 +myconn 0 connecting thr b45cf400 , thread 10544 , mypolls 0 +thr b45cf580 , status 1 +connecting thr b45cf580 , thread 10545 , mypolls 0 +myconn 0 connecting thr b45cf580 , thread 10545 , mypolls 0 +thr b45cf700 , status 1 +connecting thr b45cf700 , thread 10546 , mypolls 0 +myconn 0 connecting thr b45cf700 , thread 10546 , mypolls 0 +thr b45cf880 , status 1 +connecting thr b45cf880 , thread 10547 , mypolls 0 +myconn 0 connecting thr b45cf880 , thread 10547 , mypolls 0 +thr b45cfa00 , status 1 +connecting thr b45cfa00 , thread 10548 , mypolls 0 +myconn 0 connecting thr b45cfa00 , thread 10548 , mypolls 0 +thr b45cfb80 , status 1 +connecting thr b45cfb80 , thread 10549 , mypolls 0 +myconn 0 connecting thr b45cfb80 , thread 10549 , mypolls 0 +thr b45cfd00 , status 1 +connecting thr b45cfd00 , thread 10550 , mypolls 0 +myconn 0 connecting thr b45cfd00 , thread 10550 , mypolls 0 +thr b45cfe80 , status 1 +connecting thr b45cfe80 , thread 10551 , mypolls 0 +myconn 0 connecting thr b45cfe80 , thread 10551 , mypolls 0 +thr b43fc000 , status 1 +connecting thr b43fc000 , thread 10552 , mypolls 0 +myconn 0 connecting thr b43fc000 , thread 10552 , mypolls 0 +thr b43fc180 , status 1 +connecting thr b43fc180 , thread 10553 , mypolls 0 +myconn 0 connecting thr b43fc180 , thread 10553 , mypolls 0 +thr b43fc300 , status 1 +connecting thr b43fc300 , thread 10554 , mypolls 0 +myconn 0 connecting thr b43fc300 , thread 10554 , mypolls 0 +thr b43fc480 , status 1 +connecting thr b43fc480 , thread 10555 , mypolls 0 +myconn 0 connecting thr b43fc480 , thread 10555 , mypolls 0 +thr b43fc600 , status 1 +connecting thr b43fc600 , thread 10556 , mypolls 0 +myconn 0 connecting thr b43fc600 , thread 10556 , mypolls 0 +thr b43fc780 , status 1 +connecting thr b43fc780 , thread 10557 , mypolls 0 +myconn 0 connecting thr b43fc780 , thread 10557 , mypolls 0 +thr b43fc900 , status 1 +connecting thr b43fc900 , thread 10558 , mypolls 0 +myconn 0 connecting thr b43fc900 , thread 10558 , mypolls 0 +thr b43fca80 , status 1 +connecting thr b43fca80 , thread 10559 , mypolls 0 +myconn 0 connecting thr b43fca80 , thread 10559 , mypolls 0 +thr b43fcc00 , status 1 +connecting thr b43fcc00 , thread 10560 , mypolls 0 +myconn 0 connecting thr b43fcc00 , thread 10560 , mypolls 0 +thr b43fcd80 , status 1 +connecting thr b43fcd80 , thread 10561 , mypolls 0 +myconn 0 connecting thr b43fcd80 , thread 10561 , mypolls 0 +thr b43fcf00 , status 1 +connecting thr b43fcf00 , thread 10562 , mypolls 0 +myconn 0 connecting thr b43fcf00 , thread 10562 , mypolls 0 +thr b43fd080 , status 1 +connecting thr b43fd080 , thread 10563 , mypolls 0 +myconn 0 connecting thr b43fd080 , thread 10563 , mypolls 0 +thr b43fd200 , status 1 +connecting thr b43fd200 , thread 10564 , mypolls 0 +myconn 0 connecting thr b43fd200 , thread 10564 , mypolls 0 +thr b43fd380 , status 1 +connecting thr b43fd380 , thread 10565 , mypolls 0 +myconn 0 connecting thr b43fd380 , thread 10565 , mypolls 0 +thr b43fd500 , status 1 +connecting thr b43fd500 , thread 10566 , mypolls 0 +myconn 0 connecting thr b43fd500 , thread 10566 , mypolls 0 +thr b43fd680 , status 1 +connecting thr b43fd680 , thread 10567 , mypolls 0 +myconn 0 connecting thr b43fd680 , thread 10567 , mypolls 0 +thr b43fd800 , status 1 +connecting thr b43fd800 , thread 10568 , mypolls 0 +myconn 0 connecting thr b43fd800 , thread 10568 , mypolls 0 +thr b43fd980 , status 1 +connecting thr b43fd980 , thread 10569 , mypolls 0 +myconn 0 connecting thr b43fd980 , thread 10569 , mypolls 0 +thr b43fdb00 , status 1 +connecting thr b43fdb00 , thread 10570 , mypolls 0 +myconn 0 connecting thr b43fdb00 , thread 10570 , mypolls 0 +thr b43fdc80 , status 1 +connecting thr b43fdc80 , thread 10571 , mypolls 0 +myconn 0 connecting thr b43fdc80 , thread 10571 , mypolls 0 +thr b43fde00 , status 1 +connecting thr b43fde00 , thread 10572 , mypolls 0 +myconn 0 connecting thr b43fde00 , thread 10572 , mypolls 0 +thr b43fdf80 , status 1 +connecting thr b43fdf80 , thread 10573 , mypolls 0 +myconn 0 connecting thr b43fdf80 , thread 10573 , mypolls 0 +thr b43fe100 , status 1 +connecting thr b43fe100 , thread 10574 , mypolls 0 +myconn 0 connecting thr b43fe100 , thread 10574 , mypolls 0 +thr b43fe280 , status 1 +connecting thr b43fe280 , thread 10575 , mypolls 0 +myconn 0 connecting thr b43fe280 , thread 10575 , mypolls 0 +thr b43fe400 , status 1 +connecting thr b43fe400 , thread 10576 , mypolls 0 +myconn 0 connecting thr b43fe400 , thread 10576 , mypolls 0 +thr b43fe580 , status 1 +connecting thr b43fe580 , thread 10577 , mypolls 0 +myconn 0 connecting thr b43fe580 , thread 10577 , mypolls 0 +thr b43fe700 , status 1 +connecting thr b43fe700 , thread 10578 , mypolls 0 +myconn 0 connecting thr b43fe700 , thread 10578 , mypolls 0 +thr b43fe880 , status 1 +connecting thr b43fe880 , thread 10579 , mypolls 0 +myconn 0 connecting thr b43fe880 , thread 10579 , mypolls 0 +thr b43fea00 , status 1 +connecting thr b43fea00 , thread 10580 , mypolls 0 +myconn 0 connecting thr b43fea00 , thread 10580 , mypolls 0 +thr b43feb80 , status 1 +connecting thr b43feb80 , thread 10581 , mypolls 0 +myconn 0 connecting thr b43feb80 , thread 10581 , mypolls 0 +thr b43fed00 , status 1 +connecting thr b43fed00 , thread 10582 , mypolls 0 +myconn 0 connecting thr b43fed00 , thread 10582 , mypolls 0 +thr b43fee80 , status 1 +connecting thr b43fee80 , thread 10583 , mypolls 0 +myconn 0 connecting thr b43fee80 , thread 10583 , mypolls 0 +thr b3ea0000 , status 1 +connecting thr b3ea0000 , thread 10584 , mypolls 0 +myconn 0 connecting thr b3ea0000 , thread 10584 , mypolls 0 +thr b3ea0180 , status 1 +connecting thr b3ea0180 , thread 10585 , mypolls 0 +myconn 0 connecting thr b3ea0180 , thread 10585 , mypolls 0 +thr b3ea0300 , status 1 +connecting thr b3ea0300 , thread 10586 , mypolls 0 +myconn 0 connecting thr b3ea0300 , thread 10586 , mypolls 0 +thr b3ea0480 , status 1 +connecting thr b3ea0480 , thread 10587 , mypolls 0 +myconn 0 connecting thr b3ea0480 , thread 10587 , mypolls 0 +thr b3ea0600 , status 1 +connecting thr b3ea0600 , thread 10588 , mypolls 0 +myconn 0 connecting thr b3ea0600 , thread 10588 , mypolls 0 +thr b3ea0780 , status 1 +connecting thr b3ea0780 , thread 10589 , mypolls 0 +myconn 0 connecting thr b3ea0780 , thread 10589 , mypolls 0 +thr b3ea0900 , status 1 +connecting thr b3ea0900 , thread 10590 , mypolls 0 +myconn 0 connecting thr b3ea0900 , thread 10590 , mypolls 0 +thr b3ea0a80 , status 1 +connecting thr b3ea0a80 , thread 10591 , mypolls 0 +myconn 0 connecting thr b3ea0a80 , thread 10591 , mypolls 0 +thr b3ea0c00 , status 1 +connecting thr b3ea0c00 , thread 10592 , mypolls 0 +myconn 0 connecting thr b3ea0c00 , thread 10592 , mypolls 0 +thr b3ea0d80 , status 1 +connecting thr b3ea0d80 , thread 10593 , mypolls 0 +myconn 0 connecting thr b3ea0d80 , thread 10593 , mypolls 0 +thr b3ea0f00 , status 1 +connecting thr b3ea0f00 , thread 10594 , mypolls 0 +myconn 0 connecting thr b3ea0f00 , thread 10594 , mypolls 0 +thr b3ea1080 , status 1 +connecting thr b3ea1080 , thread 10595 , mypolls 0 +myconn 0 connecting thr b3ea1080 , thread 10595 , mypolls 0 +thr b3ea1200 , status 1 +connecting thr b3ea1200 , thread 10596 , mypolls 0 +myconn 0 connecting thr b3ea1200 , thread 10596 , mypolls 0 +thr b3ea1380 , status 1 +connecting thr b3ea1380 , thread 10597 , mypolls 0 +myconn 0 connecting thr b3ea1380 , thread 10597 , mypolls 0 +thr b3ea1500 , status 1 +connecting thr b3ea1500 , thread 10598 , mypolls 0 +myconn 0 connecting thr b3ea1500 , thread 10598 , mypolls 0 +thr b3ea1680 , status 1 +connecting thr b3ea1680 , thread 10599 , mypolls 0 +myconn 0 connecting thr b3ea1680 , thread 10599 , mypolls 0 +thr b3ea1800 , status 1 +connecting thr b3ea1800 , thread 10600 , mypolls 0 +myconn 0 connecting thr b3ea1800 , thread 10600 , mypolls 0 +thr b3ea1980 , status 1 +connecting thr b3ea1980 , thread 10601 , mypolls 0 +myconn 0 connecting thr b3ea1980 , thread 10601 , mypolls 0 +thr b3ea1b00 , status 1 +connecting thr b3ea1b00 , thread 10602 , mypolls 0 +myconn 0 connecting thr b3ea1b00 , thread 10602 , mypolls 0 +thr b3ea1c80 , status 1 +connecting thr b3ea1c80 , thread 10603 , mypolls 0 +myconn 0 connecting thr b3ea1c80 , thread 10603 , mypolls 0 +thr b3ea1e00 , status 1 +connecting thr b3ea1e00 , thread 10604 , mypolls 0 +myconn 0 connecting thr b3ea1e00 , thread 10604 , mypolls 0 +thr b3ea1f80 , status 1 +connecting thr b3ea1f80 , thread 10605 , mypolls 0 +myconn 0 connecting thr b3ea1f80 , thread 10605 , mypolls 0 +thr b3ea2100 , status 1 +connecting thr b3ea2100 , thread 10606 , mypolls 0 +myconn 0 connecting thr b3ea2100 , thread 10606 , mypolls 0 +thr b3ea2280 , status 1 +connecting thr b3ea2280 , thread 10607 , mypolls 0 +myconn 0 connecting thr b3ea2280 , thread 10607 , mypolls 0 +thr b3ea2400 , status 1 +connecting thr b3ea2400 , thread 10608 , mypolls 0 +myconn 0 connecting thr b3ea2400 , thread 10608 , mypolls 0 +thr b3ea2580 , status 1 +connecting thr b3ea2580 , thread 10609 , mypolls 0 +myconn 0 connecting thr b3ea2580 , thread 10609 , mypolls 0 +thr b3ea2700 , status 1 +connecting thr b3ea2700 , thread 10610 , mypolls 0 +myconn 0 connecting thr b3ea2700 , thread 10610 , mypolls 0 +thr b3ea2880 , status 1 +connecting thr b3ea2880 , thread 10611 , mypolls 0 +myconn 0 connecting thr b3ea2880 , thread 10611 , mypolls 0 +thr b3ea2a00 , status 1 +connecting thr b3ea2a00 , thread 10612 , mypolls 0 +myconn 0 connecting thr b3ea2a00 , thread 10612 , mypolls 0 +thr b3ea2b80 , status 1 +connecting thr b3ea2b80 , thread 10613 , mypolls 0 +myconn 0 connecting thr b3ea2b80 , thread 10613 , mypolls 0 +thr b3ea2d00 , status 1 +connecting thr b3ea2d00 , thread 10614 , mypolls 0 +myconn 0 connecting thr b3ea2d00 , thread 10614 , mypolls 0 +thr b3ea2e80 , status 1 +connecting thr b3ea2e80 , thread 10615 , mypolls 0 +myconn 0 connecting thr b3ea2e80 , thread 10615 , mypolls 0 +thr b3d01000 , status 1 +connecting thr b3d01000 , thread 10616 , mypolls 0 +myconn 0 connecting thr b3d01000 , thread 10616 , mypolls 0 +thr b3d01180 , status 1 +connecting thr b3d01180 , thread 10617 , mypolls 0 +myconn 0 connecting thr b3d01180 , thread 10617 , mypolls 0 +thr b3d01300 , status 1 +connecting thr b3d01300 , thread 10618 , mypolls 0 +myconn 0 connecting thr b3d01300 , thread 10618 , mypolls 0 +thr b3d01480 , status 1 +connecting thr b3d01480 , thread 10619 , mypolls 0 +myconn 0 connecting thr b3d01480 , thread 10619 , mypolls 0 +thr b3d01600 , status 1 +connecting thr b3d01600 , thread 10620 , mypolls 0 +myconn 0 connecting thr b3d01600 , thread 10620 , mypolls 0 +thr b3d01780 , status 1 +connecting thr b3d01780 , thread 10621 , mypolls 0 +myconn 0 connecting thr b3d01780 , thread 10621 , mypolls 0 +thr b3d01900 , status 1 +connecting thr b3d01900 , thread 10622 , mypolls 0 +myconn 0 connecting thr b3d01900 , thread 10622 , mypolls 0 +thr b3d01a80 , status 1 +connecting thr b3d01a80 , thread 10623 , mypolls 0 +myconn 0 connecting thr b3d01a80 , thread 10623 , mypolls 0 +thr b3d01c00 , status 1 +connecting thr b3d01c00 , thread 10624 , mypolls 0 +myconn 0 connecting thr b3d01c00 , thread 10624 , mypolls 0 +thr b3d01d80 , status 1 +connecting thr b3d01d80 , thread 10625 , mypolls 0 +myconn 0 connecting thr b3d01d80 , thread 10625 , mypolls 0 +thr b3d01f00 , status 1 +connecting thr b3d01f00 , thread 10626 , mypolls 0 +myconn 0 connecting thr b3d01f00 , thread 10626 , mypolls 0 +thr b3d02080 , status 1 +connecting thr b3d02080 , thread 10627 , mypolls 0 +myconn 0 connecting thr b3d02080 , thread 10627 , mypolls 0 +thr b3d02200 , status 1 +connecting thr b3d02200 , thread 10628 , mypolls 0 +myconn 0 connecting thr b3d02200 , thread 10628 , mypolls 0 +thr b3d02380 , status 1 +connecting thr b3d02380 , thread 10629 , mypolls 0 +myconn 0 connecting thr b3d02380 , thread 10629 , mypolls 0 +thr b3d02500 , status 1 +connecting thr b3d02500 , thread 10630 , mypolls 0 +myconn 0 connecting thr b3d02500 , thread 10630 , mypolls 0 +thr b3d02680 , status 1 +connecting thr b3d02680 , thread 10631 , mypolls 0 +myconn 0 connecting thr b3d02680 , thread 10631 , mypolls 0 +thr b3d02800 , status 1 +connecting thr b3d02800 , thread 10632 , mypolls 0 +myconn 0 connecting thr b3d02800 , thread 10632 , mypolls 0 +thr b3d02980 , status 1 +connecting thr b3d02980 , thread 10633 , mypolls 0 +myconn 0 connecting thr b3d02980 , thread 10633 , mypolls 0 +thr b3d02b00 , status 1 +connecting thr b3d02b00 , thread 10634 , mypolls 0 +myconn 0 connecting thr b3d02b00 , thread 10634 , mypolls 0 +thr b3d02c80 , status 1 +connecting thr b3d02c80 , thread 10635 , mypolls 0 +myconn 0 connecting thr b3d02c80 , thread 10635 , mypolls 0 +thr b3d02e00 , status 1 +connecting thr b3d02e00 , thread 10636 , mypolls 0 +myconn 0 connecting thr b3d02e00 , thread 10636 , mypolls 0 +thr b3d02f80 , status 1 +connecting thr b3d02f80 , thread 10637 , mypolls 0 +myconn 0 connecting thr b3d02f80 , thread 10637 , mypolls 0 +thr b3d03100 , status 1 +connecting thr b3d03100 , thread 10638 , mypolls 0 +myconn 0 connecting thr b3d03100 , thread 10638 , mypolls 0 +thr b3d03280 , status 1 +connecting thr b3d03280 , thread 10639 , mypolls 0 +myconn 0 connecting thr b3d03280 , thread 10639 , mypolls 0 +thr b3d03400 , status 1 +connecting thr b3d03400 , thread 10640 , mypolls 0 +myconn 0 connecting thr b3d03400 , thread 10640 , mypolls 0 +thr b3d03580 , status 1 +connecting thr b3d03580 , thread 10641 , mypolls 0 +myconn 0 connecting thr b3d03580 , thread 10641 , mypolls 0 +thr b3d03700 , status 1 +connecting thr b3d03700 , thread 10642 , mypolls 0 +myconn 0 connecting thr b3d03700 , thread 10642 , mypolls 0 +thr b3d03880 , status 1 +connecting thr b3d03880 , thread 10643 , mypolls 0 +myconn 0 connecting thr b3d03880 , thread 10643 , mypolls 0 +thr b3d03a00 , status 1 +connecting thr b3d03a00 , thread 10644 , mypolls 0 +myconn 0 connecting thr b3d03a00 , thread 10644 , mypolls 0 +thr b3d03b80 , status 1 +connecting thr b3d03b80 , thread 10645 , mypolls 0 +myconn 0 connecting thr b3d03b80 , thread 10645 , mypolls 0 +thr b3d03d00 , status 1 +connecting thr b3d03d00 , thread 10646 , mypolls 0 +myconn 0 connecting thr b3d03d00 , thread 10646 , mypolls 0 +thr b3d03e80 , status 1 +connecting thr b3d03e80 , thread 10647 , mypolls 0 +myconn 0 connecting thr b3d03e80 , thread 10647 , mypolls 0 +thr b3b60000 , status 1 +connecting thr b3b60000 , thread 10648 , mypolls 0 +myconn 0 connecting thr b3b60000 , thread 10648 , mypolls 0 +thr b3b60180 , status 1 +connecting thr b3b60180 , thread 10649 , mypolls 0 +myconn 0 connecting thr b3b60180 , thread 10649 , mypolls 0 +thr b3b60300 , status 1 +connecting thr b3b60300 , thread 10650 , mypolls 0 +myconn 0 connecting thr b3b60300 , thread 10650 , mypolls 0 +thr b3b60480 , status 1 +connecting thr b3b60480 , thread 10651 , mypolls 0 +myconn 0 connecting thr b3b60480 , thread 10651 , mypolls 0 +thr b3b60600 , status 1 +connecting thr b3b60600 , thread 10652 , mypolls 0 +myconn 0 connecting thr b3b60600 , thread 10652 , mypolls 0 +thr b3b60780 , status 1 +connecting thr b3b60780 , thread 10653 , mypolls 0 +myconn 0 connecting thr b3b60780 , thread 10653 , mypolls 0 +thr b3b60900 , status 1 +connecting thr b3b60900 , thread 10654 , mypolls 0 +myconn 0 connecting thr b3b60900 , thread 10654 , mypolls 0 +thr b3b60a80 , status 1 +connecting thr b3b60a80 , thread 10655 , mypolls 0 +myconn 0 connecting thr b3b60a80 , thread 10655 , mypolls 0 +thr b3b60c00 , status 1 +connecting thr b3b60c00 , thread 10656 , mypolls 0 +myconn 0 connecting thr b3b60c00 , thread 10656 , mypolls 0 +thr b3b60d80 , status 1 +connecting thr b3b60d80 , thread 10657 , mypolls 0 +myconn 0 connecting thr b3b60d80 , thread 10657 , mypolls 0 +thr b3b60f00 , status 1 +connecting thr b3b60f00 , thread 10658 , mypolls 0 +myconn 0 connecting thr b3b60f00 , thread 10658 , mypolls 0 +thr b3b61080 , status 1 +connecting thr b3b61080 , thread 10659 , mypolls 0 +myconn 0 connecting thr b3b61080 , thread 10659 , mypolls 0 +thr b3b61200 , status 1 +connecting thr b3b61200 , thread 10660 , mypolls 0 +myconn 0 connecting thr b3b61200 , thread 10660 , mypolls 0 +thr b3b61380 , status 1 +connecting thr b3b61380 , thread 10661 , mypolls 0 +myconn 0 connecting thr b3b61380 , thread 10661 , mypolls 0 +thr b3b61500 , status 1 +connecting thr b3b61500 , thread 10662 , mypolls 0 +myconn 0 connecting thr b3b61500 , thread 10662 , mypolls 0 +thr b3b61680 , status 1 +connecting thr b3b61680 , thread 10663 , mypolls 0 +myconn 0 connecting thr b3b61680 , thread 10663 , mypolls 0 +thr b3b61800 , status 1 +connecting thr b3b61800 , thread 10664 , mypolls 0 +myconn 0 connecting thr b3b61800 , thread 10664 , mypolls 0 +thr b3b61980 , status 1 +connecting thr b3b61980 , thread 10665 , mypolls 0 +myconn 0 connecting thr b3b61980 , thread 10665 , mypolls 0 +thr b3b61b00 , status 1 +connecting thr b3b61b00 , thread 10666 , mypolls 0 +myconn 0 connecting thr b3b61b00 , thread 10666 , mypolls 0 +thr b3b61c80 , status 1 +connecting thr b3b61c80 , thread 10667 , mypolls 0 +myconn 0 connecting thr b3b61c80 , thread 10667 , mypolls 0 +thr b3b61e00 , status 1 +connecting thr b3b61e00 , thread 10668 , mypolls 0 +myconn 0 connecting thr b3b61e00 , thread 10668 , mypolls 0 +thr b3b61f80 , status 1 +connecting thr b3b61f80 , thread 10669 , mypolls 0 +myconn 0 connecting thr b3b61f80 , thread 10669 , mypolls 0 +thr b3b62100 , status 1 +connecting thr b3b62100 , thread 10670 , mypolls 0 +myconn 0 connecting thr b3b62100 , thread 10670 , mypolls 0 +thr b3b62280 , status 1 +connecting thr b3b62280 , thread 10671 , mypolls 0 +myconn 0 connecting thr b3b62280 , thread 10671 , mypolls 0 +thr b3b62400 , status 1 +connecting thr b3b62400 , thread 10672 , mypolls 0 +myconn 0 connecting thr b3b62400 , thread 10672 , mypolls 0 +thr b3b62580 , status 1 +connecting thr b3b62580 , thread 10673 , mypolls 0 +myconn 0 connecting thr b3b62580 , thread 10673 , mypolls 0 +thr b3b62700 , status 1 +connecting thr b3b62700 , thread 10674 , mypolls 0 +myconn 0 connecting thr b3b62700 , thread 10674 , mypolls 0 +thr b3b62880 , status 1 +connecting thr b3b62880 , thread 10675 , mypolls 0 +myconn 0 connecting thr b3b62880 , thread 10675 , mypolls 0 +thr b3b62a00 , status 1 +connecting thr b3b62a00 , thread 10676 , mypolls 0 +myconn 0 connecting thr b3b62a00 , thread 10676 , mypolls 0 +thr b3b62b80 , status 1 +connecting thr b3b62b80 , thread 10677 , mypolls 0 +myconn 0 connecting thr b3b62b80 , thread 10677 , mypolls 0 +thr b3b62d00 , status 1 +connecting thr b3b62d00 , thread 10678 , mypolls 0 +myconn 0 connecting thr b3b62d00 , thread 10678 , mypolls 0 +thr b3b62e80 , status 1 +connecting thr b3b62e80 , thread 10679 , mypolls 0 +myconn 0 connecting thr b3b62e80 , thread 10679 , mypolls 0 +thr b39c4000 , status 1 +connecting thr b39c4000 , thread 10680 , mypolls 0 +myconn 0 connecting thr b39c4000 , thread 10680 , mypolls 0 +thr b39c4180 , status 1 +connecting thr b39c4180 , thread 10681 , mypolls 0 +myconn 0 connecting thr b39c4180 , thread 10681 , mypolls 0 +thr b39c4300 , status 1 +connecting thr b39c4300 , thread 10682 , mypolls 0 +myconn 0 connecting thr b39c4300 , thread 10682 , mypolls 0 +thr b39c4480 , status 1 +connecting thr b39c4480 , thread 10683 , mypolls 0 +myconn 0 connecting thr b39c4480 , thread 10683 , mypolls 0 +thr b39c4600 , status 1 +connecting thr b39c4600 , thread 10684 , mypolls 0 +myconn 0 connecting thr b39c4600 , thread 10684 , mypolls 0 +thr b39c4780 , status 1 +connecting thr b39c4780 , thread 10685 , mypolls 0 +myconn 0 connecting thr b39c4780 , thread 10685 , mypolls 0 +thr b39c4900 , status 1 +connecting thr b39c4900 , thread 10686 , mypolls 0 +myconn 0 connecting thr b39c4900 , thread 10686 , mypolls 0 +thr b39c4a80 , status 1 +connecting thr b39c4a80 , thread 10687 , mypolls 0 +myconn 0 connecting thr b39c4a80 , thread 10687 , mypolls 0 +thr b39c4c00 , status 1 +connecting thr b39c4c00 , thread 10688 , mypolls 0 +myconn 0 connecting thr b39c4c00 , thread 10688 , mypolls 0 +thr b39c4d80 , status 1 +connecting thr b39c4d80 , thread 10689 , mypolls 0 +myconn 0 connecting thr b39c4d80 , thread 10689 , mypolls 0 +thr b39c4f00 , status 1 +connecting thr b39c4f00 , thread 10690 , mypolls 0 +myconn 0 connecting thr b39c4f00 , thread 10690 , mypolls 0 +thr b39c5080 , status 1 +connecting thr b39c5080 , thread 10691 , mypolls 0 +myconn 0 connecting thr b39c5080 , thread 10691 , mypolls 0 +thr b39c5200 , status 1 +connecting thr b39c5200 , thread 10692 , mypolls 0 +myconn 0 connecting thr b39c5200 , thread 10692 , mypolls 0 +thr b39c5380 , status 1 +connecting thr b39c5380 , thread 10693 , mypolls 0 +myconn 0 connecting thr b39c5380 , thread 10693 , mypolls 0 +thr b39c5500 , status 1 +connecting thr b39c5500 , thread 10694 , mypolls 0 +myconn 0 connecting thr b39c5500 , thread 10694 , mypolls 0 +thr b39c5680 , status 1 +connecting thr b39c5680 , thread 10695 , mypolls 0 +myconn 0 connecting thr b39c5680 , thread 10695 , mypolls 0 +thr b39c5800 , status 1 +connecting thr b39c5800 , thread 10696 , mypolls 0 +myconn 0 connecting thr b39c5800 , thread 10696 , mypolls 0 +thr b39c5980 , status 1 +connecting thr b39c5980 , thread 10697 , mypolls 0 +myconn 0 connecting thr b39c5980 , thread 10697 , mypolls 0 +thr b39c5b00 , status 1 +connecting thr b39c5b00 , thread 10698 , mypolls 0 +myconn 0 connecting thr b39c5b00 , thread 10698 , mypolls 0 +thr b39c5c80 , status 1 +connecting thr b39c5c80 , thread 10699 , mypolls 0 +myconn 0 connecting thr b39c5c80 , thread 10699 , mypolls 0 +thr b39c5e00 , status 1 +connecting thr b39c5e00 , thread 10700 , mypolls 0 +myconn 0 connecting thr b39c5e00 , thread 10700 , mypolls 0 +thr b39c5f80 , status 1 +connecting thr b39c5f80 , thread 10701 , mypolls 0 +myconn 0 connecting thr b39c5f80 , thread 10701 , mypolls 0 +thr b39c6100 , status 1 +connecting thr b39c6100 , thread 10702 , mypolls 0 +myconn 0 connecting thr b39c6100 , thread 10702 , mypolls 0 +thr b39c6280 , status 1 +connecting thr b39c6280 , thread 10703 , mypolls 0 +myconn 0 connecting thr b39c6280 , thread 10703 , mypolls 0 +thr b39c6400 , status 1 +connecting thr b39c6400 , thread 10704 , mypolls 0 +myconn 0 connecting thr b39c6400 , thread 10704 , mypolls 0 +thr b39c6580 , status 1 +connecting thr b39c6580 , thread 10705 , mypolls 0 +myconn 0 connecting thr b39c6580 , thread 10705 , mypolls 0 +thr b39c6700 , status 1 +connecting thr b39c6700 , thread 10706 , mypolls 0 +myconn 0 connecting thr b39c6700 , thread 10706 , mypolls 0 +thr b39c6880 , status 1 +connecting thr b39c6880 , thread 10707 , mypolls 0 +myconn 0 connecting thr b39c6880 , thread 10707 , mypolls 0 +thr b39c6a00 , status 1 +connecting thr b39c6a00 , thread 10708 , mypolls 0 +myconn 0 connecting thr b39c6a00 , thread 10708 , mypolls 0 +thr b39c6b80 , status 1 +connecting thr b39c6b80 , thread 10709 , mypolls 0 +myconn 0 connecting thr b39c6b80 , thread 10709 , mypolls 0 +thr b39c6d00 , status 1 +connecting thr b39c6d00 , thread 10710 , mypolls 0 +myconn 0 connecting thr b39c6d00 , thread 10710 , mypolls 0 +thr b39c6e80 , status 1 +connecting thr b39c6e80 , thread 10711 , mypolls 0 +myconn 0 connecting thr b39c6e80 , thread 10711 , mypolls 0 +thr b37f8000 , status 1 +connecting thr b37f8000 , thread 10712 , mypolls 0 +myconn 0 connecting thr b37f8000 , thread 10712 , mypolls 0 +thr b37f8180 , status 1 +connecting thr b37f8180 , thread 10713 , mypolls 0 +myconn 0 connecting thr b37f8180 , thread 10713 , mypolls 0 +thr b37f8300 , status 1 +connecting thr b37f8300 , thread 10714 , mypolls 0 +myconn 0 connecting thr b37f8300 , thread 10714 , mypolls 0 +thr b37f8480 , status 1 +connecting thr b37f8480 , thread 10715 , mypolls 0 +myconn 0 connecting thr b37f8480 , thread 10715 , mypolls 0 +thr b37f8600 , status 1 +connecting thr b37f8600 , thread 10716 , mypolls 0 +myconn 0 connecting thr b37f8600 , thread 10716 , mypolls 0 +thr b37f8780 , status 1 +connecting thr b37f8780 , thread 10717 , mypolls 0 +myconn 0 connecting thr b37f8780 , thread 10717 , mypolls 0 +thr b37f8900 , status 1 +connecting thr b37f8900 , thread 10718 , mypolls 0 +myconn 0 connecting thr b37f8900 , thread 10718 , mypolls 0 +thr b37f8a80 , status 1 +connecting thr b37f8a80 , thread 10719 , mypolls 0 +myconn 0 connecting thr b37f8a80 , thread 10719 , mypolls 0 +thr b37f8c00 , status 1 +connecting thr b37f8c00 , thread 10720 , mypolls 0 +myconn 0 connecting thr b37f8c00 , thread 10720 , mypolls 0 +thr b37f8d80 , status 1 +connecting thr b37f8d80 , thread 10721 , mypolls 0 +myconn 0 connecting thr b37f8d80 , thread 10721 , mypolls 0 +thr b37f8f00 , status 1 +connecting thr b37f8f00 , thread 10722 , mypolls 0 +myconn 0 connecting thr b37f8f00 , thread 10722 , mypolls 0 +thr b37f9080 , status 1 +connecting thr b37f9080 , thread 10723 , mypolls 0 +myconn 0 connecting thr b37f9080 , thread 10723 , mypolls 0 +thr b37f9200 , status 1 +connecting thr b37f9200 , thread 10724 , mypolls 0 +myconn 0 connecting thr b37f9200 , thread 10724 , mypolls 0 +thr b37f9380 , status 1 +connecting thr b37f9380 , thread 10725 , mypolls 0 +myconn 0 connecting thr b37f9380 , thread 10725 , mypolls 0 +thr b37f9500 , status 1 +connecting thr b37f9500 , thread 10726 , mypolls 0 +myconn 0 connecting thr b37f9500 , thread 10726 , mypolls 0 +thr b37f9680 , status 1 +connecting thr b37f9680 , thread 10727 , mypolls 0 +myconn 0 connecting thr b37f9680 , thread 10727 , mypolls 0 +thr b37f9800 , status 1 +connecting thr b37f9800 , thread 10728 , mypolls 0 +myconn 0 connecting thr b37f9800 , thread 10728 , mypolls 0 +thr b37f9980 , status 1 +connecting thr b37f9980 , thread 10729 , mypolls 0 +myconn 0 connecting thr b37f9980 , thread 10729 , mypolls 0 +thr b37f9b00 , status 1 +connecting thr b37f9b00 , thread 10730 , mypolls 0 +myconn 0 connecting thr b37f9b00 , thread 10730 , mypolls 0 +thr b37f9c80 , status 1 +connecting thr b37f9c80 , thread 10731 , mypolls 0 +myconn 0 connecting thr b37f9c80 , thread 10731 , mypolls 0 +thr b37f9e00 , status 1 +connecting thr b37f9e00 , thread 10732 , mypolls 0 +myconn 0 connecting thr b37f9e00 , thread 10732 , mypolls 0 +thr b37f9f80 , status 1 +connecting thr b37f9f80 , thread 10733 , mypolls 0 +myconn 0 connecting thr b37f9f80 , thread 10733 , mypolls 0 +thr b37fa100 , status 1 +connecting thr b37fa100 , thread 10734 , mypolls 0 +myconn 0 connecting thr b37fa100 , thread 10734 , mypolls 0 +thr b37fa280 , status 1 +connecting thr b37fa280 , thread 10735 , mypolls 0 +myconn 0 connecting thr b37fa280 , thread 10735 , mypolls 0 +thr b37fa400 , status 1 +connecting thr b37fa400 , thread 10736 , mypolls 0 +myconn 0 connecting thr b37fa400 , thread 10736 , mypolls 0 +thr b37fa580 , status 1 +connecting thr b37fa580 , thread 10737 , mypolls 0 +myconn 0 connecting thr b37fa580 , thread 10737 , mypolls 0 +thr b37fa700 , status 1 +connecting thr b37fa700 , thread 10738 , mypolls 0 +myconn 0 connecting thr b37fa700 , thread 10738 , mypolls 0 +thr b37fa880 , status 1 +connecting thr b37fa880 , thread 10739 , mypolls 0 +myconn 0 connecting thr b37fa880 , thread 10739 , mypolls 0 +thr b37faa00 , status 1 +connecting thr b37faa00 , thread 10740 , mypolls 0 +myconn 0 connecting thr b37faa00 , thread 10740 , mypolls 0 +thr b37fab80 , status 1 +connecting thr b37fab80 , thread 10741 , mypolls 0 +myconn 0 connecting thr b37fab80 , thread 10741 , mypolls 0 +thr b37fad00 , status 1 +connecting thr b37fad00 , thread 10742 , mypolls 0 +myconn 0 connecting thr b37fad00 , thread 10742 , mypolls 0 +thr b37fae80 , status 1 +connecting thr b37fae80 , thread 10743 , mypolls 0 +myconn 0 connecting thr b37fae80 , thread 10743 , mypolls 0 +thr b35fb000 , status 1 +connecting thr b35fb000 , thread 10744 , mypolls 0 +myconn 0 connecting thr b35fb000 , thread 10744 , mypolls 0 +thr b35fb180 , status 1 +connecting thr b35fb180 , thread 10745 , mypolls 0 +myconn 0 connecting thr b35fb180 , thread 10745 , mypolls 0 +thr b35fb300 , status 1 +connecting thr b35fb300 , thread 10746 , mypolls 0 +myconn 0 connecting thr b35fb300 , thread 10746 , mypolls 0 +thr b35fb480 , status 1 +connecting thr b35fb480 , thread 10747 , mypolls 0 +myconn 0 connecting thr b35fb480 , thread 10747 , mypolls 0 +thr b35fb600 , status 1 +connecting thr b35fb600 , thread 10748 , mypolls 0 +myconn 0 connecting thr b35fb600 , thread 10748 , mypolls 0 +thr b35fb780 , status 1 +connecting thr b35fb780 , thread 10749 , mypolls 0 +myconn 0 connecting thr b35fb780 , thread 10749 , mypolls 0 +thr b35fb900 , status 1 +connecting thr b35fb900 , thread 10750 , mypolls 0 +myconn 0 connecting thr b35fb900 , thread 10750 , mypolls 0 +thr b35fba80 , status 1 +connecting thr b35fba80 , thread 10751 , mypolls 0 +myconn 0 connecting thr b35fba80 , thread 10751 , mypolls 0 +thr b35fbc00 , status 1 +connecting thr b35fbc00 , thread 10752 , mypolls 0 +myconn 0 connecting thr b35fbc00 , thread 10752 , mypolls 0 +thr b35fbd80 , status 1 +connecting thr b35fbd80 , thread 10753 , mypolls 0 +myconn 0 connecting thr b35fbd80 , thread 10753 , mypolls 0 +thr b35fbf00 , status 1 +connecting thr b35fbf00 , thread 10754 , mypolls 0 +myconn 0 connecting thr b35fbf00 , thread 10754 , mypolls 0 +thr b35fc080 , status 1 +connecting thr b35fc080 , thread 10755 , mypolls 0 +myconn 0 connecting thr b35fc080 , thread 10755 , mypolls 0 +thr b35fc200 , status 1 +connecting thr b35fc200 , thread 10756 , mypolls 0 +myconn 0 connecting thr b35fc200 , thread 10756 , mypolls 0 +thr b35fc380 , status 1 +connecting thr b35fc380 , thread 10757 , mypolls 0 +myconn 0 connecting thr b35fc380 , thread 10757 , mypolls 0 +thr b35fc500 , status 1 +connecting thr b35fc500 , thread 10758 , mypolls 0 +myconn 0 connecting thr b35fc500 , thread 10758 , mypolls 0 +thr b35fc680 , status 1 +connecting thr b35fc680 , thread 10759 , mypolls 0 +myconn 0 connecting thr b35fc680 , thread 10759 , mypolls 0 +thr b35fc800 , status 1 +connecting thr b35fc800 , thread 10760 , mypolls 0 +myconn 0 connecting thr b35fc800 , thread 10760 , mypolls 0 +thr b35fc980 , status 1 +connecting thr b35fc980 , thread 10761 , mypolls 0 +myconn 0 connecting thr b35fc980 , thread 10761 , mypolls 0 +thr b35fcb00 , status 1 +connecting thr b35fcb00 , thread 10762 , mypolls 0 +myconn 0 connecting thr b35fcb00 , thread 10762 , mypolls 0 +thr b35fcc80 , status 1 +connecting thr b35fcc80 , thread 10763 , mypolls 0 +myconn 0 connecting thr b35fcc80 , thread 10763 , mypolls 0 +thr b35fce00 , status 1 +connecting thr b35fce00 , thread 10764 , mypolls 0 +myconn 0 connecting thr b35fce00 , thread 10764 , mypolls 0 +thr b35fcf80 , status 1 +connecting thr b35fcf80 , thread 10765 , mypolls 0 +myconn 0 connecting thr b35fcf80 , thread 10765 , mypolls 0 +thr b35fd100 , status 1 +connecting thr b35fd100 , thread 10766 , mypolls 0 +myconn 0 connecting thr b35fd100 , thread 10766 , mypolls 0 +thr b35fd280 , status 1 +connecting thr b35fd280 , thread 10767 , mypolls 0 +myconn 0 connecting thr b35fd280 , thread 10767 , mypolls 0 +thr b35fd400 , status 1 +connecting thr b35fd400 , thread 10768 , mypolls 0 +myconn 0 connecting thr b35fd400 , thread 10768 , mypolls 0 +thr b35fd580 , status 1 +connecting thr b35fd580 , thread 10769 , mypolls 0 +myconn 0 connecting thr b35fd580 , thread 10769 , mypolls 0 +thr b35fd700 , status 1 +connecting thr b35fd700 , thread 10770 , mypolls 0 +myconn 0 connecting thr b35fd700 , thread 10770 , mypolls 0 +thr b35fd880 , status 1 +connecting thr b35fd880 , thread 10771 , mypolls 0 +myconn 0 connecting thr b35fd880 , thread 10771 , mypolls 0 +thr b35fda00 , status 1 +connecting thr b35fda00 , thread 10772 , mypolls 0 +myconn 0 connecting thr b35fda00 , thread 10772 , mypolls 0 +thr b35fdb80 , status 1 +connecting thr b35fdb80 , thread 10773 , mypolls 0 +myconn 0 connecting thr b35fdb80 , thread 10773 , mypolls 0 +thr b35fdd00 , status 1 +connecting thr b35fdd00 , thread 10774 , mypolls 0 +myconn 0 connecting thr b35fdd00 , thread 10774 , mypolls 0 +thr b35fde80 , status 1 +connecting thr b35fde80 , thread 10775 , mypolls 0 +myconn 0 connecting thr b35fde80 , thread 10775 , mypolls 0 +thr b30f9000 , status 1 +connecting thr b30f9000 , thread 10776 , mypolls 0 +myconn 0 connecting thr b30f9000 , thread 10776 , mypolls 0 +thr b30f9180 , status 1 +connecting thr b30f9180 , thread 10777 , mypolls 0 +myconn 0 connecting thr b30f9180 , thread 10777 , mypolls 0 +thr b30f9300 , status 1 +connecting thr b30f9300 , thread 10778 , mypolls 0 +myconn 0 connecting thr b30f9300 , thread 10778 , mypolls 0 +thr b30f9480 , status 1 +connecting thr b30f9480 , thread 10779 , mypolls 0 +myconn 0 connecting thr b30f9480 , thread 10779 , mypolls 0 +thr b30f9600 , status 1 +connecting thr b30f9600 , thread 10780 , mypolls 0 +myconn 0 connecting thr b30f9600 , thread 10780 , mypolls 0 +thr b30f9780 , status 1 +connecting thr b30f9780 , thread 10781 , mypolls 0 +myconn 0 connecting thr b30f9780 , thread 10781 , mypolls 0 +thr b30f9900 , status 1 +connecting thr b30f9900 , thread 10782 , mypolls 0 +myconn 0 connecting thr b30f9900 , thread 10782 , mypolls 0 +thr b30f9a80 , status 1 +connecting thr b30f9a80 , thread 10783 , mypolls 0 +myconn 0 connecting thr b30f9a80 , thread 10783 , mypolls 0 +thr b30f9c00 , status 1 +connecting thr b30f9c00 , thread 10784 , mypolls 0 +myconn 0 connecting thr b30f9c00 , thread 10784 , mypolls 0 +thr b30f9d80 , status 1 +connecting thr b30f9d80 , thread 10785 , mypolls 0 +myconn 0 connecting thr b30f9d80 , thread 10785 , mypolls 0 +thr b30f9f00 , status 1 +connecting thr b30f9f00 , thread 10786 , mypolls 0 +myconn 0 connecting thr b30f9f00 , thread 10786 , mypolls 0 +thr b30fa080 , status 1 +connecting thr b30fa080 , thread 10787 , mypolls 0 +myconn 0 connecting thr b30fa080 , thread 10787 , mypolls 0 +thr b30fa200 , status 1 +connecting thr b30fa200 , thread 10788 , mypolls 0 +myconn 0 connecting thr b30fa200 , thread 10788 , mypolls 0 +thr b30fa380 , status 1 +connecting thr b30fa380 , thread 10789 , mypolls 0 +myconn 0 connecting thr b30fa380 , thread 10789 , mypolls 0 +thr b30fa500 , status 1 +connecting thr b30fa500 , thread 10790 , mypolls 0 +myconn 0 connecting thr b30fa500 , thread 10790 , mypolls 0 +thr b30fa680 , status 1 +connecting thr b30fa680 , thread 10791 , mypolls 0 +myconn 0 connecting thr b30fa680 , thread 10791 , mypolls 0 +thr b30fa800 , status 1 +connecting thr b30fa800 , thread 10792 , mypolls 0 +myconn 0 connecting thr b30fa800 , thread 10792 , mypolls 0 +thr b30fa980 , status 1 +connecting thr b30fa980 , thread 10793 , mypolls 0 +myconn 0 connecting thr b30fa980 , thread 10793 , mypolls 0 +thr b30fab00 , status 1 +connecting thr b30fab00 , thread 10794 , mypolls 0 +myconn 0 connecting thr b30fab00 , thread 10794 , mypolls 0 +thr b30fac80 , status 1 +connecting thr b30fac80 , thread 10795 , mypolls 0 +myconn 0 connecting thr b30fac80 , thread 10795 , mypolls 0 +thr b30fae00 , status 1 +connecting thr b30fae00 , thread 10796 , mypolls 0 +myconn 0 connecting thr b30fae00 , thread 10796 , mypolls 0 +thr b30faf80 , status 1 +connecting thr b30faf80 , thread 10797 , mypolls 0 +myconn 0 connecting thr b30faf80 , thread 10797 , mypolls 0 +thr b30fb100 , status 1 +connecting thr b30fb100 , thread 10798 , mypolls 0 +myconn 0 connecting thr b30fb100 , thread 10798 , mypolls 0 +thr b30fb280 , status 1 +connecting thr b30fb280 , thread 10799 , mypolls 0 +myconn 0 connecting thr b30fb280 , thread 10799 , mypolls 0 +thr b30fb400 , status 1 +connecting thr b30fb400 , thread 10800 , mypolls 0 +myconn 0 connecting thr b30fb400 , thread 10800 , mypolls 0 +thr b30fb580 , status 1 +connecting thr b30fb580 , thread 10801 , mypolls 0 +myconn 0 connecting thr b30fb580 , thread 10801 , mypolls 0 +thr b30fb700 , status 1 +connecting thr b30fb700 , thread 10802 , mypolls 0 +myconn 0 connecting thr b30fb700 , thread 10802 , mypolls 0 +thr b30fb880 , status 1 +connecting thr b30fb880 , thread 10803 , mypolls 0 +myconn 0 connecting thr b30fb880 , thread 10803 , mypolls 0 +thr b30fba00 , status 1 +connecting thr b30fba00 , thread 10804 , mypolls 0 +myconn 0 connecting thr b30fba00 , thread 10804 , mypolls 0 +thr b30fbb80 , status 1 +connecting thr b30fbb80 , thread 10805 , mypolls 0 +myconn 0 connecting thr b30fbb80 , thread 10805 , mypolls 0 +thr b30fbd00 , status 1 +connecting thr b30fbd00 , thread 10806 , mypolls 0 +myconn 0 connecting thr b30fbd00 , thread 10806 , mypolls 0 +thr b30fbe80 , status 1 +connecting thr b30fbe80 , thread 10807 , mypolls 0 +myconn 0 connecting thr b30fbe80 , thread 10807 , mypolls 0 +thr b2f5d000 , status 1 +connecting thr b2f5d000 , thread 10808 , mypolls 0 +myconn 0 connecting thr b2f5d000 , thread 10808 , mypolls 0 +thr b2f5d180 , status 1 +connecting thr b2f5d180 , thread 10809 , mypolls 0 +myconn 0 connecting thr b2f5d180 , thread 10809 , mypolls 0 +thr b2f5d300 , status 1 +connecting thr b2f5d300 , thread 10810 , mypolls 0 +myconn 0 connecting thr b2f5d300 , thread 10810 , mypolls 0 +thr b2f5d480 , status 1 +connecting thr b2f5d480 , thread 10811 , mypolls 0 +myconn 0 connecting thr b2f5d480 , thread 10811 , mypolls 0 +thr b2f5d600 , status 1 +connecting thr b2f5d600 , thread 10812 , mypolls 0 +myconn 0 connecting thr b2f5d600 , thread 10812 , mypolls 0 +thr b2f5d780 , status 1 +connecting thr b2f5d780 , thread 10813 , mypolls 0 +myconn 0 connecting thr b2f5d780 , thread 10813 , mypolls 0 +thr b2f5d900 , status 1 +connecting thr b2f5d900 , thread 10814 , mypolls 0 +myconn 0 connecting thr b2f5d900 , thread 10814 , mypolls 0 +thr b2f5da80 , status 1 +connecting thr b2f5da80 , thread 10815 , mypolls 0 +myconn 0 connecting thr b2f5da80 , thread 10815 , mypolls 0 +thr b2f5dc00 , status 1 +connecting thr b2f5dc00 , thread 10816 , mypolls 0 +myconn 0 connecting thr b2f5dc00 , thread 10816 , mypolls 0 +thr b2f5dd80 , status 1 +connecting thr b2f5dd80 , thread 10817 , mypolls 0 +myconn 0 connecting thr b2f5dd80 , thread 10817 , mypolls 0 +thr b2f5df00 , status 1 +connecting thr b2f5df00 , thread 10818 , mypolls 0 +myconn 0 connecting thr b2f5df00 , thread 10818 , mypolls 0 +thr b2f5e080 , status 1 +connecting thr b2f5e080 , thread 10819 , mypolls 0 +myconn 0 connecting thr b2f5e080 , thread 10819 , mypolls 0 +thr b2f5e200 , status 1 +connecting thr b2f5e200 , thread 10820 , mypolls 0 +myconn 0 connecting thr b2f5e200 , thread 10820 , mypolls 0 +thr b2f5e380 , status 1 +connecting thr b2f5e380 , thread 10821 , mypolls 0 +myconn 0 connecting thr b2f5e380 , thread 10821 , mypolls 0 +thr b2f5e500 , status 1 +connecting thr b2f5e500 , thread 10822 , mypolls 0 +myconn 0 connecting thr b2f5e500 , thread 10822 , mypolls 0 +thr b2f5e680 , status 1 +connecting thr b2f5e680 , thread 10823 , mypolls 0 +myconn 0 connecting thr b2f5e680 , thread 10823 , mypolls 0 +thr b2f5e800 , status 1 +connecting thr b2f5e800 , thread 10824 , mypolls 0 +myconn 0 connecting thr b2f5e800 , thread 10824 , mypolls 0 +thr b2f5e980 , status 1 +connecting thr b2f5e980 , thread 10825 , mypolls 0 +myconn 0 connecting thr b2f5e980 , thread 10825 , mypolls 0 +thr b2f5eb00 , status 1 +connecting thr b2f5eb00 , thread 10826 , mypolls 0 +myconn 0 connecting thr b2f5eb00 , thread 10826 , mypolls 0 +thr b2f5ec80 , status 1 +connecting thr b2f5ec80 , thread 10827 , mypolls 0 +myconn 0 connecting thr b2f5ec80 , thread 10827 , mypolls 0 +thr b2f5ee00 , status 1 +connecting thr b2f5ee00 , thread 10828 , mypolls 0 +myconn 0 connecting thr b2f5ee00 , thread 10828 , mypolls 0 +thr b2f5ef80 , status 1 +connecting thr b2f5ef80 , thread 10829 , mypolls 0 +myconn 0 connecting thr b2f5ef80 , thread 10829 , mypolls 0 +thr b2f5f100 , status 1 +connecting thr b2f5f100 , thread 10830 , mypolls 0 +myconn 0 connecting thr b2f5f100 , thread 10830 , mypolls 0 +thr b2f5f280 , status 1 +connecting thr b2f5f280 , thread 10831 , mypolls 0 +myconn 0 connecting thr b2f5f280 , thread 10831 , mypolls 0 +thr b2f5f400 , status 1 +connecting thr b2f5f400 , thread 10832 , mypolls 0 +myconn 0 connecting thr b2f5f400 , thread 10832 , mypolls 0 +thr b2f5f580 , status 1 +connecting thr b2f5f580 , thread 10833 , mypolls 0 +myconn 0 connecting thr b2f5f580 , thread 10833 , mypolls 0 +thr b2f5f700 , status 1 +connecting thr b2f5f700 , thread 10834 , mypolls 0 +myconn 0 connecting thr b2f5f700 , thread 10834 , mypolls 0 +thr b2f5f880 , status 1 +connecting thr b2f5f880 , thread 10835 , mypolls 0 +myconn 0 connecting thr b2f5f880 , thread 10835 , mypolls 0 +thr b2f5fa00 , status 1 +connecting thr b2f5fa00 , thread 10836 , mypolls 0 +myconn 0 connecting thr b2f5fa00 , thread 10836 , mypolls 0 +thr b2f5fb80 , status 1 +connecting thr b2f5fb80 , thread 10837 , mypolls 0 +myconn 0 connecting thr b2f5fb80 , thread 10837 , mypolls 0 +thr b2f5fd00 , status 1 +connecting thr b2f5fd00 , thread 10838 , mypolls 0 +myconn 0 connecting thr b2f5fd00 , thread 10838 , mypolls 0 +thr b2f5fe80 , status 1 +connecting thr b2f5fe80 , thread 10839 , mypolls 0 +myconn 0 connecting thr b2f5fe80 , thread 10839 , mypolls 0 +thr b2dc2000 , status 1 +connecting thr b2dc2000 , thread 10840 , mypolls 0 +myconn 0 connecting thr b2dc2000 , thread 10840 , mypolls 0 +thr b2dc2180 , status 1 +connecting thr b2dc2180 , thread 10841 , mypolls 0 +myconn 0 connecting thr b2dc2180 , thread 10841 , mypolls 0 +thr b2dc2300 , status 1 +connecting thr b2dc2300 , thread 10842 , mypolls 0 +myconn 0 connecting thr b2dc2300 , thread 10842 , mypolls 0 +thr b2dc2480 , status 1 +connecting thr b2dc2480 , thread 10843 , mypolls 0 +myconn 0 connecting thr b2dc2480 , thread 10843 , mypolls 0 +thr b2dc2600 , status 1 +connecting thr b2dc2600 , thread 10844 , mypolls 0 +myconn 0 connecting thr b2dc2600 , thread 10844 , mypolls 0 +thr b2dc2780 , status 1 +connecting thr b2dc2780 , thread 10845 , mypolls 0 +myconn 0 connecting thr b2dc2780 , thread 10845 , mypolls 0 +thr b2dc2900 , status 1 +connecting thr b2dc2900 , thread 10846 , mypolls 0 +myconn 0 connecting thr b2dc2900 , thread 10846 , mypolls 0 +thr b2dc2a80 , status 1 +connecting thr b2dc2a80 , thread 10847 , mypolls 0 +myconn 0 connecting thr b2dc2a80 , thread 10847 , mypolls 0 +thr b2dc2c00 , status 1 +connecting thr b2dc2c00 , thread 10848 , mypolls 0 +myconn 0 connecting thr b2dc2c00 , thread 10848 , mypolls 0 +thr b2dc2d80 , status 1 +connecting thr b2dc2d80 , thread 10849 , mypolls 0 +myconn 0 connecting thr b2dc2d80 , thread 10849 , mypolls 0 +thr b2dc2f00 , status 1 +connecting thr b2dc2f00 , thread 10850 , mypolls 0 +myconn 0 connecting thr b2dc2f00 , thread 10850 , mypolls 0 +thr b2dc3080 , status 1 +connecting thr b2dc3080 , thread 10851 , mypolls 0 +myconn 0 connecting thr b2dc3080 , thread 10851 , mypolls 0 +thr b2dc3200 , status 1 +connecting thr b2dc3200 , thread 10852 , mypolls 0 +myconn 0 connecting thr b2dc3200 , thread 10852 , mypolls 0 +thr b2dc3380 , status 1 +connecting thr b2dc3380 , thread 10853 , mypolls 0 +myconn 0 connecting thr b2dc3380 , thread 10853 , mypolls 0 +thr b2dc3500 , status 1 +connecting thr b2dc3500 , thread 10854 , mypolls 0 +myconn 0 connecting thr b2dc3500 , thread 10854 , mypolls 0 +thr b2dc3680 , status 1 +connecting thr b2dc3680 , thread 10855 , mypolls 0 +myconn 0 connecting thr b2dc3680 , thread 10855 , mypolls 0 +thr b2dc3800 , status 1 +connecting thr b2dc3800 , thread 10856 , mypolls 0 +myconn 0 connecting thr b2dc3800 , thread 10856 , mypolls 0 +thr b2dc3980 , status 1 +connecting thr b2dc3980 , thread 10857 , mypolls 0 +myconn 0 connecting thr b2dc3980 , thread 10857 , mypolls 0 +thr b2dc3b00 , status 1 +connecting thr b2dc3b00 , thread 10858 , mypolls 0 +myconn 0 connecting thr b2dc3b00 , thread 10858 , mypolls 0 +thr b2dc3c80 , status 1 +connecting thr b2dc3c80 , thread 10859 , mypolls 0 +myconn 0 connecting thr b2dc3c80 , thread 10859 , mypolls 0 +thr b2dc3e00 , status 1 +connecting thr b2dc3e00 , thread 10860 , mypolls 0 +myconn 0 connecting thr b2dc3e00 , thread 10860 , mypolls 0 +thr b2dc3f80 , status 1 +connecting thr b2dc3f80 , thread 10861 , mypolls 0 +myconn 0 connecting thr b2dc3f80 , thread 10861 , mypolls 0 +thr b2dc4100 , status 1 +connecting thr b2dc4100 , thread 10862 , mypolls 0 +myconn 0 connecting thr b2dc4100 , thread 10862 , mypolls 0 +thr b2dc4280 , status 1 +connecting thr b2dc4280 , thread 10863 , mypolls 0 +myconn 0 connecting thr b2dc4280 , thread 10863 , mypolls 0 +thr b2dc4400 , status 1 +connecting thr b2dc4400 , thread 10864 , mypolls 0 +myconn 0 connecting thr b2dc4400 , thread 10864 , mypolls 0 +thr b2dc4580 , status 1 +connecting thr b2dc4580 , thread 10865 , mypolls 0 +myconn 0 connecting thr b2dc4580 , thread 10865 , mypolls 0 +thr b2dc4700 , status 1 +connecting thr b2dc4700 , thread 10866 , mypolls 0 +myconn 0 connecting thr b2dc4700 , thread 10866 , mypolls 0 +thr b2dc4880 , status 1 +connecting thr b2dc4880 , thread 10867 , mypolls 0 +myconn 0 connecting thr b2dc4880 , thread 10867 , mypolls 0 +thr b2dc4a00 , status 1 +connecting thr b2dc4a00 , thread 10868 , mypolls 0 +myconn 0 connecting thr b2dc4a00 , thread 10868 , mypolls 0 +thr b2dc4b80 , status 1 +connecting thr b2dc4b80 , thread 10869 , mypolls 0 +myconn 0 connecting thr b2dc4b80 , thread 10869 , mypolls 0 +thr b2dc4d00 , status 1 +connecting thr b2dc4d00 , thread 10870 , mypolls 0 +myconn 0 connecting thr b2dc4d00 , thread 10870 , mypolls 0 +thr b2dc4e80 , status 1 +connecting thr b2dc4e80 , thread 10871 , mypolls 0 +myconn 0 connecting thr b2dc4e80 , thread 10871 , mypolls 0 +thr b2831000 , status 1 +connecting thr b2831000 , thread 10872 , mypolls 0 +myconn 0 connecting thr b2831000 , thread 10872 , mypolls 0 +thr b2831180 , status 1 +connecting thr b2831180 , thread 10873 , mypolls 0 +myconn 0 connecting thr b2831180 , thread 10873 , mypolls 0 +thr b2831300 , status 1 +connecting thr b2831300 , thread 10874 , mypolls 0 +myconn 0 connecting thr b2831300 , thread 10874 , mypolls 0 +thr b2831480 , status 1 +connecting thr b2831480 , thread 10875 , mypolls 0 +myconn 0 connecting thr b2831480 , thread 10875 , mypolls 0 +thr b2831600 , status 1 +connecting thr b2831600 , thread 10876 , mypolls 0 +myconn 0 connecting thr b2831600 , thread 10876 , mypolls 0 +thr b2831780 , status 1 +connecting thr b2831780 , thread 10877 , mypolls 0 +myconn 0 connecting thr b2831780 , thread 10877 , mypolls 0 +thr b2831900 , status 1 +connecting thr b2831900 , thread 10878 , mypolls 0 +myconn 0 connecting thr b2831900 , thread 10878 , mypolls 0 +thr b2831a80 , status 1 +connecting thr b2831a80 , thread 10879 , mypolls 0 +myconn 0 connecting thr b2831a80 , thread 10879 , mypolls 0 +thr b2831c00 , status 1 +connecting thr b2831c00 , thread 10880 , mypolls 0 +myconn 0 connecting thr b2831c00 , thread 10880 , mypolls 0 +thr b2831d80 , status 1 +connecting thr b2831d80 , thread 10881 , mypolls 0 +myconn 0 connecting thr b2831d80 , thread 10881 , mypolls 0 +thr b2831f00 , status 1 +connecting thr b2831f00 , thread 10882 , mypolls 0 +myconn 0 connecting thr b2831f00 , thread 10882 , mypolls 0 +thr b2832080 , status 1 +connecting thr b2832080 , thread 10883 , mypolls 0 +myconn 0 connecting thr b2832080 , thread 10883 , mypolls 0 +thr b2832200 , status 1 +connecting thr b2832200 , thread 10884 , mypolls 0 +myconn 0 connecting thr b2832200 , thread 10884 , mypolls 0 +thr b2832380 , status 1 +connecting thr b2832380 , thread 10885 , mypolls 0 +myconn 0 connecting thr b2832380 , thread 10885 , mypolls 0 +thr b2832500 , status 1 +connecting thr b2832500 , thread 10886 , mypolls 0 +myconn 0 connecting thr b2832500 , thread 10886 , mypolls 0 +thr b2832680 , status 1 +connecting thr b2832680 , thread 10887 , mypolls 0 +myconn 0 connecting thr b2832680 , thread 10887 , mypolls 0 +thr b2832800 , status 1 +connecting thr b2832800 , thread 10888 , mypolls 0 +myconn 0 connecting thr b2832800 , thread 10888 , mypolls 0 +thr b2832980 , status 1 +connecting thr b2832980 , thread 10889 , mypolls 0 +myconn 0 connecting thr b2832980 , thread 10889 , mypolls 0 +thr b2832b00 , status 1 +connecting thr b2832b00 , thread 10890 , mypolls 0 +myconn 0 connecting thr b2832b00 , thread 10890 , mypolls 0 +thr b2832c80 , status 1 +connecting thr b2832c80 , thread 10891 , mypolls 0 +myconn 0 connecting thr b2832c80 , thread 10891 , mypolls 0 +thr b2832e00 , status 1 +connecting thr b2832e00 , thread 10892 , mypolls 0 +myconn 0 connecting thr b2832e00 , thread 10892 , mypolls 0 +thr b2832f80 , status 1 +connecting thr b2832f80 , thread 10893 , mypolls 0 +myconn 0 connecting thr b2832f80 , thread 10893 , mypolls 0 +thr b2833100 , status 1 +connecting thr b2833100 , thread 10894 , mypolls 0 +myconn 0 connecting thr b2833100 , thread 10894 , mypolls 0 +thr b2833280 , status 1 +connecting thr b2833280 , thread 10895 , mypolls 0 +myconn 0 connecting thr b2833280 , thread 10895 , mypolls 0 +thr b2833400 , status 1 +connecting thr b2833400 , thread 10896 , mypolls 0 +myconn 0 connecting thr b2833400 , thread 10896 , mypolls 0 +thr b2833580 , status 1 +connecting thr b2833580 , thread 10897 , mypolls 0 +myconn 0 connecting thr b2833580 , thread 10897 , mypolls 0 +thr b2833700 , status 1 +connecting thr b2833700 , thread 10898 , mypolls 0 +myconn 0 connecting thr b2833700 , thread 10898 , mypolls 0 +thr b2833880 , status 1 +connecting thr b2833880 , thread 10899 , mypolls 0 +myconn 0 connecting thr b2833880 , thread 10899 , mypolls 0 +thr b2833a00 , status 1 +connecting thr b2833a00 , thread 10900 , mypolls 0 +myconn 0 connecting thr b2833a00 , thread 10900 , mypolls 0 +thr b2833b80 , status 1 +connecting thr b2833b80 , thread 10901 , mypolls 0 +myconn 0 connecting thr b2833b80 , thread 10901 , mypolls 0 +thr b2833d00 , status 1 +connecting thr b2833d00 , thread 10902 , mypolls 0 +myconn 0 connecting thr b2833d00 , thread 10902 , mypolls 0 +thr b2833e80 , status 1 +connecting thr b2833e80 , thread 10903 , mypolls 0 +myconn 0 connecting thr b2833e80 , thread 10903 , mypolls 0 +thr b2695000 , status 1 +connecting thr b2695000 , thread 10904 , mypolls 0 +myconn 0 connecting thr b2695000 , thread 10904 , mypolls 0 +thr b2695180 , status 1 +connecting thr b2695180 , thread 10905 , mypolls 0 +myconn 0 connecting thr b2695180 , thread 10905 , mypolls 0 +thr b2695300 , status 1 +connecting thr b2695300 , thread 10906 , mypolls 0 +myconn 0 connecting thr b2695300 , thread 10906 , mypolls 0 +thr b2695480 , status 1 +connecting thr b2695480 , thread 10907 , mypolls 0 +myconn 0 connecting thr b2695480 , thread 10907 , mypolls 0 +thr b2695600 , status 1 +connecting thr b2695600 , thread 10908 , mypolls 0 +myconn 0 connecting thr b2695600 , thread 10908 , mypolls 0 +thr b2695780 , status 1 +connecting thr b2695780 , thread 10909 , mypolls 0 +myconn 0 connecting thr b2695780 , thread 10909 , mypolls 0 +thr b2695900 , status 1 +connecting thr b2695900 , thread 10910 , mypolls 0 +myconn 0 connecting thr b2695900 , thread 10910 , mypolls 0 +thr b2695a80 , status 1 +connecting thr b2695a80 , thread 10911 , mypolls 0 +myconn 0 connecting thr b2695a80 , thread 10911 , mypolls 0 +thr b2695c00 , status 1 +connecting thr b2695c00 , thread 10912 , mypolls 0 +myconn 0 connecting thr b2695c00 , thread 10912 , mypolls 0 +thr b2695d80 , status 1 +connecting thr b2695d80 , thread 10913 , mypolls 0 +myconn 0 connecting thr b2695d80 , thread 10913 , mypolls 0 +thr b2695f00 , status 1 +connecting thr b2695f00 , thread 10914 , mypolls 0 +myconn 0 connecting thr b2695f00 , thread 10914 , mypolls 0 +thr b2696080 , status 1 +connecting thr b2696080 , thread 10915 , mypolls 0 +myconn 0 connecting thr b2696080 , thread 10915 , mypolls 0 +thr b2696200 , status 1 +connecting thr b2696200 , thread 10916 , mypolls 0 +myconn 0 connecting thr b2696200 , thread 10916 , mypolls 0 +thr b2696380 , status 1 +connecting thr b2696380 , thread 10917 , mypolls 0 +myconn 0 connecting thr b2696380 , thread 10917 , mypolls 0 +thr b2696500 , status 1 +connecting thr b2696500 , thread 10918 , mypolls 0 +myconn 0 connecting thr b2696500 , thread 10918 , mypolls 0 +thr b2696680 , status 1 +connecting thr b2696680 , thread 10919 , mypolls 0 +myconn 0 connecting thr b2696680 , thread 10919 , mypolls 0 +thr b2696800 , status 1 +connecting thr b2696800 , thread 10920 , mypolls 0 +myconn 0 connecting thr b2696800 , thread 10920 , mypolls 0 +thr b2696980 , status 1 +connecting thr b2696980 , thread 10921 , mypolls 0 +myconn 0 connecting thr b2696980 , thread 10921 , mypolls 0 +thr b2696b00 , status 1 +connecting thr b2696b00 , thread 10922 , mypolls 0 +myconn 0 connecting thr b2696b00 , thread 10922 , mypolls 0 +thr b2696c80 , status 1 +connecting thr b2696c80 , thread 10923 , mypolls 0 +myconn 0 connecting thr b2696c80 , thread 10923 , mypolls 0 +thr b2696e00 , status 1 +connecting thr b2696e00 , thread 10924 , mypolls 0 +myconn 0 connecting thr b2696e00 , thread 10924 , mypolls 0 +thr b2696f80 , status 1 +connecting thr b2696f80 , thread 10925 , mypolls 0 +myconn 0 connecting thr b2696f80 , thread 10925 , mypolls 0 +thr b2697100 , status 1 +connecting thr b2697100 , thread 10926 , mypolls 0 +myconn 0 connecting thr b2697100 , thread 10926 , mypolls 0 +thr b2697280 , status 1 +connecting thr b2697280 , thread 10927 , mypolls 0 +myconn 0 connecting thr b2697280 , thread 10927 , mypolls 0 +thr b2697400 , status 1 +connecting thr b2697400 , thread 10928 , mypolls 0 +myconn 0 connecting thr b2697400 , thread 10928 , mypolls 0 +thr b2697580 , status 1 +connecting thr b2697580 , thread 10929 , mypolls 0 +myconn 0 connecting thr b2697580 , thread 10929 , mypolls 0 +thr b2697700 , status 1 +connecting thr b2697700 , thread 10930 , mypolls 0 +myconn 0 connecting thr b2697700 , thread 10930 , mypolls 0 +thr b2697880 , status 1 +connecting thr b2697880 , thread 10931 , mypolls 0 +myconn 0 connecting thr b2697880 , thread 10931 , mypolls 0 +thr b2697a00 , status 1 +connecting thr b2697a00 , thread 10932 , mypolls 0 +myconn 0 connecting thr b2697a00 , thread 10932 , mypolls 0 +thr b2697b80 , status 1 +connecting thr b2697b80 , thread 10933 , mypolls 0 +myconn 0 connecting thr b2697b80 , thread 10933 , mypolls 0 +thr b2697d00 , status 1 +connecting thr b2697d00 , thread 10934 , mypolls 0 +myconn 0 connecting thr b2697d00 , thread 10934 , mypolls 0 +thr b2697e80 , status 1 +connecting thr b2697e80 , thread 10935 , mypolls 0 +myconn 0 connecting thr b2697e80 , thread 10935 , mypolls 0 +thr b27fd000 , status 1 +connecting thr b27fd000 , thread 10936 , mypolls 0 +myconn 0 connecting thr b27fd000 , thread 10936 , mypolls 0 +thr b27fd180 , status 1 +connecting thr b27fd180 , thread 10937 , mypolls 0 +myconn 0 connecting thr b27fd180 , thread 10937 , mypolls 0 +thr b27fd300 , status 1 +connecting thr b27fd300 , thread 10938 , mypolls 0 +myconn 0 connecting thr b27fd300 , thread 10938 , mypolls 0 +thr b27fd480 , status 1 +connecting thr b27fd480 , thread 10939 , mypolls 0 +myconn 0 connecting thr b27fd480 , thread 10939 , mypolls 0 +thr b27fd600 , status 1 +connecting thr b27fd600 , thread 10940 , mypolls 0 +myconn 0 connecting thr b27fd600 , thread 10940 , mypolls 0 +thr b27fd780 , status 1 +connecting thr b27fd780 , thread 10941 , mypolls 0 +myconn 0 connecting thr b27fd780 , thread 10941 , mypolls 0 +thr b27fd900 , status 1 +connecting thr b27fd900 , thread 10942 , mypolls 0 +myconn 0 connecting thr b27fd900 , thread 10942 , mypolls 0 +thr b27fda80 , status 1 +connecting thr b27fda80 , thread 10943 , mypolls 0 +myconn 0 connecting thr b27fda80 , thread 10943 , mypolls 0 +thr b27fdc00 , status 1 +connecting thr b27fdc00 , thread 10944 , mypolls 0 +myconn 0 connecting thr b27fdc00 , thread 10944 , mypolls 0 +thr b27fdd80 , status 1 +connecting thr b27fdd80 , thread 10945 , mypolls 0 +myconn 0 connecting thr b27fdd80 , thread 10945 , mypolls 0 +thr b27fdf00 , status 1 +connecting thr b27fdf00 , thread 10946 , mypolls 0 +myconn 0 connecting thr b27fdf00 , thread 10946 , mypolls 0 +thr b27fe080 , status 1 +connecting thr b27fe080 , thread 10947 , mypolls 0 +myconn 0 connecting thr b27fe080 , thread 10947 , mypolls 0 +thr b27fe200 , status 1 +connecting thr b27fe200 , thread 10948 , mypolls 0 +myconn 0 connecting thr b27fe200 , thread 10948 , mypolls 0 +thr b27fe380 , status 1 +connecting thr b27fe380 , thread 10949 , mypolls 0 +myconn 0 connecting thr b27fe380 , thread 10949 , mypolls 0 +thr b27fe500 , status 1 +connecting thr b27fe500 , thread 10950 , mypolls 0 +myconn 0 connecting thr b27fe500 , thread 10950 , mypolls 0 +thr b27fe680 , status 1 +connecting thr b27fe680 , thread 10951 , mypolls 0 +myconn 0 connecting thr b27fe680 , thread 10951 , mypolls 0 +thr b27fe800 , status 1 +connecting thr b27fe800 , thread 10952 , mypolls 0 +myconn 0 connecting thr b27fe800 , thread 10952 , mypolls 0 +thr b27fe980 , status 1 +connecting thr b27fe980 , thread 10953 , mypolls 0 +myconn 0 connecting thr b27fe980 , thread 10953 , mypolls 0 +thr b27feb00 , status 1 +connecting thr b27feb00 , thread 10954 , mypolls 0 +myconn 0 connecting thr b27feb00 , thread 10954 , mypolls 0 +thr b27fec80 , status 1 +connecting thr b27fec80 , thread 10955 , mypolls 0 +myconn 0 connecting thr b27fec80 , thread 10955 , mypolls 0 +thr b27fee00 , status 1 +connecting thr b27fee00 , thread 10956 , mypolls 0 +myconn 0 connecting thr b27fee00 , thread 10956 , mypolls 0 +thr b27fef80 , status 1 +connecting thr b27fef80 , thread 10957 , mypolls 0 +myconn 0 connecting thr b27fef80 , thread 10957 , mypolls 0 +thr b27ff100 , status 1 +connecting thr b27ff100 , thread 10958 , mypolls 0 +myconn 0 connecting thr b27ff100 , thread 10958 , mypolls 0 +thr b27ff280 , status 1 +connecting thr b27ff280 , thread 10959 , mypolls 0 +myconn 0 connecting thr b27ff280 , thread 10959 , mypolls 0 +thr b27ff400 , status 1 +connecting thr b27ff400 , thread 10960 , mypolls 0 +myconn 0 connecting thr b27ff400 , thread 10960 , mypolls 0 +thr b27ff580 , status 1 +connecting thr b27ff580 , thread 10961 , mypolls 0 +myconn 0 connecting thr b27ff580 , thread 10961 , mypolls 0 +thr b27ff700 , status 1 +connecting thr b27ff700 , thread 10962 , mypolls 0 +myconn 0 connecting thr b27ff700 , thread 10962 , mypolls 0 +thr b27ff880 , status 1 +connecting thr b27ff880 , thread 10963 , mypolls 0 +myconn 0 connecting thr b27ff880 , thread 10963 , mypolls 0 +thr b27ffa00 , status 1 +connecting thr b27ffa00 , thread 10964 , mypolls 0 +myconn 0 connecting thr b27ffa00 , thread 10964 , mypolls 0 +thr b27ffb80 , status 1 +connecting thr b27ffb80 , thread 10965 , mypolls 0 +myconn 0 connecting thr b27ffb80 , thread 10965 , mypolls 0 +thr b27ffd00 , status 1 +connecting thr b27ffd00 , thread 10966 , mypolls 0 +myconn 0 connecting thr b27ffd00 , thread 10966 , mypolls 0 +thr b27ffe80 , status 1 +connecting thr b27ffe80 , thread 10967 , mypolls 0 +myconn 0 connecting thr b27ffe80 , thread 10967 , mypolls 0 +thr b2354000 , status 1 +connecting thr b2354000 , thread 10968 , mypolls 0 +myconn 0 connecting thr b2354000 , thread 10968 , mypolls 0 +thr b2354180 , status 1 +connecting thr b2354180 , thread 10969 , mypolls 0 +myconn 0 connecting thr b2354180 , thread 10969 , mypolls 0 +thr b2354300 , status 1 +connecting thr b2354300 , thread 10970 , mypolls 0 +myconn 0 connecting thr b2354300 , thread 10970 , mypolls 0 +thr b2354480 , status 1 +connecting thr b2354480 , thread 10971 , mypolls 0 +myconn 0 connecting thr b2354480 , thread 10971 , mypolls 0 +thr b2354600 , status 1 +connecting thr b2354600 , thread 10972 , mypolls 0 +myconn 0 connecting thr b2354600 , thread 10972 , mypolls 0 +thr b2354780 , status 1 +connecting thr b2354780 , thread 10973 , mypolls 0 +myconn 0 connecting thr b2354780 , thread 10973 , mypolls 0 +thr b2354900 , status 1 +connecting thr b2354900 , thread 10974 , mypolls 0 +myconn 0 connecting thr b2354900 , thread 10974 , mypolls 0 +thr b2354a80 , status 1 +connecting thr b2354a80 , thread 10975 , mypolls 0 +myconn 0 connecting thr b2354a80 , thread 10975 , mypolls 0 +thr b2354c00 , status 1 +connecting thr b2354c00 , thread 10976 , mypolls 0 +myconn 0 connecting thr b2354c00 , thread 10976 , mypolls 0 +thr b2354d80 , status 1 +connecting thr b2354d80 , thread 10977 , mypolls 0 +myconn 0 connecting thr b2354d80 , thread 10977 , mypolls 0 +thr b2354f00 , status 1 +connecting thr b2354f00 , thread 10978 , mypolls 0 +myconn 0 connecting thr b2354f00 , thread 10978 , mypolls 0 +thr b2355080 , status 1 +connecting thr b2355080 , thread 10979 , mypolls 0 +myconn 0 connecting thr b2355080 , thread 10979 , mypolls 0 +thr b2355200 , status 1 +connecting thr b2355200 , thread 10980 , mypolls 0 +myconn 0 connecting thr b2355200 , thread 10980 , mypolls 0 +thr b2355380 , status 1 +connecting thr b2355380 , thread 10981 , mypolls 0 +myconn 0 connecting thr b2355380 , thread 10981 , mypolls 0 +thr b2355500 , status 1 +connecting thr b2355500 , thread 10982 , mypolls 0 +myconn 0 connecting thr b2355500 , thread 10982 , mypolls 0 +thr b2355680 , status 1 +connecting thr b2355680 , thread 10983 , mypolls 0 +myconn 0 connecting thr b2355680 , thread 10983 , mypolls 0 +thr b2355800 , status 1 +connecting thr b2355800 , thread 10984 , mypolls 0 +myconn 0 connecting thr b2355800 , thread 10984 , mypolls 0 +thr b2355980 , status 1 +connecting thr b2355980 , thread 10985 , mypolls 0 +myconn 0 connecting thr b2355980 , thread 10985 , mypolls 0 +thr b2355b00 , status 1 +connecting thr b2355b00 , thread 10986 , mypolls 0 +myconn 0 connecting thr b2355b00 , thread 10986 , mypolls 0 +thr b2355c80 , status 1 +connecting thr b2355c80 , thread 10987 , mypolls 0 +myconn 0 connecting thr b2355c80 , thread 10987 , mypolls 0 +thr b2355e00 , status 1 +connecting thr b2355e00 , thread 10988 , mypolls 0 +myconn 0 connecting thr b2355e00 , thread 10988 , mypolls 0 +thr b2355f80 , status 1 +connecting thr b2355f80 , thread 10989 , mypolls 0 +myconn 0 connecting thr b2355f80 , thread 10989 , mypolls 0 +thr b2356100 , status 1 +connecting thr b2356100 , thread 10990 , mypolls 0 +myconn 0 connecting thr b2356100 , thread 10990 , mypolls 0 +thr b2356280 , status 1 +connecting thr b2356280 , thread 10991 , mypolls 0 +myconn 0 connecting thr b2356280 , thread 10991 , mypolls 0 +thr b2356400 , status 1 +connecting thr b2356400 , thread 10992 , mypolls 0 +myconn 0 connecting thr b2356400 , thread 10992 , mypolls 0 +thr b2356580 , status 1 +connecting thr b2356580 , thread 10993 , mypolls 0 +myconn 0 connecting thr b2356580 , thread 10993 , mypolls 0 +thr b2356700 , status 1 +connecting thr b2356700 , thread 10994 , mypolls 0 +myconn 0 connecting thr b2356700 , thread 10994 , mypolls 0 +thr b2356880 , status 1 +connecting thr b2356880 , thread 10995 , mypolls 0 +myconn 0 connecting thr b2356880 , thread 10995 , mypolls 0 +thr b2356a00 , status 1 +connecting thr b2356a00 , thread 10996 , mypolls 0 +myconn 0 connecting thr b2356a00 , thread 10996 , mypolls 0 +thr b2356b80 , status 1 +connecting thr b2356b80 , thread 10997 , mypolls 0 +myconn 0 connecting thr b2356b80 , thread 10997 , mypolls 0 +thr b2356d00 , status 1 +connecting thr b2356d00 , thread 10998 , mypolls 0 +myconn 0 connecting thr b2356d00 , thread 10998 , mypolls 0 +thr b2356e80 , status 1 +connecting thr b2356e80 , thread 10999 , mypolls 0 +myconn 0 connecting thr b2356e80 , thread 10999 , mypolls 0 +thr b21be000 , status 1 +connecting thr b21be000 , thread 11000 , mypolls 0 +myconn 0 connecting thr b21be000 , thread 11000 , mypolls 0 +thr b21be180 , status 1 +connecting thr b21be180 , thread 11001 , mypolls 0 +myconn 0 connecting thr b21be180 , thread 11001 , mypolls 0 +thr b21be300 , status 1 +connecting thr b21be300 , thread 11002 , mypolls 0 +myconn 0 connecting thr b21be300 , thread 11002 , mypolls 0 +thr b21be480 , status 1 +connecting thr b21be480 , thread 11003 , mypolls 0 +myconn 0 connecting thr b21be480 , thread 11003 , mypolls 0 +thr b21be600 , status 1 +connecting thr b21be600 , thread 11004 , mypolls 0 +myconn 0 connecting thr b21be600 , thread 11004 , mypolls 0 +thr b21be780 , status 1 +connecting thr b21be780 , thread 11005 , mypolls 0 +myconn 0 connecting thr b21be780 , thread 11005 , mypolls 0 +thr b21be900 , status 1 +connecting thr b21be900 , thread 11006 , mypolls 0 +myconn 0 connecting thr b21be900 , thread 11006 , mypolls 0 +thr b21bea80 , status 1 +connecting thr b21bea80 , thread 11007 , mypolls 0 +myconn 0 connecting thr b21bea80 , thread 11007 , mypolls 0 +thr b21bec00 , status 1 +connecting thr b21bec00 , thread 11008 , mypolls 0 +myconn 0 connecting thr b21bec00 , thread 11008 , mypolls 0 +thr b21bed80 , status 1 +connecting thr b21bed80 , thread 11009 , mypolls 0 +myconn 0 connecting thr b21bed80 , thread 11009 , mypolls 0 +thr b21bef00 , status 1 +connecting thr b21bef00 , thread 11010 , mypolls 0 +myconn 0 connecting thr b21bef00 , thread 11010 , mypolls 0 +thr b21bf080 , status 1 +connecting thr b21bf080 , thread 11011 , mypolls 0 +myconn 0 connecting thr b21bf080 , thread 11011 , mypolls 0 +thr b21bf200 , status 1 +connecting thr b21bf200 , thread 11012 , mypolls 0 +myconn 0 connecting thr b21bf200 , thread 11012 , mypolls 0 +thr b21bf380 , status 1 +connecting thr b21bf380 , thread 11013 , mypolls 0 +myconn 0 connecting thr b21bf380 , thread 11013 , mypolls 0 +thr b21bf500 , status 1 +connecting thr b21bf500 , thread 11014 , mypolls 0 +myconn 0 connecting thr b21bf500 , thread 11014 , mypolls 0 +thr b21bf680 , status 1 +connecting thr b21bf680 , thread 11015 , mypolls 0 +myconn 0 connecting thr b21bf680 , thread 11015 , mypolls 0 +thr b21bf800 , status 1 +connecting thr b21bf800 , thread 11016 , mypolls 0 +myconn 0 connecting thr b21bf800 , thread 11016 , mypolls 0 +thr b21bf980 , status 1 +connecting thr b21bf980 , thread 11017 , mypolls 0 +myconn 0 connecting thr b21bf980 , thread 11017 , mypolls 0 +thr b21bfb00 , status 1 +connecting thr b21bfb00 , thread 11018 , mypolls 0 +myconn 0 connecting thr b21bfb00 , thread 11018 , mypolls 0 +thr b21bfc80 , status 1 +connecting thr b21bfc80 , thread 11019 , mypolls 0 +myconn 0 connecting thr b21bfc80 , thread 11019 , mypolls 0 +thr b21bfe00 , status 1 +connecting thr b21bfe00 , thread 11020 , mypolls 0 +myconn 0 connecting thr b21bfe00 , thread 11020 , mypolls 0 +thr b21bff80 , status 1 +connecting thr b21bff80 , thread 11021 , mypolls 0 +myconn 0 connecting thr b21bff80 , thread 11021 , mypolls 0 +thr b21c0100 , status 1 +connecting thr b21c0100 , thread 11022 , mypolls 0 +myconn 0 connecting thr b21c0100 , thread 11022 , mypolls 0 +thr b21c0280 , status 1 +connecting thr b21c0280 , thread 11023 , mypolls 0 +myconn 0 connecting thr b21c0280 , thread 11023 , mypolls 0 +thr b21c0400 , status 1 +connecting thr b21c0400 , thread 11024 , mypolls 0 +myconn 0 connecting thr b21c0400 , thread 11024 , mypolls 0 +thr b21c0580 , status 1 +connecting thr b21c0580 , thread 11025 , mypolls 0 +myconn 0 connecting thr b21c0580 , thread 11025 , mypolls 0 +thr b21c0700 , status 1 +connecting thr b21c0700 , thread 11026 , mypolls 0 +myconn 0 connecting thr b21c0700 , thread 11026 , mypolls 0 +thr b21c0880 , status 1 +connecting thr b21c0880 , thread 11027 , mypolls 0 +myconn 0 connecting thr b21c0880 , thread 11027 , mypolls 0 +thr b21c0a00 , status 1 +connecting thr b21c0a00 , thread 11028 , mypolls 0 +myconn 0 connecting thr b21c0a00 , thread 11028 , mypolls 0 +thr b21c0b80 , status 1 +connecting thr b21c0b80 , thread 11029 , mypolls 0 +myconn 0 connecting thr b21c0b80 , thread 11029 , mypolls 0 +thr b21c0d00 , status 1 +connecting thr b21c0d00 , thread 11030 , mypolls 0 +myconn 0 connecting thr b21c0d00 , thread 11030 , mypolls 0 +thr b21c0e80 , status 1 +connecting thr b21c0e80 , thread 11031 , mypolls 0 +myconn 0 connecting thr b21c0e80 , thread 11031 , mypolls 0 +thr b1ffa000 , status 1 +connecting thr b1ffa000 , thread 11032 , mypolls 0 +myconn 0 connecting thr b1ffa000 , thread 11032 , mypolls 0 +thr b1ffa180 , status 1 +connecting thr b1ffa180 , thread 11033 , mypolls 0 +myconn 0 connecting thr b1ffa180 , thread 11033 , mypolls 0 +thr b1ffa300 , status 1 +connecting thr b1ffa300 , thread 11034 , mypolls 0 +myconn 0 connecting thr b1ffa300 , thread 11034 , mypolls 0 +thr b1ffa480 , status 1 +connecting thr b1ffa480 , thread 11035 , mypolls 0 +myconn 0 connecting thr b1ffa480 , thread 11035 , mypolls 0 +thr b1ffa600 , status 1 +connecting thr b1ffa600 , thread 11036 , mypolls 0 +myconn 0 connecting thr b1ffa600 , thread 11036 , mypolls 0 +thr b1ffa780 , status 1 +connecting thr b1ffa780 , thread 11037 , mypolls 0 +myconn 0 connecting thr b1ffa780 , thread 11037 , mypolls 0 +thr b1ffa900 , status 1 +connecting thr b1ffa900 , thread 11038 , mypolls 0 +myconn 0 connecting thr b1ffa900 , thread 11038 , mypolls 0 +thr b1ffaa80 , status 1 +connecting thr b1ffaa80 , thread 11039 , mypolls 0 +myconn 0 connecting thr b1ffaa80 , thread 11039 , mypolls 0 +thr b1ffac00 , status 1 +connecting thr b1ffac00 , thread 11040 , mypolls 0 +myconn 0 connecting thr b1ffac00 , thread 11040 , mypolls 0 +thr b1ffad80 , status 1 +connecting thr b1ffad80 , thread 11041 , mypolls 0 +myconn 0 connecting thr b1ffad80 , thread 11041 , mypolls 0 +thr b1ffaf00 , status 1 +connecting thr b1ffaf00 , thread 11042 , mypolls 0 +myconn 0 connecting thr b1ffaf00 , thread 11042 , mypolls 0 +thr b1ffb080 , status 1 +connecting thr b1ffb080 , thread 11043 , mypolls 0 +myconn 0 connecting thr b1ffb080 , thread 11043 , mypolls 0 +thr b1ffb200 , status 1 +connecting thr b1ffb200 , thread 11044 , mypolls 0 +myconn 0 connecting thr b1ffb200 , thread 11044 , mypolls 0 +thr b1ffb380 , status 1 +connecting thr b1ffb380 , thread 11045 , mypolls 0 +myconn 0 connecting thr b1ffb380 , thread 11045 , mypolls 0 +thr b1ffb500 , status 1 +connecting thr b1ffb500 , thread 11046 , mypolls 0 +myconn 0 connecting thr b1ffb500 , thread 11046 , mypolls 0 +thr b1ffb680 , status 1 +connecting thr b1ffb680 , thread 11047 , mypolls 0 +myconn 0 connecting thr b1ffb680 , thread 11047 , mypolls 0 +thr b1ffb800 , status 1 +connecting thr b1ffb800 , thread 11048 , mypolls 0 +myconn 0 connecting thr b1ffb800 , thread 11048 , mypolls 0 +thr b1ffb980 , status 1 +connecting thr b1ffb980 , thread 11049 , mypolls 0 +myconn 0 connecting thr b1ffb980 , thread 11049 , mypolls 0 +thr b1ffbb00 , status 1 +connecting thr b1ffbb00 , thread 11050 , mypolls 0 +myconn 0 connecting thr b1ffbb00 , thread 11050 , mypolls 0 +thr b1ffbc80 , status 1 +connecting thr b1ffbc80 , thread 11051 , mypolls 0 +myconn 0 connecting thr b1ffbc80 , thread 11051 , mypolls 0 +thr b1ffbe00 , status 1 +connecting thr b1ffbe00 , thread 11052 , mypolls 0 +myconn 0 connecting thr b1ffbe00 , thread 11052 , mypolls 0 +thr b1ffbf80 , status 1 +connecting thr b1ffbf80 , thread 11053 , mypolls 0 +myconn 0 connecting thr b1ffbf80 , thread 11053 , mypolls 0 +thr b1ffc100 , status 1 +connecting thr b1ffc100 , thread 11054 , mypolls 0 +myconn 0 connecting thr b1ffc100 , thread 11054 , mypolls 0 +thr b1ffc280 , status 1 +connecting thr b1ffc280 , thread 11055 , mypolls 0 +myconn 0 connecting thr b1ffc280 , thread 11055 , mypolls 0 +thr b1ffc400 , status 1 +connecting thr b1ffc400 , thread 11056 , mypolls 0 +myconn 0 connecting thr b1ffc400 , thread 11056 , mypolls 0 +thr b1ffc580 , status 1 +connecting thr b1ffc580 , thread 11057 , mypolls 0 +myconn 0 connecting thr b1ffc580 , thread 11057 , mypolls 0 +thr b1ffc700 , status 1 +connecting thr b1ffc700 , thread 11058 , mypolls 0 +myconn 0 connecting thr b1ffc700 , thread 11058 , mypolls 0 +thr b1ffc880 , status 1 +connecting thr b1ffc880 , thread 11059 , mypolls 0 +myconn 0 connecting thr b1ffc880 , thread 11059 , mypolls 0 +thr b1ffca00 , status 1 +connecting thr b1ffca00 , thread 11060 , mypolls 0 +myconn 0 connecting thr b1ffca00 , thread 11060 , mypolls 0 +thr b1ffcb80 , status 1 +connecting thr b1ffcb80 , thread 11061 , mypolls 0 +myconn 0 connecting thr b1ffcb80 , thread 11061 , mypolls 0 +thr b1ffcd00 , status 1 +connecting thr b1ffcd00 , thread 11062 , mypolls 0 +myconn 0 connecting thr b1ffcd00 , thread 11062 , mypolls 0 +thr b1ffce80 , status 1 +connecting thr b1ffce80 , thread 11063 , mypolls 0 +myconn 0 connecting thr b1ffce80 , thread 11063 , mypolls 0 +thr b1dfc000 , status 1 +connecting thr b1dfc000 , thread 11064 , mypolls 0 +myconn 0 connecting thr b1dfc000 , thread 11064 , mypolls 0 +thr b1dfc180 , status 1 +connecting thr b1dfc180 , thread 11065 , mypolls 0 +myconn 0 connecting thr b1dfc180 , thread 11065 , mypolls 0 +thr b1dfc300 , status 1 +connecting thr b1dfc300 , thread 11066 , mypolls 0 +myconn 0 connecting thr b1dfc300 , thread 11066 , mypolls 0 +thr b1dfc480 , status 1 +connecting thr b1dfc480 , thread 11067 , mypolls 0 +myconn 0 connecting thr b1dfc480 , thread 11067 , mypolls 0 +thr b1dfc600 , status 1 +connecting thr b1dfc600 , thread 11068 , mypolls 0 +myconn 0 connecting thr b1dfc600 , thread 11068 , mypolls 0 +thr b1dfc780 , status 1 +connecting thr b1dfc780 , thread 11069 , mypolls 0 +myconn 0 connecting thr b1dfc780 , thread 11069 , mypolls 0 +thr b1dfc900 , status 1 +connecting thr b1dfc900 , thread 11070 , mypolls 0 +myconn 0 connecting thr b1dfc900 , thread 11070 , mypolls 0 +thr b1dfca80 , status 1 +connecting thr b1dfca80 , thread 11071 , mypolls 0 +myconn 0 connecting thr b1dfca80 , thread 11071 , mypolls 0 +thr b1dfcc00 , status 1 +connecting thr b1dfcc00 , thread 11072 , mypolls 0 +myconn 0 connecting thr b1dfcc00 , thread 11072 , mypolls 0 +thr b1dfcd80 , status 1 +connecting thr b1dfcd80 , thread 11073 , mypolls 0 +myconn 0 connecting thr b1dfcd80 , thread 11073 , mypolls 0 +thr b1dfcf00 , status 1 +connecting thr b1dfcf00 , thread 11074 , mypolls 0 +myconn 0 connecting thr b1dfcf00 , thread 11074 , mypolls 0 +thr b1dfd080 , status 1 +connecting thr b1dfd080 , thread 11075 , mypolls 0 +myconn 0 connecting thr b1dfd080 , thread 11075 , mypolls 0 +thr b1dfd200 , status 1 +connecting thr b1dfd200 , thread 11076 , mypolls 0 +myconn 0 connecting thr b1dfd200 , thread 11076 , mypolls 0 +thr b1dfd380 , status 1 +connecting thr b1dfd380 , thread 11077 , mypolls 0 +myconn 0 connecting thr b1dfd380 , thread 11077 , mypolls 0 +thr b1dfd500 , status 1 +connecting thr b1dfd500 , thread 11078 , mypolls 0 +myconn 0 connecting thr b1dfd500 , thread 11078 , mypolls 0 +thr b1dfd680 , status 1 +connecting thr b1dfd680 , thread 11079 , mypolls 0 +myconn 0 connecting thr b1dfd680 , thread 11079 , mypolls 0 +thr b1dfd800 , status 1 +connecting thr b1dfd800 , thread 11080 , mypolls 0 +myconn 0 connecting thr b1dfd800 , thread 11080 , mypolls 0 +thr b1dfd980 , status 1 +connecting thr b1dfd980 , thread 11081 , mypolls 0 +myconn 0 connecting thr b1dfd980 , thread 11081 , mypolls 0 +thr b1dfdb00 , status 1 +connecting thr b1dfdb00 , thread 11082 , mypolls 0 +myconn 0 connecting thr b1dfdb00 , thread 11082 , mypolls 0 +thr b1dfdc80 , status 1 +connecting thr b1dfdc80 , thread 11083 , mypolls 0 +myconn 0 connecting thr b1dfdc80 , thread 11083 , mypolls 0 +thr b1dfde00 , status 1 +connecting thr b1dfde00 , thread 11084 , mypolls 0 +myconn 0 connecting thr b1dfde00 , thread 11084 , mypolls 0 +thr b1dfdf80 , status 1 +connecting thr b1dfdf80 , thread 11085 , mypolls 0 +myconn 0 connecting thr b1dfdf80 , thread 11085 , mypolls 0 +thr b1dfe100 , status 1 +connecting thr b1dfe100 , thread 11086 , mypolls 0 +myconn 0 connecting thr b1dfe100 , thread 11086 , mypolls 0 +thr b1dfe280 , status 1 +connecting thr b1dfe280 , thread 11087 , mypolls 0 +myconn 0 connecting thr b1dfe280 , thread 11087 , mypolls 0 +thr b1dfe400 , status 1 +connecting thr b1dfe400 , thread 11088 , mypolls 0 +myconn 0 connecting thr b1dfe400 , thread 11088 , mypolls 0 +thr b1dfe580 , status 1 +connecting thr b1dfe580 , thread 11089 , mypolls 0 +myconn 0 connecting thr b1dfe580 , thread 11089 , mypolls 0 +thr b1dfe700 , status 1 +connecting thr b1dfe700 , thread 11090 , mypolls 0 +myconn 0 connecting thr b1dfe700 , thread 11090 , mypolls 0 +thr b1dfe880 , status 1 +connecting thr b1dfe880 , thread 11091 , mypolls 0 +myconn 0 connecting thr b1dfe880 , thread 11091 , mypolls 0 +thr b1dfea00 , status 1 +connecting thr b1dfea00 , thread 11092 , mypolls 0 +myconn 0 connecting thr b1dfea00 , thread 11092 , mypolls 0 +thr b1dfeb80 , status 1 +connecting thr b1dfeb80 , thread 11093 , mypolls 0 +myconn 0 connecting thr b1dfeb80 , thread 11093 , mypolls 0 +thr b1dfed00 , status 1 +connecting thr b1dfed00 , thread 11094 , mypolls 0 +myconn 0 connecting thr b1dfed00 , thread 11094 , mypolls 0 +thr b1dfee80 , status 1 +connecting thr b1dfee80 , thread 11095 , mypolls 0 +myconn 0 connecting thr b1dfee80 , thread 11095 , mypolls 0 +thr b18f0000 , status 1 +connecting thr b18f0000 , thread 11096 , mypolls 0 +myconn 0 connecting thr b18f0000 , thread 11096 , mypolls 0 +thr b18f0180 , status 1 +connecting thr b18f0180 , thread 11097 , mypolls 0 +myconn 0 connecting thr b18f0180 , thread 11097 , mypolls 0 +thr b18f0300 , status 1 +connecting thr b18f0300 , thread 11098 , mypolls 0 +myconn 0 connecting thr b18f0300 , thread 11098 , mypolls 0 +thr b18f0480 , status 1 +connecting thr b18f0480 , thread 11099 , mypolls 0 +myconn 0 connecting thr b18f0480 , thread 11099 , mypolls 0 +thr b18f0600 , status 1 +connecting thr b18f0600 , thread 11100 , mypolls 0 +myconn 0 connecting thr b18f0600 , thread 11100 , mypolls 0 +thr b18f0780 , status 1 +connecting thr b18f0780 , thread 11101 , mypolls 0 +myconn 0 connecting thr b18f0780 , thread 11101 , mypolls 0 +thr b18f0900 , status 1 +connecting thr b18f0900 , thread 11102 , mypolls 0 +myconn 0 connecting thr b18f0900 , thread 11102 , mypolls 0 +thr b18f0a80 , status 1 +connecting thr b18f0a80 , thread 11103 , mypolls 0 +myconn 0 connecting thr b18f0a80 , thread 11103 , mypolls 0 +thr b18f0c00 , status 1 +connecting thr b18f0c00 , thread 11104 , mypolls 0 +myconn 0 connecting thr b18f0c00 , thread 11104 , mypolls 0 +thr b18f0d80 , status 1 +connecting thr b18f0d80 , thread 11105 , mypolls 0 +myconn 0 connecting thr b18f0d80 , thread 11105 , mypolls 0 +thr b18f0f00 , status 1 +connecting thr b18f0f00 , thread 11106 , mypolls 0 +myconn 0 connecting thr b18f0f00 , thread 11106 , mypolls 0 +thr b18f1080 , status 1 +connecting thr b18f1080 , thread 11107 , mypolls 0 +myconn 0 connecting thr b18f1080 , thread 11107 , mypolls 0 +thr b18f1200 , status 1 +connecting thr b18f1200 , thread 11108 , mypolls 0 +myconn 0 connecting thr b18f1200 , thread 11108 , mypolls 0 +thr b18f1380 , status 1 +connecting thr b18f1380 , thread 11109 , mypolls 0 +myconn 0 connecting thr b18f1380 , thread 11109 , mypolls 0 +thr b18f1500 , status 1 +connecting thr b18f1500 , thread 11110 , mypolls 0 +myconn 0 connecting thr b18f1500 , thread 11110 , mypolls 0 +thr b18f1680 , status 1 +connecting thr b18f1680 , thread 11111 , mypolls 0 +myconn 0 connecting thr b18f1680 , thread 11111 , mypolls 0 +thr b18f1800 , status 1 +connecting thr b18f1800 , thread 11112 , mypolls 0 +myconn 0 connecting thr b18f1800 , thread 11112 , mypolls 0 +thr b18f1980 , status 1 +connecting thr b18f1980 , thread 11113 , mypolls 0 +myconn 0 connecting thr b18f1980 , thread 11113 , mypolls 0 +thr b18f1b00 , status 1 +connecting thr b18f1b00 , thread 11114 , mypolls 0 +myconn 0 connecting thr b18f1b00 , thread 11114 , mypolls 0 +thr b18f1c80 , status 1 +connecting thr b18f1c80 , thread 11115 , mypolls 0 +myconn 0 connecting thr b18f1c80 , thread 11115 , mypolls 0 +thr b18f1e00 , status 1 +connecting thr b18f1e00 , thread 11116 , mypolls 0 +myconn 0 connecting thr b18f1e00 , thread 11116 , mypolls 0 +thr b18f1f80 , status 1 +connecting thr b18f1f80 , thread 11117 , mypolls 0 +myconn 0 connecting thr b18f1f80 , thread 11117 , mypolls 0 +thr b18f2100 , status 1 +connecting thr b18f2100 , thread 11118 , mypolls 0 +myconn 0 connecting thr b18f2100 , thread 11118 , mypolls 0 +thr b18f2280 , status 1 +connecting thr b18f2280 , thread 11119 , mypolls 0 +myconn 0 connecting thr b18f2280 , thread 11119 , mypolls 0 +thr b18f2400 , status 1 +connecting thr b18f2400 , thread 11120 , mypolls 0 +myconn 0 connecting thr b18f2400 , thread 11120 , mypolls 0 +thr b18f2580 , status 1 +connecting thr b18f2580 , thread 11121 , mypolls 0 +myconn 0 connecting thr b18f2580 , thread 11121 , mypolls 0 +thr b18f2700 , status 1 +connecting thr b18f2700 , thread 11122 , mypolls 0 +myconn 0 connecting thr b18f2700 , thread 11122 , mypolls 0 +thr b18f2880 , status 1 +connecting thr b18f2880 , thread 11123 , mypolls 0 +myconn 0 connecting thr b18f2880 , thread 11123 , mypolls 0 +thr b18f2a00 , status 1 +connecting thr b18f2a00 , thread 11124 , mypolls 0 +myconn 0 connecting thr b18f2a00 , thread 11124 , mypolls 0 +thr b18f2b80 , status 1 +connecting thr b18f2b80 , thread 11125 , mypolls 0 +myconn 0 connecting thr b18f2b80 , thread 11125 , mypolls 0 +thr b18f2d00 , status 1 +connecting thr b18f2d00 , thread 11126 , mypolls 0 +myconn 0 connecting thr b18f2d00 , thread 11126 , mypolls 0 +thr b18f2e80 , status 1 +connecting thr b18f2e80 , thread 11127 , mypolls 0 +myconn 0 connecting thr b18f2e80 , thread 11127 , mypolls 0 +thr b1751000 , status 1 +connecting thr b1751000 , thread 11128 , mypolls 0 +myconn 0 connecting thr b1751000 , thread 11128 , mypolls 0 +thr b1751180 , status 1 +connecting thr b1751180 , thread 11129 , mypolls 0 +myconn 0 connecting thr b1751180 , thread 11129 , mypolls 0 +thr b1751300 , status 1 +connecting thr b1751300 , thread 11130 , mypolls 0 +myconn 0 connecting thr b1751300 , thread 11130 , mypolls 0 +thr b1751480 , status 1 +connecting thr b1751480 , thread 11131 , mypolls 0 +myconn 0 connecting thr b1751480 , thread 11131 , mypolls 0 +thr b1751600 , status 1 +connecting thr b1751600 , thread 11132 , mypolls 0 +myconn 0 connecting thr b1751600 , thread 11132 , mypolls 0 +thr b1751780 , status 1 +connecting thr b1751780 , thread 11133 , mypolls 0 +myconn 0 connecting thr b1751780 , thread 11133 , mypolls 0 +thr b1751900 , status 1 +connecting thr b1751900 , thread 11134 , mypolls 0 +myconn 0 connecting thr b1751900 , thread 11134 , mypolls 0 +thr b1751a80 , status 1 +connecting thr b1751a80 , thread 11135 , mypolls 0 +myconn 0 connecting thr b1751a80 , thread 11135 , mypolls 0 +thr b1751c00 , status 1 +connecting thr b1751c00 , thread 11136 , mypolls 0 +myconn 0 connecting thr b1751c00 , thread 11136 , mypolls 0 +thr b1751d80 , status 1 +connecting thr b1751d80 , thread 11137 , mypolls 0 +myconn 0 connecting thr b1751d80 , thread 11137 , mypolls 0 +thr b1751f00 , status 1 +connecting thr b1751f00 , thread 11138 , mypolls 0 +myconn 0 connecting thr b1751f00 , thread 11138 , mypolls 0 +thr b1752080 , status 1 +connecting thr b1752080 , thread 11139 , mypolls 0 +myconn 0 connecting thr b1752080 , thread 11139 , mypolls 0 +thr b1752200 , status 1 +connecting thr b1752200 , thread 11140 , mypolls 0 +myconn 0 connecting thr b1752200 , thread 11140 , mypolls 0 +thr b1752380 , status 1 +connecting thr b1752380 , thread 11141 , mypolls 0 +myconn 0 connecting thr b1752380 , thread 11141 , mypolls 0 +thr b1752500 , status 1 +connecting thr b1752500 , thread 11142 , mypolls 0 +myconn 0 connecting thr b1752500 , thread 11142 , mypolls 0 +thr b1752680 , status 1 +connecting thr b1752680 , thread 11143 , mypolls 0 +myconn 0 connecting thr b1752680 , thread 11143 , mypolls 0 +thr b1752800 , status 1 +connecting thr b1752800 , thread 11144 , mypolls 0 +myconn 0 connecting thr b1752800 , thread 11144 , mypolls 0 +thr b1752980 , status 1 +connecting thr b1752980 , thread 11145 , mypolls 0 +myconn 0 connecting thr b1752980 , thread 11145 , mypolls 0 +thr b1752b00 , status 1 +connecting thr b1752b00 , thread 11146 , mypolls 0 +myconn 0 connecting thr b1752b00 , thread 11146 , mypolls 0 +thr b1752c80 , status 1 +connecting thr b1752c80 , thread 11147 , mypolls 0 +myconn 0 connecting thr b1752c80 , thread 11147 , mypolls 0 +thr b1752e00 , status 1 +connecting thr b1752e00 , thread 11148 , mypolls 0 +myconn 0 connecting thr b1752e00 , thread 11148 , mypolls 0 +thr b1752f80 , status 1 +connecting thr b1752f80 , thread 11149 , mypolls 0 +myconn 0 connecting thr b1752f80 , thread 11149 , mypolls 0 +thr b1753100 , status 1 +connecting thr b1753100 , thread 11150 , mypolls 0 +myconn 0 connecting thr b1753100 , thread 11150 , mypolls 0 +thr b1753280 , status 1 +connecting thr b1753280 , thread 11151 , mypolls 0 +myconn 0 connecting thr b1753280 , thread 11151 , mypolls 0 +thr b1753400 , status 1 +connecting thr b1753400 , thread 11152 , mypolls 0 +myconn 0 connecting thr b1753400 , thread 11152 , mypolls 0 +thr b1753580 , status 1 +connecting thr b1753580 , thread 11153 , mypolls 0 +myconn 0 connecting thr b1753580 , thread 11153 , mypolls 0 +thr b1753700 , status 1 +connecting thr b1753700 , thread 11154 , mypolls 0 +myconn 0 connecting thr b1753700 , thread 11154 , mypolls 0 +thr b1753880 , status 1 +connecting thr b1753880 , thread 11155 , mypolls 0 +myconn 0 connecting thr b1753880 , thread 11155 , mypolls 0 +thr b1753a00 , status 1 +connecting thr b1753a00 , thread 11156 , mypolls 0 +myconn 0 connecting thr b1753a00 , thread 11156 , mypolls 0 +thr b1753b80 , status 1 +connecting thr b1753b80 , thread 11157 , mypolls 0 +myconn 0 connecting thr b1753b80 , thread 11157 , mypolls 0 +thr b1753d00 , status 1 +connecting thr b1753d00 , thread 11158 , mypolls 0 +myconn 0 connecting thr b1753d00 , thread 11158 , mypolls 0 +thr b1753e80 , status 1 +connecting thr b1753e80 , thread 11159 , mypolls 0 +myconn 0 connecting thr b1753e80 , thread 11159 , mypolls 0 +thr b15b4000 , status 1 +connecting thr b15b4000 , thread 11160 , mypolls 0 +myconn 0 connecting thr b15b4000 , thread 11160 , mypolls 0 +thr b15b4180 , status 1 +connecting thr b15b4180 , thread 11161 , mypolls 0 +myconn 0 connecting thr b15b4180 , thread 11161 , mypolls 0 +thr b15b4300 , status 1 +connecting thr b15b4300 , thread 11162 , mypolls 0 +myconn 0 connecting thr b15b4300 , thread 11162 , mypolls 0 +thr b15b4480 , status 1 +connecting thr b15b4480 , thread 11163 , mypolls 0 +myconn 0 connecting thr b15b4480 , thread 11163 , mypolls 0 +thr b15b4600 , status 1 +connecting thr b15b4600 , thread 11164 , mypolls 0 +myconn 0 connecting thr b15b4600 , thread 11164 , mypolls 0 +thr b15b4780 , status 1 +connecting thr b15b4780 , thread 11165 , mypolls 0 +myconn 0 connecting thr b15b4780 , thread 11165 , mypolls 0 +thr b15b4900 , status 1 +connecting thr b15b4900 , thread 11166 , mypolls 0 +myconn 0 connecting thr b15b4900 , thread 11166 , mypolls 0 +thr b15b4a80 , status 1 +connecting thr b15b4a80 , thread 11167 , mypolls 0 +myconn 0 connecting thr b15b4a80 , thread 11167 , mypolls 0 +thr b15b4c00 , status 1 +connecting thr b15b4c00 , thread 11168 , mypolls 0 +myconn 0 connecting thr b15b4c00 , thread 11168 , mypolls 0 +thr b15b4d80 , status 1 +connecting thr b15b4d80 , thread 11169 , mypolls 0 +myconn 0 connecting thr b15b4d80 , thread 11169 , mypolls 0 +thr b15b4f00 , status 1 +connecting thr b15b4f00 , thread 11170 , mypolls 0 +myconn 0 connecting thr b15b4f00 , thread 11170 , mypolls 0 +thr b15b5080 , status 1 +connecting thr b15b5080 , thread 11171 , mypolls 0 +myconn 0 connecting thr b15b5080 , thread 11171 , mypolls 0 +thr b15b5200 , status 1 +connecting thr b15b5200 , thread 11172 , mypolls 0 +myconn 0 connecting thr b15b5200 , thread 11172 , mypolls 0 +thr b15b5380 , status 1 +connecting thr b15b5380 , thread 11173 , mypolls 0 +myconn 0 connecting thr b15b5380 , thread 11173 , mypolls 0 +thr b15b5500 , status 1 +connecting thr b15b5500 , thread 11174 , mypolls 0 +myconn 0 connecting thr b15b5500 , thread 11174 , mypolls 0 +thr b15b5680 , status 1 +connecting thr b15b5680 , thread 11175 , mypolls 0 +myconn 0 connecting thr b15b5680 , thread 11175 , mypolls 0 +thr b15b5800 , status 1 +connecting thr b15b5800 , thread 11176 , mypolls 0 +myconn 0 connecting thr b15b5800 , thread 11176 , mypolls 0 +thr b15b5980 , status 1 +connecting thr b15b5980 , thread 11177 , mypolls 0 +myconn 0 connecting thr b15b5980 , thread 11177 , mypolls 0 +thr b15b5b00 , status 1 +connecting thr b15b5b00 , thread 11178 , mypolls 0 +myconn 0 connecting thr b15b5b00 , thread 11178 , mypolls 0 +thr b15b5c80 , status 1 +connecting thr b15b5c80 , thread 11179 , mypolls 0 +myconn 0 connecting thr b15b5c80 , thread 11179 , mypolls 0 +thr b15b5e00 , status 1 +connecting thr b15b5e00 , thread 11180 , mypolls 0 +myconn 0 connecting thr b15b5e00 , thread 11180 , mypolls 0 +thr b15b5f80 , status 1 +connecting thr b15b5f80 , thread 11181 , mypolls 0 +myconn 0 connecting thr b15b5f80 , thread 11181 , mypolls 0 +thr b15b6100 , status 1 +connecting thr b15b6100 , thread 11182 , mypolls 0 +myconn 0 connecting thr b15b6100 , thread 11182 , mypolls 0 +thr b15b6280 , status 1 +connecting thr b15b6280 , thread 11183 , mypolls 0 +myconn 0 connecting thr b15b6280 , thread 11183 , mypolls 0 +thr b15b6400 , status 1 +connecting thr b15b6400 , thread 11184 , mypolls 0 +myconn 0 connecting thr b15b6400 , thread 11184 , mypolls 0 +thr b15b6580 , status 1 +connecting thr b15b6580 , thread 11185 , mypolls 0 +myconn 0 connecting thr b15b6580 , thread 11185 , mypolls 0 +thr b15b6700 , status 1 +connecting thr b15b6700 , thread 11186 , mypolls 0 +myconn 0 connecting thr b15b6700 , thread 11186 , mypolls 0 +thr b15b6880 , status 1 +connecting thr b15b6880 , thread 11187 , mypolls 0 +myconn 0 connecting thr b15b6880 , thread 11187 , mypolls 0 +thr b15b6a00 , status 1 +connecting thr b15b6a00 , thread 11188 , mypolls 0 +myconn 0 connecting thr b15b6a00 , thread 11188 , mypolls 0 +thr b15b6b80 , status 1 +connecting thr b15b6b80 , thread 11189 , mypolls 0 +myconn 0 connecting thr b15b6b80 , thread 11189 , mypolls 0 +thr b15b6d00 , status 1 +connecting thr b15b6d00 , thread 11190 , mypolls 0 +myconn 0 connecting thr b15b6d00 , thread 11190 , mypolls 0 +thr b15b6e80 , status 1 +connecting thr b15b6e80 , thread 11191 , mypolls 0 +myconn 0 connecting thr b15b6e80 , thread 11191 , mypolls 0 +thr b13fa000 , status 1 +connecting thr b13fa000 , thread 11192 , mypolls 0 +myconn 0 connecting thr b13fa000 , thread 11192 , mypolls 0 +thr b13fa180 , status 1 +connecting thr b13fa180 , thread 11193 , mypolls 0 +myconn 0 connecting thr b13fa180 , thread 11193 , mypolls 0 +thr b13fa300 , status 1 +connecting thr b13fa300 , thread 11194 , mypolls 0 +myconn 0 connecting thr b13fa300 , thread 11194 , mypolls 0 +thr b13fa480 , status 1 +connecting thr b13fa480 , thread 11195 , mypolls 0 +myconn 0 connecting thr b13fa480 , thread 11195 , mypolls 0 +thr b13fa600 , status 1 +connecting thr b13fa600 , thread 11196 , mypolls 0 +myconn 0 connecting thr b13fa600 , thread 11196 , mypolls 0 +thr b13fa780 , status 1 +connecting thr b13fa780 , thread 11197 , mypolls 0 +myconn 0 connecting thr b13fa780 , thread 11197 , mypolls 0 +thr b13fa900 , status 1 +connecting thr b13fa900 , thread 11198 , mypolls 0 +myconn 0 connecting thr b13fa900 , thread 11198 , mypolls 0 +thr b13faa80 , status 1 +connecting thr b13faa80 , thread 11199 , mypolls 0 +myconn 0 connecting thr b13faa80 , thread 11199 , mypolls 0 +thr b13fac00 , status 1 +connecting thr b13fac00 , thread 11200 , mypolls 0 +myconn 0 connecting thr b13fac00 , thread 11200 , mypolls 0 +thr b13fad80 , status 1 +connecting thr b13fad80 , thread 11201 , mypolls 0 +myconn 0 connecting thr b13fad80 , thread 11201 , mypolls 0 +thr b13faf00 , status 1 +connecting thr b13faf00 , thread 11202 , mypolls 0 +myconn 0 connecting thr b13faf00 , thread 11202 , mypolls 0 +thr b13fb080 , status 1 +connecting thr b13fb080 , thread 11203 , mypolls 0 +myconn 0 connecting thr b13fb080 , thread 11203 , mypolls 0 +thr b13fb200 , status 1 +connecting thr b13fb200 , thread 11204 , mypolls 0 +myconn 0 connecting thr b13fb200 , thread 11204 , mypolls 0 +thr b13fb380 , status 1 +connecting thr b13fb380 , thread 11205 , mypolls 0 +myconn 0 connecting thr b13fb380 , thread 11205 , mypolls 0 +thr b13fb500 , status 1 +connecting thr b13fb500 , thread 11206 , mypolls 0 +myconn 0 connecting thr b13fb500 , thread 11206 , mypolls 0 +thr b13fb680 , status 1 +connecting thr b13fb680 , thread 11207 , mypolls 0 +myconn 0 connecting thr b13fb680 , thread 11207 , mypolls 0 +thr b13fb800 , status 1 +connecting thr b13fb800 , thread 11208 , mypolls 0 +myconn 0 connecting thr b13fb800 , thread 11208 , mypolls 0 +thr b13fb980 , status 1 +connecting thr b13fb980 , thread 11209 , mypolls 0 +myconn 0 connecting thr b13fb980 , thread 11209 , mypolls 0 +thr b13fbb00 , status 1 +connecting thr b13fbb00 , thread 11210 , mypolls 0 +myconn 0 connecting thr b13fbb00 , thread 11210 , mypolls 0 +thr b13fbc80 , status 1 +connecting thr b13fbc80 , thread 11211 , mypolls 0 +myconn 0 connecting thr b13fbc80 , thread 11211 , mypolls 0 +thr b13fbe00 , status 1 +connecting thr b13fbe00 , thread 11212 , mypolls 0 +myconn 0 connecting thr b13fbe00 , thread 11212 , mypolls 0 +thr b13fbf80 , status 1 +connecting thr b13fbf80 , thread 11213 , mypolls 0 +myconn 0 connecting thr b13fbf80 , thread 11213 , mypolls 0 +thr b13fc100 , status 1 +connecting thr b13fc100 , thread 11214 , mypolls 0 +myconn 0 connecting thr b13fc100 , thread 11214 , mypolls 0 +thr b13fc280 , status 1 +connecting thr b13fc280 , thread 11215 , mypolls 0 +myconn 0 connecting thr b13fc280 , thread 11215 , mypolls 0 +thr b13fc400 , status 1 +connecting thr b13fc400 , thread 11216 , mypolls 0 +myconn 0 connecting thr b13fc400 , thread 11216 , mypolls 0 +thr b13fc580 , status 1 +connecting thr b13fc580 , thread 11217 , mypolls 0 +myconn 0 connecting thr b13fc580 , thread 11217 , mypolls 0 +thr b13fc700 , status 1 +connecting thr b13fc700 , thread 11218 , mypolls 0 +myconn 0 connecting thr b13fc700 , thread 11218 , mypolls 0 +thr b13fc880 , status 1 +connecting thr b13fc880 , thread 11219 , mypolls 0 +myconn 0 connecting thr b13fc880 , thread 11219 , mypolls 0 +thr b13fca00 , status 1 +connecting thr b13fca00 , thread 11220 , mypolls 0 +myconn 0 connecting thr b13fca00 , thread 11220 , mypolls 0 +thr b13fcb80 , status 1 +connecting thr b13fcb80 , thread 11221 , mypolls 0 +myconn 0 connecting thr b13fcb80 , thread 11221 , mypolls 0 +thr b13fcd00 , status 1 +connecting thr b13fcd00 , thread 11222 , mypolls 0 +myconn 0 connecting thr b13fcd00 , thread 11222 , mypolls 0 +thr b13fce80 , status 1 +connecting thr b13fce80 , thread 11223 , mypolls 0 +myconn 0 connecting thr b13fce80 , thread 11223 , mypolls 0 +thr b11fc000 , status 1 +connecting thr b11fc000 , thread 11224 , mypolls 0 +myconn 0 connecting thr b11fc000 , thread 11224 , mypolls 0 +thr b11fc180 , status 1 +connecting thr b11fc180 , thread 11225 , mypolls 0 +myconn 0 connecting thr b11fc180 , thread 11225 , mypolls 0 +thr b11fc300 , status 1 +connecting thr b11fc300 , thread 11226 , mypolls 0 +myconn 0 connecting thr b11fc300 , thread 11226 , mypolls 0 +thr b11fc480 , status 1 +connecting thr b11fc480 , thread 11227 , mypolls 0 +myconn 0 connecting thr b11fc480 , thread 11227 , mypolls 0 +thr b11fc600 , status 1 +connecting thr b11fc600 , thread 11228 , mypolls 0 +myconn 0 connecting thr b11fc600 , thread 11228 , mypolls 0 +thr b11fc780 , status 1 +connecting thr b11fc780 , thread 11229 , mypolls 0 +myconn 0 connecting thr b11fc780 , thread 11229 , mypolls 0 +thr b11fc900 , status 1 +connecting thr b11fc900 , thread 11230 , mypolls 0 +myconn 0 connecting thr b11fc900 , thread 11230 , mypolls 0 +thr b11fca80 , status 1 +connecting thr b11fca80 , thread 11231 , mypolls 0 +myconn 0 connecting thr b11fca80 , thread 11231 , mypolls 0 +thr b11fcc00 , status 1 +connecting thr b11fcc00 , thread 11232 , mypolls 0 +myconn 0 connecting thr b11fcc00 , thread 11232 , mypolls 0 +thr b11fcd80 , status 1 +connecting thr b11fcd80 , thread 11233 , mypolls 0 +myconn 0 connecting thr b11fcd80 , thread 11233 , mypolls 0 +thr b11fcf00 , status 1 +connecting thr b11fcf00 , thread 11234 , mypolls 0 +myconn 0 connecting thr b11fcf00 , thread 11234 , mypolls 0 +thr b11fd080 , status 1 +connecting thr b11fd080 , thread 11235 , mypolls 0 +myconn 0 connecting thr b11fd080 , thread 11235 , mypolls 0 +thr b11fd200 , status 1 +connecting thr b11fd200 , thread 11236 , mypolls 0 +myconn 0 connecting thr b11fd200 , thread 11236 , mypolls 0 +thr b11fd380 , status 1 +connecting thr b11fd380 , thread 11237 , mypolls 0 +myconn 0 connecting thr b11fd380 , thread 11237 , mypolls 0 +thr b11fd500 , status 1 +connecting thr b11fd500 , thread 11238 , mypolls 0 +myconn 0 connecting thr b11fd500 , thread 11238 , mypolls 0 +thr b11fd680 , status 1 +connecting thr b11fd680 , thread 11239 , mypolls 0 +myconn 0 connecting thr b11fd680 , thread 11239 , mypolls 0 +thr b11fd800 , status 1 +connecting thr b11fd800 , thread 11240 , mypolls 0 +myconn 0 connecting thr b11fd800 , thread 11240 , mypolls 0 +thr b11fd980 , status 1 +connecting thr b11fd980 , thread 11241 , mypolls 0 +myconn 0 connecting thr b11fd980 , thread 11241 , mypolls 0 +thr b11fdb00 , status 1 +connecting thr b11fdb00 , thread 11242 , mypolls 0 +myconn 0 connecting thr b11fdb00 , thread 11242 , mypolls 0 +thr b11fdc80 , status 1 +connecting thr b11fdc80 , thread 11243 , mypolls 0 +myconn 0 connecting thr b11fdc80 , thread 11243 , mypolls 0 +thr b11fde00 , status 1 +connecting thr b11fde00 , thread 11244 , mypolls 0 +myconn 0 connecting thr b11fde00 , thread 11244 , mypolls 0 +thr b11fdf80 , status 1 +connecting thr b11fdf80 , thread 11245 , mypolls 0 +myconn 0 connecting thr b11fdf80 , thread 11245 , mypolls 0 +thr b11fe100 , status 1 +connecting thr b11fe100 , thread 11246 , mypolls 0 +myconn 0 connecting thr b11fe100 , thread 11246 , mypolls 0 +thr b11fe280 , status 1 +connecting thr b11fe280 , thread 11247 , mypolls 0 +myconn 0 connecting thr b11fe280 , thread 11247 , mypolls 0 +thr b11fe400 , status 1 +connecting thr b11fe400 , thread 11248 , mypolls 0 +myconn 0 connecting thr b11fe400 , thread 11248 , mypolls 0 +thr b11fe580 , status 1 +connecting thr b11fe580 , thread 11249 , mypolls 0 +myconn 0 connecting thr b11fe580 , thread 11249 , mypolls 0 +thr b11fe700 , status 1 +connecting thr b11fe700 , thread 11250 , mypolls 0 +myconn 0 connecting thr b11fe700 , thread 11250 , mypolls 0 +thr b11fe880 , status 1 +connecting thr b11fe880 , thread 11251 , mypolls 0 +myconn 0 connecting thr b11fe880 , thread 11251 , mypolls 0 +thr b11fea00 , status 1 +connecting thr b11fea00 , thread 11252 , mypolls 0 +myconn 0 connecting thr b11fea00 , thread 11252 , mypolls 0 +thr b11feb80 , status 1 +connecting thr b11feb80 , thread 11253 , mypolls 0 +myconn 0 connecting thr b11feb80 , thread 11253 , mypolls 0 +thr b11fed00 , status 1 +connecting thr b11fed00 , thread 11254 , mypolls 0 +myconn 0 connecting thr b11fed00 , thread 11254 , mypolls 0 +thr b11fee80 , status 1 +connecting thr b11fee80 , thread 11255 , mypolls 0 +myconn 0 connecting thr b11fee80 , thread 11255 , mypolls 0 +thr b0ce8000 , status 1 +connecting thr b0ce8000 , thread 11256 , mypolls 0 +myconn 0 connecting thr b0ce8000 , thread 11256 , mypolls 0 +thr b0ce8180 , status 1 +connecting thr b0ce8180 , thread 11257 , mypolls 0 +myconn 0 connecting thr b0ce8180 , thread 11257 , mypolls 0 +thr b0ce8300 , status 1 +connecting thr b0ce8300 , thread 11258 , mypolls 0 +myconn 0 connecting thr b0ce8300 , thread 11258 , mypolls 0 +thr b0ce8480 , status 1 +connecting thr b0ce8480 , thread 11259 , mypolls 0 +myconn 0 connecting thr b0ce8480 , thread 11259 , mypolls 0 +thr b0ce8600 , status 1 +connecting thr b0ce8600 , thread 11260 , mypolls 0 +myconn 0 connecting thr b0ce8600 , thread 11260 , mypolls 0 +thr b0ce8780 , status 1 +connecting thr b0ce8780 , thread 11261 , mypolls 0 +myconn 0 connecting thr b0ce8780 , thread 11261 , mypolls 0 +thr b0ce8900 , status 1 +connecting thr b0ce8900 , thread 11262 , mypolls 0 +myconn 0 connecting thr b0ce8900 , thread 11262 , mypolls 0 +thr b0ce8a80 , status 1 +connecting thr b0ce8a80 , thread 11263 , mypolls 0 +myconn 0 connecting thr b0ce8a80 , thread 11263 , mypolls 0 +thr b0ce8c00 , status 1 +connecting thr b0ce8c00 , thread 11264 , mypolls 0 +myconn 0 connecting thr b0ce8c00 , thread 11264 , mypolls 0 +thr b0ce8d80 , status 1 +connecting thr b0ce8d80 , thread 11265 , mypolls 0 +myconn 0 connecting thr b0ce8d80 , thread 11265 , mypolls 0 +thr b0ce8f00 , status 1 +connecting thr b0ce8f00 , thread 11266 , mypolls 0 +myconn 0 connecting thr b0ce8f00 , thread 11266 , mypolls 0 +thr b0ce9080 , status 1 +connecting thr b0ce9080 , thread 11267 , mypolls 0 +myconn 0 connecting thr b0ce9080 , thread 11267 , mypolls 0 +thr b0ce9200 , status 1 +connecting thr b0ce9200 , thread 11268 , mypolls 0 +myconn 0 connecting thr b0ce9200 , thread 11268 , mypolls 0 +thr b0ce9380 , status 1 +connecting thr b0ce9380 , thread 11269 , mypolls 0 +myconn 0 connecting thr b0ce9380 , thread 11269 , mypolls 0 +thr b0ce9500 , status 1 +connecting thr b0ce9500 , thread 11270 , mypolls 0 +myconn 0 connecting thr b0ce9500 , thread 11270 , mypolls 0 +thr b0ce9680 , status 1 +connecting thr b0ce9680 , thread 11271 , mypolls 0 +myconn 0 connecting thr b0ce9680 , thread 11271 , mypolls 0 +thr b0ce9800 , status 1 +connecting thr b0ce9800 , thread 11272 , mypolls 0 +myconn 0 connecting thr b0ce9800 , thread 11272 , mypolls 0 +thr b0ce9980 , status 1 +connecting thr b0ce9980 , thread 11273 , mypolls 0 +myconn 0 connecting thr b0ce9980 , thread 11273 , mypolls 0 +thr b0ce9b00 , status 1 +connecting thr b0ce9b00 , thread 11274 , mypolls 0 +myconn 0 connecting thr b0ce9b00 , thread 11274 , mypolls 0 +thr b0ce9c80 , status 1 +connecting thr b0ce9c80 , thread 11275 , mypolls 0 +myconn 0 connecting thr b0ce9c80 , thread 11275 , mypolls 0 +thr b0ce9e00 , status 1 +connecting thr b0ce9e00 , thread 11276 , mypolls 0 +myconn 0 connecting thr b0ce9e00 , thread 11276 , mypolls 0 +thr b0ce9f80 , status 1 +connecting thr b0ce9f80 , thread 11277 , mypolls 0 +myconn 0 connecting thr b0ce9f80 , thread 11277 , mypolls 0 +thr b0cea100 , status 1 +connecting thr b0cea100 , thread 11278 , mypolls 0 +myconn 0 connecting thr b0cea100 , thread 11278 , mypolls 0 +thr b0cea280 , status 1 +connecting thr b0cea280 , thread 11279 , mypolls 0 +myconn 0 connecting thr b0cea280 , thread 11279 , mypolls 0 +thr b0cea400 , status 1 +connecting thr b0cea400 , thread 11280 , mypolls 0 +myconn 0 connecting thr b0cea400 , thread 11280 , mypolls 0 +thr b0cea580 , status 1 +connecting thr b0cea580 , thread 11281 , mypolls 0 +myconn 0 connecting thr b0cea580 , thread 11281 , mypolls 0 +thr b0cea700 , status 1 +connecting thr b0cea700 , thread 11282 , mypolls 0 +myconn 0 connecting thr b0cea700 , thread 11282 , mypolls 0 +thr b0cea880 , status 1 +connecting thr b0cea880 , thread 11283 , mypolls 0 +myconn 0 connecting thr b0cea880 , thread 11283 , mypolls 0 +thr b0ceaa00 , status 1 +connecting thr b0ceaa00 , thread 11284 , mypolls 0 +myconn 0 connecting thr b0ceaa00 , thread 11284 , mypolls 0 +thr b0ceab80 , status 1 +connecting thr b0ceab80 , thread 11285 , mypolls 0 +myconn 0 connecting thr b0ceab80 , thread 11285 , mypolls 0 +thr b0cead00 , status 1 +connecting thr b0cead00 , thread 11286 , mypolls 0 +myconn 0 connecting thr b0cead00 , thread 11286 , mypolls 0 +thr b0ceae80 , status 1 +connecting thr b0ceae80 , thread 11287 , mypolls 0 +myconn 0 connecting thr b0ceae80 , thread 11287 , mypolls 0 +thr b0b4e000 , status 1 +connecting thr b0b4e000 , thread 11288 , mypolls 0 +myconn 0 connecting thr b0b4e000 , thread 11288 , mypolls 0 +thr b0b4e180 , status 1 +connecting thr b0b4e180 , thread 11289 , mypolls 0 +myconn 0 connecting thr b0b4e180 , thread 11289 , mypolls 0 +thr b0b4e300 , status 1 +connecting thr b0b4e300 , thread 11290 , mypolls 0 +myconn 0 connecting thr b0b4e300 , thread 11290 , mypolls 0 +thr b0b4e480 , status 1 +connecting thr b0b4e480 , thread 11291 , mypolls 0 +myconn 0 connecting thr b0b4e480 , thread 11291 , mypolls 0 +thr b0b4e600 , status 1 +connecting thr b0b4e600 , thread 11292 , mypolls 0 +myconn 0 connecting thr b0b4e600 , thread 11292 , mypolls 0 +thr b0b4e780 , status 1 +connecting thr b0b4e780 , thread 11293 , mypolls 0 +myconn 0 connecting thr b0b4e780 , thread 11293 , mypolls 0 +thr b0b4e900 , status 1 +connecting thr b0b4e900 , thread 11294 , mypolls 0 +myconn 0 connecting thr b0b4e900 , thread 11294 , mypolls 0 +thr b0b4ea80 , status 1 +connecting thr b0b4ea80 , thread 11295 , mypolls 0 +myconn 0 connecting thr b0b4ea80 , thread 11295 , mypolls 0 +thr b0b4ec00 , status 1 +connecting thr b0b4ec00 , thread 11296 , mypolls 0 +myconn 0 connecting thr b0b4ec00 , thread 11296 , mypolls 0 +thr b0b4ed80 , status 1 +connecting thr b0b4ed80 , thread 11297 , mypolls 0 +myconn 0 connecting thr b0b4ed80 , thread 11297 , mypolls 0 +thr b0b4ef00 , status 1 +connecting thr b0b4ef00 , thread 11298 , mypolls 0 +myconn 0 connecting thr b0b4ef00 , thread 11298 , mypolls 0 +thr b0b4f080 , status 1 +connecting thr b0b4f080 , thread 11299 , mypolls 0 +myconn 0 connecting thr b0b4f080 , thread 11299 , mypolls 0 +thr b0b4f200 , status 1 +connecting thr b0b4f200 , thread 11300 , mypolls 0 +myconn 0 connecting thr b0b4f200 , thread 11300 , mypolls 0 +thr b0b4f380 , status 1 +connecting thr b0b4f380 , thread 11301 , mypolls 0 +myconn 0 connecting thr b0b4f380 , thread 11301 , mypolls 0 +thr b0b4f500 , status 1 +connecting thr b0b4f500 , thread 11302 , mypolls 0 +myconn 0 connecting thr b0b4f500 , thread 11302 , mypolls 0 +thr b0b4f680 , status 1 +connecting thr b0b4f680 , thread 11303 , mypolls 0 +myconn 0 connecting thr b0b4f680 , thread 11303 , mypolls 0 +thr b0b4f800 , status 1 +connecting thr b0b4f800 , thread 11304 , mypolls 0 +myconn 0 connecting thr b0b4f800 , thread 11304 , mypolls 0 +thr b0b4f980 , status 1 +connecting thr b0b4f980 , thread 11305 , mypolls 0 +myconn 0 connecting thr b0b4f980 , thread 11305 , mypolls 0 +thr b0b4fb00 , status 1 +connecting thr b0b4fb00 , thread 11306 , mypolls 0 +myconn 0 connecting thr b0b4fb00 , thread 11306 , mypolls 0 +thr b0b4fc80 , status 1 +connecting thr b0b4fc80 , thread 11307 , mypolls 0 +myconn 0 connecting thr b0b4fc80 , thread 11307 , mypolls 0 +thr b0b4fe00 , status 1 +connecting thr b0b4fe00 , thread 11308 , mypolls 0 +myconn 0 connecting thr b0b4fe00 , thread 11308 , mypolls 0 +thr b0b4ff80 , status 1 +connecting thr b0b4ff80 , thread 11309 , mypolls 0 +myconn 0 connecting thr b0b4ff80 , thread 11309 , mypolls 0 +thr b0b50100 , status 1 +connecting thr b0b50100 , thread 11310 , mypolls 0 +myconn 0 connecting thr b0b50100 , thread 11310 , mypolls 0 +thr b0b50280 , status 1 +connecting thr b0b50280 , thread 11311 , mypolls 0 +myconn 0 connecting thr b0b50280 , thread 11311 , mypolls 0 +thr b0b50400 , status 1 +connecting thr b0b50400 , thread 11312 , mypolls 0 +myconn 0 connecting thr b0b50400 , thread 11312 , mypolls 0 +thr b0b50580 , status 1 +connecting thr b0b50580 , thread 11313 , mypolls 0 +myconn 0 connecting thr b0b50580 , thread 11313 , mypolls 0 +thr b0b50700 , status 1 +connecting thr b0b50700 , thread 11314 , mypolls 0 +myconn 0 connecting thr b0b50700 , thread 11314 , mypolls 0 +thr b0b50880 , status 1 +connecting thr b0b50880 , thread 11315 , mypolls 0 +myconn 0 connecting thr b0b50880 , thread 11315 , mypolls 0 +thr b0b50a00 , status 1 +connecting thr b0b50a00 , thread 11316 , mypolls 0 +myconn 0 connecting thr b0b50a00 , thread 11316 , mypolls 0 +thr b0b50b80 , status 1 +connecting thr b0b50b80 , thread 11317 , mypolls 0 +myconn 0 connecting thr b0b50b80 , thread 11317 , mypolls 0 +thr b0b50d00 , status 1 +connecting thr b0b50d00 , thread 11318 , mypolls 0 +myconn 0 connecting thr b0b50d00 , thread 11318 , mypolls 0 +thr b0b50e80 , status 1 +connecting thr b0b50e80 , thread 11319 , mypolls 0 +myconn 0 connecting thr b0b50e80 , thread 11319 , mypolls 0 +thr b09b1000 , status 1 +connecting thr b09b1000 , thread 11320 , mypolls 0 +myconn 0 connecting thr b09b1000 , thread 11320 , mypolls 0 +thr b09b1180 , status 1 +connecting thr b09b1180 , thread 11321 , mypolls 0 +myconn 0 connecting thr b09b1180 , thread 11321 , mypolls 0 +thr b09b1300 , status 1 +connecting thr b09b1300 , thread 11322 , mypolls 0 +myconn 0 connecting thr b09b1300 , thread 11322 , mypolls 0 +thr b09b1480 , status 1 +connecting thr b09b1480 , thread 11323 , mypolls 0 +myconn 0 connecting thr b09b1480 , thread 11323 , mypolls 0 +thr b09b1600 , status 1 +connecting thr b09b1600 , thread 11324 , mypolls 0 +myconn 0 connecting thr b09b1600 , thread 11324 , mypolls 0 +thr b09b1780 , status 1 +connecting thr b09b1780 , thread 11325 , mypolls 0 +myconn 0 connecting thr b09b1780 , thread 11325 , mypolls 0 +thr b09b1900 , status 1 +connecting thr b09b1900 , thread 11326 , mypolls 0 +myconn 0 connecting thr b09b1900 , thread 11326 , mypolls 0 +thr b09b1a80 , status 1 +connecting thr b09b1a80 , thread 11327 , mypolls 0 +myconn 0 connecting thr b09b1a80 , thread 11327 , mypolls 0 +thr b09b1c00 , status 1 +connecting thr b09b1c00 , thread 11328 , mypolls 0 +myconn 0 connecting thr b09b1c00 , thread 11328 , mypolls 0 +thr b09b1d80 , status 1 +connecting thr b09b1d80 , thread 11329 , mypolls 0 +myconn 0 connecting thr b09b1d80 , thread 11329 , mypolls 0 +thr b09b1f00 , status 1 +connecting thr b09b1f00 , thread 11330 , mypolls 0 +myconn 0 connecting thr b09b1f00 , thread 11330 , mypolls 0 +thr b09b2080 , status 1 +connecting thr b09b2080 , thread 11331 , mypolls 0 +myconn 0 connecting thr b09b2080 , thread 11331 , mypolls 0 +thr b09b2200 , status 1 +connecting thr b09b2200 , thread 11332 , mypolls 0 +myconn 0 connecting thr b09b2200 , thread 11332 , mypolls 0 +thr b09b2380 , status 1 +connecting thr b09b2380 , thread 11333 , mypolls 0 +myconn 0 connecting thr b09b2380 , thread 11333 , mypolls 0 +thr b09b2500 , status 1 +connecting thr b09b2500 , thread 11334 , mypolls 0 +myconn 0 connecting thr b09b2500 , thread 11334 , mypolls 0 +thr b09b2680 , status 1 +connecting thr b09b2680 , thread 11335 , mypolls 0 +myconn 0 connecting thr b09b2680 , thread 11335 , mypolls 0 +thr b09b2800 , status 1 +connecting thr b09b2800 , thread 11336 , mypolls 0 +myconn 0 connecting thr b09b2800 , thread 11336 , mypolls 0 +thr b09b2980 , status 1 +connecting thr b09b2980 , thread 11337 , mypolls 0 +myconn 0 connecting thr b09b2980 , thread 11337 , mypolls 0 +thr b09b2b00 , status 1 +connecting thr b09b2b00 , thread 11338 , mypolls 0 +myconn 0 connecting thr b09b2b00 , thread 11338 , mypolls 0 +thr b09b2c80 , status 1 +connecting thr b09b2c80 , thread 11339 , mypolls 0 +myconn 0 connecting thr b09b2c80 , thread 11339 , mypolls 0 +thr b09b2e00 , status 1 +connecting thr b09b2e00 , thread 11340 , mypolls 0 +myconn 0 connecting thr b09b2e00 , thread 11340 , mypolls 0 +thr b09b2f80 , status 1 +connecting thr b09b2f80 , thread 11341 , mypolls 0 +myconn 0 connecting thr b09b2f80 , thread 11341 , mypolls 0 +thr b09b3100 , status 1 +connecting thr b09b3100 , thread 11342 , mypolls 0 +myconn 0 connecting thr b09b3100 , thread 11342 , mypolls 0 +thr b09b3280 , status 1 +connecting thr b09b3280 , thread 11343 , mypolls 0 +myconn 0 connecting thr b09b3280 , thread 11343 , mypolls 0 +thr b09b3400 , status 1 +connecting thr b09b3400 , thread 11344 , mypolls 0 +myconn 0 connecting thr b09b3400 , thread 11344 , mypolls 0 +thr b09b3580 , status 1 +connecting thr b09b3580 , thread 11345 , mypolls 0 +myconn 0 connecting thr b09b3580 , thread 11345 , mypolls 0 +thr b09b3700 , status 1 +connecting thr b09b3700 , thread 11346 , mypolls 0 +myconn 0 connecting thr b09b3700 , thread 11346 , mypolls 0 +thr b09b3880 , status 1 +connecting thr b09b3880 , thread 11347 , mypolls 0 +myconn 0 connecting thr b09b3880 , thread 11347 , mypolls 0 +thr b09b3a00 , status 1 +connecting thr b09b3a00 , thread 11348 , mypolls 0 +myconn 0 connecting thr b09b3a00 , thread 11348 , mypolls 0 +thr b09b3b80 , status 1 +connecting thr b09b3b80 , thread 11349 , mypolls 0 +myconn 0 connecting thr b09b3b80 , thread 11349 , mypolls 0 +thr b09b3d00 , status 1 +connecting thr b09b3d00 , thread 11350 , mypolls 0 +myconn 0 connecting thr b09b3d00 , thread 11350 , mypolls 0 +thr b09b3e80 , status 1 +connecting thr b09b3e80 , thread 11351 , mypolls 0 +myconn 0 connecting thr b09b3e80 , thread 11351 , mypolls 0 +thr b07f8000 , status 1 +connecting thr b07f8000 , thread 11352 , mypolls 0 +myconn 0 connecting thr b07f8000 , thread 11352 , mypolls 0 +thr b07f8180 , status 1 +connecting thr b07f8180 , thread 11353 , mypolls 0 +myconn 0 connecting thr b07f8180 , thread 11353 , mypolls 0 +thr b07f8300 , status 1 +connecting thr b07f8300 , thread 11354 , mypolls 0 +myconn 0 connecting thr b07f8300 , thread 11354 , mypolls 0 +thr b07f8480 , status 1 +connecting thr b07f8480 , thread 11355 , mypolls 0 +myconn 0 connecting thr b07f8480 , thread 11355 , mypolls 0 +thr b07f8600 , status 1 +connecting thr b07f8600 , thread 11356 , mypolls 0 +myconn 0 connecting thr b07f8600 , thread 11356 , mypolls 0 +thr b07f8780 , status 1 +connecting thr b07f8780 , thread 11357 , mypolls 0 +myconn 0 connecting thr b07f8780 , thread 11357 , mypolls 0 +thr b07f8900 , status 1 +connecting thr b07f8900 , thread 11358 , mypolls 0 +myconn 0 connecting thr b07f8900 , thread 11358 , mypolls 0 +thr b07f8a80 , status 1 +connecting thr b07f8a80 , thread 11359 , mypolls 0 +myconn 0 connecting thr b07f8a80 , thread 11359 , mypolls 0 +thr b07f8c00 , status 1 +connecting thr b07f8c00 , thread 11360 , mypolls 0 +myconn 0 connecting thr b07f8c00 , thread 11360 , mypolls 0 +thr b07f8d80 , status 1 +connecting thr b07f8d80 , thread 11361 , mypolls 0 +myconn 0 connecting thr b07f8d80 , thread 11361 , mypolls 0 +thr b07f8f00 , status 1 +connecting thr b07f8f00 , thread 11362 , mypolls 0 +myconn 0 connecting thr b07f8f00 , thread 11362 , mypolls 0 +thr b07f9080 , status 1 +connecting thr b07f9080 , thread 11363 , mypolls 0 +myconn 0 connecting thr b07f9080 , thread 11363 , mypolls 0 +thr b07f9200 , status 1 +connecting thr b07f9200 , thread 11364 , mypolls 0 +myconn 0 connecting thr b07f9200 , thread 11364 , mypolls 0 +thr b07f9380 , status 1 +connecting thr b07f9380 , thread 11365 , mypolls 0 +myconn 0 connecting thr b07f9380 , thread 11365 , mypolls 0 +thr b07f9500 , status 1 +connecting thr b07f9500 , thread 11366 , mypolls 0 +myconn 0 connecting thr b07f9500 , thread 11366 , mypolls 0 +thr b07f9680 , status 1 +connecting thr b07f9680 , thread 11367 , mypolls 0 +myconn 0 connecting thr b07f9680 , thread 11367 , mypolls 0 +thr b07f9800 , status 1 +connecting thr b07f9800 , thread 11368 , mypolls 0 +myconn 0 connecting thr b07f9800 , thread 11368 , mypolls 0 +thr b07f9980 , status 1 +connecting thr b07f9980 , thread 11369 , mypolls 0 +myconn 0 connecting thr b07f9980 , thread 11369 , mypolls 0 +thr b07f9b00 , status 1 +connecting thr b07f9b00 , thread 11370 , mypolls 0 +myconn 0 connecting thr b07f9b00 , thread 11370 , mypolls 0 +thr b07f9c80 , status 1 +connecting thr b07f9c80 , thread 11371 , mypolls 0 +myconn 0 connecting thr b07f9c80 , thread 11371 , mypolls 0 +thr b07f9e00 , status 1 +connecting thr b07f9e00 , thread 11372 , mypolls 0 +myconn 0 connecting thr b07f9e00 , thread 11372 , mypolls 0 +thr b07f9f80 , status 1 +connecting thr b07f9f80 , thread 11373 , mypolls 0 +myconn 0 connecting thr b07f9f80 , thread 11373 , mypolls 0 +thr b07fa100 , status 1 +connecting thr b07fa100 , thread 11374 , mypolls 0 +myconn 0 connecting thr b07fa100 , thread 11374 , mypolls 0 +thr b07fa280 , status 1 +connecting thr b07fa280 , thread 11375 , mypolls 0 +myconn 0 connecting thr b07fa280 , thread 11375 , mypolls 0 +thr b07fa400 , status 1 +connecting thr b07fa400 , thread 11376 , mypolls 0 +myconn 0 connecting thr b07fa400 , thread 11376 , mypolls 0 +thr b07fa580 , status 1 +connecting thr b07fa580 , thread 11377 , mypolls 0 +myconn 0 connecting thr b07fa580 , thread 11377 , mypolls 0 +thr b07fa700 , status 1 +connecting thr b07fa700 , thread 11378 , mypolls 0 +myconn 0 connecting thr b07fa700 , thread 11378 , mypolls 0 +thr b07fa880 , status 1 +connecting thr b07fa880 , thread 11379 , mypolls 0 +myconn 0 connecting thr b07fa880 , thread 11379 , mypolls 0 +thr b07faa00 , status 1 +connecting thr b07faa00 , thread 11380 , mypolls 0 +myconn 0 connecting thr b07faa00 , thread 11380 , mypolls 0 +thr b07fab80 , status 1 +connecting thr b07fab80 , thread 11381 , mypolls 0 +myconn 0 connecting thr b07fab80 , thread 11381 , mypolls 0 +thr b07fad00 , status 1 +connecting thr b07fad00 , thread 11382 , mypolls 0 +myconn 0 connecting thr b07fad00 , thread 11382 , mypolls 0 +thr b07fae80 , status 1 +connecting thr b07fae80 , thread 11383 , mypolls 0 +myconn 0 connecting thr b07fae80 , thread 11383 , mypolls 0 +thr b0282000 , status 1 +connecting thr b0282000 , thread 11384 , mypolls 0 +myconn 0 connecting thr b0282000 , thread 11384 , mypolls 0 +thr b0282180 , status 1 +connecting thr b0282180 , thread 11385 , mypolls 0 +myconn 0 connecting thr b0282180 , thread 11385 , mypolls 0 +thr b0282300 , status 1 +connecting thr b0282300 , thread 11386 , mypolls 0 +myconn 0 connecting thr b0282300 , thread 11386 , mypolls 0 +thr b0282480 , status 1 +connecting thr b0282480 , thread 11387 , mypolls 0 +myconn 0 connecting thr b0282480 , thread 11387 , mypolls 0 +thr b0282600 , status 1 +connecting thr b0282600 , thread 11388 , mypolls 0 +myconn 0 connecting thr b0282600 , thread 11388 , mypolls 0 +thr b0282780 , status 1 +connecting thr b0282780 , thread 11389 , mypolls 0 +myconn 0 connecting thr b0282780 , thread 11389 , mypolls 0 +thr b0282900 , status 1 +connecting thr b0282900 , thread 11390 , mypolls 0 +myconn 0 connecting thr b0282900 , thread 11390 , mypolls 0 +thr b0282a80 , status 1 +connecting thr b0282a80 , thread 11391 , mypolls 0 +myconn 0 connecting thr b0282a80 , thread 11391 , mypolls 0 +thr b0282c00 , status 1 +connecting thr b0282c00 , thread 11392 , mypolls 0 +myconn 0 connecting thr b0282c00 , thread 11392 , mypolls 0 +thr b0282d80 , status 1 +connecting thr b0282d80 , thread 11393 , mypolls 0 +myconn 0 connecting thr b0282d80 , thread 11393 , mypolls 0 +thr b0282f00 , status 1 +connecting thr b0282f00 , thread 11394 , mypolls 0 +myconn 0 connecting thr b0282f00 , thread 11394 , mypolls 0 +thr b0283080 , status 1 +connecting thr b0283080 , thread 11395 , mypolls 0 +myconn 0 connecting thr b0283080 , thread 11395 , mypolls 0 +thr b0283200 , status 1 +connecting thr b0283200 , thread 11396 , mypolls 0 +myconn 0 connecting thr b0283200 , thread 11396 , mypolls 0 +thr b0283380 , status 1 +connecting thr b0283380 , thread 11397 , mypolls 0 +myconn 0 connecting thr b0283380 , thread 11397 , mypolls 0 +thr b0283500 , status 1 +connecting thr b0283500 , thread 11398 , mypolls 0 +myconn 0 connecting thr b0283500 , thread 11398 , mypolls 0 +thr b0283680 , status 1 +connecting thr b0283680 , thread 11399 , mypolls 0 +myconn 0 connecting thr b0283680 , thread 11399 , mypolls 0 +thr b0283800 , status 1 +connecting thr b0283800 , thread 11400 , mypolls 0 +myconn 0 connecting thr b0283800 , thread 11400 , mypolls 0 +thr b0283980 , status 1 +connecting thr b0283980 , thread 11401 , mypolls 0 +myconn 0 connecting thr b0283980 , thread 11401 , mypolls 0 +thr b0283b00 , status 1 +connecting thr b0283b00 , thread 11402 , mypolls 0 +myconn 0 connecting thr b0283b00 , thread 11402 , mypolls 0 +thr b0283c80 , status 1 +connecting thr b0283c80 , thread 11403 , mypolls 0 +myconn 0 connecting thr b0283c80 , thread 11403 , mypolls 0 +thr b0283e00 , status 1 +connecting thr b0283e00 , thread 11404 , mypolls 0 +myconn 0 connecting thr b0283e00 , thread 11404 , mypolls 0 +thr b0283f80 , status 1 +connecting thr b0283f80 , thread 11405 , mypolls 0 +myconn 0 connecting thr b0283f80 , thread 11405 , mypolls 0 +thr b0284100 , status 1 +connecting thr b0284100 , thread 11406 , mypolls 0 +myconn 0 connecting thr b0284100 , thread 11406 , mypolls 0 +thr b0284280 , status 1 +connecting thr b0284280 , thread 11407 , mypolls 0 +myconn 0 connecting thr b0284280 , thread 11407 , mypolls 0 +thr b0284400 , status 1 +connecting thr b0284400 , thread 11408 , mypolls 0 +myconn 0 connecting thr b0284400 , thread 11408 , mypolls 0 +thr b0284580 , status 1 +connecting thr b0284580 , thread 11409 , mypolls 0 +myconn 0 connecting thr b0284580 , thread 11409 , mypolls 0 +thr b0284700 , status 1 +connecting thr b0284700 , thread 11410 , mypolls 0 +myconn 0 connecting thr b0284700 , thread 11410 , mypolls 0 +thr b0284880 , status 1 +connecting thr b0284880 , thread 11411 , mypolls 0 +myconn 0 connecting thr b0284880 , thread 11411 , mypolls 0 +thr b0284a00 , status 1 +connecting thr b0284a00 , thread 11412 , mypolls 0 +myconn 0 connecting thr b0284a00 , thread 11412 , mypolls 0 +thr b0284b80 , status 1 +connecting thr b0284b80 , thread 11413 , mypolls 0 +myconn 0 connecting thr b0284b80 , thread 11413 , mypolls 0 +thr b0284d00 , status 1 +connecting thr b0284d00 , thread 11414 , mypolls 0 +myconn 0 connecting thr b0284d00 , thread 11414 , mypolls 0 +thr b0284e80 , status 1 +connecting thr b0284e80 , thread 11415 , mypolls 0 +myconn 0 connecting thr b0284e80 , thread 11415 , mypolls 0 +thr b00e5000 , status 1 +connecting thr b00e5000 , thread 11416 , mypolls 0 +myconn 0 connecting thr b00e5000 , thread 11416 , mypolls 0 +thr b00e5180 , status 1 +connecting thr b00e5180 , thread 11417 , mypolls 0 +myconn 0 connecting thr b00e5180 , thread 11417 , mypolls 0 +thr b00e5300 , status 1 +connecting thr b00e5300 , thread 11418 , mypolls 0 +myconn 0 connecting thr b00e5300 , thread 11418 , mypolls 0 +thr b00e5480 , status 1 +connecting thr b00e5480 , thread 11419 , mypolls 0 +myconn 0 connecting thr b00e5480 , thread 11419 , mypolls 0 +thr b00e5600 , status 1 +connecting thr b00e5600 , thread 11420 , mypolls 0 +myconn 0 connecting thr b00e5600 , thread 11420 , mypolls 0 +thr b00e5780 , status 1 +connecting thr b00e5780 , thread 11421 , mypolls 0 +myconn 0 connecting thr b00e5780 , thread 11421 , mypolls 0 +thr b00e5900 , status 1 +connecting thr b00e5900 , thread 11422 , mypolls 0 +myconn 0 connecting thr b00e5900 , thread 11422 , mypolls 0 +thr b00e5a80 , status 1 +connecting thr b00e5a80 , thread 11423 , mypolls 0 +myconn 0 connecting thr b00e5a80 , thread 11423 , mypolls 0 +thr b00e5c00 , status 1 +connecting thr b00e5c00 , thread 11424 , mypolls 0 +myconn 0 connecting thr b00e5c00 , thread 11424 , mypolls 0 +thr b00e5d80 , status 1 +connecting thr b00e5d80 , thread 11425 , mypolls 0 +myconn 0 connecting thr b00e5d80 , thread 11425 , mypolls 0 +thr b00e5f00 , status 1 +connecting thr b00e5f00 , thread 11426 , mypolls 0 +myconn 0 connecting thr b00e5f00 , thread 11426 , mypolls 0 +thr b00e6080 , status 1 +connecting thr b00e6080 , thread 11427 , mypolls 0 +myconn 0 connecting thr b00e6080 , thread 11427 , mypolls 0 +thr b00e6200 , status 1 +connecting thr b00e6200 , thread 11428 , mypolls 0 +myconn 0 connecting thr b00e6200 , thread 11428 , mypolls 0 +thr b00e6380 , status 1 +connecting thr b00e6380 , thread 11429 , mypolls 0 +myconn 0 connecting thr b00e6380 , thread 11429 , mypolls 0 +thr b00e6500 , status 1 +connecting thr b00e6500 , thread 11430 , mypolls 0 +myconn 0 connecting thr b00e6500 , thread 11430 , mypolls 0 +thr b00e6680 , status 1 +connecting thr b00e6680 , thread 11431 , mypolls 0 +myconn 0 connecting thr b00e6680 , thread 11431 , mypolls 0 +thr b00e6800 , status 1 +connecting thr b00e6800 , thread 11432 , mypolls 0 +myconn 0 connecting thr b00e6800 , thread 11432 , mypolls 0 +thr b00e6980 , status 1 +connecting thr b00e6980 , thread 11433 , mypolls 0 +myconn 0 connecting thr b00e6980 , thread 11433 , mypolls 0 +thr b00e6b00 , status 1 +connecting thr b00e6b00 , thread 11434 , mypolls 0 +myconn 0 connecting thr b00e6b00 , thread 11434 , mypolls 0 +thr b00e6c80 , status 1 +connecting thr b00e6c80 , thread 11435 , mypolls 0 +myconn 0 connecting thr b00e6c80 , thread 11435 , mypolls 0 +thr b00e6e00 , status 1 +connecting thr b00e6e00 , thread 11436 , mypolls 0 +myconn 0 connecting thr b00e6e00 , thread 11436 , mypolls 0 +thr b00e6f80 , status 1 +connecting thr b00e6f80 , thread 11437 , mypolls 0 +myconn 0 connecting thr b00e6f80 , thread 11437 , mypolls 0 +thr b00e7100 , status 1 +connecting thr b00e7100 , thread 11438 , mypolls 0 +myconn 0 connecting thr b00e7100 , thread 11438 , mypolls 0 +thr b00e7280 , status 1 +connecting thr b00e7280 , thread 11439 , mypolls 0 +myconn 0 connecting thr b00e7280 , thread 11439 , mypolls 0 +thr b00e7400 , status 1 +connecting thr b00e7400 , thread 11440 , mypolls 0 +myconn 0 connecting thr b00e7400 , thread 11440 , mypolls 0 +thr b00e7580 , status 1 +connecting thr b00e7580 , thread 11441 , mypolls 0 +myconn 0 connecting thr b00e7580 , thread 11441 , mypolls 0 +thr b00e7700 , status 1 +connecting thr b00e7700 , thread 11442 , mypolls 0 +myconn 0 connecting thr b00e7700 , thread 11442 , mypolls 0 +thr b00e7880 , status 1 +connecting thr b00e7880 , thread 11443 , mypolls 0 +myconn 0 connecting thr b00e7880 , thread 11443 , mypolls 0 +thr b00e7a00 , status 1 +connecting thr b00e7a00 , thread 11444 , mypolls 0 +myconn 0 connecting thr b00e7a00 , thread 11444 , mypolls 0 +thr b00e7b80 , status 1 +connecting thr b00e7b80 , thread 11445 , mypolls 0 +myconn 0 connecting thr b00e7b80 , thread 11445 , mypolls 0 +thr b00e7d00 , status 1 +connecting thr b00e7d00 , thread 11446 , mypolls 0 +myconn 0 connecting thr b00e7d00 , thread 11446 , mypolls 0 +thr b00e7e80 , status 1 +connecting thr b00e7e80 , thread 11447 , mypolls 0 +myconn 0 connecting thr b00e7e80 , thread 11447 , mypolls 0 +thr aff44000 , status 1 +connecting thr aff44000 , thread 11448 , mypolls 0 +myconn 0 connecting thr aff44000 , thread 11448 , mypolls 0 +thr aff44180 , status 1 +connecting thr aff44180 , thread 11449 , mypolls 0 +myconn 0 connecting thr aff44180 , thread 11449 , mypolls 0 +thr aff44300 , status 1 +connecting thr aff44300 , thread 11450 , mypolls 0 +myconn 0 connecting thr aff44300 , thread 11450 , mypolls 0 +thr aff44480 , status 1 +connecting thr aff44480 , thread 11451 , mypolls 0 +myconn 0 connecting thr aff44480 , thread 11451 , mypolls 0 +thr aff44600 , status 1 +connecting thr aff44600 , thread 11452 , mypolls 0 +myconn 0 connecting thr aff44600 , thread 11452 , mypolls 0 +thr aff44780 , status 1 +connecting thr aff44780 , thread 11453 , mypolls 0 +myconn 0 connecting thr aff44780 , thread 11453 , mypolls 0 +thr aff44900 , status 1 +connecting thr aff44900 , thread 11454 , mypolls 0 +myconn 0 connecting thr aff44900 , thread 11454 , mypolls 0 +thr aff44a80 , status 1 +connecting thr aff44a80 , thread 11455 , mypolls 0 +myconn 0 connecting thr aff44a80 , thread 11455 , mypolls 0 +thr aff44c00 , status 1 +connecting thr aff44c00 , thread 11456 , mypolls 0 +myconn 0 connecting thr aff44c00 , thread 11456 , mypolls 0 +thr aff44d80 , status 1 +connecting thr aff44d80 , thread 11457 , mypolls 0 +myconn 0 connecting thr aff44d80 , thread 11457 , mypolls 0 +thr aff44f00 , status 1 +connecting thr aff44f00 , thread 11458 , mypolls 0 +myconn 0 connecting thr aff44f00 , thread 11458 , mypolls 0 +thr aff45080 , status 1 +connecting thr aff45080 , thread 11459 , mypolls 0 +myconn 0 connecting thr aff45080 , thread 11459 , mypolls 0 +thr aff45200 , status 1 +connecting thr aff45200 , thread 11460 , mypolls 0 +myconn 0 connecting thr aff45200 , thread 11460 , mypolls 0 +thr aff45380 , status 1 +connecting thr aff45380 , thread 11461 , mypolls 0 +myconn 0 connecting thr aff45380 , thread 11461 , mypolls 0 +thr aff45500 , status 1 +connecting thr aff45500 , thread 11462 , mypolls 0 +myconn 0 connecting thr aff45500 , thread 11462 , mypolls 0 +thr aff45680 , status 1 +connecting thr aff45680 , thread 11463 , mypolls 0 +myconn 0 connecting thr aff45680 , thread 11463 , mypolls 0 +thr aff45800 , status 1 +connecting thr aff45800 , thread 11464 , mypolls 0 +myconn 0 connecting thr aff45800 , thread 11464 , mypolls 0 +thr aff45980 , status 1 +connecting thr aff45980 , thread 11465 , mypolls 0 +myconn 0 connecting thr aff45980 , thread 11465 , mypolls 0 +thr aff45b00 , status 1 +connecting thr aff45b00 , thread 11466 , mypolls 0 +myconn 0 connecting thr aff45b00 , thread 11466 , mypolls 0 +thr aff45c80 , status 1 +connecting thr aff45c80 , thread 11467 , mypolls 0 +myconn 0 connecting thr aff45c80 , thread 11467 , mypolls 0 +thr aff45e00 , status 1 +connecting thr aff45e00 , thread 11468 , mypolls 0 +myconn 0 connecting thr aff45e00 , thread 11468 , mypolls 0 +thr aff45f80 , status 1 +connecting thr aff45f80 , thread 11469 , mypolls 0 +myconn 0 connecting thr aff45f80 , thread 11469 , mypolls 0 +thr aff46100 , status 1 +connecting thr aff46100 , thread 11470 , mypolls 0 +myconn 0 connecting thr aff46100 , thread 11470 , mypolls 0 +thr aff46280 , status 1 +connecting thr aff46280 , thread 11471 , mypolls 0 +myconn 0 connecting thr aff46280 , thread 11471 , mypolls 0 +thr aff46400 , status 1 +connecting thr aff46400 , thread 11472 , mypolls 0 +myconn 0 connecting thr aff46400 , thread 11472 , mypolls 0 +thr aff46580 , status 1 +connecting thr aff46580 , thread 11473 , mypolls 0 +myconn 0 connecting thr aff46580 , thread 11473 , mypolls 0 +thr aff46700 , status 1 +connecting thr aff46700 , thread 11474 , mypolls 0 +myconn 0 connecting thr aff46700 , thread 11474 , mypolls 0 +thr aff46880 , status 1 +connecting thr aff46880 , thread 11475 , mypolls 0 +myconn 0 connecting thr aff46880 , thread 11475 , mypolls 0 +thr aff46a00 , status 1 +connecting thr aff46a00 , thread 11476 , mypolls 0 +myconn 0 connecting thr aff46a00 , thread 11476 , mypolls 0 +thr aff46b80 , status 1 +connecting thr aff46b80 , thread 11477 , mypolls 0 +myconn 0 connecting thr aff46b80 , thread 11477 , mypolls 0 +thr aff46d00 , status 1 +connecting thr aff46d00 , thread 11478 , mypolls 0 +myconn 0 connecting thr aff46d00 , thread 11478 , mypolls 0 +thr aff46e80 , status 1 +connecting thr aff46e80 , thread 11479 , mypolls 0 +myconn 0 connecting thr aff46e80 , thread 11479 , mypolls 0 +thr afda5000 , status 1 +connecting thr afda5000 , thread 11480 , mypolls 0 +myconn 0 connecting thr afda5000 , thread 11480 , mypolls 0 +thr afda5180 , status 1 +connecting thr afda5180 , thread 11481 , mypolls 0 +myconn 0 connecting thr afda5180 , thread 11481 , mypolls 0 +thr afda5300 , status 1 +connecting thr afda5300 , thread 11482 , mypolls 0 +myconn 0 connecting thr afda5300 , thread 11482 , mypolls 0 +thr afda5480 , status 1 +connecting thr afda5480 , thread 11483 , mypolls 0 +myconn 0 connecting thr afda5480 , thread 11483 , mypolls 0 +thr afda5600 , status 1 +connecting thr afda5600 , thread 11484 , mypolls 0 +myconn 0 connecting thr afda5600 , thread 11484 , mypolls 0 +thr afda5780 , status 1 +connecting thr afda5780 , thread 11485 , mypolls 0 +myconn 0 connecting thr afda5780 , thread 11485 , mypolls 0 +thr afda5900 , status 1 +connecting thr afda5900 , thread 11486 , mypolls 0 +myconn 0 connecting thr afda5900 , thread 11486 , mypolls 0 +thr afda5a80 , status 1 +connecting thr afda5a80 , thread 11487 , mypolls 0 +myconn 0 connecting thr afda5a80 , thread 11487 , mypolls 0 +thr afda5c00 , status 1 +connecting thr afda5c00 , thread 11488 , mypolls 0 +myconn 0 connecting thr afda5c00 , thread 11488 , mypolls 0 +thr afda5d80 , status 1 +connecting thr afda5d80 , thread 11489 , mypolls 0 +myconn 0 connecting thr afda5d80 , thread 11489 , mypolls 0 +thr afda5f00 , status 1 +connecting thr afda5f00 , thread 11490 , mypolls 0 +myconn 0 connecting thr afda5f00 , thread 11490 , mypolls 0 +thr afda6080 , status 1 +connecting thr afda6080 , thread 11491 , mypolls 0 +myconn 0 connecting thr afda6080 , thread 11491 , mypolls 0 +thr afda6200 , status 1 +connecting thr afda6200 , thread 11492 , mypolls 0 +myconn 0 connecting thr afda6200 , thread 11492 , mypolls 0 +thr afda6380 , status 1 +connecting thr afda6380 , thread 11493 , mypolls 0 +myconn 0 connecting thr afda6380 , thread 11493 , mypolls 0 +thr afda6500 , status 1 +connecting thr afda6500 , thread 11494 , mypolls 0 +myconn 0 connecting thr afda6500 , thread 11494 , mypolls 0 +thr afda6680 , status 1 +connecting thr afda6680 , thread 11495 , mypolls 0 +myconn 0 connecting thr afda6680 , thread 11495 , mypolls 0 +thr afda6800 , status 1 +connecting thr afda6800 , thread 11496 , mypolls 0 +myconn 0 connecting thr afda6800 , thread 11496 , mypolls 0 +thr afda6980 , status 1 +connecting thr afda6980 , thread 11497 , mypolls 0 +myconn 0 connecting thr afda6980 , thread 11497 , mypolls 0 +thr afda6b00 , status 1 +connecting thr afda6b00 , thread 11498 , mypolls 0 +myconn 0 connecting thr afda6b00 , thread 11498 , mypolls 0 +thr afda6c80 , status 1 +connecting thr afda6c80 , thread 11499 , mypolls 0 +myconn 0 connecting thr afda6c80 , thread 11499 , mypolls 0 +thr afda6e00 , status 1 +connecting thr afda6e00 , thread 11500 , mypolls 0 +myconn 0 connecting thr afda6e00 , thread 11500 , mypolls 0 +thr afda6f80 , status 1 +connecting thr afda6f80 , thread 11501 , mypolls 0 +myconn 0 connecting thr afda6f80 , thread 11501 , mypolls 0 +thr afda7100 , status 1 +connecting thr afda7100 , thread 11502 , mypolls 0 +myconn 0 connecting thr afda7100 , thread 11502 , mypolls 0 +thr afda7280 , status 1 +connecting thr afda7280 , thread 11503 , mypolls 0 +myconn 0 connecting thr afda7280 , thread 11503 , mypolls 0 +thr afda7400 , status 1 +connecting thr afda7400 , thread 11504 , mypolls 0 +myconn 0 connecting thr afda7400 , thread 11504 , mypolls 0 +thr afda7580 , status 1 +connecting thr afda7580 , thread 11505 , mypolls 0 +myconn 0 connecting thr afda7580 , thread 11505 , mypolls 0 +thr afda7700 , status 1 +connecting thr afda7700 , thread 11506 , mypolls 0 +myconn 0 connecting thr afda7700 , thread 11506 , mypolls 0 +thr afda7880 , status 1 +connecting thr afda7880 , thread 11507 , mypolls 0 +myconn 0 connecting thr afda7880 , thread 11507 , mypolls 0 +thr afda7a00 , status 1 +connecting thr afda7a00 , thread 11508 , mypolls 0 +myconn 0 connecting thr afda7a00 , thread 11508 , mypolls 0 +thr afda7b80 , status 1 +connecting thr afda7b80 , thread 11509 , mypolls 0 +myconn 0 connecting thr afda7b80 , thread 11509 , mypolls 0 +thr afda7d00 , status 1 +connecting thr afda7d00 , thread 11510 , mypolls 0 +myconn 0 connecting thr afda7d00 , thread 11510 , mypolls 0 +thr afda7e80 , status 1 +connecting thr afda7e80 , thread 11511 , mypolls 0 +myconn 0 connecting thr afda7e80 , thread 11511 , mypolls 0 +thr afbfd000 , status 1 +connecting thr afbfd000 , thread 11512 , mypolls 0 +myconn 0 connecting thr afbfd000 , thread 11512 , mypolls 0 +thr afbfd180 , status 1 +connecting thr afbfd180 , thread 11513 , mypolls 0 +myconn 0 connecting thr afbfd180 , thread 11513 , mypolls 0 +thr afbfd300 , status 1 +connecting thr afbfd300 , thread 11514 , mypolls 0 +myconn 0 connecting thr afbfd300 , thread 11514 , mypolls 0 +thr afbfd480 , status 1 +connecting thr afbfd480 , thread 11515 , mypolls 0 +myconn 0 connecting thr afbfd480 , thread 11515 , mypolls 0 +thr afbfd600 , status 1 +connecting thr afbfd600 , thread 11516 , mypolls 0 +myconn 0 connecting thr afbfd600 , thread 11516 , mypolls 0 +thr afbfd780 , status 1 +connecting thr afbfd780 , thread 11517 , mypolls 0 +myconn 0 connecting thr afbfd780 , thread 11517 , mypolls 0 +thr afbfd900 , status 1 +connecting thr afbfd900 , thread 11518 , mypolls 0 +myconn 0 connecting thr afbfd900 , thread 11518 , mypolls 0 +thr afbfda80 , status 1 +connecting thr afbfda80 , thread 11519 , mypolls 0 +myconn 0 connecting thr afbfda80 , thread 11519 , mypolls 0 +thr afbfdc00 , status 1 +connecting thr afbfdc00 , thread 11520 , mypolls 0 +myconn 0 connecting thr afbfdc00 , thread 11520 , mypolls 0 +thr afbfdd80 , status 1 +connecting thr afbfdd80 , thread 11521 , mypolls 0 +myconn 0 connecting thr afbfdd80 , thread 11521 , mypolls 0 +thr afbfdf00 , status 1 +connecting thr afbfdf00 , thread 11522 , mypolls 0 +myconn 0 connecting thr afbfdf00 , thread 11522 , mypolls 0 +thr afbfe080 , status 1 +connecting thr afbfe080 , thread 11523 , mypolls 0 +myconn 0 connecting thr afbfe080 , thread 11523 , mypolls 0 +thr afbfe200 , status 1 +connecting thr afbfe200 , thread 11524 , mypolls 0 +myconn 0 connecting thr afbfe200 , thread 11524 , mypolls 0 +thr afbfe380 , status 1 +connecting thr afbfe380 , thread 11525 , mypolls 0 +myconn 0 connecting thr afbfe380 , thread 11525 , mypolls 0 +thr afbfe500 , status 1 +connecting thr afbfe500 , thread 11526 , mypolls 0 +myconn 0 connecting thr afbfe500 , thread 11526 , mypolls 0 +thr afbfe680 , status 1 +connecting thr afbfe680 , thread 11527 , mypolls 0 +myconn 0 connecting thr afbfe680 , thread 11527 , mypolls 0 +thr afbfe800 , status 1 +connecting thr afbfe800 , thread 11528 , mypolls 0 +myconn 0 connecting thr afbfe800 , thread 11528 , mypolls 0 +thr afbfe980 , status 1 +connecting thr afbfe980 , thread 11529 , mypolls 0 +myconn 0 connecting thr afbfe980 , thread 11529 , mypolls 0 +thr afbfeb00 , status 1 +connecting thr afbfeb00 , thread 11530 , mypolls 0 +myconn 0 connecting thr afbfeb00 , thread 11530 , mypolls 0 +thr afbfec80 , status 1 +connecting thr afbfec80 , thread 11531 , mypolls 0 +myconn 0 connecting thr afbfec80 , thread 11531 , mypolls 0 +thr afbfee00 , status 1 +connecting thr afbfee00 , thread 11532 , mypolls 0 +myconn 0 connecting thr afbfee00 , thread 11532 , mypolls 0 +thr afbfef80 , status 1 +connecting thr afbfef80 , thread 11533 , mypolls 0 +myconn 0 connecting thr afbfef80 , thread 11533 , mypolls 0 +thr afbff100 , status 1 +connecting thr afbff100 , thread 11534 , mypolls 0 +myconn 0 connecting thr afbff100 , thread 11534 , mypolls 0 +thr afbff280 , status 1 +connecting thr afbff280 , thread 11535 , mypolls 0 +myconn 0 connecting thr afbff280 , thread 11535 , mypolls 0 +thr afbff400 , status 1 +connecting thr afbff400 , thread 11536 , mypolls 0 +myconn 0 connecting thr afbff400 , thread 11536 , mypolls 0 +thr afbff580 , status 1 +connecting thr afbff580 , thread 11537 , mypolls 0 +myconn 0 connecting thr afbff580 , thread 11537 , mypolls 0 +thr afbff700 , status 1 +connecting thr afbff700 , thread 11538 , mypolls 0 +myconn 0 connecting thr afbff700 , thread 11538 , mypolls 0 +thr afbff880 , status 1 +connecting thr afbff880 , thread 11539 , mypolls 0 +myconn 0 connecting thr afbff880 , thread 11539 , mypolls 0 +thr afbffa00 , status 1 +connecting thr afbffa00 , thread 11540 , mypolls 0 +myconn 0 connecting thr afbffa00 , thread 11540 , mypolls 0 +thr afbffb80 , status 1 +connecting thr afbffb80 , thread 11541 , mypolls 0 +myconn 0 connecting thr afbffb80 , thread 11541 , mypolls 0 +thr afbffd00 , status 1 +connecting thr afbffd00 , thread 11542 , mypolls 0 +myconn 0 connecting thr afbffd00 , thread 11542 , mypolls 0 +thr afbffe80 , status 1 +connecting thr afbffe80 , thread 11543 , mypolls 0 +myconn 0 connecting thr afbffe80 , thread 11543 , mypolls 0 +thr af9fc000 , status 1 +connecting thr af9fc000 , thread 11544 , mypolls 0 +myconn 0 connecting thr af9fc000 , thread 11544 , mypolls 0 +thr af9fc180 , status 1 +connecting thr af9fc180 , thread 11545 , mypolls 0 +myconn 0 connecting thr af9fc180 , thread 11545 , mypolls 0 +thr af9fc300 , status 1 +connecting thr af9fc300 , thread 11546 , mypolls 0 +myconn 0 connecting thr af9fc300 , thread 11546 , mypolls 0 +thr af9fc480 , status 1 +connecting thr af9fc480 , thread 11547 , mypolls 0 +myconn 0 connecting thr af9fc480 , thread 11547 , mypolls 0 +thr af9fc600 , status 1 +connecting thr af9fc600 , thread 11548 , mypolls 0 +myconn 0 connecting thr af9fc600 , thread 11548 , mypolls 0 +thr af9fc780 , status 1 +connecting thr af9fc780 , thread 11549 , mypolls 0 +myconn 0 connecting thr af9fc780 , thread 11549 , mypolls 0 +thr af9fc900 , status 1 +connecting thr af9fc900 , thread 11550 , mypolls 0 +myconn 0 connecting thr af9fc900 , thread 11550 , mypolls 0 +thr af9fca80 , status 1 +connecting thr af9fca80 , thread 11551 , mypolls 0 +myconn 0 connecting thr af9fca80 , thread 11551 , mypolls 0 +thr af9fcc00 , status 1 +connecting thr af9fcc00 , thread 11552 , mypolls 0 +myconn 0 connecting thr af9fcc00 , thread 11552 , mypolls 0 +thr af9fcd80 , status 1 +connecting thr af9fcd80 , thread 11553 , mypolls 0 +myconn 0 connecting thr af9fcd80 , thread 11553 , mypolls 0 +thr af9fcf00 , status 1 +connecting thr af9fcf00 , thread 11554 , mypolls 0 +myconn 0 connecting thr af9fcf00 , thread 11554 , mypolls 0 +thr af9fd080 , status 1 +connecting thr af9fd080 , thread 11555 , mypolls 0 +myconn 0 connecting thr af9fd080 , thread 11555 , mypolls 0 +thr af9fd200 , status 1 +connecting thr af9fd200 , thread 11556 , mypolls 0 +myconn 0 connecting thr af9fd200 , thread 11556 , mypolls 0 +thr af9fd380 , status 1 +connecting thr af9fd380 , thread 11557 , mypolls 0 +myconn 0 connecting thr af9fd380 , thread 11557 , mypolls 0 +thr af9fd500 , status 1 +connecting thr af9fd500 , thread 11558 , mypolls 0 +myconn 0 connecting thr af9fd500 , thread 11558 , mypolls 0 +thr af9fd680 , status 1 +connecting thr af9fd680 , thread 11559 , mypolls 0 +myconn 0 connecting thr af9fd680 , thread 11559 , mypolls 0 +thr af9fd800 , status 1 +connecting thr af9fd800 , thread 11560 , mypolls 0 +myconn 0 connecting thr af9fd800 , thread 11560 , mypolls 0 +thr af9fd980 , status 1 +connecting thr af9fd980 , thread 11561 , mypolls 0 +myconn 0 connecting thr af9fd980 , thread 11561 , mypolls 0 +thr af9fdb00 , status 1 +connecting thr af9fdb00 , thread 11562 , mypolls 0 +myconn 0 connecting thr af9fdb00 , thread 11562 , mypolls 0 +thr af9fdc80 , status 1 +connecting thr af9fdc80 , thread 11563 , mypolls 0 +myconn 0 connecting thr af9fdc80 , thread 11563 , mypolls 0 +thr af9fde00 , status 1 +connecting thr af9fde00 , thread 11564 , mypolls 0 +myconn 0 connecting thr af9fde00 , thread 11564 , mypolls 0 +thr af9fdf80 , status 1 +connecting thr af9fdf80 , thread 11565 , mypolls 0 +myconn 0 connecting thr af9fdf80 , thread 11565 , mypolls 0 +thr af9fe100 , status 1 +connecting thr af9fe100 , thread 11566 , mypolls 0 +myconn 0 connecting thr af9fe100 , thread 11566 , mypolls 0 +thr af9fe280 , status 1 +connecting thr af9fe280 , thread 11567 , mypolls 0 +myconn 0 connecting thr af9fe280 , thread 11567 , mypolls 0 +thr af9fe400 , status 1 +connecting thr af9fe400 , thread 11568 , mypolls 0 +myconn 0 connecting thr af9fe400 , thread 11568 , mypolls 0 +thr af9fe580 , status 1 +connecting thr af9fe580 , thread 11569 , mypolls 0 +myconn 0 connecting thr af9fe580 , thread 11569 , mypolls 0 +thr af9fe700 , status 1 +connecting thr af9fe700 , thread 11570 , mypolls 0 +myconn 0 connecting thr af9fe700 , thread 11570 , mypolls 0 +thr af9fe880 , status 1 +connecting thr af9fe880 , thread 11571 , mypolls 0 +myconn 0 connecting thr af9fe880 , thread 11571 , mypolls 0 +thr af9fea00 , status 1 +connecting thr af9fea00 , thread 11572 , mypolls 0 +myconn 0 connecting thr af9fea00 , thread 11572 , mypolls 0 +thr af9feb80 , status 1 +connecting thr af9feb80 , thread 11573 , mypolls 0 +myconn 0 connecting thr af9feb80 , thread 11573 , mypolls 0 +thr af9fed00 , status 1 +connecting thr af9fed00 , thread 11574 , mypolls 0 +myconn 0 connecting thr af9fed00 , thread 11574 , mypolls 0 +thr af9fee80 , status 1 +connecting thr af9fee80 , thread 11575 , mypolls 0 +myconn 0 connecting thr af9fee80 , thread 11575 , mypolls 0 +thr af4de000 , status 1 +connecting thr af4de000 , thread 11576 , mypolls 0 +myconn 0 connecting thr af4de000 , thread 11576 , mypolls 0 +thr af4de180 , status 1 +connecting thr af4de180 , thread 11577 , mypolls 0 +myconn 0 connecting thr af4de180 , thread 11577 , mypolls 0 +thr af4de300 , status 1 +connecting thr af4de300 , thread 11578 , mypolls 0 +myconn 0 connecting thr af4de300 , thread 11578 , mypolls 0 +thr af4de480 , status 1 +connecting thr af4de480 , thread 11579 , mypolls 0 +myconn 0 connecting thr af4de480 , thread 11579 , mypolls 0 +thr af4de600 , status 1 +connecting thr af4de600 , thread 11580 , mypolls 0 +myconn 0 connecting thr af4de600 , thread 11580 , mypolls 0 +thr af4de780 , status 1 +connecting thr af4de780 , thread 11581 , mypolls 0 +myconn 0 connecting thr af4de780 , thread 11581 , mypolls 0 +thr af4de900 , status 1 +connecting thr af4de900 , thread 11582 , mypolls 0 +myconn 0 connecting thr af4de900 , thread 11582 , mypolls 0 +thr af4dea80 , status 1 +connecting thr af4dea80 , thread 11583 , mypolls 0 +myconn 0 connecting thr af4dea80 , thread 11583 , mypolls 0 +thr af4dec00 , status 1 +connecting thr af4dec00 , thread 11584 , mypolls 0 +myconn 0 connecting thr af4dec00 , thread 11584 , mypolls 0 +thr af4ded80 , status 1 +connecting thr af4ded80 , thread 11585 , mypolls 0 +myconn 0 connecting thr af4ded80 , thread 11585 , mypolls 0 +thr af4def00 , status 1 +connecting thr af4def00 , thread 11586 , mypolls 0 +myconn 0 connecting thr af4def00 , thread 11586 , mypolls 0 +thr af4df080 , status 1 +connecting thr af4df080 , thread 11587 , mypolls 0 +myconn 0 connecting thr af4df080 , thread 11587 , mypolls 0 +thr af4df200 , status 1 +connecting thr af4df200 , thread 11588 , mypolls 0 +myconn 0 connecting thr af4df200 , thread 11588 , mypolls 0 +thr af4df380 , status 1 +connecting thr af4df380 , thread 11589 , mypolls 0 +myconn 0 connecting thr af4df380 , thread 11589 , mypolls 0 +thr af4df500 , status 1 +connecting thr af4df500 , thread 11590 , mypolls 0 +myconn 0 connecting thr af4df500 , thread 11590 , mypolls 0 +thr af4df680 , status 1 +connecting thr af4df680 , thread 11591 , mypolls 0 +myconn 0 connecting thr af4df680 , thread 11591 , mypolls 0 +thr af4df800 , status 1 +connecting thr af4df800 , thread 11592 , mypolls 0 +myconn 0 connecting thr af4df800 , thread 11592 , mypolls 0 +thr af4df980 , status 1 +connecting thr af4df980 , thread 11593 , mypolls 0 +myconn 0 connecting thr af4df980 , thread 11593 , mypolls 0 +thr af4dfb00 , status 1 +connecting thr af4dfb00 , thread 11594 , mypolls 0 +myconn 0 connecting thr af4dfb00 , thread 11594 , mypolls 0 +thr af4dfc80 , status 1 +connecting thr af4dfc80 , thread 11595 , mypolls 0 +myconn 0 connecting thr af4dfc80 , thread 11595 , mypolls 0 +thr af4dfe00 , status 1 +connecting thr af4dfe00 , thread 11596 , mypolls 0 +myconn 0 connecting thr af4dfe00 , thread 11596 , mypolls 0 +thr af4dff80 , status 1 +connecting thr af4dff80 , thread 11597 , mypolls 0 +myconn 0 connecting thr af4dff80 , thread 11597 , mypolls 0 +thr af4e0100 , status 1 +connecting thr af4e0100 , thread 11598 , mypolls 0 +myconn 0 connecting thr af4e0100 , thread 11598 , mypolls 0 +thr af4e0280 , status 1 +connecting thr af4e0280 , thread 11599 , mypolls 0 +myconn 0 connecting thr af4e0280 , thread 11599 , mypolls 0 +thr af4e0400 , status 1 +connecting thr af4e0400 , thread 11600 , mypolls 0 +myconn 0 connecting thr af4e0400 , thread 11600 , mypolls 0 +thr af4e0580 , status 1 +connecting thr af4e0580 , thread 11601 , mypolls 0 +myconn 0 connecting thr af4e0580 , thread 11601 , mypolls 0 +thr af4e0700 , status 1 +connecting thr af4e0700 , thread 11602 , mypolls 0 +myconn 0 connecting thr af4e0700 , thread 11602 , mypolls 0 +thr af4e0880 , status 1 +connecting thr af4e0880 , thread 11603 , mypolls 0 +myconn 0 connecting thr af4e0880 , thread 11603 , mypolls 0 +thr af4e0a00 , status 1 +connecting thr af4e0a00 , thread 11604 , mypolls 0 +myconn 0 connecting thr af4e0a00 , thread 11604 , mypolls 0 +thr af4e0b80 , status 1 +connecting thr af4e0b80 , thread 11605 , mypolls 0 +myconn 0 connecting thr af4e0b80 , thread 11605 , mypolls 0 +thr af4e0d00 , status 1 +connecting thr af4e0d00 , thread 11606 , mypolls 0 +myconn 0 connecting thr af4e0d00 , thread 11606 , mypolls 0 +thr af4e0e80 , status 1 +connecting thr af4e0e80 , thread 11607 , mypolls 0 +myconn 0 connecting thr af4e0e80 , thread 11607 , mypolls 0 +thr af341000 , status 1 +connecting thr af341000 , thread 11608 , mypolls 0 +myconn 0 connecting thr af341000 , thread 11608 , mypolls 0 +thr af341180 , status 1 +connecting thr af341180 , thread 11609 , mypolls 0 +myconn 0 connecting thr af341180 , thread 11609 , mypolls 0 +thr af341300 , status 1 +connecting thr af341300 , thread 11610 , mypolls 0 +myconn 0 connecting thr af341300 , thread 11610 , mypolls 0 +thr af341480 , status 1 +connecting thr af341480 , thread 11611 , mypolls 0 +myconn 0 connecting thr af341480 , thread 11611 , mypolls 0 +thr af341600 , status 1 +connecting thr af341600 , thread 11612 , mypolls 0 +myconn 0 connecting thr af341600 , thread 11612 , mypolls 0 +thr af341780 , status 1 +connecting thr af341780 , thread 11613 , mypolls 0 +myconn 0 connecting thr af341780 , thread 11613 , mypolls 0 +thr af341900 , status 1 +connecting thr af341900 , thread 11614 , mypolls 0 +myconn 0 connecting thr af341900 , thread 11614 , mypolls 0 +thr af341a80 , status 1 +connecting thr af341a80 , thread 11615 , mypolls 0 +myconn 0 connecting thr af341a80 , thread 11615 , mypolls 0 +thr af341c00 , status 1 +connecting thr af341c00 , thread 11616 , mypolls 0 +myconn 0 connecting thr af341c00 , thread 11616 , mypolls 0 +thr af341d80 , status 1 +connecting thr af341d80 , thread 11617 , mypolls 0 +myconn 0 connecting thr af341d80 , thread 11617 , mypolls 0 +thr af341f00 , status 1 +connecting thr af341f00 , thread 11618 , mypolls 0 +myconn 0 connecting thr af341f00 , thread 11618 , mypolls 0 +thr af342080 , status 1 +connecting thr af342080 , thread 11619 , mypolls 0 +myconn 0 connecting thr af342080 , thread 11619 , mypolls 0 +thr af342200 , status 1 +connecting thr af342200 , thread 11620 , mypolls 0 +myconn 0 connecting thr af342200 , thread 11620 , mypolls 0 +thr af342380 , status 1 +connecting thr af342380 , thread 11621 , mypolls 0 +myconn 0 connecting thr af342380 , thread 11621 , mypolls 0 +thr af342500 , status 1 +connecting thr af342500 , thread 11622 , mypolls 0 +myconn 0 connecting thr af342500 , thread 11622 , mypolls 0 +thr af342680 , status 1 +connecting thr af342680 , thread 11623 , mypolls 0 +myconn 0 connecting thr af342680 , thread 11623 , mypolls 0 +thr af342800 , status 1 +connecting thr af342800 , thread 11624 , mypolls 0 +myconn 0 connecting thr af342800 , thread 11624 , mypolls 0 +thr af342980 , status 1 +connecting thr af342980 , thread 11625 , mypolls 0 +myconn 0 connecting thr af342980 , thread 11625 , mypolls 0 +thr af342b00 , status 1 +connecting thr af342b00 , thread 11626 , mypolls 0 +myconn 0 connecting thr af342b00 , thread 11626 , mypolls 0 +thr af342c80 , status 1 +connecting thr af342c80 , thread 11627 , mypolls 0 +myconn 0 connecting thr af342c80 , thread 11627 , mypolls 0 +thr af342e00 , status 1 +connecting thr af342e00 , thread 11628 , mypolls 0 +myconn 0 connecting thr af342e00 , thread 11628 , mypolls 0 +thr af342f80 , status 1 +connecting thr af342f80 , thread 11629 , mypolls 0 +myconn 0 connecting thr af342f80 , thread 11629 , mypolls 0 +thr af343100 , status 1 +connecting thr af343100 , thread 11630 , mypolls 0 +myconn 0 connecting thr af343100 , thread 11630 , mypolls 0 +thr af343280 , status 1 +connecting thr af343280 , thread 11631 , mypolls 0 +myconn 0 connecting thr af343280 , thread 11631 , mypolls 0 +thr af343400 , status 1 +connecting thr af343400 , thread 11632 , mypolls 0 +myconn 0 connecting thr af343400 , thread 11632 , mypolls 0 +thr af343580 , status 1 +connecting thr af343580 , thread 11633 , mypolls 0 +myconn 0 connecting thr af343580 , thread 11633 , mypolls 0 +thr af343700 , status 1 +connecting thr af343700 , thread 11634 , mypolls 0 +myconn 0 connecting thr af343700 , thread 11634 , mypolls 0 +thr af343880 , status 1 +connecting thr af343880 , thread 11635 , mypolls 0 +myconn 0 connecting thr af343880 , thread 11635 , mypolls 0 +thr af343a00 , status 1 +connecting thr af343a00 , thread 11636 , mypolls 0 +myconn 0 connecting thr af343a00 , thread 11636 , mypolls 0 +thr af343b80 , status 1 +connecting thr af343b80 , thread 11637 , mypolls 0 +myconn 0 connecting thr af343b80 , thread 11637 , mypolls 0 +thr af343d00 , status 1 +connecting thr af343d00 , thread 11638 , mypolls 0 +myconn 0 connecting thr af343d00 , thread 11638 , mypolls 0 +thr af343e80 , status 1 +connecting thr af343e80 , thread 11639 , mypolls 0 +myconn 0 connecting thr af343e80 , thread 11639 , mypolls 0 +thr af1a3000 , status 1 +connecting thr af1a3000 , thread 11640 , mypolls 0 +myconn 0 connecting thr af1a3000 , thread 11640 , mypolls 0 +thr af1a3180 , status 1 +connecting thr af1a3180 , thread 11641 , mypolls 0 +myconn 0 connecting thr af1a3180 , thread 11641 , mypolls 0 +thr af1a3300 , status 1 +connecting thr af1a3300 , thread 11642 , mypolls 0 +myconn 0 connecting thr af1a3300 , thread 11642 , mypolls 0 +thr af1a3480 , status 1 +connecting thr af1a3480 , thread 11643 , mypolls 0 +myconn 0 connecting thr af1a3480 , thread 11643 , mypolls 0 +thr af1a3600 , status 1 +connecting thr af1a3600 , thread 11644 , mypolls 0 +myconn 0 connecting thr af1a3600 , thread 11644 , mypolls 0 +thr af1a3780 , status 1 +connecting thr af1a3780 , thread 11645 , mypolls 0 +myconn 0 connecting thr af1a3780 , thread 11645 , mypolls 0 +thr af1a3900 , status 1 +connecting thr af1a3900 , thread 11646 , mypolls 0 +myconn 0 connecting thr af1a3900 , thread 11646 , mypolls 0 +thr af1a3a80 , status 1 +connecting thr af1a3a80 , thread 11647 , mypolls 0 +myconn 0 connecting thr af1a3a80 , thread 11647 , mypolls 0 +thr af1a3c00 , status 1 +connecting thr af1a3c00 , thread 11648 , mypolls 0 +myconn 0 connecting thr af1a3c00 , thread 11648 , mypolls 0 +thr af1a3d80 , status 1 +connecting thr af1a3d80 , thread 11649 , mypolls 0 +myconn 0 connecting thr af1a3d80 , thread 11649 , mypolls 0 +thr af1a3f00 , status 1 +connecting thr af1a3f00 , thread 11650 , mypolls 0 +myconn 0 connecting thr af1a3f00 , thread 11650 , mypolls 0 +thr af1a4080 , status 1 +connecting thr af1a4080 , thread 11651 , mypolls 0 +myconn 0 connecting thr af1a4080 , thread 11651 , mypolls 0 +thr af1a4200 , status 1 +connecting thr af1a4200 , thread 11652 , mypolls 0 +myconn 0 connecting thr af1a4200 , thread 11652 , mypolls 0 +thr af1a4380 , status 1 +connecting thr af1a4380 , thread 11653 , mypolls 0 +myconn 0 connecting thr af1a4380 , thread 11653 , mypolls 0 +thr af1a4500 , status 1 +connecting thr af1a4500 , thread 11654 , mypolls 0 +myconn 0 connecting thr af1a4500 , thread 11654 , mypolls 0 +thr af1a4680 , status 1 +connecting thr af1a4680 , thread 11655 , mypolls 0 +myconn 0 connecting thr af1a4680 , thread 11655 , mypolls 0 +thr af1a4800 , status 1 +connecting thr af1a4800 , thread 11656 , mypolls 0 +myconn 0 connecting thr af1a4800 , thread 11656 , mypolls 0 +thr af1a4980 , status 1 +connecting thr af1a4980 , thread 11657 , mypolls 0 +myconn 0 connecting thr af1a4980 , thread 11657 , mypolls 0 +thr af1a4b00 , status 1 +connecting thr af1a4b00 , thread 11658 , mypolls 0 +myconn 0 connecting thr af1a4b00 , thread 11658 , mypolls 0 +thr af1a4c80 , status 1 +connecting thr af1a4c80 , thread 11659 , mypolls 0 +myconn 0 connecting thr af1a4c80 , thread 11659 , mypolls 0 +thr af1a4e00 , status 1 +connecting thr af1a4e00 , thread 11660 , mypolls 0 +myconn 0 connecting thr af1a4e00 , thread 11660 , mypolls 0 +thr af1a4f80 , status 1 +connecting thr af1a4f80 , thread 11661 , mypolls 0 +myconn 0 connecting thr af1a4f80 , thread 11661 , mypolls 0 +thr af1a5100 , status 1 +connecting thr af1a5100 , thread 11662 , mypolls 0 +myconn 0 connecting thr af1a5100 , thread 11662 , mypolls 0 +thr af1a5280 , status 1 +connecting thr af1a5280 , thread 11663 , mypolls 0 +myconn 0 connecting thr af1a5280 , thread 11663 , mypolls 0 +thr af1a5400 , status 1 +connecting thr af1a5400 , thread 11664 , mypolls 0 +myconn 0 connecting thr af1a5400 , thread 11664 , mypolls 0 +thr af1a5580 , status 1 +connecting thr af1a5580 , thread 11665 , mypolls 0 +myconn 0 connecting thr af1a5580 , thread 11665 , mypolls 0 +thr af1a5700 , status 1 +connecting thr af1a5700 , thread 11666 , mypolls 0 +myconn 0 connecting thr af1a5700 , thread 11666 , mypolls 0 +thr af1a5880 , status 1 +connecting thr af1a5880 , thread 11667 , mypolls 0 +myconn 0 connecting thr af1a5880 , thread 11667 , mypolls 0 +thr af1a5a00 , status 1 +connecting thr af1a5a00 , thread 11668 , mypolls 0 +myconn 0 connecting thr af1a5a00 , thread 11668 , mypolls 0 +thr af1a5b80 , status 1 +connecting thr af1a5b80 , thread 11669 , mypolls 0 +myconn 0 connecting thr af1a5b80 , thread 11669 , mypolls 0 +thr af1a5d00 , status 1 +connecting thr af1a5d00 , thread 11670 , mypolls 0 +myconn 0 connecting thr af1a5d00 , thread 11670 , mypolls 0 +thr af1a5e80 , status 1 +connecting thr af1a5e80 , thread 11671 , mypolls 0 +myconn 0 connecting thr af1a5e80 , thread 11671 , mypolls 0 +thr aeffd000 , status 1 +connecting thr aeffd000 , thread 11672 , mypolls 0 +myconn 0 connecting thr aeffd000 , thread 11672 , mypolls 0 +thr aeffd180 , status 1 +connecting thr aeffd180 , thread 11673 , mypolls 0 +myconn 0 connecting thr aeffd180 , thread 11673 , mypolls 0 +thr aeffd300 , status 1 +connecting thr aeffd300 , thread 11674 , mypolls 0 +myconn 0 connecting thr aeffd300 , thread 11674 , mypolls 0 +thr aeffd480 , status 1 +connecting thr aeffd480 , thread 11675 , mypolls 0 +myconn 0 connecting thr aeffd480 , thread 11675 , mypolls 0 +thr aeffd600 , status 1 +connecting thr aeffd600 , thread 11676 , mypolls 0 +myconn 0 connecting thr aeffd600 , thread 11676 , mypolls 0 +thr aeffd780 , status 1 +connecting thr aeffd780 , thread 11677 , mypolls 0 +myconn 0 connecting thr aeffd780 , thread 11677 , mypolls 0 +thr aeffd900 , status 1 +connecting thr aeffd900 , thread 11678 , mypolls 0 +myconn 0 connecting thr aeffd900 , thread 11678 , mypolls 0 +thr aeffda80 , status 1 +connecting thr aeffda80 , thread 11679 , mypolls 0 +myconn 0 connecting thr aeffda80 , thread 11679 , mypolls 0 +thr aeffdc00 , status 1 +connecting thr aeffdc00 , thread 11680 , mypolls 0 +myconn 0 connecting thr aeffdc00 , thread 11680 , mypolls 0 +thr aeffdd80 , status 1 +connecting thr aeffdd80 , thread 11681 , mypolls 0 +myconn 0 connecting thr aeffdd80 , thread 11681 , mypolls 0 +thr aeffdf00 , status 1 +connecting thr aeffdf00 , thread 11682 , mypolls 0 +myconn 0 connecting thr aeffdf00 , thread 11682 , mypolls 0 +thr aeffe080 , status 1 +connecting thr aeffe080 , thread 11683 , mypolls 0 +myconn 0 connecting thr aeffe080 , thread 11683 , mypolls 0 +thr aeffe200 , status 1 +connecting thr aeffe200 , thread 11684 , mypolls 0 +myconn 0 connecting thr aeffe200 , thread 11684 , mypolls 0 +thr aeffe380 , status 1 +connecting thr aeffe380 , thread 11685 , mypolls 0 +myconn 0 connecting thr aeffe380 , thread 11685 , mypolls 0 +thr aeffe500 , status 1 +connecting thr aeffe500 , thread 11686 , mypolls 0 +myconn 0 connecting thr aeffe500 , thread 11686 , mypolls 0 +thr aeffe680 , status 1 +connecting thr aeffe680 , thread 11687 , mypolls 0 +myconn 0 connecting thr aeffe680 , thread 11687 , mypolls 0 +thr aeffe800 , status 1 +connecting thr aeffe800 , thread 11688 , mypolls 0 +myconn 0 connecting thr aeffe800 , thread 11688 , mypolls 0 +thr aeffe980 , status 1 +connecting thr aeffe980 , thread 11689 , mypolls 0 +myconn 0 connecting thr aeffe980 , thread 11689 , mypolls 0 +thr aeffeb00 , status 1 +connecting thr aeffeb00 , thread 11690 , mypolls 0 +myconn 0 connecting thr aeffeb00 , thread 11690 , mypolls 0 +thr aeffec80 , status 1 +connecting thr aeffec80 , thread 11691 , mypolls 0 +myconn 0 connecting thr aeffec80 , thread 11691 , mypolls 0 +thr aeffee00 , status 1 +connecting thr aeffee00 , thread 11692 , mypolls 0 +myconn 0 connecting thr aeffee00 , thread 11692 , mypolls 0 +thr aeffef80 , status 1 +connecting thr aeffef80 , thread 11693 , mypolls 0 +myconn 0 connecting thr aeffef80 , thread 11693 , mypolls 0 +thr aefff100 , status 1 +connecting thr aefff100 , thread 11694 , mypolls 0 +myconn 0 connecting thr aefff100 , thread 11694 , mypolls 0 +thr aefff280 , status 1 +connecting thr aefff280 , thread 11695 , mypolls 0 +myconn 0 connecting thr aefff280 , thread 11695 , mypolls 0 +thr aefff400 , status 1 +connecting thr aefff400 , thread 11696 , mypolls 0 +myconn 0 connecting thr aefff400 , thread 11696 , mypolls 0 +thr aefff580 , status 1 +connecting thr aefff580 , thread 11697 , mypolls 0 +myconn 0 connecting thr aefff580 , thread 11697 , mypolls 0 +thr aefff700 , status 1 +connecting thr aefff700 , thread 11698 , mypolls 0 +myconn 0 connecting thr aefff700 , thread 11698 , mypolls 0 +thr aefff880 , status 1 +connecting thr aefff880 , thread 11699 , mypolls 0 +myconn 0 connecting thr aefff880 , thread 11699 , mypolls 0 +thr aefffa00 , status 1 +connecting thr aefffa00 , thread 11700 , mypolls 0 +myconn 0 connecting thr aefffa00 , thread 11700 , mypolls 0 +thr aefffb80 , status 1 +connecting thr aefffb80 , thread 11701 , mypolls 0 +myconn 0 connecting thr aefffb80 , thread 11701 , mypolls 0 +thr aefffd00 , status 1 +connecting thr aefffd00 , thread 11702 , mypolls 0 +myconn 0 connecting thr aefffd00 , thread 11702 , mypolls 0 +thr aefffe80 , status 1 +connecting thr aefffe80 , thread 11703 , mypolls 0 +myconn 0 connecting thr aefffe80 , thread 11703 , mypolls 0 +thr aedfc000 , status 1 +connecting thr aedfc000 , thread 11704 , mypolls 0 +myconn 0 connecting thr aedfc000 , thread 11704 , mypolls 0 +thr aedfc180 , status 1 +connecting thr aedfc180 , thread 11705 , mypolls 0 +myconn 0 connecting thr aedfc180 , thread 11705 , mypolls 0 +thr aedfc300 , status 1 +connecting thr aedfc300 , thread 11706 , mypolls 0 +myconn 0 connecting thr aedfc300 , thread 11706 , mypolls 0 +thr aedfc480 , status 1 +connecting thr aedfc480 , thread 11707 , mypolls 0 +myconn 0 connecting thr aedfc480 , thread 11707 , mypolls 0 +thr aedfc600 , status 1 +connecting thr aedfc600 , thread 11708 , mypolls 0 +myconn 0 connecting thr aedfc600 , thread 11708 , mypolls 0 +thr aedfc780 , status 1 +connecting thr aedfc780 , thread 11709 , mypolls 0 +myconn 0 connecting thr aedfc780 , thread 11709 , mypolls 0 +thr aedfc900 , status 1 +connecting thr aedfc900 , thread 11710 , mypolls 0 +myconn 0 connecting thr aedfc900 , thread 11710 , mypolls 0 +thr aedfca80 , status 1 +connecting thr aedfca80 , thread 11711 , mypolls 0 +myconn 0 connecting thr aedfca80 , thread 11711 , mypolls 0 +thr aedfcc00 , status 1 +connecting thr aedfcc00 , thread 11712 , mypolls 0 +myconn 0 connecting thr aedfcc00 , thread 11712 , mypolls 0 +thr aedfcd80 , status 1 +connecting thr aedfcd80 , thread 11713 , mypolls 0 +myconn 0 connecting thr aedfcd80 , thread 11713 , mypolls 0 +thr aedfcf00 , status 1 +connecting thr aedfcf00 , thread 11714 , mypolls 0 +myconn 0 connecting thr aedfcf00 , thread 11714 , mypolls 0 +thr aedfd080 , status 1 +connecting thr aedfd080 , thread 11715 , mypolls 0 +myconn 0 connecting thr aedfd080 , thread 11715 , mypolls 0 +thr aedfd200 , status 1 +connecting thr aedfd200 , thread 11716 , mypolls 0 +myconn 0 connecting thr aedfd200 , thread 11716 , mypolls 0 +thr aedfd380 , status 1 +connecting thr aedfd380 , thread 11717 , mypolls 0 +myconn 0 connecting thr aedfd380 , thread 11717 , mypolls 0 +thr aedfd500 , status 1 +connecting thr aedfd500 , thread 11718 , mypolls 0 +myconn 0 connecting thr aedfd500 , thread 11718 , mypolls 0 +thr aedfd680 , status 1 +connecting thr aedfd680 , thread 11719 , mypolls 0 +myconn 0 connecting thr aedfd680 , thread 11719 , mypolls 0 +thr aedfd800 , status 1 +connecting thr aedfd800 , thread 11720 , mypolls 0 +myconn 0 connecting thr aedfd800 , thread 11720 , mypolls 0 +thr aedfd980 , status 1 +connecting thr aedfd980 , thread 11721 , mypolls 0 +myconn 0 connecting thr aedfd980 , thread 11721 , mypolls 0 +thr aedfdb00 , status 1 +connecting thr aedfdb00 , thread 11722 , mypolls 0 +myconn 0 connecting thr aedfdb00 , thread 11722 , mypolls 0 +thr aedfdc80 , status 1 +connecting thr aedfdc80 , thread 11723 , mypolls 0 +myconn 0 connecting thr aedfdc80 , thread 11723 , mypolls 0 +thr aedfde00 , status 1 +connecting thr aedfde00 , thread 11724 , mypolls 0 +myconn 0 connecting thr aedfde00 , thread 11724 , mypolls 0 +thr aedfdf80 , status 1 +connecting thr aedfdf80 , thread 11725 , mypolls 0 +myconn 0 connecting thr aedfdf80 , thread 11725 , mypolls 0 +thr aedfe100 , status 1 +connecting thr aedfe100 , thread 11726 , mypolls 0 +myconn 0 connecting thr aedfe100 , thread 11726 , mypolls 0 +thr aedfe280 , status 1 +connecting thr aedfe280 , thread 11727 , mypolls 0 +myconn 0 connecting thr aedfe280 , thread 11727 , mypolls 0 +thr aedfe400 , status 1 +connecting thr aedfe400 , thread 11728 , mypolls 0 +myconn 0 connecting thr aedfe400 , thread 11728 , mypolls 0 +thr aedfe580 , status 1 +connecting thr aedfe580 , thread 11729 , mypolls 0 +myconn 0 connecting thr aedfe580 , thread 11729 , mypolls 0 +thr aedfe700 , status 1 +connecting thr aedfe700 , thread 11730 , mypolls 0 +myconn 0 connecting thr aedfe700 , thread 11730 , mypolls 0 +thr aedfe880 , status 1 +connecting thr aedfe880 , thread 11731 , mypolls 0 +myconn 0 connecting thr aedfe880 , thread 11731 , mypolls 0 +thr aedfea00 , status 1 +connecting thr aedfea00 , thread 11732 , mypolls 0 +myconn 0 connecting thr aedfea00 , thread 11732 , mypolls 0 +thr aedfeb80 , status 1 +connecting thr aedfeb80 , thread 11733 , mypolls 0 +myconn 0 connecting thr aedfeb80 , thread 11733 , mypolls 0 +thr aedfed00 , status 1 +connecting thr aedfed00 , thread 11734 , mypolls 0 +myconn 0 connecting thr aedfed00 , thread 11734 , mypolls 0 +thr aedfee80 , status 1 +connecting thr aedfee80 , thread 11735 , mypolls 0 +myconn 0 connecting thr aedfee80 , thread 11735 , mypolls 0 +thr ae8d5000 , status 1 +connecting thr ae8d5000 , thread 11736 , mypolls 0 +myconn 0 connecting thr ae8d5000 , thread 11736 , mypolls 0 +thr ae8d5180 , status 1 +connecting thr ae8d5180 , thread 11737 , mypolls 0 +myconn 0 connecting thr ae8d5180 , thread 11737 , mypolls 0 +thr ae8d5300 , status 1 +connecting thr ae8d5300 , thread 11738 , mypolls 0 +myconn 0 connecting thr ae8d5300 , thread 11738 , mypolls 0 +thr ae8d5480 , status 1 +connecting thr ae8d5480 , thread 11739 , mypolls 0 +myconn 0 connecting thr ae8d5480 , thread 11739 , mypolls 0 +thr ae8d5600 , status 1 +connecting thr ae8d5600 , thread 11740 , mypolls 0 +myconn 0 connecting thr ae8d5600 , thread 11740 , mypolls 0 +thr ae8d5780 , status 1 +connecting thr ae8d5780 , thread 11741 , mypolls 0 +myconn 0 connecting thr ae8d5780 , thread 11741 , mypolls 0 +thr ae8d5900 , status 1 +connecting thr ae8d5900 , thread 11742 , mypolls 0 +myconn 0 connecting thr ae8d5900 , thread 11742 , mypolls 0 +thr ae8d5a80 , status 1 +connecting thr ae8d5a80 , thread 11743 , mypolls 0 +myconn 0 connecting thr ae8d5a80 , thread 11743 , mypolls 0 +thr ae8d5c00 , status 1 +connecting thr ae8d5c00 , thread 11744 , mypolls 0 +myconn 0 connecting thr ae8d5c00 , thread 11744 , mypolls 0 +thr ae8d5d80 , status 1 +connecting thr ae8d5d80 , thread 11745 , mypolls 0 +myconn 0 connecting thr ae8d5d80 , thread 11745 , mypolls 0 +thr ae8d5f00 , status 1 +connecting thr ae8d5f00 , thread 11746 , mypolls 0 +myconn 0 connecting thr ae8d5f00 , thread 11746 , mypolls 0 +thr ae8d6080 , status 1 +connecting thr ae8d6080 , thread 11747 , mypolls 0 +myconn 0 connecting thr ae8d6080 , thread 11747 , mypolls 0 +thr ae8d6200 , status 1 +connecting thr ae8d6200 , thread 11748 , mypolls 0 +myconn 0 connecting thr ae8d6200 , thread 11748 , mypolls 0 +thr ae8d6380 , status 1 +connecting thr ae8d6380 , thread 11749 , mypolls 0 +myconn 0 connecting thr ae8d6380 , thread 11749 , mypolls 0 +thr ae8d6500 , status 1 +connecting thr ae8d6500 , thread 11750 , mypolls 0 +myconn 0 connecting thr ae8d6500 , thread 11750 , mypolls 0 +thr ae8d6680 , status 1 +connecting thr ae8d6680 , thread 11751 , mypolls 0 +myconn 0 connecting thr ae8d6680 , thread 11751 , mypolls 0 +thr ae8d6800 , status 1 +connecting thr ae8d6800 , thread 11752 , mypolls 0 +myconn 0 connecting thr ae8d6800 , thread 11752 , mypolls 0 +thr ae8d6980 , status 1 +connecting thr ae8d6980 , thread 11753 , mypolls 0 +myconn 0 connecting thr ae8d6980 , thread 11753 , mypolls 0 +thr ae8d6b00 , status 1 +connecting thr ae8d6b00 , thread 11754 , mypolls 0 +myconn 0 connecting thr ae8d6b00 , thread 11754 , mypolls 0 +thr ae8d6c80 , status 1 +connecting thr ae8d6c80 , thread 11755 , mypolls 0 +myconn 0 connecting thr ae8d6c80 , thread 11755 , mypolls 0 +thr ae8d6e00 , status 1 +connecting thr ae8d6e00 , thread 11756 , mypolls 0 +myconn 0 connecting thr ae8d6e00 , thread 11756 , mypolls 0 +thr ae8d6f80 , status 1 +connecting thr ae8d6f80 , thread 11757 , mypolls 0 +myconn 0 connecting thr ae8d6f80 , thread 11757 , mypolls 0 +thr ae8d7100 , status 1 +connecting thr ae8d7100 , thread 11758 , mypolls 0 +myconn 0 connecting thr ae8d7100 , thread 11758 , mypolls 0 +thr ae8d7280 , status 1 +connecting thr ae8d7280 , thread 11759 , mypolls 0 +myconn 0 connecting thr ae8d7280 , thread 11759 , mypolls 0 +thr ae8d7400 , status 1 +connecting thr ae8d7400 , thread 11760 , mypolls 0 +myconn 0 connecting thr ae8d7400 , thread 11760 , mypolls 0 +thr ae8d7580 , status 1 +connecting thr ae8d7580 , thread 11761 , mypolls 0 +myconn 0 connecting thr ae8d7580 , thread 11761 , mypolls 0 +thr ae8d7700 , status 1 +connecting thr ae8d7700 , thread 11762 , mypolls 0 +myconn 0 connecting thr ae8d7700 , thread 11762 , mypolls 0 +thr ae8d7880 , status 1 +connecting thr ae8d7880 , thread 11763 , mypolls 0 +myconn 0 connecting thr ae8d7880 , thread 11763 , mypolls 0 +thr ae8d7a00 , status 1 +connecting thr ae8d7a00 , thread 11764 , mypolls 0 +myconn 0 connecting thr ae8d7a00 , thread 11764 , mypolls 0 +thr ae8d7b80 , status 1 +connecting thr ae8d7b80 , thread 11765 , mypolls 0 +myconn 0 connecting thr ae8d7b80 , thread 11765 , mypolls 0 +thr ae8d7d00 , status 1 +connecting thr ae8d7d00 , thread 11766 , mypolls 0 +myconn 0 connecting thr ae8d7d00 , thread 11766 , mypolls 0 +thr ae8d7e80 , status 1 +connecting thr ae8d7e80 , thread 11767 , mypolls 0 +myconn 0 connecting thr ae8d7e80 , thread 11767 , mypolls 0 +thr ae738000 , status 1 +connecting thr ae738000 , thread 11768 , mypolls 0 +myconn 0 connecting thr ae738000 , thread 11768 , mypolls 0 +thr ae738180 , status 1 +connecting thr ae738180 , thread 11769 , mypolls 0 +myconn 0 connecting thr ae738180 , thread 11769 , mypolls 0 +thr ae738300 , status 1 +connecting thr ae738300 , thread 11770 , mypolls 0 +myconn 0 connecting thr ae738300 , thread 11770 , mypolls 0 +thr ae738480 , status 1 +connecting thr ae738480 , thread 11771 , mypolls 0 +myconn 0 connecting thr ae738480 , thread 11771 , mypolls 0 +thr ae738600 , status 1 +connecting thr ae738600 , thread 11772 , mypolls 0 +myconn 0 connecting thr ae738600 , thread 11772 , mypolls 0 +thr ae738780 , status 1 +connecting thr ae738780 , thread 11773 , mypolls 0 +myconn 0 connecting thr ae738780 , thread 11773 , mypolls 0 +thr ae738900 , status 1 +connecting thr ae738900 , thread 11774 , mypolls 0 +myconn 0 connecting thr ae738900 , thread 11774 , mypolls 0 +thr ae738a80 , status 1 +connecting thr ae738a80 , thread 11775 , mypolls 0 +myconn 0 connecting thr ae738a80 , thread 11775 , mypolls 0 +thr ae738c00 , status 1 +connecting thr ae738c00 , thread 11776 , mypolls 0 +myconn 0 connecting thr ae738c00 , thread 11776 , mypolls 0 +thr ae738d80 , status 1 +connecting thr ae738d80 , thread 11777 , mypolls 0 +myconn 0 connecting thr ae738d80 , thread 11777 , mypolls 0 +thr ae738f00 , status 1 +connecting thr ae738f00 , thread 11778 , mypolls 0 +myconn 0 connecting thr ae738f00 , thread 11778 , mypolls 0 +thr ae739080 , status 1 +connecting thr ae739080 , thread 11779 , mypolls 0 +myconn 0 connecting thr ae739080 , thread 11779 , mypolls 0 +thr ae739200 , status 1 +connecting thr ae739200 , thread 11780 , mypolls 0 +myconn 0 connecting thr ae739200 , thread 11780 , mypolls 0 +thr ae739380 , status 1 +connecting thr ae739380 , thread 11781 , mypolls 0 +myconn 0 connecting thr ae739380 , thread 11781 , mypolls 0 +thr ae739500 , status 1 +connecting thr ae739500 , thread 11782 , mypolls 0 +myconn 0 connecting thr ae739500 , thread 11782 , mypolls 0 +thr ae739680 , status 1 +connecting thr ae739680 , thread 11783 , mypolls 0 +myconn 0 connecting thr ae739680 , thread 11783 , mypolls 0 +thr ae739800 , status 1 +connecting thr ae739800 , thread 11784 , mypolls 0 +myconn 0 connecting thr ae739800 , thread 11784 , mypolls 0 +thr ae739980 , status 1 +connecting thr ae739980 , thread 11785 , mypolls 0 +myconn 0 connecting thr ae739980 , thread 11785 , mypolls 0 +thr ae739b00 , status 1 +connecting thr ae739b00 , thread 11786 , mypolls 0 +myconn 0 connecting thr ae739b00 , thread 11786 , mypolls 0 +thr ae739c80 , status 1 +connecting thr ae739c80 , thread 11787 , mypolls 0 +myconn 0 connecting thr ae739c80 , thread 11787 , mypolls 0 +thr ae739e00 , status 1 +connecting thr ae739e00 , thread 11788 , mypolls 0 +myconn 0 connecting thr ae739e00 , thread 11788 , mypolls 0 +thr ae739f80 , status 1 +connecting thr ae739f80 , thread 11789 , mypolls 0 +myconn 0 connecting thr ae739f80 , thread 11789 , mypolls 0 +thr ae73a100 , status 1 +connecting thr ae73a100 , thread 11790 , mypolls 0 +myconn 0 connecting thr ae73a100 , thread 11790 , mypolls 0 +thr ae73a280 , status 1 +connecting thr ae73a280 , thread 11791 , mypolls 0 +myconn 0 connecting thr ae73a280 , thread 11791 , mypolls 0 +thr ae73a400 , status 1 +connecting thr ae73a400 , thread 11792 , mypolls 0 +myconn 0 connecting thr ae73a400 , thread 11792 , mypolls 0 +thr ae73a580 , status 1 +connecting thr ae73a580 , thread 11793 , mypolls 0 +myconn 0 connecting thr ae73a580 , thread 11793 , mypolls 0 +thr ae73a700 , status 1 +connecting thr ae73a700 , thread 11794 , mypolls 0 +myconn 0 connecting thr ae73a700 , thread 11794 , mypolls 0 +thr ae73a880 , status 1 +connecting thr ae73a880 , thread 11795 , mypolls 0 +myconn 0 connecting thr ae73a880 , thread 11795 , mypolls 0 +thr ae73aa00 , status 1 +connecting thr ae73aa00 , thread 11796 , mypolls 0 +myconn 0 connecting thr ae73aa00 , thread 11796 , mypolls 0 +thr ae73ab80 , status 1 +connecting thr ae73ab80 , thread 11797 , mypolls 0 +myconn 0 connecting thr ae73ab80 , thread 11797 , mypolls 0 +thr ae73ad00 , status 1 +connecting thr ae73ad00 , thread 11798 , mypolls 0 +myconn 0 connecting thr ae73ad00 , thread 11798 , mypolls 0 +thr ae73ae80 , status 1 +connecting thr ae73ae80 , thread 11799 , mypolls 0 +myconn 0 connecting thr ae73ae80 , thread 11799 , mypolls 0 +thr ae59e000 , status 1 +connecting thr ae59e000 , thread 11800 , mypolls 0 +myconn 0 connecting thr ae59e000 , thread 11800 , mypolls 0 +thr ae59e180 , status 1 +connecting thr ae59e180 , thread 11801 , mypolls 0 +myconn 0 connecting thr ae59e180 , thread 11801 , mypolls 0 +thr ae59e300 , status 1 +connecting thr ae59e300 , thread 11802 , mypolls 0 +myconn 0 connecting thr ae59e300 , thread 11802 , mypolls 0 +thr ae59e480 , status 1 +connecting thr ae59e480 , thread 11803 , mypolls 0 +myconn 0 connecting thr ae59e480 , thread 11803 , mypolls 0 +thr ae59e600 , status 1 +connecting thr ae59e600 , thread 11804 , mypolls 0 +myconn 0 connecting thr ae59e600 , thread 11804 , mypolls 0 +thr ae59e780 , status 1 +connecting thr ae59e780 , thread 11805 , mypolls 0 +myconn 0 connecting thr ae59e780 , thread 11805 , mypolls 0 +thr ae59e900 , status 1 +connecting thr ae59e900 , thread 11806 , mypolls 0 +myconn 0 connecting thr ae59e900 , thread 11806 , mypolls 0 +thr ae59ea80 , status 1 +connecting thr ae59ea80 , thread 11807 , mypolls 0 +myconn 0 connecting thr ae59ea80 , thread 11807 , mypolls 0 +thr ae59ec00 , status 1 +connecting thr ae59ec00 , thread 11808 , mypolls 0 +myconn 0 connecting thr ae59ec00 , thread 11808 , mypolls 0 +thr ae59ed80 , status 1 +connecting thr ae59ed80 , thread 11809 , mypolls 0 +myconn 0 connecting thr ae59ed80 , thread 11809 , mypolls 0 +thr ae59ef00 , status 1 +connecting thr ae59ef00 , thread 11810 , mypolls 0 +myconn 0 connecting thr ae59ef00 , thread 11810 , mypolls 0 +thr ae59f080 , status 1 +connecting thr ae59f080 , thread 11811 , mypolls 0 +myconn 0 connecting thr ae59f080 , thread 11811 , mypolls 0 +thr ae59f200 , status 1 +connecting thr ae59f200 , thread 11812 , mypolls 0 +myconn 0 connecting thr ae59f200 , thread 11812 , mypolls 0 +thr ae59f380 , status 1 +connecting thr ae59f380 , thread 11813 , mypolls 0 +myconn 0 connecting thr ae59f380 , thread 11813 , mypolls 0 +thr ae59f500 , status 1 +connecting thr ae59f500 , thread 11814 , mypolls 0 +myconn 0 connecting thr ae59f500 , thread 11814 , mypolls 0 +thr ae59f680 , status 1 +connecting thr ae59f680 , thread 11815 , mypolls 0 +myconn 0 connecting thr ae59f680 , thread 11815 , mypolls 0 +thr ae59f800 , status 1 +connecting thr ae59f800 , thread 11816 , mypolls 0 +myconn 0 connecting thr ae59f800 , thread 11816 , mypolls 0 +thr ae59f980 , status 1 +connecting thr ae59f980 , thread 11817 , mypolls 0 +myconn 0 connecting thr ae59f980 , thread 11817 , mypolls 0 +thr ae59fb00 , status 1 +connecting thr ae59fb00 , thread 11818 , mypolls 0 +myconn 0 connecting thr ae59fb00 , thread 11818 , mypolls 0 +thr ae59fc80 , status 1 +connecting thr ae59fc80 , thread 11819 , mypolls 0 +myconn 0 connecting thr ae59fc80 , thread 11819 , mypolls 0 +thr ae59fe00 , status 1 +connecting thr ae59fe00 , thread 11820 , mypolls 0 +myconn 0 connecting thr ae59fe00 , thread 11820 , mypolls 0 +thr ae59ff80 , status 1 +connecting thr ae59ff80 , thread 11821 , mypolls 0 +myconn 0 connecting thr ae59ff80 , thread 11821 , mypolls 0 +thr ae5a0100 , status 1 +connecting thr ae5a0100 , thread 11822 , mypolls 0 +myconn 0 connecting thr ae5a0100 , thread 11822 , mypolls 0 +thr ae5a0280 , status 1 +connecting thr ae5a0280 , thread 11823 , mypolls 0 +myconn 0 connecting thr ae5a0280 , thread 11823 , mypolls 0 +thr ae5a0400 , status 1 +connecting thr ae5a0400 , thread 11824 , mypolls 0 +myconn 0 connecting thr ae5a0400 , thread 11824 , mypolls 0 +thr ae5a0580 , status 1 +connecting thr ae5a0580 , thread 11825 , mypolls 0 +myconn 0 connecting thr ae5a0580 , thread 11825 , mypolls 0 +thr ae5a0700 , status 1 +connecting thr ae5a0700 , thread 11826 , mypolls 0 +myconn 0 connecting thr ae5a0700 , thread 11826 , mypolls 0 +thr ae5a0880 , status 1 +connecting thr ae5a0880 , thread 11827 , mypolls 0 +myconn 0 connecting thr ae5a0880 , thread 11827 , mypolls 0 +thr ae5a0a00 , status 1 +connecting thr ae5a0a00 , thread 11828 , mypolls 0 +myconn 0 connecting thr ae5a0a00 , thread 11828 , mypolls 0 +thr ae5a0b80 , status 1 +connecting thr ae5a0b80 , thread 11829 , mypolls 0 +myconn 0 connecting thr ae5a0b80 , thread 11829 , mypolls 0 +thr ae5a0d00 , status 1 +connecting thr ae5a0d00 , thread 11830 , mypolls 0 +myconn 0 connecting thr ae5a0d00 , thread 11830 , mypolls 0 +thr ae5a0e80 , status 1 +connecting thr ae5a0e80 , thread 11831 , mypolls 0 +myconn 0 connecting thr ae5a0e80 , thread 11831 , mypolls 0 +thr ae3f9000 , status 1 +connecting thr ae3f9000 , thread 11832 , mypolls 0 +myconn 0 connecting thr ae3f9000 , thread 11832 , mypolls 0 +thr ae3f9180 , status 1 +connecting thr ae3f9180 , thread 11833 , mypolls 0 +myconn 0 connecting thr ae3f9180 , thread 11833 , mypolls 0 +thr ae3f9300 , status 1 +connecting thr ae3f9300 , thread 11834 , mypolls 0 +myconn 0 connecting thr ae3f9300 , thread 11834 , mypolls 0 +thr ae3f9480 , status 1 +connecting thr ae3f9480 , thread 11835 , mypolls 0 +myconn 0 connecting thr ae3f9480 , thread 11835 , mypolls 0 +thr ae3f9600 , status 1 +connecting thr ae3f9600 , thread 11836 , mypolls 0 +myconn 0 connecting thr ae3f9600 , thread 11836 , mypolls 0 +thr ae3f9780 , status 1 +connecting thr ae3f9780 , thread 11837 , mypolls 0 +myconn 0 connecting thr ae3f9780 , thread 11837 , mypolls 0 +thr ae3f9900 , status 1 +connecting thr ae3f9900 , thread 11838 , mypolls 0 +myconn 0 connecting thr ae3f9900 , thread 11838 , mypolls 0 +thr ae3f9a80 , status 1 +connecting thr ae3f9a80 , thread 11839 , mypolls 0 +myconn 0 connecting thr ae3f9a80 , thread 11839 , mypolls 0 +thr ae3f9c00 , status 1 +connecting thr ae3f9c00 , thread 11840 , mypolls 0 +myconn 0 connecting thr ae3f9c00 , thread 11840 , mypolls 0 +thr ae3f9d80 , status 1 +connecting thr ae3f9d80 , thread 11841 , mypolls 0 +myconn 0 connecting thr ae3f9d80 , thread 11841 , mypolls 0 +thr ae3f9f00 , status 1 +connecting thr ae3f9f00 , thread 11842 , mypolls 0 +myconn 0 connecting thr ae3f9f00 , thread 11842 , mypolls 0 +thr ae3fa080 , status 1 +connecting thr ae3fa080 , thread 11843 , mypolls 0 +myconn 0 connecting thr ae3fa080 , thread 11843 , mypolls 0 +thr ae3fa200 , status 1 +connecting thr ae3fa200 , thread 11844 , mypolls 0 +myconn 0 connecting thr ae3fa200 , thread 11844 , mypolls 0 +thr ae3fa380 , status 1 +connecting thr ae3fa380 , thread 11845 , mypolls 0 +myconn 0 connecting thr ae3fa380 , thread 11845 , mypolls 0 +thr ae3fa500 , status 1 +connecting thr ae3fa500 , thread 11846 , mypolls 0 +myconn 0 connecting thr ae3fa500 , thread 11846 , mypolls 0 +thr ae3fa680 , status 1 +connecting thr ae3fa680 , thread 11847 , mypolls 0 +myconn 0 connecting thr ae3fa680 , thread 11847 , mypolls 0 +thr ae3fa800 , status 1 +connecting thr ae3fa800 , thread 11848 , mypolls 0 +myconn 0 connecting thr ae3fa800 , thread 11848 , mypolls 0 +thr ae3fa980 , status 1 +connecting thr ae3fa980 , thread 11849 , mypolls 0 +myconn 0 connecting thr ae3fa980 , thread 11849 , mypolls 0 +thr ae3fab00 , status 1 +connecting thr ae3fab00 , thread 11850 , mypolls 0 +myconn 0 connecting thr ae3fab00 , thread 11850 , mypolls 0 +thr ae3fac80 , status 1 +connecting thr ae3fac80 , thread 11851 , mypolls 0 +myconn 0 connecting thr ae3fac80 , thread 11851 , mypolls 0 +thr ae3fae00 , status 1 +connecting thr ae3fae00 , thread 11852 , mypolls 0 +myconn 0 connecting thr ae3fae00 , thread 11852 , mypolls 0 +thr ae3faf80 , status 1 +connecting thr ae3faf80 , thread 11853 , mypolls 0 +myconn 0 connecting thr ae3faf80 , thread 11853 , mypolls 0 +thr ae3fb100 , status 1 +connecting thr ae3fb100 , thread 11854 , mypolls 0 +myconn 0 connecting thr ae3fb100 , thread 11854 , mypolls 0 +thr ae3fb280 , status 1 +connecting thr ae3fb280 , thread 11855 , mypolls 0 +myconn 0 connecting thr ae3fb280 , thread 11855 , mypolls 0 +thr ae3fb400 , status 1 +connecting thr ae3fb400 , thread 11856 , mypolls 0 +myconn 0 connecting thr ae3fb400 , thread 11856 , mypolls 0 +thr ae3fb580 , status 1 +connecting thr ae3fb580 , thread 11857 , mypolls 0 +myconn 0 connecting thr ae3fb580 , thread 11857 , mypolls 0 +thr ae3fb700 , status 1 +connecting thr ae3fb700 , thread 11858 , mypolls 0 +myconn 0 connecting thr ae3fb700 , thread 11858 , mypolls 0 +thr ae3fb880 , status 1 +connecting thr ae3fb880 , thread 11859 , mypolls 0 +myconn 0 connecting thr ae3fb880 , thread 11859 , mypolls 0 +thr ae3fba00 , status 1 +connecting thr ae3fba00 , thread 11860 , mypolls 0 +myconn 0 connecting thr ae3fba00 , thread 11860 , mypolls 0 +thr ae3fbb80 , status 1 +connecting thr ae3fbb80 , thread 11861 , mypolls 0 +myconn 0 connecting thr ae3fbb80 , thread 11861 , mypolls 0 +thr ae3fbd00 , status 1 +connecting thr ae3fbd00 , thread 11862 , mypolls 0 +myconn 0 connecting thr ae3fbd00 , thread 11862 , mypolls 0 +thr ae3fbe80 , status 1 +connecting thr ae3fbe80 , thread 11863 , mypolls 0 +myconn 0 connecting thr ae3fbe80 , thread 11863 , mypolls 0 +thr ade72000 , status 1 +connecting thr ade72000 , thread 11864 , mypolls 0 +myconn 0 connecting thr ade72000 , thread 11864 , mypolls 0 +thr ade72180 , status 1 +connecting thr ade72180 , thread 11865 , mypolls 0 +myconn 0 connecting thr ade72180 , thread 11865 , mypolls 0 +thr ade72300 , status 1 +connecting thr ade72300 , thread 11866 , mypolls 0 +myconn 0 connecting thr ade72300 , thread 11866 , mypolls 0 +thr ade72480 , status 1 +connecting thr ade72480 , thread 11867 , mypolls 0 +myconn 0 connecting thr ade72480 , thread 11867 , mypolls 0 +thr ade72600 , status 1 +connecting thr ade72600 , thread 11868 , mypolls 0 +myconn 0 connecting thr ade72600 , thread 11868 , mypolls 0 +thr ade72780 , status 1 +connecting thr ade72780 , thread 11869 , mypolls 0 +myconn 0 connecting thr ade72780 , thread 11869 , mypolls 0 +thr ade72900 , status 1 +connecting thr ade72900 , thread 11870 , mypolls 0 +myconn 0 connecting thr ade72900 , thread 11870 , mypolls 0 +thr ade72a80 , status 1 +connecting thr ade72a80 , thread 11871 , mypolls 0 +myconn 0 connecting thr ade72a80 , thread 11871 , mypolls 0 +thr ade72c00 , status 1 +connecting thr ade72c00 , thread 11872 , mypolls 0 +myconn 0 connecting thr ade72c00 , thread 11872 , mypolls 0 +thr ade72d80 , status 1 +connecting thr ade72d80 , thread 11873 , mypolls 0 +myconn 0 connecting thr ade72d80 , thread 11873 , mypolls 0 +thr ade72f00 , status 1 +connecting thr ade72f00 , thread 11874 , mypolls 0 +myconn 0 connecting thr ade72f00 , thread 11874 , mypolls 0 +thr ade73080 , status 1 +connecting thr ade73080 , thread 11875 , mypolls 0 +myconn 0 connecting thr ade73080 , thread 11875 , mypolls 0 +thr ade73200 , status 1 +connecting thr ade73200 , thread 11876 , mypolls 0 +myconn 0 connecting thr ade73200 , thread 11876 , mypolls 0 +thr ade73380 , status 1 +connecting thr ade73380 , thread 11877 , mypolls 0 +myconn 0 connecting thr ade73380 , thread 11877 , mypolls 0 +thr ade73500 , status 1 +connecting thr ade73500 , thread 11878 , mypolls 0 +myconn 0 connecting thr ade73500 , thread 11878 , mypolls 0 +thr ade73680 , status 1 +connecting thr ade73680 , thread 11879 , mypolls 0 +myconn 0 connecting thr ade73680 , thread 11879 , mypolls 0 +thr ade73800 , status 1 +connecting thr ade73800 , thread 11880 , mypolls 0 +myconn 0 connecting thr ade73800 , thread 11880 , mypolls 0 +thr ade73980 , status 1 +connecting thr ade73980 , thread 11881 , mypolls 0 +myconn 0 connecting thr ade73980 , thread 11881 , mypolls 0 +thr ade73b00 , status 1 +connecting thr ade73b00 , thread 11882 , mypolls 0 +myconn 0 connecting thr ade73b00 , thread 11882 , mypolls 0 +thr ade73c80 , status 1 +connecting thr ade73c80 , thread 11883 , mypolls 0 +myconn 0 connecting thr ade73c80 , thread 11883 , mypolls 0 +thr ade73e00 , status 1 +connecting thr ade73e00 , thread 11884 , mypolls 0 +myconn 0 connecting thr ade73e00 , thread 11884 , mypolls 0 +thr ade73f80 , status 1 +connecting thr ade73f80 , thread 11885 , mypolls 0 +myconn 0 connecting thr ade73f80 , thread 11885 , mypolls 0 +thr ade74100 , status 1 +connecting thr ade74100 , thread 11886 , mypolls 0 +myconn 0 connecting thr ade74100 , thread 11886 , mypolls 0 +thr ade74280 , status 1 +connecting thr ade74280 , thread 11887 , mypolls 0 +myconn 0 connecting thr ade74280 , thread 11887 , mypolls 0 +thr ade74400 , status 1 +connecting thr ade74400 , thread 11888 , mypolls 0 +myconn 0 connecting thr ade74400 , thread 11888 , mypolls 0 +thr ade74580 , status 1 +connecting thr ade74580 , thread 11889 , mypolls 0 +myconn 0 connecting thr ade74580 , thread 11889 , mypolls 0 +thr ade74700 , status 1 +connecting thr ade74700 , thread 11890 , mypolls 0 +myconn 0 connecting thr ade74700 , thread 11890 , mypolls 0 +thr ade74880 , status 1 +connecting thr ade74880 , thread 11891 , mypolls 0 +myconn 0 connecting thr ade74880 , thread 11891 , mypolls 0 +thr ade74a00 , status 1 +connecting thr ade74a00 , thread 11892 , mypolls 0 +myconn 0 connecting thr ade74a00 , thread 11892 , mypolls 0 +thr ade74b80 , status 1 +connecting thr ade74b80 , thread 11893 , mypolls 0 +myconn 0 connecting thr ade74b80 , thread 11893 , mypolls 0 +thr ade74d00 , status 1 +connecting thr ade74d00 , thread 11894 , mypolls 0 +myconn 0 connecting thr ade74d00 , thread 11894 , mypolls 0 +thr ade74e80 , status 1 +connecting thr ade74e80 , thread 11895 , mypolls 0 +myconn 0 connecting thr ade74e80 , thread 11895 , mypolls 0 +thr adffd000 , status 1 +connecting thr adffd000 , thread 11896 , mypolls 0 +myconn 0 connecting thr adffd000 , thread 11896 , mypolls 0 +thr adffd180 , status 1 +connecting thr adffd180 , thread 11897 , mypolls 0 +myconn 0 connecting thr adffd180 , thread 11897 , mypolls 0 +thr adffd300 , status 1 +connecting thr adffd300 , thread 11898 , mypolls 0 +myconn 0 connecting thr adffd300 , thread 11898 , mypolls 0 +thr adffd480 , status 1 +connecting thr adffd480 , thread 11899 , mypolls 0 +myconn 0 connecting thr adffd480 , thread 11899 , mypolls 0 +thr adffd600 , status 1 +connecting thr adffd600 , thread 11900 , mypolls 0 +myconn 0 connecting thr adffd600 , thread 11900 , mypolls 0 +thr adffd780 , status 1 +connecting thr adffd780 , thread 11901 , mypolls 0 +myconn 0 connecting thr adffd780 , thread 11901 , mypolls 0 +thr adffd900 , status 1 +connecting thr adffd900 , thread 11902 , mypolls 0 +myconn 0 connecting thr adffd900 , thread 11902 , mypolls 0 +thr adffda80 , status 1 +connecting thr adffda80 , thread 11903 , mypolls 0 +myconn 0 connecting thr adffda80 , thread 11903 , mypolls 0 +thr adffdc00 , status 1 +connecting thr adffdc00 , thread 11904 , mypolls 0 +myconn 0 connecting thr adffdc00 , thread 11904 , mypolls 0 +thr adffdd80 , status 1 +connecting thr adffdd80 , thread 11905 , mypolls 0 +myconn 0 connecting thr adffdd80 , thread 11905 , mypolls 0 +thr adffdf00 , status 1 +connecting thr adffdf00 , thread 11906 , mypolls 0 +myconn 0 connecting thr adffdf00 , thread 11906 , mypolls 0 +thr adffe080 , status 1 +connecting thr adffe080 , thread 11907 , mypolls 0 +myconn 0 connecting thr adffe080 , thread 11907 , mypolls 0 +thr adffe200 , status 1 +connecting thr adffe200 , thread 11908 , mypolls 0 +myconn 0 connecting thr adffe200 , thread 11908 , mypolls 0 +thr adffe380 , status 1 +connecting thr adffe380 , thread 11909 , mypolls 0 +myconn 0 connecting thr adffe380 , thread 11909 , mypolls 0 +thr adffe500 , status 1 +connecting thr adffe500 , thread 11910 , mypolls 0 +myconn 0 connecting thr adffe500 , thread 11910 , mypolls 0 +thr adffe680 , status 1 +connecting thr adffe680 , thread 11911 , mypolls 0 +myconn 0 connecting thr adffe680 , thread 11911 , mypolls 0 +thr adffe800 , status 1 +connecting thr adffe800 , thread 11912 , mypolls 0 +myconn 0 connecting thr adffe800 , thread 11912 , mypolls 0 +thr adffe980 , status 1 +connecting thr adffe980 , thread 11913 , mypolls 0 +myconn 0 connecting thr adffe980 , thread 11913 , mypolls 0 +thr adffeb00 , status 1 +connecting thr adffeb00 , thread 11914 , mypolls 0 +myconn 0 connecting thr adffeb00 , thread 11914 , mypolls 0 +thr adffec80 , status 1 +connecting thr adffec80 , thread 11915 , mypolls 0 +myconn 0 connecting thr adffec80 , thread 11915 , mypolls 0 +thr adffee00 , status 1 +connecting thr adffee00 , thread 11916 , mypolls 0 +myconn 0 connecting thr adffee00 , thread 11916 , mypolls 0 +thr adffef80 , status 1 +connecting thr adffef80 , thread 11917 , mypolls 0 +myconn 0 connecting thr adffef80 , thread 11917 , mypolls 0 +thr adfff100 , status 1 +connecting thr adfff100 , thread 11918 , mypolls 0 +myconn 0 connecting thr adfff100 , thread 11918 , mypolls 0 +thr adfff280 , status 1 +connecting thr adfff280 , thread 11919 , mypolls 0 +myconn 0 connecting thr adfff280 , thread 11919 , mypolls 0 +thr adfff400 , status 1 +connecting thr adfff400 , thread 11920 , mypolls 0 +myconn 0 connecting thr adfff400 , thread 11920 , mypolls 0 +thr adfff580 , status 1 +connecting thr adfff580 , thread 11921 , mypolls 0 +myconn 0 connecting thr adfff580 , thread 11921 , mypolls 0 +thr adfff700 , status 1 +connecting thr adfff700 , thread 11922 , mypolls 0 +myconn 0 connecting thr adfff700 , thread 11922 , mypolls 0 +thr adfff880 , status 1 +connecting thr adfff880 , thread 11923 , mypolls 0 +myconn 0 connecting thr adfff880 , thread 11923 , mypolls 0 +thr adfffa00 , status 1 +connecting thr adfffa00 , thread 11924 , mypolls 0 +myconn 0 connecting thr adfffa00 , thread 11924 , mypolls 0 +thr adfffb80 , status 1 +connecting thr adfffb80 , thread 11925 , mypolls 0 +myconn 0 connecting thr adfffb80 , thread 11925 , mypolls 0 +thr adfffd00 , status 1 +connecting thr adfffd00 , thread 11926 , mypolls 0 +myconn 0 connecting thr adfffd00 , thread 11926 , mypolls 0 +thr adfffe80 , status 1 +connecting thr adfffe80 , thread 11927 , mypolls 0 +myconn 0 connecting thr adfffe80 , thread 11927 , mypolls 0 +thr adb35000 , status 1 +connecting thr adb35000 , thread 11928 , mypolls 0 +myconn 0 connecting thr adb35000 , thread 11928 , mypolls 0 +thr adb35180 , status 1 +connecting thr adb35180 , thread 11929 , mypolls 0 +myconn 0 connecting thr adb35180 , thread 11929 , mypolls 0 +thr adb35300 , status 1 +connecting thr adb35300 , thread 11930 , mypolls 0 +myconn 0 connecting thr adb35300 , thread 11930 , mypolls 0 +thr adb35480 , status 1 +connecting thr adb35480 , thread 11931 , mypolls 0 +myconn 0 connecting thr adb35480 , thread 11931 , mypolls 0 +thr adb35600 , status 1 +connecting thr adb35600 , thread 11932 , mypolls 0 +myconn 0 connecting thr adb35600 , thread 11932 , mypolls 0 +thr adb35780 , status 1 +connecting thr adb35780 , thread 11933 , mypolls 0 +myconn 0 connecting thr adb35780 , thread 11933 , mypolls 0 +thr adb35900 , status 1 +connecting thr adb35900 , thread 11934 , mypolls 0 +myconn 0 connecting thr adb35900 , thread 11934 , mypolls 0 +thr adb35a80 , status 1 +connecting thr adb35a80 , thread 11935 , mypolls 0 +myconn 0 connecting thr adb35a80 , thread 11935 , mypolls 0 +thr adb35c00 , status 1 +connecting thr adb35c00 , thread 11936 , mypolls 0 +myconn 0 connecting thr adb35c00 , thread 11936 , mypolls 0 +thr adb35d80 , status 1 +connecting thr adb35d80 , thread 11937 , mypolls 0 +myconn 0 connecting thr adb35d80 , thread 11937 , mypolls 0 +thr adb35f00 , status 1 +connecting thr adb35f00 , thread 11938 , mypolls 0 +myconn 0 connecting thr adb35f00 , thread 11938 , mypolls 0 +thr adb36080 , status 1 +connecting thr adb36080 , thread 11939 , mypolls 0 +myconn 0 connecting thr adb36080 , thread 11939 , mypolls 0 +thr adb36200 , status 1 +connecting thr adb36200 , thread 11940 , mypolls 0 +myconn 0 connecting thr adb36200 , thread 11940 , mypolls 0 +thr adb36380 , status 1 +connecting thr adb36380 , thread 11941 , mypolls 0 +myconn 0 connecting thr adb36380 , thread 11941 , mypolls 0 +thr adb36500 , status 1 +connecting thr adb36500 , thread 11942 , mypolls 0 +myconn 0 connecting thr adb36500 , thread 11942 , mypolls 0 +thr adb36680 , status 1 +connecting thr adb36680 , thread 11943 , mypolls 0 +myconn 0 connecting thr adb36680 , thread 11943 , mypolls 0 +thr adb36800 , status 1 +connecting thr adb36800 , thread 11944 , mypolls 0 +myconn 0 connecting thr adb36800 , thread 11944 , mypolls 0 +thr adb36980 , status 1 +connecting thr adb36980 , thread 11945 , mypolls 0 +myconn 0 connecting thr adb36980 , thread 11945 , mypolls 0 +thr adb36b00 , status 1 +connecting thr adb36b00 , thread 11946 , mypolls 0 +myconn 0 connecting thr adb36b00 , thread 11946 , mypolls 0 +thr adb36c80 , status 1 +connecting thr adb36c80 , thread 11947 , mypolls 0 +myconn 0 connecting thr adb36c80 , thread 11947 , mypolls 0 +thr adb36e00 , status 1 +connecting thr adb36e00 , thread 11948 , mypolls 0 +myconn 0 connecting thr adb36e00 , thread 11948 , mypolls 0 +thr adb36f80 , status 1 +connecting thr adb36f80 , thread 11949 , mypolls 0 +myconn 0 connecting thr adb36f80 , thread 11949 , mypolls 0 +thr adb37100 , status 1 +connecting thr adb37100 , thread 11950 , mypolls 0 +myconn 0 connecting thr adb37100 , thread 11950 , mypolls 0 +thr adb37280 , status 1 +connecting thr adb37280 , thread 11951 , mypolls 0 +myconn 0 connecting thr adb37280 , thread 11951 , mypolls 0 +thr adb37400 , status 1 +connecting thr adb37400 , thread 11952 , mypolls 0 +myconn 0 connecting thr adb37400 , thread 11952 , mypolls 0 +thr adb37580 , status 1 +connecting thr adb37580 , thread 11953 , mypolls 0 +myconn 0 connecting thr adb37580 , thread 11953 , mypolls 0 +thr adb37700 , status 1 +connecting thr adb37700 , thread 11954 , mypolls 0 +myconn 0 connecting thr adb37700 , thread 11954 , mypolls 0 +thr adb37880 , status 1 +connecting thr adb37880 , thread 11955 , mypolls 0 +myconn 0 connecting thr adb37880 , thread 11955 , mypolls 0 +thr adb37a00 , status 1 +connecting thr adb37a00 , thread 11956 , mypolls 0 +myconn 0 connecting thr adb37a00 , thread 11956 , mypolls 0 +thr adb37b80 , status 1 +connecting thr adb37b80 , thread 11957 , mypolls 0 +myconn 0 connecting thr adb37b80 , thread 11957 , mypolls 0 +thr adb37d00 , status 1 +connecting thr adb37d00 , thread 11958 , mypolls 0 +myconn 0 connecting thr adb37d00 , thread 11958 , mypolls 0 +thr adb37e80 , status 1 +connecting thr adb37e80 , thread 11959 , mypolls 0 +myconn 0 connecting thr adb37e80 , thread 11959 , mypolls 0 +thr ad995000 , status 1 +connecting thr ad995000 , thread 11960 , mypolls 0 +myconn 0 connecting thr ad995000 , thread 11960 , mypolls 0 +thr ad995180 , status 1 +connecting thr ad995180 , thread 11961 , mypolls 0 +myconn 0 connecting thr ad995180 , thread 11961 , mypolls 0 +thr ad995300 , status 1 +connecting thr ad995300 , thread 11962 , mypolls 0 +myconn 0 connecting thr ad995300 , thread 11962 , mypolls 0 +thr ad995480 , status 1 +connecting thr ad995480 , thread 11963 , mypolls 0 +myconn 0 connecting thr ad995480 , thread 11963 , mypolls 0 +thr ad995600 , status 1 +connecting thr ad995600 , thread 11964 , mypolls 0 +myconn 0 connecting thr ad995600 , thread 11964 , mypolls 0 +thr ad995780 , status 1 +connecting thr ad995780 , thread 11965 , mypolls 0 +myconn 0 connecting thr ad995780 , thread 11965 , mypolls 0 +thr ad995900 , status 1 +connecting thr ad995900 , thread 11966 , mypolls 0 +myconn 0 connecting thr ad995900 , thread 11966 , mypolls 0 +thr ad995a80 , status 1 +connecting thr ad995a80 , thread 11967 , mypolls 0 +myconn 0 connecting thr ad995a80 , thread 11967 , mypolls 0 +thr ad995c00 , status 1 +connecting thr ad995c00 , thread 11968 , mypolls 0 +myconn 0 connecting thr ad995c00 , thread 11968 , mypolls 0 +thr ad995d80 , status 1 +connecting thr ad995d80 , thread 11969 , mypolls 0 +myconn 0 connecting thr ad995d80 , thread 11969 , mypolls 0 +thr ad995f00 , status 1 +connecting thr ad995f00 , thread 11970 , mypolls 0 +myconn 0 connecting thr ad995f00 , thread 11970 , mypolls 0 +thr ad996080 , status 1 +connecting thr ad996080 , thread 11971 , mypolls 0 +myconn 0 connecting thr ad996080 , thread 11971 , mypolls 0 +thr ad996200 , status 1 +connecting thr ad996200 , thread 11972 , mypolls 0 +myconn 0 connecting thr ad996200 , thread 11972 , mypolls 0 +thr ad996380 , status 1 +connecting thr ad996380 , thread 11973 , mypolls 0 +myconn 0 connecting thr ad996380 , thread 11973 , mypolls 0 +thr ad996500 , status 1 +connecting thr ad996500 , thread 11974 , mypolls 0 +myconn 0 connecting thr ad996500 , thread 11974 , mypolls 0 +thr ad996680 , status 1 +connecting thr ad996680 , thread 11975 , mypolls 0 +myconn 0 connecting thr ad996680 , thread 11975 , mypolls 0 +thr ad996800 , status 1 +connecting thr ad996800 , thread 11976 , mypolls 0 +myconn 0 connecting thr ad996800 , thread 11976 , mypolls 0 +thr ad996980 , status 1 +connecting thr ad996980 , thread 11977 , mypolls 0 +myconn 0 connecting thr ad996980 , thread 11977 , mypolls 0 +thr ad996b00 , status 1 +connecting thr ad996b00 , thread 11978 , mypolls 0 +myconn 0 connecting thr ad996b00 , thread 11978 , mypolls 0 +thr ad996c80 , status 1 +connecting thr ad996c80 , thread 11979 , mypolls 0 +myconn 0 connecting thr ad996c80 , thread 11979 , mypolls 0 +thr ad996e00 , status 1 +connecting thr ad996e00 , thread 11980 , mypolls 0 +myconn 0 connecting thr ad996e00 , thread 11980 , mypolls 0 +thr ad996f80 , status 1 +connecting thr ad996f80 , thread 11981 , mypolls 0 +myconn 0 connecting thr ad996f80 , thread 11981 , mypolls 0 +thr ad997100 , status 1 +connecting thr ad997100 , thread 11982 , mypolls 0 +myconn 0 connecting thr ad997100 , thread 11982 , mypolls 0 +thr ad997280 , status 1 +connecting thr ad997280 , thread 11983 , mypolls 0 +myconn 0 connecting thr ad997280 , thread 11983 , mypolls 0 +thr ad997400 , status 1 +connecting thr ad997400 , thread 11984 , mypolls 0 +myconn 0 connecting thr ad997400 , thread 11984 , mypolls 0 +thr ad997580 , status 1 +connecting thr ad997580 , thread 11985 , mypolls 0 +myconn 0 connecting thr ad997580 , thread 11985 , mypolls 0 +thr ad997700 , status 1 +connecting thr ad997700 , thread 11986 , mypolls 0 +myconn 0 connecting thr ad997700 , thread 11986 , mypolls 0 +thr ad997880 , status 1 +connecting thr ad997880 , thread 11987 , mypolls 0 +myconn 0 connecting thr ad997880 , thread 11987 , mypolls 0 +thr ad997a00 , status 1 +connecting thr ad997a00 , thread 11988 , mypolls 0 +myconn 0 connecting thr ad997a00 , thread 11988 , mypolls 0 +thr ad997b80 , status 1 +connecting thr ad997b80 , thread 11989 , mypolls 0 +myconn 0 connecting thr ad997b80 , thread 11989 , mypolls 0 +thr ad997d00 , status 1 +connecting thr ad997d00 , thread 11990 , mypolls 0 +myconn 0 connecting thr ad997d00 , thread 11990 , mypolls 0 +thr ad997e80 , status 1 +connecting thr ad997e80 , thread 11991 , mypolls 0 +myconn 0 connecting thr ad997e80 , thread 11991 , mypolls 0 +thr ad7f6000 , status 1 +connecting thr ad7f6000 , thread 11992 , mypolls 0 +myconn 0 connecting thr ad7f6000 , thread 11992 , mypolls 0 +thr ad7f6180 , status 1 +connecting thr ad7f6180 , thread 11993 , mypolls 0 +myconn 0 connecting thr ad7f6180 , thread 11993 , mypolls 0 +thr ad7f6300 , status 1 +connecting thr ad7f6300 , thread 11994 , mypolls 0 +myconn 0 connecting thr ad7f6300 , thread 11994 , mypolls 0 +thr ad7f6480 , status 1 +connecting thr ad7f6480 , thread 11995 , mypolls 0 +myconn 0 connecting thr ad7f6480 , thread 11995 , mypolls 0 +thr ad7f6600 , status 1 +connecting thr ad7f6600 , thread 11996 , mypolls 0 +myconn 0 connecting thr ad7f6600 , thread 11996 , mypolls 0 +thr ad7f6780 , status 1 +connecting thr ad7f6780 , thread 11997 , mypolls 0 +myconn 0 connecting thr ad7f6780 , thread 11997 , mypolls 0 +thr ad7f6900 , status 1 +connecting thr ad7f6900 , thread 11998 , mypolls 0 +myconn 0 connecting thr ad7f6900 , thread 11998 , mypolls 0 +thr ad7f6a80 , status 1 +connecting thr ad7f6a80 , thread 11999 , mypolls 0 +myconn 0 connecting thr ad7f6a80 , thread 11999 , mypolls 0 +thr ad7f6c00 , status 1 +connecting thr ad7f6c00 , thread 12000 , mypolls 0 +myconn 0 connecting thr ad7f6c00 , thread 12000 , mypolls 0 +thr ad7f6d80 , status 1 +connecting thr ad7f6d80 , thread 12001 , mypolls 0 +myconn 0 connecting thr ad7f6d80 , thread 12001 , mypolls 0 +thr ad7f6f00 , status 1 +connecting thr ad7f6f00 , thread 12002 , mypolls 0 +myconn 0 connecting thr ad7f6f00 , thread 12002 , mypolls 0 +thr ad7f7080 , status 1 +connecting thr ad7f7080 , thread 12003 , mypolls 0 +myconn 0 connecting thr ad7f7080 , thread 12003 , mypolls 0 +thr ad7f7200 , status 1 +connecting thr ad7f7200 , thread 12004 , mypolls 0 +myconn 0 connecting thr ad7f7200 , thread 12004 , mypolls 0 +thr ad7f7380 , status 1 +connecting thr ad7f7380 , thread 12005 , mypolls 0 +myconn 0 connecting thr ad7f7380 , thread 12005 , mypolls 0 +thr ad7f7500 , status 1 +connecting thr ad7f7500 , thread 12006 , mypolls 0 +myconn 0 connecting thr ad7f7500 , thread 12006 , mypolls 0 +thr ad7f7680 , status 1 +connecting thr ad7f7680 , thread 12007 , mypolls 0 +myconn 0 connecting thr ad7f7680 , thread 12007 , mypolls 0 +thr ad7f7800 , status 1 +connecting thr ad7f7800 , thread 12008 , mypolls 0 +myconn 0 connecting thr ad7f7800 , thread 12008 , mypolls 0 +thr ad7f7980 , status 1 +connecting thr ad7f7980 , thread 12009 , mypolls 0 +myconn 0 connecting thr ad7f7980 , thread 12009 , mypolls 0 +thr ad7f7b00 , status 1 +connecting thr ad7f7b00 , thread 12010 , mypolls 0 +myconn 0 connecting thr ad7f7b00 , thread 12010 , mypolls 0 +thr ad7f7c80 , status 1 +connecting thr ad7f7c80 , thread 12011 , mypolls 0 +myconn 0 connecting thr ad7f7c80 , thread 12011 , mypolls 0 +thr ad7f7e00 , status 1 +connecting thr ad7f7e00 , thread 12012 , mypolls 0 +myconn 0 connecting thr ad7f7e00 , thread 12012 , mypolls 0 +thr ad7f7f80 , status 1 +connecting thr ad7f7f80 , thread 12013 , mypolls 0 +myconn 0 connecting thr ad7f7f80 , thread 12013 , mypolls 0 +thr ad7f8100 , status 1 +connecting thr ad7f8100 , thread 12014 , mypolls 0 +myconn 0 connecting thr ad7f8100 , thread 12014 , mypolls 0 +thr ad7f8280 , status 1 +connecting thr ad7f8280 , thread 12015 , mypolls 0 +myconn 0 connecting thr ad7f8280 , thread 12015 , mypolls 0 +thr ad7f8400 , status 1 +connecting thr ad7f8400 , thread 12016 , mypolls 0 +myconn 0 connecting thr ad7f8400 , thread 12016 , mypolls 0 +thr ad7f8580 , status 1 +connecting thr ad7f8580 , thread 12017 , mypolls 0 +myconn 0 connecting thr ad7f8580 , thread 12017 , mypolls 0 +thr ad7f8700 , status 1 +connecting thr ad7f8700 , thread 12018 , mypolls 0 +myconn 0 connecting thr ad7f8700 , thread 12018 , mypolls 0 +thr ad7f8880 , status 1 +connecting thr ad7f8880 , thread 12019 , mypolls 0 +myconn 0 connecting thr ad7f8880 , thread 12019 , mypolls 0 +thr ad7f8a00 , status 1 +connecting thr ad7f8a00 , thread 12020 , mypolls 0 +myconn 0 connecting thr ad7f8a00 , thread 12020 , mypolls 0 +thr ad7f8b80 , status 1 +connecting thr ad7f8b80 , thread 12021 , mypolls 0 +myconn 0 connecting thr ad7f8b80 , thread 12021 , mypolls 0 +thr ad7f8d00 , status 1 +connecting thr ad7f8d00 , thread 12022 , mypolls 0 +myconn 0 connecting thr ad7f8d00 , thread 12022 , mypolls 0 +thr ad7f8e80 , status 1 +connecting thr ad7f8e80 , thread 12023 , mypolls 0 +myconn 0 connecting thr ad7f8e80 , thread 12023 , mypolls 0 +thr ad270000 , status 1 +connecting thr ad270000 , thread 12024 , mypolls 0 +myconn 0 connecting thr ad270000 , thread 12024 , mypolls 0 +thr ad270180 , status 1 +connecting thr ad270180 , thread 12025 , mypolls 0 +myconn 0 connecting thr ad270180 , thread 12025 , mypolls 0 +thr ad270300 , status 1 +connecting thr ad270300 , thread 12026 , mypolls 0 +myconn 0 connecting thr ad270300 , thread 12026 , mypolls 0 +thr ad270480 , status 1 +connecting thr ad270480 , thread 12027 , mypolls 0 +myconn 0 connecting thr ad270480 , thread 12027 , mypolls 0 +thr ad270600 , status 1 +connecting thr ad270600 , thread 12028 , mypolls 0 +myconn 0 connecting thr ad270600 , thread 12028 , mypolls 0 +thr ad270780 , status 1 +connecting thr ad270780 , thread 12029 , mypolls 0 +myconn 0 connecting thr ad270780 , thread 12029 , mypolls 0 +thr ad270900 , status 1 +connecting thr ad270900 , thread 12030 , mypolls 0 +myconn 0 connecting thr ad270900 , thread 12030 , mypolls 0 +thr ad270a80 , status 1 +connecting thr ad270a80 , thread 12031 , mypolls 0 +myconn 0 connecting thr ad270a80 , thread 12031 , mypolls 0 +thr ad270c00 , status 1 +connecting thr ad270c00 , thread 12032 , mypolls 0 +myconn 0 connecting thr ad270c00 , thread 12032 , mypolls 0 +thr ad270d80 , status 1 +connecting thr ad270d80 , thread 12033 , mypolls 0 +myconn 0 connecting thr ad270d80 , thread 12033 , mypolls 0 +thr ad270f00 , status 1 +connecting thr ad270f00 , thread 12034 , mypolls 0 +myconn 0 connecting thr ad270f00 , thread 12034 , mypolls 0 +thr ad271080 , status 1 +connecting thr ad271080 , thread 12035 , mypolls 0 +myconn 0 connecting thr ad271080 , thread 12035 , mypolls 0 +thr ad271200 , status 1 +connecting thr ad271200 , thread 12036 , mypolls 0 +myconn 0 connecting thr ad271200 , thread 12036 , mypolls 0 +thr ad271380 , status 1 +connecting thr ad271380 , thread 12037 , mypolls 0 +myconn 0 connecting thr ad271380 , thread 12037 , mypolls 0 +thr ad271500 , status 1 +connecting thr ad271500 , thread 12038 , mypolls 0 +myconn 0 connecting thr ad271500 , thread 12038 , mypolls 0 +thr ad271680 , status 1 +connecting thr ad271680 , thread 12039 , mypolls 0 +myconn 0 connecting thr ad271680 , thread 12039 , mypolls 0 +thr ad271800 , status 1 +connecting thr ad271800 , thread 12040 , mypolls 0 +myconn 0 connecting thr ad271800 , thread 12040 , mypolls 0 +thr ad271980 , status 1 +connecting thr ad271980 , thread 12041 , mypolls 0 +myconn 0 connecting thr ad271980 , thread 12041 , mypolls 0 +thr ad271b00 , status 1 +connecting thr ad271b00 , thread 12042 , mypolls 0 +myconn 0 connecting thr ad271b00 , thread 12042 , mypolls 0 +thr ad271c80 , status 1 +connecting thr ad271c80 , thread 12043 , mypolls 0 +myconn 0 connecting thr ad271c80 , thread 12043 , mypolls 0 +thr ad271e00 , status 1 +connecting thr ad271e00 , thread 12044 , mypolls 0 +myconn 0 connecting thr ad271e00 , thread 12044 , mypolls 0 +thr ad271f80 , status 1 +connecting thr ad271f80 , thread 12045 , mypolls 0 +myconn 0 connecting thr ad271f80 , thread 12045 , mypolls 0 +thr ad272100 , status 1 +connecting thr ad272100 , thread 12046 , mypolls 0 +myconn 0 connecting thr ad272100 , thread 12046 , mypolls 0 +thr ad272280 , status 1 +connecting thr ad272280 , thread 12047 , mypolls 0 +myconn 0 connecting thr ad272280 , thread 12047 , mypolls 0 +thr ad272400 , status 1 +connecting thr ad272400 , thread 12048 , mypolls 0 +myconn 0 connecting thr ad272400 , thread 12048 , mypolls 0 +thr ad272580 , status 1 +connecting thr ad272580 , thread 12049 , mypolls 0 +myconn 0 connecting thr ad272580 , thread 12049 , mypolls 0 +thr ad272700 , status 1 +connecting thr ad272700 , thread 12050 , mypolls 0 +myconn 0 connecting thr ad272700 , thread 12050 , mypolls 0 +thr ad272880 , status 1 +connecting thr ad272880 , thread 12051 , mypolls 0 +myconn 0 connecting thr ad272880 , thread 12051 , mypolls 0 +thr ad272a00 , status 1 +connecting thr ad272a00 , thread 12052 , mypolls 0 +myconn 0 connecting thr ad272a00 , thread 12052 , mypolls 0 +thr ad272b80 , status 1 +connecting thr ad272b80 , thread 12053 , mypolls 0 +myconn 0 connecting thr ad272b80 , thread 12053 , mypolls 0 +thr ad272d00 , status 1 +connecting thr ad272d00 , thread 12054 , mypolls 0 +myconn 0 connecting thr ad272d00 , thread 12054 , mypolls 0 +thr ad272e80 , status 1 +connecting thr ad272e80 , thread 12055 , mypolls 0 +myconn 0 connecting thr ad272e80 , thread 12055 , mypolls 0 +thr ad0cd000 , status 1 +connecting thr ad0cd000 , thread 12056 , mypolls 0 +myconn 0 connecting thr ad0cd000 , thread 12056 , mypolls 0 +thr ad0cd180 , status 1 +connecting thr ad0cd180 , thread 12057 , mypolls 0 +myconn 0 connecting thr ad0cd180 , thread 12057 , mypolls 0 +thr ad0cd300 , status 1 +connecting thr ad0cd300 , thread 12058 , mypolls 0 +myconn 0 connecting thr ad0cd300 , thread 12058 , mypolls 0 +thr ad0cd480 , status 1 +connecting thr ad0cd480 , thread 12059 , mypolls 0 +myconn 0 connecting thr ad0cd480 , thread 12059 , mypolls 0 +thr ad0cd600 , status 1 +connecting thr ad0cd600 , thread 12060 , mypolls 0 +myconn 0 connecting thr ad0cd600 , thread 12060 , mypolls 0 +thr ad0cd780 , status 1 +connecting thr ad0cd780 , thread 12061 , mypolls 0 +myconn 0 connecting thr ad0cd780 , thread 12061 , mypolls 0 +thr ad0cd900 , status 1 +connecting thr ad0cd900 , thread 12062 , mypolls 0 +myconn 0 connecting thr ad0cd900 , thread 12062 , mypolls 0 +thr ad0cda80 , status 1 +connecting thr ad0cda80 , thread 12063 , mypolls 0 +myconn 0 connecting thr ad0cda80 , thread 12063 , mypolls 0 +thr ad0cdc00 , status 1 +connecting thr ad0cdc00 , thread 12064 , mypolls 0 +myconn 0 connecting thr ad0cdc00 , thread 12064 , mypolls 0 +thr ad0cdd80 , status 1 +connecting thr ad0cdd80 , thread 12065 , mypolls 0 +myconn 0 connecting thr ad0cdd80 , thread 12065 , mypolls 0 +thr ad0cdf00 , status 1 +connecting thr ad0cdf00 , thread 12066 , mypolls 0 +myconn 0 connecting thr ad0cdf00 , thread 12066 , mypolls 0 +thr ad0ce080 , status 1 +connecting thr ad0ce080 , thread 12067 , mypolls 0 +myconn 0 connecting thr ad0ce080 , thread 12067 , mypolls 0 +thr ad0ce200 , status 1 +connecting thr ad0ce200 , thread 12068 , mypolls 0 +myconn 0 connecting thr ad0ce200 , thread 12068 , mypolls 0 +thr ad0ce380 , status 1 +connecting thr ad0ce380 , thread 12069 , mypolls 0 +myconn 0 connecting thr ad0ce380 , thread 12069 , mypolls 0 +thr ad0ce500 , status 1 +connecting thr ad0ce500 , thread 12070 , mypolls 0 +myconn 0 connecting thr ad0ce500 , thread 12070 , mypolls 0 +thr ad0ce680 , status 1 +connecting thr ad0ce680 , thread 12071 , mypolls 0 +myconn 0 connecting thr ad0ce680 , thread 12071 , mypolls 0 +thr ad0ce800 , status 1 +connecting thr ad0ce800 , thread 12072 , mypolls 0 +myconn 0 connecting thr ad0ce800 , thread 12072 , mypolls 0 +thr ad0ce980 , status 1 +connecting thr ad0ce980 , thread 12073 , mypolls 0 +myconn 0 connecting thr ad0ce980 , thread 12073 , mypolls 0 +thr ad0ceb00 , status 1 +connecting thr ad0ceb00 , thread 12074 , mypolls 0 +myconn 0 connecting thr ad0ceb00 , thread 12074 , mypolls 0 +thr ad0cec80 , status 1 +connecting thr ad0cec80 , thread 12075 , mypolls 0 +myconn 0 connecting thr ad0cec80 , thread 12075 , mypolls 0 +thr ad0cee00 , status 1 +connecting thr ad0cee00 , thread 12076 , mypolls 0 +myconn 0 connecting thr ad0cee00 , thread 12076 , mypolls 0 +thr ad0cef80 , status 1 +connecting thr ad0cef80 , thread 12077 , mypolls 0 +myconn 0 connecting thr ad0cef80 , thread 12077 , mypolls 0 +thr ad0cf100 , status 1 +connecting thr ad0cf100 , thread 12078 , mypolls 0 +myconn 0 connecting thr ad0cf100 , thread 12078 , mypolls 0 +thr ad0cf280 , status 1 +connecting thr ad0cf280 , thread 12079 , mypolls 0 +myconn 0 connecting thr ad0cf280 , thread 12079 , mypolls 0 +thr ad0cf400 , status 1 +connecting thr ad0cf400 , thread 12080 , mypolls 0 +myconn 0 connecting thr ad0cf400 , thread 12080 , mypolls 0 +thr ad0cf580 , status 1 +connecting thr ad0cf580 , thread 12081 , mypolls 0 +myconn 0 connecting thr ad0cf580 , thread 12081 , mypolls 0 +thr ad0cf700 , status 1 +connecting thr ad0cf700 , thread 12082 , mypolls 0 +myconn 0 connecting thr ad0cf700 , thread 12082 , mypolls 0 +thr ad0cf880 , status 1 +connecting thr ad0cf880 , thread 12083 , mypolls 0 +myconn 0 connecting thr ad0cf880 , thread 12083 , mypolls 0 +thr ad0cfa00 , status 1 +connecting thr ad0cfa00 , thread 12084 , mypolls 0 +myconn 0 connecting thr ad0cfa00 , thread 12084 , mypolls 0 +thr ad0cfb80 , status 1 +connecting thr ad0cfb80 , thread 12085 , mypolls 0 +myconn 0 connecting thr ad0cfb80 , thread 12085 , mypolls 0 +thr ad0cfd00 , status 1 +connecting thr ad0cfd00 , thread 12086 , mypolls 0 +myconn 0 connecting thr ad0cfd00 , thread 12086 , mypolls 0 +thr ad0cfe80 , status 1 +connecting thr ad0cfe80 , thread 12087 , mypolls 0 +myconn 0 connecting thr ad0cfe80 , thread 12087 , mypolls 0 +thr acf31000 , status 1 +connecting thr acf31000 , thread 12088 , mypolls 0 +myconn 0 connecting thr acf31000 , thread 12088 , mypolls 0 +thr acf31180 , status 1 +connecting thr acf31180 , thread 12089 , mypolls 0 +myconn 0 connecting thr acf31180 , thread 12089 , mypolls 0 +thr acf31300 , status 1 +connecting thr acf31300 , thread 12090 , mypolls 0 +myconn 0 connecting thr acf31300 , thread 12090 , mypolls 0 +thr acf31480 , status 1 +connecting thr acf31480 , thread 12091 , mypolls 0 +myconn 0 connecting thr acf31480 , thread 12091 , mypolls 0 +thr acf31600 , status 1 +connecting thr acf31600 , thread 12092 , mypolls 0 +myconn 0 connecting thr acf31600 , thread 12092 , mypolls 0 +thr acf31780 , status 1 +connecting thr acf31780 , thread 12093 , mypolls 0 +myconn 0 connecting thr acf31780 , thread 12093 , mypolls 0 +thr acf31900 , status 1 +connecting thr acf31900 , thread 12094 , mypolls 0 +myconn 0 connecting thr acf31900 , thread 12094 , mypolls 0 +thr acf31a80 , status 1 +connecting thr acf31a80 , thread 12095 , mypolls 0 +myconn 0 connecting thr acf31a80 , thread 12095 , mypolls 0 +thr acf31c00 , status 1 +connecting thr acf31c00 , thread 12096 , mypolls 0 +myconn 0 connecting thr acf31c00 , thread 12096 , mypolls 0 +thr acf31d80 , status 1 +connecting thr acf31d80 , thread 12097 , mypolls 0 +myconn 0 connecting thr acf31d80 , thread 12097 , mypolls 0 +thr acf31f00 , status 1 +connecting thr acf31f00 , thread 12098 , mypolls 0 +myconn 0 connecting thr acf31f00 , thread 12098 , mypolls 0 +thr acf32080 , status 1 +connecting thr acf32080 , thread 12099 , mypolls 0 +myconn 0 connecting thr acf32080 , thread 12099 , mypolls 0 +thr acf32200 , status 1 +connecting thr acf32200 , thread 12100 , mypolls 0 +myconn 0 connecting thr acf32200 , thread 12100 , mypolls 0 +thr acf32380 , status 1 +connecting thr acf32380 , thread 12101 , mypolls 0 +myconn 0 connecting thr acf32380 , thread 12101 , mypolls 0 +thr acf32500 , status 1 +connecting thr acf32500 , thread 12102 , mypolls 0 +myconn 0 connecting thr acf32500 , thread 12102 , mypolls 0 +thr acf32680 , status 1 +connecting thr acf32680 , thread 12103 , mypolls 0 +myconn 0 connecting thr acf32680 , thread 12103 , mypolls 0 +thr acf32800 , status 1 +connecting thr acf32800 , thread 12104 , mypolls 0 +myconn 0 connecting thr acf32800 , thread 12104 , mypolls 0 +thr acf32980 , status 1 +connecting thr acf32980 , thread 12105 , mypolls 0 +myconn 0 connecting thr acf32980 , thread 12105 , mypolls 0 +thr acf32b00 , status 1 +connecting thr acf32b00 , thread 12106 , mypolls 0 +myconn 0 connecting thr acf32b00 , thread 12106 , mypolls 0 +thr acf32c80 , status 1 +connecting thr acf32c80 , thread 12107 , mypolls 0 +myconn 0 connecting thr acf32c80 , thread 12107 , mypolls 0 +thr acf32e00 , status 1 +connecting thr acf32e00 , thread 12108 , mypolls 0 +myconn 0 connecting thr acf32e00 , thread 12108 , mypolls 0 +thr acf32f80 , status 1 +connecting thr acf32f80 , thread 12109 , mypolls 0 +myconn 0 connecting thr acf32f80 , thread 12109 , mypolls 0 +thr acf33100 , status 1 +connecting thr acf33100 , thread 12110 , mypolls 0 +myconn 0 connecting thr acf33100 , thread 12110 , mypolls 0 +thr acf33280 , status 1 +connecting thr acf33280 , thread 12111 , mypolls 0 +myconn 0 connecting thr acf33280 , thread 12111 , mypolls 0 +thr acf33400 , status 1 +connecting thr acf33400 , thread 12112 , mypolls 0 +myconn 0 connecting thr acf33400 , thread 12112 , mypolls 0 +thr acf33580 , status 1 +connecting thr acf33580 , thread 12113 , mypolls 0 +myconn 0 connecting thr acf33580 , thread 12113 , mypolls 0 +thr acf33700 , status 1 +connecting thr acf33700 , thread 12114 , mypolls 0 +myconn 0 connecting thr acf33700 , thread 12114 , mypolls 0 +thr acf33880 , status 1 +connecting thr acf33880 , thread 12115 , mypolls 0 +myconn 0 connecting thr acf33880 , thread 12115 , mypolls 0 +thr acf33a00 , status 1 +connecting thr acf33a00 , thread 12116 , mypolls 0 +myconn 0 connecting thr acf33a00 , thread 12116 , mypolls 0 +thr acf33b80 , status 1 +connecting thr acf33b80 , thread 12117 , mypolls 0 +myconn 0 connecting thr acf33b80 , thread 12117 , mypolls 0 +thr acf33d00 , status 1 +connecting thr acf33d00 , thread 12118 , mypolls 0 +myconn 0 connecting thr acf33d00 , thread 12118 , mypolls 0 +thr acf33e80 , status 1 +connecting thr acf33e80 , thread 12119 , mypolls 0 +myconn 0 connecting thr acf33e80 , thread 12119 , mypolls 0 +thr acd92000 , status 1 +connecting thr acd92000 , thread 12120 , mypolls 0 +myconn 0 connecting thr acd92000 , thread 12120 , mypolls 0 +thr acd92180 , status 1 +connecting thr acd92180 , thread 12121 , mypolls 0 +myconn 0 connecting thr acd92180 , thread 12121 , mypolls 0 +thr acd92300 , status 1 +connecting thr acd92300 , thread 12122 , mypolls 0 +myconn 0 connecting thr acd92300 , thread 12122 , mypolls 0 +thr acd92480 , status 1 +connecting thr acd92480 , thread 12123 , mypolls 0 +myconn 0 connecting thr acd92480 , thread 12123 , mypolls 0 +thr acd92600 , status 1 +connecting thr acd92600 , thread 12124 , mypolls 0 +myconn 0 connecting thr acd92600 , thread 12124 , mypolls 0 +thr acd92780 , status 1 +connecting thr acd92780 , thread 12125 , mypolls 0 +myconn 0 connecting thr acd92780 , thread 12125 , mypolls 0 +thr acd92900 , status 1 +connecting thr acd92900 , thread 12126 , mypolls 0 +myconn 0 connecting thr acd92900 , thread 12126 , mypolls 0 +thr acd92a80 , status 1 +connecting thr acd92a80 , thread 12127 , mypolls 0 +myconn 0 connecting thr acd92a80 , thread 12127 , mypolls 0 +thr acd92c00 , status 1 +connecting thr acd92c00 , thread 12128 , mypolls 0 +myconn 0 connecting thr acd92c00 , thread 12128 , mypolls 0 +thr acd92d80 , status 1 +connecting thr acd92d80 , thread 12129 , mypolls 0 +myconn 0 connecting thr acd92d80 , thread 12129 , mypolls 0 +thr acd92f00 , status 1 +connecting thr acd92f00 , thread 12130 , mypolls 0 +myconn 0 connecting thr acd92f00 , thread 12130 , mypolls 0 +thr acd93080 , status 1 +connecting thr acd93080 , thread 12131 , mypolls 0 +myconn 0 connecting thr acd93080 , thread 12131 , mypolls 0 +thr acd93200 , status 1 +connecting thr acd93200 , thread 12132 , mypolls 0 +myconn 0 connecting thr acd93200 , thread 12132 , mypolls 0 +thr acd93380 , status 1 +connecting thr acd93380 , thread 12133 , mypolls 0 +myconn 0 connecting thr acd93380 , thread 12133 , mypolls 0 +thr acd93500 , status 1 +connecting thr acd93500 , thread 12134 , mypolls 0 +myconn 0 connecting thr acd93500 , thread 12134 , mypolls 0 +thr acd93680 , status 1 +connecting thr acd93680 , thread 12135 , mypolls 0 +myconn 0 connecting thr acd93680 , thread 12135 , mypolls 0 +thr acd93800 , status 1 +connecting thr acd93800 , thread 12136 , mypolls 0 +myconn 0 connecting thr acd93800 , thread 12136 , mypolls 0 +thr acd93980 , status 1 +connecting thr acd93980 , thread 12137 , mypolls 0 +myconn 0 connecting thr acd93980 , thread 12137 , mypolls 0 +thr acd93b00 , status 1 +connecting thr acd93b00 , thread 12138 , mypolls 0 +myconn 0 connecting thr acd93b00 , thread 12138 , mypolls 0 +thr acd93c80 , status 1 +connecting thr acd93c80 , thread 12139 , mypolls 0 +myconn 0 connecting thr acd93c80 , thread 12139 , mypolls 0 +thr acd93e00 , status 1 +connecting thr acd93e00 , thread 12140 , mypolls 0 +myconn 0 connecting thr acd93e00 , thread 12140 , mypolls 0 +thr acd93f80 , status 1 +connecting thr acd93f80 , thread 12141 , mypolls 0 +myconn 0 connecting thr acd93f80 , thread 12141 , mypolls 0 +thr acd94100 , status 1 +connecting thr acd94100 , thread 12142 , mypolls 0 +myconn 0 connecting thr acd94100 , thread 12142 , mypolls 0 +thr acd94280 , status 1 +connecting thr acd94280 , thread 12143 , mypolls 0 +myconn 0 connecting thr acd94280 , thread 12143 , mypolls 0 +thr acd94400 , status 1 +connecting thr acd94400 , thread 12144 , mypolls 0 +myconn 0 connecting thr acd94400 , thread 12144 , mypolls 0 +thr acd94580 , status 1 +connecting thr acd94580 , thread 12145 , mypolls 0 +myconn 0 connecting thr acd94580 , thread 12145 , mypolls 0 +thr acd94700 , status 1 +connecting thr acd94700 , thread 12146 , mypolls 0 +myconn 0 connecting thr acd94700 , thread 12146 , mypolls 0 +thr acd94880 , status 1 +connecting thr acd94880 , thread 12147 , mypolls 0 +myconn 0 connecting thr acd94880 , thread 12147 , mypolls 0 +thr acd94a00 , status 1 +connecting thr acd94a00 , thread 12148 , mypolls 0 +myconn 0 connecting thr acd94a00 , thread 12148 , mypolls 0 +thr acd94b80 , status 1 +connecting thr acd94b80 , thread 12149 , mypolls 0 +myconn 0 connecting thr acd94b80 , thread 12149 , mypolls 0 +thr acd94d00 , status 1 +connecting thr acd94d00 , thread 12150 , mypolls 0 +myconn 0 connecting thr acd94d00 , thread 12150 , mypolls 0 +thr acd94e80 , status 1 +connecting thr acd94e80 , thread 12151 , mypolls 0 +myconn 0 connecting thr acd94e80 , thread 12151 , mypolls 0 +thr acbf4000 , status 1 +connecting thr acbf4000 , thread 12152 , mypolls 0 +myconn 0 connecting thr acbf4000 , thread 12152 , mypolls 0 +thr acbf4180 , status 1 +connecting thr acbf4180 , thread 12153 , mypolls 0 +myconn 0 connecting thr acbf4180 , thread 12153 , mypolls 0 +thr acbf4300 , status 1 +connecting thr acbf4300 , thread 12154 , mypolls 0 +myconn 0 connecting thr acbf4300 , thread 12154 , mypolls 0 +thr acbf4480 , status 1 +connecting thr acbf4480 , thread 12155 , mypolls 0 +myconn 0 connecting thr acbf4480 , thread 12155 , mypolls 0 +thr acbf4600 , status 1 +connecting thr acbf4600 , thread 12156 , mypolls 0 +myconn 0 connecting thr acbf4600 , thread 12156 , mypolls 0 +thr acbf4780 , status 1 +connecting thr acbf4780 , thread 12157 , mypolls 0 +myconn 0 connecting thr acbf4780 , thread 12157 , mypolls 0 +thr acbf4900 , status 1 +connecting thr acbf4900 , thread 12158 , mypolls 0 +myconn 0 connecting thr acbf4900 , thread 12158 , mypolls 0 +thr acbf4a80 , status 1 +connecting thr acbf4a80 , thread 12159 , mypolls 0 +myconn 0 connecting thr acbf4a80 , thread 12159 , mypolls 0 +thr acbf4c00 , status 1 +connecting thr acbf4c00 , thread 12160 , mypolls 0 +myconn 0 connecting thr acbf4c00 , thread 12160 , mypolls 0 +thr acbf4d80 , status 1 +connecting thr acbf4d80 , thread 12161 , mypolls 0 +myconn 0 connecting thr acbf4d80 , thread 12161 , mypolls 0 +thr acbf4f00 , status 1 +connecting thr acbf4f00 , thread 12162 , mypolls 0 +myconn 0 connecting thr acbf4f00 , thread 12162 , mypolls 0 +thr acbf5080 , status 1 +connecting thr acbf5080 , thread 12163 , mypolls 0 +myconn 0 connecting thr acbf5080 , thread 12163 , mypolls 0 +thr acbf5200 , status 1 +connecting thr acbf5200 , thread 12164 , mypolls 0 +myconn 0 connecting thr acbf5200 , thread 12164 , mypolls 0 +thr acbf5380 , status 1 +connecting thr acbf5380 , thread 12165 , mypolls 0 +myconn 0 connecting thr acbf5380 , thread 12165 , mypolls 0 +thr acbf5500 , status 1 +connecting thr acbf5500 , thread 12166 , mypolls 0 +myconn 0 connecting thr acbf5500 , thread 12166 , mypolls 0 +thr acbf5680 , status 1 +connecting thr acbf5680 , thread 12167 , mypolls 0 +myconn 0 connecting thr acbf5680 , thread 12167 , mypolls 0 +thr acbf5800 , status 1 +connecting thr acbf5800 , thread 12168 , mypolls 0 +myconn 0 connecting thr acbf5800 , thread 12168 , mypolls 0 +thr acbf5980 , status 1 +connecting thr acbf5980 , thread 12169 , mypolls 0 +myconn 0 connecting thr acbf5980 , thread 12169 , mypolls 0 +thr acbf5b00 , status 1 +connecting thr acbf5b00 , thread 12170 , mypolls 0 +myconn 0 connecting thr acbf5b00 , thread 12170 , mypolls 0 +thr acbf5c80 , status 1 +connecting thr acbf5c80 , thread 12171 , mypolls 0 +myconn 0 connecting thr acbf5c80 , thread 12171 , mypolls 0 +thr acbf5e00 , status 1 +connecting thr acbf5e00 , thread 12172 , mypolls 0 +myconn 0 connecting thr acbf5e00 , thread 12172 , mypolls 0 +thr acbf5f80 , status 1 +connecting thr acbf5f80 , thread 12173 , mypolls 0 +myconn 0 connecting thr acbf5f80 , thread 12173 , mypolls 0 +thr acbf6100 , status 1 +connecting thr acbf6100 , thread 12174 , mypolls 0 +myconn 0 connecting thr acbf6100 , thread 12174 , mypolls 0 +thr acbf6280 , status 1 +connecting thr acbf6280 , thread 12175 , mypolls 0 +myconn 0 connecting thr acbf6280 , thread 12175 , mypolls 0 +thr acbf6400 , status 1 +connecting thr acbf6400 , thread 12176 , mypolls 0 +myconn 0 connecting thr acbf6400 , thread 12176 , mypolls 0 +thr acbf6580 , status 1 +connecting thr acbf6580 , thread 12177 , mypolls 0 +myconn 0 connecting thr acbf6580 , thread 12177 , mypolls 0 +thr acbf6700 , status 1 +connecting thr acbf6700 , thread 12178 , mypolls 0 +myconn 0 connecting thr acbf6700 , thread 12178 , mypolls 0 +thr acbf6880 , status 1 +connecting thr acbf6880 , thread 12179 , mypolls 0 +myconn 0 connecting thr acbf6880 , thread 12179 , mypolls 0 +thr acbf6a00 , status 1 +connecting thr acbf6a00 , thread 12180 , mypolls 0 +myconn 0 connecting thr acbf6a00 , thread 12180 , mypolls 0 +thr acbf6b80 , status 1 +connecting thr acbf6b80 , thread 12181 , mypolls 0 +myconn 0 connecting thr acbf6b80 , thread 12181 , mypolls 0 +thr acbf6d00 , status 1 +connecting thr acbf6d00 , thread 12182 , mypolls 0 +myconn 0 connecting thr acbf6d00 , thread 12182 , mypolls 0 +thr acbf6e80 , status 1 +connecting thr acbf6e80 , thread 12183 , mypolls 0 +myconn 0 connecting thr acbf6e80 , thread 12183 , mypolls 0 +thr ac9fd000 , status 1 +connecting thr ac9fd000 , thread 12184 , mypolls 0 +myconn 0 connecting thr ac9fd000 , thread 12184 , mypolls 0 +thr ac9fd180 , status 1 +connecting thr ac9fd180 , thread 12185 , mypolls 0 +myconn 0 connecting thr ac9fd180 , thread 12185 , mypolls 0 +thr ac9fd300 , status 1 +connecting thr ac9fd300 , thread 12186 , mypolls 0 +myconn 0 connecting thr ac9fd300 , thread 12186 , mypolls 0 +thr ac9fd480 , status 1 +connecting thr ac9fd480 , thread 12187 , mypolls 0 +myconn 0 connecting thr ac9fd480 , thread 12187 , mypolls 0 +thr ac9fd600 , status 1 +connecting thr ac9fd600 , thread 12188 , mypolls 0 +myconn 0 connecting thr ac9fd600 , thread 12188 , mypolls 0 +thr ac9fd780 , status 1 +connecting thr ac9fd780 , thread 12189 , mypolls 0 +myconn 0 connecting thr ac9fd780 , thread 12189 , mypolls 0 +thr ac9fd900 , status 1 +connecting thr ac9fd900 , thread 12190 , mypolls 0 +myconn 0 connecting thr ac9fd900 , thread 12190 , mypolls 0 +thr ac9fda80 , status 1 +connecting thr ac9fda80 , thread 12191 , mypolls 0 +myconn 0 connecting thr ac9fda80 , thread 12191 , mypolls 0 +thr ac9fdc00 , status 1 +connecting thr ac9fdc00 , thread 12192 , mypolls 0 +myconn 0 connecting thr ac9fdc00 , thread 12192 , mypolls 0 +thr ac9fdd80 , status 1 +connecting thr ac9fdd80 , thread 12193 , mypolls 0 +myconn 0 connecting thr ac9fdd80 , thread 12193 , mypolls 0 +thr ac9fdf00 , status 1 +connecting thr ac9fdf00 , thread 12194 , mypolls 0 +myconn 0 connecting thr ac9fdf00 , thread 12194 , mypolls 0 +thr ac9fe080 , status 1 +connecting thr ac9fe080 , thread 12195 , mypolls 0 +myconn 0 connecting thr ac9fe080 , thread 12195 , mypolls 0 +thr ac9fe200 , status 1 +connecting thr ac9fe200 , thread 12196 , mypolls 0 +myconn 0 connecting thr ac9fe200 , thread 12196 , mypolls 0 +thr ac9fe380 , status 1 +connecting thr ac9fe380 , thread 12197 , mypolls 0 +myconn 0 connecting thr ac9fe380 , thread 12197 , mypolls 0 +thr ac9fe500 , status 1 +connecting thr ac9fe500 , thread 12198 , mypolls 0 +myconn 0 connecting thr ac9fe500 , thread 12198 , mypolls 0 +thr ac9fe680 , status 1 +connecting thr ac9fe680 , thread 12199 , mypolls 0 +myconn 0 connecting thr ac9fe680 , thread 12199 , mypolls 0 +thr ac9fe800 , status 1 +connecting thr ac9fe800 , thread 12200 , mypolls 0 +myconn 0 connecting thr ac9fe800 , thread 12200 , mypolls 0 +thr ac9fe980 , status 1 +connecting thr ac9fe980 , thread 12201 , mypolls 0 +myconn 0 connecting thr ac9fe980 , thread 12201 , mypolls 0 +thr ac9feb00 , status 1 +connecting thr ac9feb00 , thread 12202 , mypolls 0 +myconn 0 connecting thr ac9feb00 , thread 12202 , mypolls 0 +thr ac9fec80 , status 1 +connecting thr ac9fec80 , thread 12203 , mypolls 0 +myconn 0 connecting thr ac9fec80 , thread 12203 , mypolls 0 +thr ac9fee00 , status 1 +connecting thr ac9fee00 , thread 12204 , mypolls 0 +myconn 0 connecting thr ac9fee00 , thread 12204 , mypolls 0 +thr ac9fef80 , status 1 +connecting thr ac9fef80 , thread 12205 , mypolls 0 +myconn 0 connecting thr ac9fef80 , thread 12205 , mypolls 0 +thr ac9ff100 , status 1 +connecting thr ac9ff100 , thread 12206 , mypolls 0 +myconn 0 connecting thr ac9ff100 , thread 12206 , mypolls 0 +thr ac9ff280 , status 1 +connecting thr ac9ff280 , thread 12207 , mypolls 0 +myconn 0 connecting thr ac9ff280 , thread 12207 , mypolls 0 +thr ac9ff400 , status 1 +connecting thr ac9ff400 , thread 12208 , mypolls 0 +myconn 0 connecting thr ac9ff400 , thread 12208 , mypolls 0 +thr ac9ff580 , status 1 +connecting thr ac9ff580 , thread 12209 , mypolls 0 +myconn 0 connecting thr ac9ff580 , thread 12209 , mypolls 0 +thr ac9ff700 , status 1 +connecting thr ac9ff700 , thread 12210 , mypolls 0 +myconn 0 connecting thr ac9ff700 , thread 12210 , mypolls 0 +thr ac9ff880 , status 1 +connecting thr ac9ff880 , thread 12211 , mypolls 0 +myconn 0 connecting thr ac9ff880 , thread 12211 , mypolls 0 +thr ac9ffa00 , status 1 +connecting thr ac9ffa00 , thread 12212 , mypolls 0 +myconn 0 connecting thr ac9ffa00 , thread 12212 , mypolls 0 +thr ac9ffb80 , status 1 +connecting thr ac9ffb80 , thread 12213 , mypolls 0 +myconn 0 connecting thr ac9ffb80 , thread 12213 , mypolls 0 +thr ac9ffd00 , status 1 +connecting thr ac9ffd00 , thread 12214 , mypolls 0 +myconn 0 connecting thr ac9ffd00 , thread 12214 , mypolls 0 +thr ac9ffe80 , status 1 +connecting thr ac9ffe80 , thread 12215 , mypolls 0 +myconn 0 connecting thr ac9ffe80 , thread 12215 , mypolls 0 +thr ac4c5000 , status 1 +connecting thr ac4c5000 , thread 12216 , mypolls 0 +myconn 0 connecting thr ac4c5000 , thread 12216 , mypolls 0 +thr ac4c5180 , status 1 +connecting thr ac4c5180 , thread 12217 , mypolls 0 +myconn 0 connecting thr ac4c5180 , thread 12217 , mypolls 0 +thr ac4c5300 , status 1 +connecting thr ac4c5300 , thread 12218 , mypolls 0 +myconn 0 connecting thr ac4c5300 , thread 12218 , mypolls 0 +thr ac4c5480 , status 1 +connecting thr ac4c5480 , thread 12219 , mypolls 0 +myconn 0 connecting thr ac4c5480 , thread 12219 , mypolls 0 +thr ac4c5600 , status 1 +connecting thr ac4c5600 , thread 12220 , mypolls 0 +myconn 0 connecting thr ac4c5600 , thread 12220 , mypolls 0 +thr ac4c5780 , status 1 +connecting thr ac4c5780 , thread 12221 , mypolls 0 +myconn 0 connecting thr ac4c5780 , thread 12221 , mypolls 0 +thr ac4c5900 , status 1 +connecting thr ac4c5900 , thread 12222 , mypolls 0 +myconn 0 connecting thr ac4c5900 , thread 12222 , mypolls 0 +thr ac4c5a80 , status 1 +connecting thr ac4c5a80 , thread 12223 , mypolls 0 +myconn 0 connecting thr ac4c5a80 , thread 12223 , mypolls 0 +thr ac4c5c00 , status 1 +connecting thr ac4c5c00 , thread 12224 , mypolls 0 +myconn 0 connecting thr ac4c5c00 , thread 12224 , mypolls 0 +thr ac4c5d80 , status 1 +connecting thr ac4c5d80 , thread 12225 , mypolls 0 +myconn 0 connecting thr ac4c5d80 , thread 12225 , mypolls 0 +thr ac4c5f00 , status 1 +connecting thr ac4c5f00 , thread 12226 , mypolls 0 +myconn 0 connecting thr ac4c5f00 , thread 12226 , mypolls 0 +thr ac4c6080 , status 1 +connecting thr ac4c6080 , thread 12227 , mypolls 0 +myconn 0 connecting thr ac4c6080 , thread 12227 , mypolls 0 +thr ac4c6200 , status 1 +connecting thr ac4c6200 , thread 12228 , mypolls 0 +myconn 0 connecting thr ac4c6200 , thread 12228 , mypolls 0 +thr ac4c6380 , status 1 +connecting thr ac4c6380 , thread 12229 , mypolls 0 +myconn 0 connecting thr ac4c6380 , thread 12229 , mypolls 0 +thr ac4c6500 , status 1 +connecting thr ac4c6500 , thread 12230 , mypolls 0 +myconn 0 connecting thr ac4c6500 , thread 12230 , mypolls 0 +thr ac4c6680 , status 1 +connecting thr ac4c6680 , thread 12231 , mypolls 0 +myconn 0 connecting thr ac4c6680 , thread 12231 , mypolls 0 +thr ac4c6800 , status 1 +connecting thr ac4c6800 , thread 12232 , mypolls 0 +myconn 0 connecting thr ac4c6800 , thread 12232 , mypolls 0 +thr ac4c6980 , status 1 +connecting thr ac4c6980 , thread 12233 , mypolls 0 +myconn 0 connecting thr ac4c6980 , thread 12233 , mypolls 0 +thr ac4c6b00 , status 1 +connecting thr ac4c6b00 , thread 12234 , mypolls 0 +myconn 0 connecting thr ac4c6b00 , thread 12234 , mypolls 0 +thr ac4c6c80 , status 1 +connecting thr ac4c6c80 , thread 12235 , mypolls 0 +myconn 0 connecting thr ac4c6c80 , thread 12235 , mypolls 0 +thr ac4c6e00 , status 1 +connecting thr ac4c6e00 , thread 12236 , mypolls 0 +myconn 0 connecting thr ac4c6e00 , thread 12236 , mypolls 0 +thr ac4c6f80 , status 1 +connecting thr ac4c6f80 , thread 12237 , mypolls 0 +myconn 0 connecting thr ac4c6f80 , thread 12237 , mypolls 0 +thr ac4c7100 , status 1 +connecting thr ac4c7100 , thread 12238 , mypolls 0 +myconn 0 connecting thr ac4c7100 , thread 12238 , mypolls 0 +thr ac4c7280 , status 1 +connecting thr ac4c7280 , thread 12239 , mypolls 0 +myconn 0 connecting thr ac4c7280 , thread 12239 , mypolls 0 +thr ac4c7400 , status 1 +connecting thr ac4c7400 , thread 12240 , mypolls 0 +myconn 0 connecting thr ac4c7400 , thread 12240 , mypolls 0 +thr ac4c7580 , status 1 +connecting thr ac4c7580 , thread 12241 , mypolls 0 +myconn 0 connecting thr ac4c7580 , thread 12241 , mypolls 0 +thr ac4c7700 , status 1 +connecting thr ac4c7700 , thread 12242 , mypolls 0 +myconn 0 connecting thr ac4c7700 , thread 12242 , mypolls 0 +thr ac4c7880 , status 1 +connecting thr ac4c7880 , thread 12243 , mypolls 0 +myconn 0 connecting thr ac4c7880 , thread 12243 , mypolls 0 +thr ac4c7a00 , status 1 +connecting thr ac4c7a00 , thread 12244 , mypolls 0 +myconn 0 connecting thr ac4c7a00 , thread 12244 , mypolls 0 +thr ac4c7b80 , status 1 +connecting thr ac4c7b80 , thread 12245 , mypolls 0 +myconn 0 connecting thr ac4c7b80 , thread 12245 , mypolls 0 +thr ac4c7d00 , status 1 +connecting thr ac4c7d00 , thread 12246 , mypolls 0 +myconn 0 connecting thr ac4c7d00 , thread 12246 , mypolls 0 +thr ac4c7e80 , status 1 +connecting thr ac4c7e80 , thread 12247 , mypolls 0 +myconn 0 connecting thr ac4c7e80 , thread 12247 , mypolls 0 +thr ac326000 , status 1 +connecting thr ac326000 , thread 12248 , mypolls 0 +myconn 0 connecting thr ac326000 , thread 12248 , mypolls 0 +thr ac326180 , status 1 +connecting thr ac326180 , thread 12249 , mypolls 0 +myconn 0 connecting thr ac326180 , thread 12249 , mypolls 0 +thr ac326300 , status 1 +connecting thr ac326300 , thread 12250 , mypolls 0 +myconn 0 connecting thr ac326300 , thread 12250 , mypolls 0 +thr ac326480 , status 1 +connecting thr ac326480 , thread 12251 , mypolls 0 +myconn 0 connecting thr ac326480 , thread 12251 , mypolls 0 +thr ac326600 , status 1 +connecting thr ac326600 , thread 12252 , mypolls 0 +myconn 0 connecting thr ac326600 , thread 12252 , mypolls 0 +thr ac326780 , status 1 +connecting thr ac326780 , thread 12253 , mypolls 0 +myconn 0 connecting thr ac326780 , thread 12253 , mypolls 0 +thr ac326900 , status 1 +connecting thr ac326900 , thread 12254 , mypolls 0 +myconn 0 connecting thr ac326900 , thread 12254 , mypolls 0 +thr ac326a80 , status 1 +connecting thr ac326a80 , thread 12255 , mypolls 0 +myconn 0 connecting thr ac326a80 , thread 12255 , mypolls 0 +thr ac326c00 , status 1 +connecting thr ac326c00 , thread 12256 , mypolls 0 +myconn 0 connecting thr ac326c00 , thread 12256 , mypolls 0 +thr ac326d80 , status 1 +connecting thr ac326d80 , thread 12257 , mypolls 0 +myconn 0 connecting thr ac326d80 , thread 12257 , mypolls 0 +thr ac326f00 , status 1 +connecting thr ac326f00 , thread 12258 , mypolls 0 +myconn 0 connecting thr ac326f00 , thread 12258 , mypolls 0 +thr ac327080 , status 1 +connecting thr ac327080 , thread 12259 , mypolls 0 +myconn 0 connecting thr ac327080 , thread 12259 , mypolls 0 +thr ac327200 , status 1 +connecting thr ac327200 , thread 12260 , mypolls 0 +myconn 0 connecting thr ac327200 , thread 12260 , mypolls 0 +thr ac327380 , status 1 +connecting thr ac327380 , thread 12261 , mypolls 0 +myconn 0 connecting thr ac327380 , thread 12261 , mypolls 0 +thr ac327500 , status 1 +connecting thr ac327500 , thread 12262 , mypolls 0 +myconn 0 connecting thr ac327500 , thread 12262 , mypolls 0 +thr ac327680 , status 1 +connecting thr ac327680 , thread 12263 , mypolls 0 +myconn 0 connecting thr ac327680 , thread 12263 , mypolls 0 +thr ac327800 , status 1 +connecting thr ac327800 , thread 12264 , mypolls 0 +myconn 0 connecting thr ac327800 , thread 12264 , mypolls 0 +thr ac327980 , status 1 +connecting thr ac327980 , thread 12265 , mypolls 0 +myconn 0 connecting thr ac327980 , thread 12265 , mypolls 0 +thr ac327b00 , status 1 +connecting thr ac327b00 , thread 12266 , mypolls 0 +myconn 0 connecting thr ac327b00 , thread 12266 , mypolls 0 +thr ac327c80 , status 1 +connecting thr ac327c80 , thread 12267 , mypolls 0 +myconn 0 connecting thr ac327c80 , thread 12267 , mypolls 0 +thr ac327e00 , status 1 +connecting thr ac327e00 , thread 12268 , mypolls 0 +myconn 0 connecting thr ac327e00 , thread 12268 , mypolls 0 +thr ac327f80 , status 1 +connecting thr ac327f80 , thread 12269 , mypolls 0 +myconn 0 connecting thr ac327f80 , thread 12269 , mypolls 0 +thr ac328100 , status 1 +connecting thr ac328100 , thread 12270 , mypolls 0 +myconn 0 connecting thr ac328100 , thread 12270 , mypolls 0 +thr ac328280 , status 1 +connecting thr ac328280 , thread 12271 , mypolls 0 +myconn 0 connecting thr ac328280 , thread 12271 , mypolls 0 +thr ac328400 , status 1 +connecting thr ac328400 , thread 12272 , mypolls 0 +myconn 0 connecting thr ac328400 , thread 12272 , mypolls 0 +thr ac328580 , status 1 +connecting thr ac328580 , thread 12273 , mypolls 0 +myconn 0 connecting thr ac328580 , thread 12273 , mypolls 0 +thr ac328700 , status 1 +connecting thr ac328700 , thread 12274 , mypolls 0 +myconn 0 connecting thr ac328700 , thread 12274 , mypolls 0 +thr ac328880 , status 1 +connecting thr ac328880 , thread 12275 , mypolls 0 +myconn 0 connecting thr ac328880 , thread 12275 , mypolls 0 +thr ac328a00 , status 1 +connecting thr ac328a00 , thread 12276 , mypolls 0 +myconn 0 connecting thr ac328a00 , thread 12276 , mypolls 0 +thr ac328b80 , status 1 +connecting thr ac328b80 , thread 12277 , mypolls 0 +myconn 0 connecting thr ac328b80 , thread 12277 , mypolls 0 +thr ac328d00 , status 1 +connecting thr ac328d00 , thread 12278 , mypolls 0 +myconn 0 connecting thr ac328d00 , thread 12278 , mypolls 0 +thr ac328e80 , status 1 +connecting thr ac328e80 , thread 12279 , mypolls 0 +myconn 0 connecting thr ac328e80 , thread 12279 , mypolls 0 +thr ac18a000 , status 1 +connecting thr ac18a000 , thread 12280 , mypolls 0 +myconn 0 connecting thr ac18a000 , thread 12280 , mypolls 0 +thr ac18a180 , status 1 +connecting thr ac18a180 , thread 12281 , mypolls 0 +myconn 0 connecting thr ac18a180 , thread 12281 , mypolls 0 +thr ac18a300 , status 1 +connecting thr ac18a300 , thread 12282 , mypolls 0 +myconn 0 connecting thr ac18a300 , thread 12282 , mypolls 0 +thr ac18a480 , status 1 +connecting thr ac18a480 , thread 12283 , mypolls 0 +myconn 0 connecting thr ac18a480 , thread 12283 , mypolls 0 +thr ac18a600 , status 1 +connecting thr ac18a600 , thread 12284 , mypolls 0 +myconn 0 connecting thr ac18a600 , thread 12284 , mypolls 0 +thr ac18a780 , status 1 +connecting thr ac18a780 , thread 12285 , mypolls 0 +myconn 0 connecting thr ac18a780 , thread 12285 , mypolls 0 +thr ac18a900 , status 1 +connecting thr ac18a900 , thread 12286 , mypolls 0 +myconn 0 connecting thr ac18a900 , thread 12286 , mypolls 0 +thr ac18aa80 , status 1 +connecting thr ac18aa80 , thread 12287 , mypolls 0 +myconn 0 connecting thr ac18aa80 , thread 12287 , mypolls 0 +thr ac18ac00 , status 1 +connecting thr ac18ac00 , thread 12288 , mypolls 0 +myconn 0 connecting thr ac18ac00 , thread 12288 , mypolls 0 +thr ac18ad80 , status 1 +connecting thr ac18ad80 , thread 12289 , mypolls 0 +myconn 0 connecting thr ac18ad80 , thread 12289 , mypolls 0 +thr ac18af00 , status 1 +connecting thr ac18af00 , thread 12290 , mypolls 0 +myconn 0 connecting thr ac18af00 , thread 12290 , mypolls 0 +thr ac18b080 , status 1 +connecting thr ac18b080 , thread 12291 , mypolls 0 +myconn 0 connecting thr ac18b080 , thread 12291 , mypolls 0 +thr ac18b200 , status 1 +connecting thr ac18b200 , thread 12292 , mypolls 0 +myconn 0 connecting thr ac18b200 , thread 12292 , mypolls 0 +thr ac18b380 , status 1 +connecting thr ac18b380 , thread 12293 , mypolls 0 +myconn 0 connecting thr ac18b380 , thread 12293 , mypolls 0 +thr ac18b500 , status 1 +connecting thr ac18b500 , thread 12294 , mypolls 0 +myconn 0 connecting thr ac18b500 , thread 12294 , mypolls 0 +thr ac18b680 , status 1 +connecting thr ac18b680 , thread 12295 , mypolls 0 +myconn 0 connecting thr ac18b680 , thread 12295 , mypolls 0 +thr ac18b800 , status 1 +connecting thr ac18b800 , thread 12296 , mypolls 0 +myconn 0 connecting thr ac18b800 , thread 12296 , mypolls 0 +thr ac18b980 , status 1 +connecting thr ac18b980 , thread 12297 , mypolls 0 +myconn 0 connecting thr ac18b980 , thread 12297 , mypolls 0 +thr ac18bb00 , status 1 +connecting thr ac18bb00 , thread 12298 , mypolls 0 +myconn 0 connecting thr ac18bb00 , thread 12298 , mypolls 0 +thr ac18bc80 , status 1 +connecting thr ac18bc80 , thread 12299 , mypolls 0 +myconn 0 connecting thr ac18bc80 , thread 12299 , mypolls 0 +thr ac18be00 , status 1 +connecting thr ac18be00 , thread 12300 , mypolls 0 +myconn 0 connecting thr ac18be00 , thread 12300 , mypolls 0 +thr ac18bf80 , status 1 +connecting thr ac18bf80 , thread 12301 , mypolls 0 +myconn 0 connecting thr ac18bf80 , thread 12301 , mypolls 0 +thr ac18c100 , status 1 +connecting thr ac18c100 , thread 12302 , mypolls 0 +myconn 0 connecting thr ac18c100 , thread 12302 , mypolls 0 +thr ac18c280 , status 1 +connecting thr ac18c280 , thread 12303 , mypolls 0 +myconn 0 connecting thr ac18c280 , thread 12303 , mypolls 0 +thr ac18c400 , status 1 +connecting thr ac18c400 , thread 12304 , mypolls 0 +myconn 0 connecting thr ac18c400 , thread 12304 , mypolls 0 +thr ac18c580 , status 1 +connecting thr ac18c580 , thread 12305 , mypolls 0 +myconn 0 connecting thr ac18c580 , thread 12305 , mypolls 0 +thr ac18c700 , status 1 +connecting thr ac18c700 , thread 12306 , mypolls 0 +myconn 0 connecting thr ac18c700 , thread 12306 , mypolls 0 +thr ac18c880 , status 1 +connecting thr ac18c880 , thread 12307 , mypolls 0 +myconn 0 connecting thr ac18c880 , thread 12307 , mypolls 0 +thr ac18ca00 , status 1 +connecting thr ac18ca00 , thread 12308 , mypolls 0 +myconn 0 connecting thr ac18ca00 , thread 12308 , mypolls 0 +thr ac18cb80 , status 1 +connecting thr ac18cb80 , thread 12309 , mypolls 0 +myconn 0 connecting thr ac18cb80 , thread 12309 , mypolls 0 +thr ac18cd00 , status 1 +connecting thr ac18cd00 , thread 12310 , mypolls 0 +myconn 0 connecting thr ac18cd00 , thread 12310 , mypolls 0 +thr ac18ce80 , status 1 +connecting thr ac18ce80 , thread 12311 , mypolls 0 +myconn 0 connecting thr ac18ce80 , thread 12311 , mypolls 0 +thr abff1000 , status 1 +connecting thr abff1000 , thread 12312 , mypolls 0 +myconn 0 connecting thr abff1000 , thread 12312 , mypolls 0 +thr abff1180 , status 1 +connecting thr abff1180 , thread 12313 , mypolls 0 +myconn 0 connecting thr abff1180 , thread 12313 , mypolls 0 +thr abff1300 , status 1 +connecting thr abff1300 , thread 12314 , mypolls 0 +myconn 0 connecting thr abff1300 , thread 12314 , mypolls 0 +thr abff1480 , status 1 +connecting thr abff1480 , thread 12315 , mypolls 0 +myconn 0 connecting thr abff1480 , thread 12315 , mypolls 0 +thr abff1600 , status 1 +connecting thr abff1600 , thread 12316 , mypolls 0 +myconn 0 connecting thr abff1600 , thread 12316 , mypolls 0 +thr abff1780 , status 1 +connecting thr abff1780 , thread 12317 , mypolls 0 +myconn 0 connecting thr abff1780 , thread 12317 , mypolls 0 +thr abff1900 , status 1 +connecting thr abff1900 , thread 12318 , mypolls 0 +myconn 0 connecting thr abff1900 , thread 12318 , mypolls 0 +thr abff1a80 , status 1 +connecting thr abff1a80 , thread 12319 , mypolls 0 +myconn 0 connecting thr abff1a80 , thread 12319 , mypolls 0 +thr abff1c00 , status 1 +connecting thr abff1c00 , thread 12320 , mypolls 0 +myconn 0 connecting thr abff1c00 , thread 12320 , mypolls 0 +thr abff1d80 , status 1 +connecting thr abff1d80 , thread 12321 , mypolls 0 +myconn 0 connecting thr abff1d80 , thread 12321 , mypolls 0 +thr abff1f00 , status 1 +connecting thr abff1f00 , thread 12322 , mypolls 0 +myconn 0 connecting thr abff1f00 , thread 12322 , mypolls 0 +thr abff2080 , status 1 +connecting thr abff2080 , thread 12323 , mypolls 0 +myconn 0 connecting thr abff2080 , thread 12323 , mypolls 0 +thr abff2200 , status 1 +connecting thr abff2200 , thread 12324 , mypolls 0 +myconn 0 connecting thr abff2200 , thread 12324 , mypolls 0 +thr abff2380 , status 1 +connecting thr abff2380 , thread 12325 , mypolls 0 +myconn 0 connecting thr abff2380 , thread 12325 , mypolls 0 +thr abff2500 , status 1 +connecting thr abff2500 , thread 12326 , mypolls 0 +myconn 0 connecting thr abff2500 , thread 12326 , mypolls 0 +thr abff2680 , status 1 +connecting thr abff2680 , thread 12327 , mypolls 0 +myconn 0 connecting thr abff2680 , thread 12327 , mypolls 0 +thr abff2800 , status 1 +connecting thr abff2800 , thread 12328 , mypolls 0 +myconn 0 connecting thr abff2800 , thread 12328 , mypolls 0 +thr abff2980 , status 1 +connecting thr abff2980 , thread 12329 , mypolls 0 +myconn 0 connecting thr abff2980 , thread 12329 , mypolls 0 +thr abff2b00 , status 1 +connecting thr abff2b00 , thread 12330 , mypolls 0 +myconn 0 connecting thr abff2b00 , thread 12330 , mypolls 0 +thr abff2c80 , status 1 +connecting thr abff2c80 , thread 12331 , mypolls 0 +myconn 0 connecting thr abff2c80 , thread 12331 , mypolls 0 +thr abff2e00 , status 1 +connecting thr abff2e00 , thread 12332 , mypolls 0 +myconn 0 connecting thr abff2e00 , thread 12332 , mypolls 0 +thr abff2f80 , status 1 +connecting thr abff2f80 , thread 12333 , mypolls 0 +myconn 0 connecting thr abff2f80 , thread 12333 , mypolls 0 +thr abff3100 , status 1 +connecting thr abff3100 , thread 12334 , mypolls 0 +myconn 0 connecting thr abff3100 , thread 12334 , mypolls 0 +thr abff3280 , status 1 +connecting thr abff3280 , thread 12335 , mypolls 0 +myconn 0 connecting thr abff3280 , thread 12335 , mypolls 0 +thr abff3400 , status 1 +connecting thr abff3400 , thread 12336 , mypolls 0 +myconn 0 connecting thr abff3400 , thread 12336 , mypolls 0 +thr abff3580 , status 1 +connecting thr abff3580 , thread 12337 , mypolls 0 +myconn 0 connecting thr abff3580 , thread 12337 , mypolls 0 +thr abff3700 , status 1 +connecting thr abff3700 , thread 12338 , mypolls 0 +myconn 0 connecting thr abff3700 , thread 12338 , mypolls 0 +thr abff3880 , status 1 +connecting thr abff3880 , thread 12339 , mypolls 0 +myconn 0 connecting thr abff3880 , thread 12339 , mypolls 0 +thr abff3a00 , status 1 +connecting thr abff3a00 , thread 12340 , mypolls 0 +myconn 0 connecting thr abff3a00 , thread 12340 , mypolls 0 +thr abff3b80 , status 1 +connecting thr abff3b80 , thread 12341 , mypolls 0 +myconn 0 connecting thr abff3b80 , thread 12341 , mypolls 0 +thr abff3d00 , status 1 +connecting thr abff3d00 , thread 12342 , mypolls 0 +myconn 0 connecting thr abff3d00 , thread 12342 , mypolls 0 +thr abff3e80 , status 1 +connecting thr abff3e80 , thread 12343 , mypolls 0 +myconn 0 connecting thr abff3e80 , thread 12343 , mypolls 0 +thr aba5e000 , status 1 +connecting thr aba5e000 , thread 12344 , mypolls 0 +myconn 0 connecting thr aba5e000 , thread 12344 , mypolls 0 +thr aba5e180 , status 1 +connecting thr aba5e180 , thread 12345 , mypolls 0 +myconn 0 connecting thr aba5e180 , thread 12345 , mypolls 0 +thr aba5e300 , status 1 +connecting thr aba5e300 , thread 12346 , mypolls 0 +myconn 0 connecting thr aba5e300 , thread 12346 , mypolls 0 +thr aba5e480 , status 1 +connecting thr aba5e480 , thread 12347 , mypolls 0 +myconn 0 connecting thr aba5e480 , thread 12347 , mypolls 0 +thr aba5e600 , status 1 +connecting thr aba5e600 , thread 12348 , mypolls 0 +myconn 0 connecting thr aba5e600 , thread 12348 , mypolls 0 +thr aba5e780 , status 1 +connecting thr aba5e780 , thread 12349 , mypolls 0 +myconn 0 connecting thr aba5e780 , thread 12349 , mypolls 0 +thr aba5e900 , status 1 +connecting thr aba5e900 , thread 12350 , mypolls 0 +myconn 0 connecting thr aba5e900 , thread 12350 , mypolls 0 +thr aba5ea80 , status 1 +connecting thr aba5ea80 , thread 12351 , mypolls 0 +myconn 0 connecting thr aba5ea80 , thread 12351 , mypolls 0 +thr aba5ec00 , status 1 +connecting thr aba5ec00 , thread 12352 , mypolls 0 +myconn 0 connecting thr aba5ec00 , thread 12352 , mypolls 0 +thr aba5ed80 , status 1 +connecting thr aba5ed80 , thread 12353 , mypolls 0 +myconn 0 connecting thr aba5ed80 , thread 12353 , mypolls 0 +thr aba5ef00 , status 1 +connecting thr aba5ef00 , thread 12354 , mypolls 0 +myconn 0 connecting thr aba5ef00 , thread 12354 , mypolls 0 +thr aba5f080 , status 1 +connecting thr aba5f080 , thread 12355 , mypolls 0 +myconn 0 connecting thr aba5f080 , thread 12355 , mypolls 0 +thr aba5f200 , status 1 +connecting thr aba5f200 , thread 12356 , mypolls 0 +myconn 0 connecting thr aba5f200 , thread 12356 , mypolls 0 +thr aba5f380 , status 1 +connecting thr aba5f380 , thread 12357 , mypolls 0 +myconn 0 connecting thr aba5f380 , thread 12357 , mypolls 0 +thr aba5f500 , status 1 +connecting thr aba5f500 , thread 12358 , mypolls 0 +myconn 0 connecting thr aba5f500 , thread 12358 , mypolls 0 +thr aba5f680 , status 1 +connecting thr aba5f680 , thread 12359 , mypolls 0 +myconn 0 connecting thr aba5f680 , thread 12359 , mypolls 0 +thr aba5f800 , status 1 +connecting thr aba5f800 , thread 12360 , mypolls 0 +myconn 0 connecting thr aba5f800 , thread 12360 , mypolls 0 +thr aba5f980 , status 1 +connecting thr aba5f980 , thread 12361 , mypolls 0 +myconn 0 connecting thr aba5f980 , thread 12361 , mypolls 0 +thr aba5fb00 , status 1 +connecting thr aba5fb00 , thread 12362 , mypolls 0 +myconn 0 connecting thr aba5fb00 , thread 12362 , mypolls 0 +thr aba5fc80 , status 1 +connecting thr aba5fc80 , thread 12363 , mypolls 0 +myconn 0 connecting thr aba5fc80 , thread 12363 , mypolls 0 +thr aba5fe00 , status 1 +connecting thr aba5fe00 , thread 12364 , mypolls 0 +myconn 0 connecting thr aba5fe00 , thread 12364 , mypolls 0 +thr aba5ff80 , status 1 +connecting thr aba5ff80 , thread 12365 , mypolls 0 +myconn 0 connecting thr aba5ff80 , thread 12365 , mypolls 0 +thr aba60100 , status 1 +connecting thr aba60100 , thread 12366 , mypolls 0 +myconn 0 connecting thr aba60100 , thread 12366 , mypolls 0 +thr aba60280 , status 1 +connecting thr aba60280 , thread 12367 , mypolls 0 +myconn 0 connecting thr aba60280 , thread 12367 , mypolls 0 +thr aba60400 , status 1 +connecting thr aba60400 , thread 12368 , mypolls 0 +myconn 0 connecting thr aba60400 , thread 12368 , mypolls 0 +thr aba60580 , status 1 +connecting thr aba60580 , thread 12369 , mypolls 0 +myconn 0 connecting thr aba60580 , thread 12369 , mypolls 0 +thr aba60700 , status 1 +connecting thr aba60700 , thread 12370 , mypolls 0 +myconn 0 connecting thr aba60700 , thread 12370 , mypolls 0 +thr aba60880 , status 1 +connecting thr aba60880 , thread 12371 , mypolls 0 +myconn 0 connecting thr aba60880 , thread 12371 , mypolls 0 +thr aba60a00 , status 1 +connecting thr aba60a00 , thread 12372 , mypolls 0 +myconn 0 connecting thr aba60a00 , thread 12372 , mypolls 0 +thr aba60b80 , status 1 +connecting thr aba60b80 , thread 12373 , mypolls 0 +myconn 0 connecting thr aba60b80 , thread 12373 , mypolls 0 +thr aba60d00 , status 1 +connecting thr aba60d00 , thread 12374 , mypolls 0 +myconn 0 connecting thr aba60d00 , thread 12374 , mypolls 0 +thr aba60e80 , status 1 +connecting thr aba60e80 , thread 12375 , mypolls 0 +myconn 0 connecting thr aba60e80 , thread 12375 , mypolls 0 +thr ab8c1000 , status 1 +connecting thr ab8c1000 , thread 12376 , mypolls 0 +myconn 0 connecting thr ab8c1000 , thread 12376 , mypolls 0 +thr ab8c1180 , status 1 +connecting thr ab8c1180 , thread 12377 , mypolls 0 +myconn 0 connecting thr ab8c1180 , thread 12377 , mypolls 0 +thr ab8c1300 , status 1 +connecting thr ab8c1300 , thread 12378 , mypolls 0 +myconn 0 connecting thr ab8c1300 , thread 12378 , mypolls 0 +thr ab8c1480 , status 1 +connecting thr ab8c1480 , thread 12379 , mypolls 0 +myconn 0 connecting thr ab8c1480 , thread 12379 , mypolls 0 +thr ab8c1600 , status 1 +connecting thr ab8c1600 , thread 12380 , mypolls 0 +myconn 0 connecting thr ab8c1600 , thread 12380 , mypolls 0 +thr ab8c1780 , status 1 +connecting thr ab8c1780 , thread 12381 , mypolls 0 +myconn 0 connecting thr ab8c1780 , thread 12381 , mypolls 0 +thr ab8c1900 , status 1 +connecting thr ab8c1900 , thread 12382 , mypolls 0 +myconn 0 connecting thr ab8c1900 , thread 12382 , mypolls 0 +thr ab8c1a80 , status 1 +connecting thr ab8c1a80 , thread 12383 , mypolls 0 +myconn 0 connecting thr ab8c1a80 , thread 12383 , mypolls 0 +thr ab8c1c00 , status 1 +connecting thr ab8c1c00 , thread 12384 , mypolls 0 +myconn 0 connecting thr ab8c1c00 , thread 12384 , mypolls 0 +thr ab8c1d80 , status 1 +connecting thr ab8c1d80 , thread 12385 , mypolls 0 +myconn 0 connecting thr ab8c1d80 , thread 12385 , mypolls 0 +thr ab8c1f00 , status 1 +connecting thr ab8c1f00 , thread 12386 , mypolls 0 +myconn 0 connecting thr ab8c1f00 , thread 12386 , mypolls 0 +thr ab8c2080 , status 1 +connecting thr ab8c2080 , thread 12387 , mypolls 0 +myconn 0 connecting thr ab8c2080 , thread 12387 , mypolls 0 +thr ab8c2200 , status 1 +connecting thr ab8c2200 , thread 12388 , mypolls 0 +myconn 0 connecting thr ab8c2200 , thread 12388 , mypolls 0 +thr ab8c2380 , status 1 +connecting thr ab8c2380 , thread 12389 , mypolls 0 +myconn 0 connecting thr ab8c2380 , thread 12389 , mypolls 0 +thr ab8c2500 , status 1 +connecting thr ab8c2500 , thread 12390 , mypolls 0 +myconn 0 connecting thr ab8c2500 , thread 12390 , mypolls 0 +thr ab8c2680 , status 1 +connecting thr ab8c2680 , thread 12391 , mypolls 0 +myconn 0 connecting thr ab8c2680 , thread 12391 , mypolls 0 +thr ab8c2800 , status 1 +connecting thr ab8c2800 , thread 12392 , mypolls 0 +myconn 0 connecting thr ab8c2800 , thread 12392 , mypolls 0 +thr ab8c2980 , status 1 +connecting thr ab8c2980 , thread 12393 , mypolls 0 +myconn 0 connecting thr ab8c2980 , thread 12393 , mypolls 0 +thr ab8c2b00 , status 1 +connecting thr ab8c2b00 , thread 12394 , mypolls 0 +myconn 0 connecting thr ab8c2b00 , thread 12394 , mypolls 0 +thr ab8c2c80 , status 1 +connecting thr ab8c2c80 , thread 12395 , mypolls 0 +myconn 0 connecting thr ab8c2c80 , thread 12395 , mypolls 0 +thr ab8c2e00 , status 1 +connecting thr ab8c2e00 , thread 12396 , mypolls 0 +myconn 0 connecting thr ab8c2e00 , thread 12396 , mypolls 0 +thr ab8c2f80 , status 1 +connecting thr ab8c2f80 , thread 12397 , mypolls 0 +myconn 0 connecting thr ab8c2f80 , thread 12397 , mypolls 0 +thr ab8c3100 , status 1 +connecting thr ab8c3100 , thread 12398 , mypolls 0 +myconn 0 connecting thr ab8c3100 , thread 12398 , mypolls 0 +thr ab8c3280 , status 1 +connecting thr ab8c3280 , thread 12399 , mypolls 0 +myconn 0 connecting thr ab8c3280 , thread 12399 , mypolls 0 +thr ab8c3400 , status 1 +connecting thr ab8c3400 , thread 12400 , mypolls 0 +myconn 0 connecting thr ab8c3400 , thread 12400 , mypolls 0 +thr ab8c3580 , status 1 +connecting thr ab8c3580 , thread 12401 , mypolls 0 +myconn 0 connecting thr ab8c3580 , thread 12401 , mypolls 0 +thr ab8c3700 , status 1 +connecting thr ab8c3700 , thread 12402 , mypolls 0 +myconn 0 connecting thr ab8c3700 , thread 12402 , mypolls 0 +thr ab8c3880 , status 1 +connecting thr ab8c3880 , thread 12403 , mypolls 0 +myconn 0 connecting thr ab8c3880 , thread 12403 , mypolls 0 +thr ab8c3a00 , status 1 +connecting thr ab8c3a00 , thread 12404 , mypolls 0 +myconn 0 connecting thr ab8c3a00 , thread 12404 , mypolls 0 +thr ab8c3b80 , status 1 +connecting thr ab8c3b80 , thread 12405 , mypolls 0 +myconn 0 connecting thr ab8c3b80 , thread 12405 , mypolls 0 +thr ab8c3d00 , status 1 +connecting thr ab8c3d00 , thread 12406 , mypolls 0 +myconn 0 connecting thr ab8c3d00 , thread 12406 , mypolls 0 +thr ab8c3e80 , status 1 +connecting thr ab8c3e80 , thread 12407 , mypolls 0 +myconn 0 connecting thr ab8c3e80 , thread 12407 , mypolls 0 +thr ab724000 , status 1 +connecting thr ab724000 , thread 12408 , mypolls 0 +myconn 0 connecting thr ab724000 , thread 12408 , mypolls 0 +thr ab724180 , status 1 +connecting thr ab724180 , thread 12409 , mypolls 0 +myconn 0 connecting thr ab724180 , thread 12409 , mypolls 0 +thr ab724300 , status 1 +connecting thr ab724300 , thread 12410 , mypolls 0 +myconn 0 connecting thr ab724300 , thread 12410 , mypolls 0 +thr ab724480 , status 1 +connecting thr ab724480 , thread 12411 , mypolls 0 +myconn 0 connecting thr ab724480 , thread 12411 , mypolls 0 +thr ab724600 , status 1 +connecting thr ab724600 , thread 12412 , mypolls 0 +myconn 0 connecting thr ab724600 , thread 12412 , mypolls 0 +thr ab724780 , status 1 +connecting thr ab724780 , thread 12413 , mypolls 0 +myconn 0 connecting thr ab724780 , thread 12413 , mypolls 0 +thr ab724900 , status 1 +connecting thr ab724900 , thread 12414 , mypolls 0 +myconn 0 connecting thr ab724900 , thread 12414 , mypolls 0 +thr ab724a80 , status 1 +connecting thr ab724a80 , thread 12415 , mypolls 0 +myconn 0 connecting thr ab724a80 , thread 12415 , mypolls 0 +thr ab724c00 , status 1 +connecting thr ab724c00 , thread 12416 , mypolls 0 +myconn 0 connecting thr ab724c00 , thread 12416 , mypolls 0 +thr ab724d80 , status 1 +connecting thr ab724d80 , thread 12417 , mypolls 0 +myconn 0 connecting thr ab724d80 , thread 12417 , mypolls 0 +thr ab724f00 , status 1 +connecting thr ab724f00 , thread 12418 , mypolls 0 +myconn 0 connecting thr ab724f00 , thread 12418 , mypolls 0 +thr ab725080 , status 1 +connecting thr ab725080 , thread 12419 , mypolls 0 +myconn 0 connecting thr ab725080 , thread 12419 , mypolls 0 +thr ab725200 , status 1 +connecting thr ab725200 , thread 12420 , mypolls 0 +myconn 0 connecting thr ab725200 , thread 12420 , mypolls 0 +thr ab725380 , status 1 +connecting thr ab725380 , thread 12421 , mypolls 0 +myconn 0 connecting thr ab725380 , thread 12421 , mypolls 0 +thr ab725500 , status 1 +connecting thr ab725500 , thread 12422 , mypolls 0 +myconn 0 connecting thr ab725500 , thread 12422 , mypolls 0 +thr ab725680 , status 1 +connecting thr ab725680 , thread 12423 , mypolls 0 +myconn 0 connecting thr ab725680 , thread 12423 , mypolls 0 +thr ab725800 , status 1 +connecting thr ab725800 , thread 12424 , mypolls 0 +myconn 0 connecting thr ab725800 , thread 12424 , mypolls 0 +thr ab725980 , status 1 +connecting thr ab725980 , thread 12425 , mypolls 0 +myconn 0 connecting thr ab725980 , thread 12425 , mypolls 0 +thr ab725b00 , status 1 +connecting thr ab725b00 , thread 12426 , mypolls 0 +myconn 0 connecting thr ab725b00 , thread 12426 , mypolls 0 +thr ab725c80 , status 1 +connecting thr ab725c80 , thread 12427 , mypolls 0 +myconn 0 connecting thr ab725c80 , thread 12427 , mypolls 0 +thr ab725e00 , status 1 +connecting thr ab725e00 , thread 12428 , mypolls 0 +myconn 0 connecting thr ab725e00 , thread 12428 , mypolls 0 +thr ab725f80 , status 1 +connecting thr ab725f80 , thread 12429 , mypolls 0 +myconn 0 connecting thr ab725f80 , thread 12429 , mypolls 0 +thr ab726100 , status 1 +connecting thr ab726100 , thread 12430 , mypolls 0 +myconn 0 connecting thr ab726100 , thread 12430 , mypolls 0 +thr ab726280 , status 1 +connecting thr ab726280 , thread 12431 , mypolls 0 +myconn 0 connecting thr ab726280 , thread 12431 , mypolls 0 +thr ab726400 , status 1 +connecting thr ab726400 , thread 12432 , mypolls 0 +myconn 0 connecting thr ab726400 , thread 12432 , mypolls 0 +thr ab726580 , status 1 +connecting thr ab726580 , thread 12433 , mypolls 0 +myconn 0 connecting thr ab726580 , thread 12433 , mypolls 0 +thr ab726700 , status 1 +connecting thr ab726700 , thread 12434 , mypolls 0 +myconn 0 connecting thr ab726700 , thread 12434 , mypolls 0 +thr ab726880 , status 1 +connecting thr ab726880 , thread 12435 , mypolls 0 +myconn 0 connecting thr ab726880 , thread 12435 , mypolls 0 +thr ab726a00 , status 1 +connecting thr ab726a00 , thread 12436 , mypolls 0 +myconn 0 connecting thr ab726a00 , thread 12436 , mypolls 0 +thr ab726b80 , status 1 +connecting thr ab726b80 , thread 12437 , mypolls 0 +myconn 0 connecting thr ab726b80 , thread 12437 , mypolls 0 +thr ab726d00 , status 1 +connecting thr ab726d00 , thread 12438 , mypolls 0 +myconn 0 connecting thr ab726d00 , thread 12438 , mypolls 0 +thr ab726e80 , status 1 +connecting thr ab726e80 , thread 12439 , mypolls 0 +myconn 0 connecting thr ab726e80 , thread 12439 , mypolls 0 +thr ab587000 , status 1 +connecting thr ab587000 , thread 12440 , mypolls 0 +myconn 0 connecting thr ab587000 , thread 12440 , mypolls 0 +thr ab587180 , status 1 +connecting thr ab587180 , thread 12441 , mypolls 0 +myconn 0 connecting thr ab587180 , thread 12441 , mypolls 0 +thr ab587300 , status 1 +connecting thr ab587300 , thread 12442 , mypolls 0 +myconn 0 connecting thr ab587300 , thread 12442 , mypolls 0 +thr ab587480 , status 1 +connecting thr ab587480 , thread 12443 , mypolls 0 +myconn 0 connecting thr ab587480 , thread 12443 , mypolls 0 +thr ab587600 , status 1 +connecting thr ab587600 , thread 12444 , mypolls 0 +myconn 0 connecting thr ab587600 , thread 12444 , mypolls 0 +thr ab587780 , status 1 +connecting thr ab587780 , thread 12445 , mypolls 0 +myconn 0 connecting thr ab587780 , thread 12445 , mypolls 0 +thr ab587900 , status 1 +connecting thr ab587900 , thread 12446 , mypolls 0 +myconn 0 connecting thr ab587900 , thread 12446 , mypolls 0 +thr ab587a80 , status 1 +connecting thr ab587a80 , thread 12447 , mypolls 0 +myconn 0 connecting thr ab587a80 , thread 12447 , mypolls 0 +thr ab587c00 , status 1 +connecting thr ab587c00 , thread 12448 , mypolls 0 +myconn 0 connecting thr ab587c00 , thread 12448 , mypolls 0 +thr ab587d80 , status 1 +connecting thr ab587d80 , thread 12449 , mypolls 0 +myconn 0 connecting thr ab587d80 , thread 12449 , mypolls 0 +thr ab587f00 , status 1 +connecting thr ab587f00 , thread 12450 , mypolls 0 +myconn 0 connecting thr ab587f00 , thread 12450 , mypolls 0 +thr ab588080 , status 1 +connecting thr ab588080 , thread 12451 , mypolls 0 +myconn 0 connecting thr ab588080 , thread 12451 , mypolls 0 +thr ab588200 , status 1 +connecting thr ab588200 , thread 12452 , mypolls 0 +myconn 0 connecting thr ab588200 , thread 12452 , mypolls 0 +thr ab588380 , status 1 +connecting thr ab588380 , thread 12453 , mypolls 0 +myconn 0 connecting thr ab588380 , thread 12453 , mypolls 0 +thr ab588500 , status 1 +connecting thr ab588500 , thread 12454 , mypolls 0 +myconn 0 connecting thr ab588500 , thread 12454 , mypolls 0 +thr ab588680 , status 1 +connecting thr ab588680 , thread 12455 , mypolls 0 +myconn 0 connecting thr ab588680 , thread 12455 , mypolls 0 +thr ab588800 , status 1 +connecting thr ab588800 , thread 12456 , mypolls 0 +myconn 0 connecting thr ab588800 , thread 12456 , mypolls 0 +thr ab588980 , status 1 +connecting thr ab588980 , thread 12457 , mypolls 0 +myconn 0 connecting thr ab588980 , thread 12457 , mypolls 0 +thr ab588b00 , status 1 +connecting thr ab588b00 , thread 12458 , mypolls 0 +myconn 0 connecting thr ab588b00 , thread 12458 , mypolls 0 +thr ab588c80 , status 1 +connecting thr ab588c80 , thread 12459 , mypolls 0 +myconn 0 connecting thr ab588c80 , thread 12459 , mypolls 0 +thr ab588e00 , status 1 +connecting thr ab588e00 , thread 12460 , mypolls 0 +myconn 0 connecting thr ab588e00 , thread 12460 , mypolls 0 +thr ab588f80 , status 1 +connecting thr ab588f80 , thread 12461 , mypolls 0 +myconn 0 connecting thr ab588f80 , thread 12461 , mypolls 0 +thr ab589100 , status 1 +connecting thr ab589100 , thread 12462 , mypolls 0 +myconn 0 connecting thr ab589100 , thread 12462 , mypolls 0 +thr ab589280 , status 1 +connecting thr ab589280 , thread 12463 , mypolls 0 +myconn 0 connecting thr ab589280 , thread 12463 , mypolls 0 +thr ab589400 , status 1 +connecting thr ab589400 , thread 12464 , mypolls 0 +myconn 0 connecting thr ab589400 , thread 12464 , mypolls 0 +thr ab589580 , status 1 +connecting thr ab589580 , thread 12465 , mypolls 0 +myconn 0 connecting thr ab589580 , thread 12465 , mypolls 0 +thr ab589700 , status 1 +connecting thr ab589700 , thread 12466 , mypolls 0 +myconn 0 connecting thr ab589700 , thread 12466 , mypolls 0 +thr ab589880 , status 1 +connecting thr ab589880 , thread 12467 , mypolls 0 +myconn 0 connecting thr ab589880 , thread 12467 , mypolls 0 +thr ab589a00 , status 1 +connecting thr ab589a00 , thread 12468 , mypolls 0 +myconn 0 connecting thr ab589a00 , thread 12468 , mypolls 0 +thr ab589b80 , status 1 +connecting thr ab589b80 , thread 12469 , mypolls 0 +myconn 0 connecting thr ab589b80 , thread 12469 , mypolls 0 +thr ab589d00 , status 1 +connecting thr ab589d00 , thread 12470 , mypolls 0 +myconn 0 connecting thr ab589d00 , thread 12470 , mypolls 0 +thr ab589e80 , status 1 +connecting thr ab589e80 , thread 12471 , mypolls 0 +myconn 0 connecting thr ab589e80 , thread 12471 , mypolls 0 +thr ab3e6000 , status 1 +connecting thr ab3e6000 , thread 12472 , mypolls 0 +myconn 0 connecting thr ab3e6000 , thread 12472 , mypolls 0 +thr ab3e6180 , status 1 +connecting thr ab3e6180 , thread 12473 , mypolls 0 +myconn 0 connecting thr ab3e6180 , thread 12473 , mypolls 0 +thr ab3e6300 , status 1 +connecting thr ab3e6300 , thread 12474 , mypolls 0 +myconn 0 connecting thr ab3e6300 , thread 12474 , mypolls 0 +thr ab3e6480 , status 1 +connecting thr ab3e6480 , thread 12475 , mypolls 0 +myconn 0 connecting thr ab3e6480 , thread 12475 , mypolls 0 +thr ab3e6600 , status 1 +connecting thr ab3e6600 , thread 12476 , mypolls 0 +myconn 0 connecting thr ab3e6600 , thread 12476 , mypolls 0 +thr ab3e6780 , status 1 +connecting thr ab3e6780 , thread 12477 , mypolls 0 +myconn 0 connecting thr ab3e6780 , thread 12477 , mypolls 0 +thr ab3e6900 , status 1 +connecting thr ab3e6900 , thread 12478 , mypolls 0 +myconn 0 connecting thr ab3e6900 , thread 12478 , mypolls 0 +thr ab3e6a80 , status 1 +connecting thr ab3e6a80 , thread 12479 , mypolls 0 +myconn 0 connecting thr ab3e6a80 , thread 12479 , mypolls 0 +thr ab3e6c00 , status 1 +connecting thr ab3e6c00 , thread 12480 , mypolls 0 +myconn 0 connecting thr ab3e6c00 , thread 12480 , mypolls 0 +thr ab3e6d80 , status 1 +connecting thr ab3e6d80 , thread 12481 , mypolls 0 +myconn 0 connecting thr ab3e6d80 , thread 12481 , mypolls 0 +thr ab3e6f00 , status 1 +connecting thr ab3e6f00 , thread 12482 , mypolls 0 +myconn 0 connecting thr ab3e6f00 , thread 12482 , mypolls 0 +thr ab3e7080 , status 1 +connecting thr ab3e7080 , thread 12483 , mypolls 0 +myconn 0 connecting thr ab3e7080 , thread 12483 , mypolls 0 +thr ab3e7200 , status 1 +connecting thr ab3e7200 , thread 12484 , mypolls 0 +myconn 0 connecting thr ab3e7200 , thread 12484 , mypolls 0 +thr ab3e7380 , status 1 +connecting thr ab3e7380 , thread 12485 , mypolls 0 +myconn 0 connecting thr ab3e7380 , thread 12485 , mypolls 0 +thr ab3e7500 , status 1 +connecting thr ab3e7500 , thread 12486 , mypolls 0 +myconn 0 connecting thr ab3e7500 , thread 12486 , mypolls 0 +thr ab3e7680 , status 1 +connecting thr ab3e7680 , thread 12487 , mypolls 0 +myconn 0 connecting thr ab3e7680 , thread 12487 , mypolls 0 +thr ab3e7800 , status 1 +connecting thr ab3e7800 , thread 12488 , mypolls 0 +myconn 0 connecting thr ab3e7800 , thread 12488 , mypolls 0 +thr ab3e7980 , status 1 +connecting thr ab3e7980 , thread 12489 , mypolls 0 +myconn 0 connecting thr ab3e7980 , thread 12489 , mypolls 0 +thr ab3e7b00 , status 1 +connecting thr ab3e7b00 , thread 12490 , mypolls 0 +myconn 0 connecting thr ab3e7b00 , thread 12490 , mypolls 0 +thr ab3e7c80 , status 1 +connecting thr ab3e7c80 , thread 12491 , mypolls 0 +myconn 0 connecting thr ab3e7c80 , thread 12491 , mypolls 0 +thr ab3e7e00 , status 1 +connecting thr ab3e7e00 , thread 12492 , mypolls 0 +myconn 0 connecting thr ab3e7e00 , thread 12492 , mypolls 0 +thr ab3e7f80 , status 1 +connecting thr ab3e7f80 , thread 12493 , mypolls 0 +myconn 0 connecting thr ab3e7f80 , thread 12493 , mypolls 0 +thr ab3e8100 , status 1 +connecting thr ab3e8100 , thread 12494 , mypolls 0 +myconn 0 connecting thr ab3e8100 , thread 12494 , mypolls 0 +thr ab3e8280 , status 1 +connecting thr ab3e8280 , thread 12495 , mypolls 0 +myconn 0 connecting thr ab3e8280 , thread 12495 , mypolls 0 +thr ab3e8400 , status 1 +connecting thr ab3e8400 , thread 12496 , mypolls 0 +myconn 0 connecting thr ab3e8400 , thread 12496 , mypolls 0 +thr ab3e8580 , status 1 +connecting thr ab3e8580 , thread 12497 , mypolls 0 +myconn 0 connecting thr ab3e8580 , thread 12497 , mypolls 0 +thr ab3e8700 , status 1 +connecting thr ab3e8700 , thread 12498 , mypolls 0 +myconn 0 connecting thr ab3e8700 , thread 12498 , mypolls 0 +thr ab3e8880 , status 1 +connecting thr ab3e8880 , thread 12499 , mypolls 0 +myconn 0 connecting thr ab3e8880 , thread 12499 , mypolls 0 +thr ab3e8a00 , status 1 +connecting thr ab3e8a00 , thread 12500 , mypolls 0 +myconn 0 connecting thr ab3e8a00 , thread 12500 , mypolls 0 +thr ab3e8b80 , status 1 +connecting thr ab3e8b80 , thread 12501 , mypolls 0 +myconn 0 connecting thr ab3e8b80 , thread 12501 , mypolls 0 +thr ab3e8d00 , status 1 +connecting thr ab3e8d00 , thread 12502 , mypolls 0 +myconn 0 connecting thr ab3e8d00 , thread 12502 , mypolls 0 +thr ab3e8e80 , status 1 +connecting thr ab3e8e80 , thread 12503 , mypolls 0 +myconn 0 connecting thr ab3e8e80 , thread 12503 , mypolls 0 +thr aae57000 , status 1 +connecting thr aae57000 , thread 12504 , mypolls 0 +myconn 0 connecting thr aae57000 , thread 12504 , mypolls 0 +thr aae57180 , status 1 +connecting thr aae57180 , thread 12505 , mypolls 0 +myconn 0 connecting thr aae57180 , thread 12505 , mypolls 0 +thr aae57300 , status 1 +connecting thr aae57300 , thread 12506 , mypolls 0 +myconn 0 connecting thr aae57300 , thread 12506 , mypolls 0 +thr aae57480 , status 1 +connecting thr aae57480 , thread 12507 , mypolls 0 +myconn 0 connecting thr aae57480 , thread 12507 , mypolls 0 +thr aae57600 , status 1 +connecting thr aae57600 , thread 12508 , mypolls 0 +myconn 0 connecting thr aae57600 , thread 12508 , mypolls 0 +thr aae57780 , status 1 +connecting thr aae57780 , thread 12509 , mypolls 0 +myconn 0 connecting thr aae57780 , thread 12509 , mypolls 0 +thr aae57900 , status 1 +connecting thr aae57900 , thread 12510 , mypolls 0 +myconn 0 connecting thr aae57900 , thread 12510 , mypolls 0 +thr aae57a80 , status 1 +connecting thr aae57a80 , thread 12511 , mypolls 0 +myconn 0 connecting thr aae57a80 , thread 12511 , mypolls 0 +thr aae57c00 , status 1 +connecting thr aae57c00 , thread 12512 , mypolls 0 +myconn 0 connecting thr aae57c00 , thread 12512 , mypolls 0 +thr aae57d80 , status 1 +connecting thr aae57d80 , thread 12513 , mypolls 0 +myconn 0 connecting thr aae57d80 , thread 12513 , mypolls 0 +thr aae57f00 , status 1 +connecting thr aae57f00 , thread 12514 , mypolls 0 +myconn 0 connecting thr aae57f00 , thread 12514 , mypolls 0 +thr aae58080 , status 1 +connecting thr aae58080 , thread 12515 , mypolls 0 +myconn 0 connecting thr aae58080 , thread 12515 , mypolls 0 +thr aae58200 , status 1 +connecting thr aae58200 , thread 12516 , mypolls 0 +myconn 0 connecting thr aae58200 , thread 12516 , mypolls 0 +thr aae58380 , status 1 +connecting thr aae58380 , thread 12517 , mypolls 0 +myconn 0 connecting thr aae58380 , thread 12517 , mypolls 0 +thr aae58500 , status 1 +connecting thr aae58500 , thread 12518 , mypolls 0 +myconn 0 connecting thr aae58500 , thread 12518 , mypolls 0 +thr aae58680 , status 1 +connecting thr aae58680 , thread 12519 , mypolls 0 +myconn 0 connecting thr aae58680 , thread 12519 , mypolls 0 +thr aae58800 , status 1 +connecting thr aae58800 , thread 12520 , mypolls 0 +myconn 0 connecting thr aae58800 , thread 12520 , mypolls 0 +thr aae58980 , status 1 +connecting thr aae58980 , thread 12521 , mypolls 0 +myconn 0 connecting thr aae58980 , thread 12521 , mypolls 0 +thr aae58b00 , status 1 +connecting thr aae58b00 , thread 12522 , mypolls 0 +myconn 0 connecting thr aae58b00 , thread 12522 , mypolls 0 +thr aae58c80 , status 1 +connecting thr aae58c80 , thread 12523 , mypolls 0 +myconn 0 connecting thr aae58c80 , thread 12523 , mypolls 0 +thr aae58e00 , status 1 +connecting thr aae58e00 , thread 12524 , mypolls 0 +myconn 0 connecting thr aae58e00 , thread 12524 , mypolls 0 +thr aae58f80 , status 1 +connecting thr aae58f80 , thread 12525 , mypolls 0 +myconn 0 connecting thr aae58f80 , thread 12525 , mypolls 0 +thr aae59100 , status 1 +connecting thr aae59100 , thread 12526 , mypolls 0 +myconn 0 connecting thr aae59100 , thread 12526 , mypolls 0 +thr aae59280 , status 1 +connecting thr aae59280 , thread 12527 , mypolls 0 +myconn 0 connecting thr aae59280 , thread 12527 , mypolls 0 +thr aae59400 , status 1 +connecting thr aae59400 , thread 12528 , mypolls 0 +myconn 0 connecting thr aae59400 , thread 12528 , mypolls 0 +thr aae59580 , status 1 +connecting thr aae59580 , thread 12529 , mypolls 0 +myconn 0 connecting thr aae59580 , thread 12529 , mypolls 0 +thr aae59700 , status 1 +connecting thr aae59700 , thread 12530 , mypolls 0 +myconn 0 connecting thr aae59700 , thread 12530 , mypolls 0 +thr aae59880 , status 1 +connecting thr aae59880 , thread 12531 , mypolls 0 +myconn 0 connecting thr aae59880 , thread 12531 , mypolls 0 +thr aae59a00 , status 1 +connecting thr aae59a00 , thread 12532 , mypolls 0 +myconn 0 connecting thr aae59a00 , thread 12532 , mypolls 0 +thr aae59b80 , status 1 +connecting thr aae59b80 , thread 12533 , mypolls 0 +myconn 0 connecting thr aae59b80 , thread 12533 , mypolls 0 +thr aae59d00 , status 1 +connecting thr aae59d00 , thread 12534 , mypolls 0 +myconn 0 connecting thr aae59d00 , thread 12534 , mypolls 0 +thr aae59e80 , status 1 +connecting thr aae59e80 , thread 12535 , mypolls 0 +myconn 0 connecting thr aae59e80 , thread 12535 , mypolls 0 +thr aacb9000 , status 1 +connecting thr aacb9000 , thread 12536 , mypolls 0 +myconn 0 connecting thr aacb9000 , thread 12536 , mypolls 0 +thr aacb9180 , status 1 +connecting thr aacb9180 , thread 12537 , mypolls 0 +myconn 0 connecting thr aacb9180 , thread 12537 , mypolls 0 +thr aacb9300 , status 1 +connecting thr aacb9300 , thread 12538 , mypolls 0 +myconn 0 connecting thr aacb9300 , thread 12538 , mypolls 0 +thr aacb9480 , status 1 +connecting thr aacb9480 , thread 12539 , mypolls 0 +myconn 0 connecting thr aacb9480 , thread 12539 , mypolls 0 +thr aacb9600 , status 1 +connecting thr aacb9600 , thread 12540 , mypolls 0 +myconn 0 connecting thr aacb9600 , thread 12540 , mypolls 0 +thr aacb9780 , status 1 +connecting thr aacb9780 , thread 12541 , mypolls 0 +myconn 0 connecting thr aacb9780 , thread 12541 , mypolls 0 +thr aacb9900 , status 1 +connecting thr aacb9900 , thread 12542 , mypolls 0 +myconn 0 connecting thr aacb9900 , thread 12542 , mypolls 0 +thr aacb9a80 , status 1 +connecting thr aacb9a80 , thread 12543 , mypolls 0 +myconn 0 connecting thr aacb9a80 , thread 12543 , mypolls 0 +thr aacb9c00 , status 1 +connecting thr aacb9c00 , thread 12544 , mypolls 0 +myconn 0 connecting thr aacb9c00 , thread 12544 , mypolls 0 +thr aacb9d80 , status 1 +connecting thr aacb9d80 , thread 12545 , mypolls 0 +myconn 0 connecting thr aacb9d80 , thread 12545 , mypolls 0 +thr aacb9f00 , status 1 +connecting thr aacb9f00 , thread 12546 , mypolls 0 +myconn 0 connecting thr aacb9f00 , thread 12546 , mypolls 0 +thr aacba080 , status 1 +connecting thr aacba080 , thread 12547 , mypolls 0 +myconn 0 connecting thr aacba080 , thread 12547 , mypolls 0 +thr aacba200 , status 1 +connecting thr aacba200 , thread 12548 , mypolls 0 +myconn 0 connecting thr aacba200 , thread 12548 , mypolls 0 +thr aacba380 , status 1 +connecting thr aacba380 , thread 12549 , mypolls 0 +myconn 0 connecting thr aacba380 , thread 12549 , mypolls 0 +thr aacba500 , status 1 +connecting thr aacba500 , thread 12550 , mypolls 0 +myconn 0 connecting thr aacba500 , thread 12550 , mypolls 0 +thr aacba680 , status 1 +connecting thr aacba680 , thread 12551 , mypolls 0 +myconn 0 connecting thr aacba680 , thread 12551 , mypolls 0 +thr aacba800 , status 1 +connecting thr aacba800 , thread 12552 , mypolls 0 +myconn 0 connecting thr aacba800 , thread 12552 , mypolls 0 +thr aacba980 , status 1 +connecting thr aacba980 , thread 12553 , mypolls 0 +myconn 0 connecting thr aacba980 , thread 12553 , mypolls 0 +thr aacbab00 , status 1 +connecting thr aacbab00 , thread 12554 , mypolls 0 +myconn 0 connecting thr aacbab00 , thread 12554 , mypolls 0 +thr aacbac80 , status 1 +connecting thr aacbac80 , thread 12555 , mypolls 0 +myconn 0 connecting thr aacbac80 , thread 12555 , mypolls 0 +thr aacbae00 , status 1 +connecting thr aacbae00 , thread 12556 , mypolls 0 +myconn 0 connecting thr aacbae00 , thread 12556 , mypolls 0 +thr aacbaf80 , status 1 +connecting thr aacbaf80 , thread 12557 , mypolls 0 +myconn 0 connecting thr aacbaf80 , thread 12557 , mypolls 0 +thr aacbb100 , status 1 +connecting thr aacbb100 , thread 12558 , mypolls 0 +myconn 0 connecting thr aacbb100 , thread 12558 , mypolls 0 +thr aacbb280 , status 1 +connecting thr aacbb280 , thread 12559 , mypolls 0 +myconn 0 connecting thr aacbb280 , thread 12559 , mypolls 0 +thr aacbb400 , status 1 +connecting thr aacbb400 , thread 12560 , mypolls 0 +myconn 0 connecting thr aacbb400 , thread 12560 , mypolls 0 +thr aacbb580 , status 1 +connecting thr aacbb580 , thread 12561 , mypolls 0 +myconn 0 connecting thr aacbb580 , thread 12561 , mypolls 0 +thr aacbb700 , status 1 +connecting thr aacbb700 , thread 12562 , mypolls 0 +myconn 0 connecting thr aacbb700 , thread 12562 , mypolls 0 +thr aacbb880 , status 1 +connecting thr aacbb880 , thread 12563 , mypolls 0 +myconn 0 connecting thr aacbb880 , thread 12563 , mypolls 0 +thr aacbba00 , status 1 +connecting thr aacbba00 , thread 12564 , mypolls 0 +myconn 0 connecting thr aacbba00 , thread 12564 , mypolls 0 +thr aacbbb80 , status 1 +connecting thr aacbbb80 , thread 12565 , mypolls 0 +myconn 0 connecting thr aacbbb80 , thread 12565 , mypolls 0 +thr aacbbd00 , status 1 +connecting thr aacbbd00 , thread 12566 , mypolls 0 +myconn 0 connecting thr aacbbd00 , thread 12566 , mypolls 0 +thr aacbbe80 , status 1 +connecting thr aacbbe80 , thread 12567 , mypolls 0 +myconn 0 connecting thr aacbbe80 , thread 12567 , mypolls 0 +thr aab1b000 , status 1 +connecting thr aab1b000 , thread 12568 , mypolls 0 +myconn 0 connecting thr aab1b000 , thread 12568 , mypolls 0 +thr aab1b180 , status 1 +connecting thr aab1b180 , thread 12569 , mypolls 0 +myconn 0 connecting thr aab1b180 , thread 12569 , mypolls 0 +thr aab1b300 , status 1 +connecting thr aab1b300 , thread 12570 , mypolls 0 +myconn 0 connecting thr aab1b300 , thread 12570 , mypolls 0 +thr aab1b480 , status 1 +connecting thr aab1b480 , thread 12571 , mypolls 0 +myconn 0 connecting thr aab1b480 , thread 12571 , mypolls 0 +thr aab1b600 , status 1 +connecting thr aab1b600 , thread 12572 , mypolls 0 +myconn 0 connecting thr aab1b600 , thread 12572 , mypolls 0 +thr aab1b780 , status 1 +connecting thr aab1b780 , thread 12573 , mypolls 0 +myconn 0 connecting thr aab1b780 , thread 12573 , mypolls 0 +thr aab1b900 , status 1 +connecting thr aab1b900 , thread 12574 , mypolls 0 +myconn 0 connecting thr aab1b900 , thread 12574 , mypolls 0 +thr aab1ba80 , status 1 +connecting thr aab1ba80 , thread 12575 , mypolls 0 +myconn 0 connecting thr aab1ba80 , thread 12575 , mypolls 0 +thr aab1bc00 , status 1 +connecting thr aab1bc00 , thread 12576 , mypolls 0 +myconn 0 connecting thr aab1bc00 , thread 12576 , mypolls 0 +thr aab1bd80 , status 1 +connecting thr aab1bd80 , thread 12577 , mypolls 0 +myconn 0 connecting thr aab1bd80 , thread 12577 , mypolls 0 +thr aab1bf00 , status 1 +connecting thr aab1bf00 , thread 12578 , mypolls 0 +myconn 0 connecting thr aab1bf00 , thread 12578 , mypolls 0 +thr aab1c080 , status 1 +connecting thr aab1c080 , thread 12579 , mypolls 0 +myconn 0 connecting thr aab1c080 , thread 12579 , mypolls 0 +thr aab1c200 , status 1 +connecting thr aab1c200 , thread 12580 , mypolls 0 +myconn 0 connecting thr aab1c200 , thread 12580 , mypolls 0 +thr aab1c380 , status 1 +connecting thr aab1c380 , thread 12581 , mypolls 0 +myconn 0 connecting thr aab1c380 , thread 12581 , mypolls 0 +thr aab1c500 , status 1 +connecting thr aab1c500 , thread 12582 , mypolls 0 +myconn 0 connecting thr aab1c500 , thread 12582 , mypolls 0 +thr aab1c680 , status 1 +connecting thr aab1c680 , thread 12583 , mypolls 0 +myconn 0 connecting thr aab1c680 , thread 12583 , mypolls 0 +thr aab1c800 , status 1 +connecting thr aab1c800 , thread 12584 , mypolls 0 +myconn 0 connecting thr aab1c800 , thread 12584 , mypolls 0 +thr aab1c980 , status 1 +connecting thr aab1c980 , thread 12585 , mypolls 0 +myconn 0 connecting thr aab1c980 , thread 12585 , mypolls 0 +thr aab1cb00 , status 1 +connecting thr aab1cb00 , thread 12586 , mypolls 0 +myconn 0 connecting thr aab1cb00 , thread 12586 , mypolls 0 +thr aab1cc80 , status 1 +connecting thr aab1cc80 , thread 12587 , mypolls 0 +myconn 0 connecting thr aab1cc80 , thread 12587 , mypolls 0 +thr aab1ce00 , status 1 +connecting thr aab1ce00 , thread 12588 , mypolls 0 +myconn 0 connecting thr aab1ce00 , thread 12588 , mypolls 0 +thr aab1cf80 , status 1 +connecting thr aab1cf80 , thread 12589 , mypolls 0 +myconn 0 connecting thr aab1cf80 , thread 12589 , mypolls 0 +thr aab1d100 , status 1 +connecting thr aab1d100 , thread 12590 , mypolls 0 +myconn 0 connecting thr aab1d100 , thread 12590 , mypolls 0 +thr aab1d280 , status 1 +connecting thr aab1d280 , thread 12591 , mypolls 0 +myconn 0 connecting thr aab1d280 , thread 12591 , mypolls 0 +thr aab1d400 , status 1 +connecting thr aab1d400 , thread 12592 , mypolls 0 +myconn 0 connecting thr aab1d400 , thread 12592 , mypolls 0 +thr aab1d580 , status 1 +connecting thr aab1d580 , thread 12593 , mypolls 0 +myconn 0 connecting thr aab1d580 , thread 12593 , mypolls 0 +thr aab1d700 , status 1 +connecting thr aab1d700 , thread 12594 , mypolls 0 +myconn 0 connecting thr aab1d700 , thread 12594 , mypolls 0 +thr aab1d880 , status 1 +connecting thr aab1d880 , thread 12595 , mypolls 0 +myconn 0 connecting thr aab1d880 , thread 12595 , mypolls 0 +thr aab1da00 , status 1 +connecting thr aab1da00 , thread 12596 , mypolls 0 +myconn 0 connecting thr aab1da00 , thread 12596 , mypolls 0 +thr aab1db80 , status 1 +connecting thr aab1db80 , thread 12597 , mypolls 0 +myconn 0 connecting thr aab1db80 , thread 12597 , mypolls 0 +thr aab1dd00 , status 1 +connecting thr aab1dd00 , thread 12598 , mypolls 0 +myconn 0 connecting thr aab1dd00 , thread 12598 , mypolls 0 +thr aab1de80 , status 1 +connecting thr aab1de80 , thread 12599 , mypolls 0 +myconn 0 connecting thr aab1de80 , thread 12599 , mypolls 0 +thr aa982000 , status 1 +connecting thr aa982000 , thread 12600 , mypolls 0 +myconn 0 connecting thr aa982000 , thread 12600 , mypolls 0 +thr aa982180 , status 1 +connecting thr aa982180 , thread 12601 , mypolls 0 +myconn 0 connecting thr aa982180 , thread 12601 , mypolls 0 +thr aa982300 , status 1 +connecting thr aa982300 , thread 12602 , mypolls 0 +myconn 0 connecting thr aa982300 , thread 12602 , mypolls 0 +thr aa982480 , status 1 +connecting thr aa982480 , thread 12603 , mypolls 0 +myconn 0 connecting thr aa982480 , thread 12603 , mypolls 0 +thr aa982600 , status 1 +connecting thr aa982600 , thread 12604 , mypolls 0 +myconn 0 connecting thr aa982600 , thread 12604 , mypolls 0 +thr aa982780 , status 1 +connecting thr aa982780 , thread 12605 , mypolls 0 +myconn 0 connecting thr aa982780 , thread 12605 , mypolls 0 +thr aa982900 , status 1 +connecting thr aa982900 , thread 12606 , mypolls 0 +myconn 0 connecting thr aa982900 , thread 12606 , mypolls 0 +thr aa982a80 , status 1 +connecting thr aa982a80 , thread 12607 , mypolls 0 +myconn 0 connecting thr aa982a80 , thread 12607 , mypolls 0 +thr aa982c00 , status 1 +connecting thr aa982c00 , thread 12608 , mypolls 0 +myconn 0 connecting thr aa982c00 , thread 12608 , mypolls 0 +thr aa982d80 , status 1 +connecting thr aa982d80 , thread 12609 , mypolls 0 +myconn 0 connecting thr aa982d80 , thread 12609 , mypolls 0 +thr aa982f00 , status 1 +connecting thr aa982f00 , thread 12610 , mypolls 0 +myconn 0 connecting thr aa982f00 , thread 12610 , mypolls 0 +thr aa983080 , status 1 +connecting thr aa983080 , thread 12611 , mypolls 0 +myconn 0 connecting thr aa983080 , thread 12611 , mypolls 0 +thr aa983200 , status 1 +connecting thr aa983200 , thread 12612 , mypolls 0 +myconn 0 connecting thr aa983200 , thread 12612 , mypolls 0 +thr aa983380 , status 1 +connecting thr aa983380 , thread 12613 , mypolls 0 +myconn 0 connecting thr aa983380 , thread 12613 , mypolls 0 +thr aa983500 , status 1 +connecting thr aa983500 , thread 12614 , mypolls 0 +myconn 0 connecting thr aa983500 , thread 12614 , mypolls 0 +thr aa983680 , status 1 +connecting thr aa983680 , thread 12615 , mypolls 0 +myconn 0 connecting thr aa983680 , thread 12615 , mypolls 0 +thr aa983800 , status 1 +connecting thr aa983800 , thread 12616 , mypolls 0 +myconn 0 connecting thr aa983800 , thread 12616 , mypolls 0 +thr aa983980 , status 1 +connecting thr aa983980 , thread 12617 , mypolls 0 +myconn 0 connecting thr aa983980 , thread 12617 , mypolls 0 +thr aa983b00 , status 1 +connecting thr aa983b00 , thread 12618 , mypolls 0 +myconn 0 connecting thr aa983b00 , thread 12618 , mypolls 0 +thr aa983c80 , status 1 +connecting thr aa983c80 , thread 12619 , mypolls 0 +myconn 0 connecting thr aa983c80 , thread 12619 , mypolls 0 +thr aa983e00 , status 1 +connecting thr aa983e00 , thread 12620 , mypolls 0 +myconn 0 connecting thr aa983e00 , thread 12620 , mypolls 0 +thr aa983f80 , status 1 +connecting thr aa983f80 , thread 12621 , mypolls 0 +myconn 0 connecting thr aa983f80 , thread 12621 , mypolls 0 +thr aa984100 , status 1 +connecting thr aa984100 , thread 12622 , mypolls 0 +myconn 0 connecting thr aa984100 , thread 12622 , mypolls 0 +thr aa984280 , status 1 +connecting thr aa984280 , thread 12623 , mypolls 0 +myconn 0 connecting thr aa984280 , thread 12623 , mypolls 0 +thr aa984400 , status 1 +connecting thr aa984400 , thread 12624 , mypolls 0 +myconn 0 connecting thr aa984400 , thread 12624 , mypolls 0 +thr aa984580 , status 1 +connecting thr aa984580 , thread 12625 , mypolls 0 +myconn 0 connecting thr aa984580 , thread 12625 , mypolls 0 +thr aa984700 , status 1 +connecting thr aa984700 , thread 12626 , mypolls 0 +myconn 0 connecting thr aa984700 , thread 12626 , mypolls 0 +thr aa984880 , status 1 +connecting thr aa984880 , thread 12627 , mypolls 0 +myconn 0 connecting thr aa984880 , thread 12627 , mypolls 0 +thr aa984a00 , status 1 +connecting thr aa984a00 , thread 12628 , mypolls 0 +myconn 0 connecting thr aa984a00 , thread 12628 , mypolls 0 +thr aa984b80 , status 1 +connecting thr aa984b80 , thread 12629 , mypolls 0 +myconn 0 connecting thr aa984b80 , thread 12629 , mypolls 0 +thr aa984d00 , status 1 +connecting thr aa984d00 , thread 12630 , mypolls 0 +myconn 0 connecting thr aa984d00 , thread 12630 , mypolls 0 +thr aa984e80 , status 1 +connecting thr aa984e80 , thread 12631 , mypolls 0 +myconn 0 connecting thr aa984e80 , thread 12631 , mypolls 0 +thr aa7e3000 , status 1 +connecting thr aa7e3000 , thread 12632 , mypolls 0 +myconn 0 connecting thr aa7e3000 , thread 12632 , mypolls 0 +thr aa7e3180 , status 1 +connecting thr aa7e3180 , thread 12633 , mypolls 0 +myconn 0 connecting thr aa7e3180 , thread 12633 , mypolls 0 +thr aa7e3300 , status 1 +connecting thr aa7e3300 , thread 12634 , mypolls 0 +myconn 0 connecting thr aa7e3300 , thread 12634 , mypolls 0 +thr aa7e3480 , status 1 +connecting thr aa7e3480 , thread 12635 , mypolls 0 +myconn 0 connecting thr aa7e3480 , thread 12635 , mypolls 0 +thr aa7e3600 , status 1 +connecting thr aa7e3600 , thread 12636 , mypolls 0 +myconn 0 connecting thr aa7e3600 , thread 12636 , mypolls 0 +thr aa7e3780 , status 1 +connecting thr aa7e3780 , thread 12637 , mypolls 0 +myconn 0 connecting thr aa7e3780 , thread 12637 , mypolls 0 +thr aa7e3900 , status 1 +connecting thr aa7e3900 , thread 12638 , mypolls 0 +myconn 0 connecting thr aa7e3900 , thread 12638 , mypolls 0 +thr aa7e3a80 , status 1 +connecting thr aa7e3a80 , thread 12639 , mypolls 0 +myconn 0 connecting thr aa7e3a80 , thread 12639 , mypolls 0 +thr aa7e3c00 , status 1 +connecting thr aa7e3c00 , thread 12640 , mypolls 0 +myconn 0 connecting thr aa7e3c00 , thread 12640 , mypolls 0 +thr aa7e3d80 , status 1 +connecting thr aa7e3d80 , thread 12641 , mypolls 0 +myconn 0 connecting thr aa7e3d80 , thread 12641 , mypolls 0 +thr aa7e3f00 , status 1 +connecting thr aa7e3f00 , thread 12642 , mypolls 0 +myconn 0 connecting thr aa7e3f00 , thread 12642 , mypolls 0 +thr aa7e4080 , status 1 +connecting thr aa7e4080 , thread 12643 , mypolls 0 +myconn 0 connecting thr aa7e4080 , thread 12643 , mypolls 0 +thr aa7e4200 , status 1 +connecting thr aa7e4200 , thread 12644 , mypolls 0 +myconn 0 connecting thr aa7e4200 , thread 12644 , mypolls 0 +thr aa7e4380 , status 1 +connecting thr aa7e4380 , thread 12645 , mypolls 0 +myconn 0 connecting thr aa7e4380 , thread 12645 , mypolls 0 +thr aa7e4500 , status 1 +connecting thr aa7e4500 , thread 12646 , mypolls 0 +myconn 0 connecting thr aa7e4500 , thread 12646 , mypolls 0 +thr aa7e4680 , status 1 +connecting thr aa7e4680 , thread 12647 , mypolls 0 +myconn 0 connecting thr aa7e4680 , thread 12647 , mypolls 0 +thr aa7e4800 , status 1 +connecting thr aa7e4800 , thread 12648 , mypolls 0 +myconn 0 connecting thr aa7e4800 , thread 12648 , mypolls 0 +thr aa7e4980 , status 1 +connecting thr aa7e4980 , thread 12649 , mypolls 0 +myconn 0 connecting thr aa7e4980 , thread 12649 , mypolls 0 +thr aa7e4b00 , status 1 +connecting thr aa7e4b00 , thread 12650 , mypolls 0 +myconn 0 connecting thr aa7e4b00 , thread 12650 , mypolls 0 +thr aa7e4c80 , status 1 +connecting thr aa7e4c80 , thread 12651 , mypolls 0 +myconn 0 connecting thr aa7e4c80 , thread 12651 , mypolls 0 +thr aa7e4e00 , status 1 +connecting thr aa7e4e00 , thread 12652 , mypolls 0 +myconn 0 connecting thr aa7e4e00 , thread 12652 , mypolls 0 +thr aa7e4f80 , status 1 +connecting thr aa7e4f80 , thread 12653 , mypolls 0 +myconn 0 connecting thr aa7e4f80 , thread 12653 , mypolls 0 +thr aa7e5100 , status 1 +connecting thr aa7e5100 , thread 12654 , mypolls 0 +myconn 0 connecting thr aa7e5100 , thread 12654 , mypolls 0 +thr aa7e5280 , status 1 +connecting thr aa7e5280 , thread 12655 , mypolls 0 +myconn 0 connecting thr aa7e5280 , thread 12655 , mypolls 0 +thr aa7e5400 , status 1 +connecting thr aa7e5400 , thread 12656 , mypolls 0 +myconn 0 connecting thr aa7e5400 , thread 12656 , mypolls 0 +thr aa7e5580 , status 1 +connecting thr aa7e5580 , thread 12657 , mypolls 0 +myconn 0 connecting thr aa7e5580 , thread 12657 , mypolls 0 +thr aa7e5700 , status 1 +connecting thr aa7e5700 , thread 12658 , mypolls 0 +myconn 0 connecting thr aa7e5700 , thread 12658 , mypolls 0 +thr aa7e5880 , status 1 +connecting thr aa7e5880 , thread 12659 , mypolls 0 +myconn 0 connecting thr aa7e5880 , thread 12659 , mypolls 0 +thr aa7e5a00 , status 1 +connecting thr aa7e5a00 , thread 12660 , mypolls 0 +myconn 0 connecting thr aa7e5a00 , thread 12660 , mypolls 0 +thr aa7e5b80 , status 1 +connecting thr aa7e5b80 , thread 12661 , mypolls 0 +myconn 0 connecting thr aa7e5b80 , thread 12661 , mypolls 0 +thr aa7e5d00 , status 1 +connecting thr aa7e5d00 , thread 12662 , mypolls 0 +myconn 0 connecting thr aa7e5d00 , thread 12662 , mypolls 0 +thr aa7e5e80 , status 1 +connecting thr aa7e5e80 , thread 12663 , mypolls 0 +myconn 0 connecting thr aa7e5e80 , thread 12663 , mypolls 0 +thr aa5fd000 , status 1 +connecting thr aa5fd000 , thread 12664 , mypolls 0 +myconn 0 connecting thr aa5fd000 , thread 12664 , mypolls 0 +thr aa5fd180 , status 1 +connecting thr aa5fd180 , thread 12665 , mypolls 0 +myconn 0 connecting thr aa5fd180 , thread 12665 , mypolls 0 +thr aa5fd300 , status 1 +connecting thr aa5fd300 , thread 12666 , mypolls 0 +myconn 0 connecting thr aa5fd300 , thread 12666 , mypolls 0 +thr aa5fd480 , status 1 +connecting thr aa5fd480 , thread 12667 , mypolls 0 +myconn 0 connecting thr aa5fd480 , thread 12667 , mypolls 0 +thr aa5fd600 , status 1 +connecting thr aa5fd600 , thread 12668 , mypolls 0 +myconn 0 connecting thr aa5fd600 , thread 12668 , mypolls 0 +thr aa5fd780 , status 1 +connecting thr aa5fd780 , thread 12669 , mypolls 0 +myconn 0 connecting thr aa5fd780 , thread 12669 , mypolls 0 +thr aa5fd900 , status 1 +connecting thr aa5fd900 , thread 12670 , mypolls 0 +myconn 0 connecting thr aa5fd900 , thread 12670 , mypolls 0 +thr aa5fda80 , status 1 +connecting thr aa5fda80 , thread 12671 , mypolls 0 +myconn 0 connecting thr aa5fda80 , thread 12671 , mypolls 0 +thr aa5fdc00 , status 1 +connecting thr aa5fdc00 , thread 12672 , mypolls 0 +myconn 0 connecting thr aa5fdc00 , thread 12672 , mypolls 0 +thr aa5fdd80 , status 1 +connecting thr aa5fdd80 , thread 12673 , mypolls 0 +myconn 0 connecting thr aa5fdd80 , thread 12673 , mypolls 0 +thr aa5fdf00 , status 1 +connecting thr aa5fdf00 , thread 12674 , mypolls 0 +myconn 0 connecting thr aa5fdf00 , thread 12674 , mypolls 0 +thr aa5fe080 , status 1 +connecting thr aa5fe080 , thread 12675 , mypolls 0 +myconn 0 connecting thr aa5fe080 , thread 12675 , mypolls 0 +thr aa5fe200 , status 1 +connecting thr aa5fe200 , thread 12676 , mypolls 0 +myconn 0 connecting thr aa5fe200 , thread 12676 , mypolls 0 +thr aa5fe380 , status 1 +connecting thr aa5fe380 , thread 12677 , mypolls 0 +myconn 0 connecting thr aa5fe380 , thread 12677 , mypolls 0 +thr aa5fe500 , status 1 +connecting thr aa5fe500 , thread 12678 , mypolls 0 +myconn 0 connecting thr aa5fe500 , thread 12678 , mypolls 0 +thr aa5fe680 , status 1 +connecting thr aa5fe680 , thread 12679 , mypolls 0 +myconn 0 connecting thr aa5fe680 , thread 12679 , mypolls 0 +thr aa5fe800 , status 1 +connecting thr aa5fe800 , thread 12680 , mypolls 0 +myconn 0 connecting thr aa5fe800 , thread 12680 , mypolls 0 +thr aa5fe980 , status 1 +connecting thr aa5fe980 , thread 12681 , mypolls 0 +myconn 0 connecting thr aa5fe980 , thread 12681 , mypolls 0 +thr aa5feb00 , status 1 +connecting thr aa5feb00 , thread 12682 , mypolls 0 +myconn 0 connecting thr aa5feb00 , thread 12682 , mypolls 0 +thr aa5fec80 , status 1 +connecting thr aa5fec80 , thread 12683 , mypolls 0 +myconn 0 connecting thr aa5fec80 , thread 12683 , mypolls 0 +thr aa5fee00 , status 1 +connecting thr aa5fee00 , thread 12684 , mypolls 0 +myconn 0 connecting thr aa5fee00 , thread 12684 , mypolls 0 +thr aa5fef80 , status 1 +connecting thr aa5fef80 , thread 12685 , mypolls 0 +myconn 0 connecting thr aa5fef80 , thread 12685 , mypolls 0 +thr aa5ff100 , status 1 +connecting thr aa5ff100 , thread 12686 , mypolls 0 +myconn 0 connecting thr aa5ff100 , thread 12686 , mypolls 0 +thr aa5ff280 , status 1 +connecting thr aa5ff280 , thread 12687 , mypolls 0 +myconn 0 connecting thr aa5ff280 , thread 12687 , mypolls 0 +thr aa5ff400 , status 1 +connecting thr aa5ff400 , thread 12688 , mypolls 0 +myconn 0 connecting thr aa5ff400 , thread 12688 , mypolls 0 +thr aa5ff580 , status 1 +connecting thr aa5ff580 , thread 12689 , mypolls 0 +myconn 0 connecting thr aa5ff580 , thread 12689 , mypolls 0 +thr aa5ff700 , status 1 +connecting thr aa5ff700 , thread 12690 , mypolls 0 +myconn 0 connecting thr aa5ff700 , thread 12690 , mypolls 0 +thr aa5ff880 , status 1 +connecting thr aa5ff880 , thread 12691 , mypolls 0 +myconn 0 connecting thr aa5ff880 , thread 12691 , mypolls 0 +thr aa5ffa00 , status 1 +connecting thr aa5ffa00 , thread 12692 , mypolls 0 +myconn 0 connecting thr aa5ffa00 , thread 12692 , mypolls 0 +thr aa5ffb80 , status 1 +connecting thr aa5ffb80 , thread 12693 , mypolls 0 +myconn 0 connecting thr aa5ffb80 , thread 12693 , mypolls 0 +thr aa5ffd00 , status 1 +connecting thr aa5ffd00 , thread 12694 , mypolls 0 +myconn 0 connecting thr aa5ffd00 , thread 12694 , mypolls 0 +thr aa5ffe80 , status 1 +connecting thr aa5ffe80 , thread 12695 , mypolls 0 +myconn 0 connecting thr aa5ffe80 , thread 12695 , mypolls 0 +thr aa3fc000 , status 1 +connecting thr aa3fc000 , thread 12696 , mypolls 0 +myconn 0 connecting thr aa3fc000 , thread 12696 , mypolls 0 +thr aa3fc180 , status 1 +connecting thr aa3fc180 , thread 12697 , mypolls 0 +myconn 0 connecting thr aa3fc180 , thread 12697 , mypolls 0 +thr aa3fc300 , status 1 +connecting thr aa3fc300 , thread 12698 , mypolls 0 +myconn 0 connecting thr aa3fc300 , thread 12698 , mypolls 0 +thr aa3fc480 , status 1 +connecting thr aa3fc480 , thread 12699 , mypolls 0 +myconn 0 connecting thr aa3fc480 , thread 12699 , mypolls 0 +thr aa3fc600 , status 1 +connecting thr aa3fc600 , thread 12700 , mypolls 0 +myconn 0 connecting thr aa3fc600 , thread 12700 , mypolls 0 +thr aa3fc780 , status 1 +connecting thr aa3fc780 , thread 12701 , mypolls 0 +myconn 0 connecting thr aa3fc780 , thread 12701 , mypolls 0 +thr aa3fc900 , status 1 +connecting thr aa3fc900 , thread 12702 , mypolls 0 +myconn 0 connecting thr aa3fc900 , thread 12702 , mypolls 0 +thr aa3fca80 , status 1 +connecting thr aa3fca80 , thread 12703 , mypolls 0 +myconn 0 connecting thr aa3fca80 , thread 12703 , mypolls 0 +thr aa3fcc00 , status 1 +connecting thr aa3fcc00 , thread 12704 , mypolls 0 +myconn 0 connecting thr aa3fcc00 , thread 12704 , mypolls 0 +thr aa3fcd80 , status 1 +connecting thr aa3fcd80 , thread 12705 , mypolls 0 +myconn 0 connecting thr aa3fcd80 , thread 12705 , mypolls 0 +thr aa3fcf00 , status 1 +connecting thr aa3fcf00 , thread 12706 , mypolls 0 +myconn 0 connecting thr aa3fcf00 , thread 12706 , mypolls 0 +thr aa3fd080 , status 1 +connecting thr aa3fd080 , thread 12707 , mypolls 0 +myconn 0 connecting thr aa3fd080 , thread 12707 , mypolls 0 +thr aa3fd200 , status 1 +connecting thr aa3fd200 , thread 12708 , mypolls 0 +myconn 0 connecting thr aa3fd200 , thread 12708 , mypolls 0 +thr aa3fd380 , status 1 +connecting thr aa3fd380 , thread 12709 , mypolls 0 +myconn 0 connecting thr aa3fd380 , thread 12709 , mypolls 0 +thr aa3fd500 , status 1 +connecting thr aa3fd500 , thread 12710 , mypolls 0 +myconn 0 connecting thr aa3fd500 , thread 12710 , mypolls 0 +thr aa3fd680 , status 1 +connecting thr aa3fd680 , thread 12711 , mypolls 0 +myconn 0 connecting thr aa3fd680 , thread 12711 , mypolls 0 +thr aa3fd800 , status 1 +connecting thr aa3fd800 , thread 12712 , mypolls 0 +myconn 0 connecting thr aa3fd800 , thread 12712 , mypolls 0 +thr aa3fd980 , status 1 +connecting thr aa3fd980 , thread 12713 , mypolls 0 +myconn 0 connecting thr aa3fd980 , thread 12713 , mypolls 0 +thr aa3fdb00 , status 1 +connecting thr aa3fdb00 , thread 12714 , mypolls 0 +myconn 0 connecting thr aa3fdb00 , thread 12714 , mypolls 0 +thr aa3fdc80 , status 1 +connecting thr aa3fdc80 , thread 12715 , mypolls 0 +myconn 0 connecting thr aa3fdc80 , thread 12715 , mypolls 0 +thr aa3fde00 , status 1 +connecting thr aa3fde00 , thread 12716 , mypolls 0 +myconn 0 connecting thr aa3fde00 , thread 12716 , mypolls 0 +thr aa3fdf80 , status 1 +connecting thr aa3fdf80 , thread 12717 , mypolls 0 +myconn 0 connecting thr aa3fdf80 , thread 12717 , mypolls 0 +thr aa3fe100 , status 1 +connecting thr aa3fe100 , thread 12718 , mypolls 0 +myconn 0 connecting thr aa3fe100 , thread 12718 , mypolls 0 +thr aa3fe280 , status 1 +connecting thr aa3fe280 , thread 12719 , mypolls 0 +myconn 0 connecting thr aa3fe280 , thread 12719 , mypolls 0 +thr aa3fe400 , status 1 +connecting thr aa3fe400 , thread 12720 , mypolls 0 +myconn 0 connecting thr aa3fe400 , thread 12720 , mypolls 0 +thr aa3fe580 , status 1 +connecting thr aa3fe580 , thread 12721 , mypolls 0 +myconn 0 connecting thr aa3fe580 , thread 12721 , mypolls 0 +thr aa3fe700 , status 1 +connecting thr aa3fe700 , thread 12722 , mypolls 0 +myconn 0 connecting thr aa3fe700 , thread 12722 , mypolls 0 +thr aa3fe880 , status 1 +connecting thr aa3fe880 , thread 12723 , mypolls 0 +myconn 0 connecting thr aa3fe880 , thread 12723 , mypolls 0 +thr aa3fea00 , status 1 +connecting thr aa3fea00 , thread 12724 , mypolls 0 +myconn 0 connecting thr aa3fea00 , thread 12724 , mypolls 0 +thr aa3feb80 , status 1 +connecting thr aa3feb80 , thread 12725 , mypolls 0 +myconn 0 connecting thr aa3feb80 , thread 12725 , mypolls 0 +thr aa3fed00 , status 1 +connecting thr aa3fed00 , thread 12726 , mypolls 0 +myconn 0 connecting thr aa3fed00 , thread 12726 , mypolls 0 +thr aa3fee80 , status 1 +connecting thr aa3fee80 , thread 12727 , mypolls 0 +myconn 0 connecting thr aa3fee80 , thread 12727 , mypolls 0 +thr a9f16000 , status 1 +connecting thr a9f16000 , thread 12728 , mypolls 0 +myconn 0 connecting thr a9f16000 , thread 12728 , mypolls 0 +thr a9f16180 , status 1 +connecting thr a9f16180 , thread 12729 , mypolls 0 +myconn 0 connecting thr a9f16180 , thread 12729 , mypolls 0 +thr a9f16300 , status 1 +connecting thr a9f16300 , thread 12730 , mypolls 0 +myconn 0 connecting thr a9f16300 , thread 12730 , mypolls 0 +thr a9f16480 , status 1 +connecting thr a9f16480 , thread 12731 , mypolls 0 +myconn 0 connecting thr a9f16480 , thread 12731 , mypolls 0 +thr a9f16600 , status 1 +connecting thr a9f16600 , thread 12732 , mypolls 0 +myconn 0 connecting thr a9f16600 , thread 12732 , mypolls 0 +thr a9f16780 , status 1 +connecting thr a9f16780 , thread 12733 , mypolls 0 +myconn 0 connecting thr a9f16780 , thread 12733 , mypolls 0 +thr a9f16900 , status 1 +connecting thr a9f16900 , thread 12734 , mypolls 0 +myconn 0 connecting thr a9f16900 , thread 12734 , mypolls 0 +thr a9f16a80 , status 1 +connecting thr a9f16a80 , thread 12735 , mypolls 0 +myconn 0 connecting thr a9f16a80 , thread 12735 , mypolls 0 +thr a9f16c00 , status 1 +connecting thr a9f16c00 , thread 12736 , mypolls 0 +myconn 0 connecting thr a9f16c00 , thread 12736 , mypolls 0 +thr a9f16d80 , status 1 +connecting thr a9f16d80 , thread 12737 , mypolls 0 +myconn 0 connecting thr a9f16d80 , thread 12737 , mypolls 0 +thr a9f16f00 , status 1 +connecting thr a9f16f00 , thread 12738 , mypolls 0 +myconn 0 connecting thr a9f16f00 , thread 12738 , mypolls 0 +thr a9f17080 , status 1 +connecting thr a9f17080 , thread 12739 , mypolls 0 +myconn 0 connecting thr a9f17080 , thread 12739 , mypolls 0 +thr a9f17200 , status 1 +connecting thr a9f17200 , thread 12740 , mypolls 0 +myconn 0 connecting thr a9f17200 , thread 12740 , mypolls 0 +thr a9f17380 , status 1 +connecting thr a9f17380 , thread 12741 , mypolls 0 +myconn 0 connecting thr a9f17380 , thread 12741 , mypolls 0 +thr a9f17500 , status 1 +connecting thr a9f17500 , thread 12742 , mypolls 0 +myconn 0 connecting thr a9f17500 , thread 12742 , mypolls 0 +thr a9f17680 , status 1 +connecting thr a9f17680 , thread 12743 , mypolls 0 +myconn 0 connecting thr a9f17680 , thread 12743 , mypolls 0 +thr a9f17800 , status 1 +connecting thr a9f17800 , thread 12744 , mypolls 0 +myconn 0 connecting thr a9f17800 , thread 12744 , mypolls 0 +thr a9f17980 , status 1 +connecting thr a9f17980 , thread 12745 , mypolls 0 +myconn 0 connecting thr a9f17980 , thread 12745 , mypolls 0 +thr a9f17b00 , status 1 +connecting thr a9f17b00 , thread 12746 , mypolls 0 +myconn 0 connecting thr a9f17b00 , thread 12746 , mypolls 0 +thr a9f17c80 , status 1 +connecting thr a9f17c80 , thread 12747 , mypolls 0 +myconn 0 connecting thr a9f17c80 , thread 12747 , mypolls 0 +thr a9f17e00 , status 1 +connecting thr a9f17e00 , thread 12748 , mypolls 0 +myconn 0 connecting thr a9f17e00 , thread 12748 , mypolls 0 +thr a9f17f80 , status 1 +connecting thr a9f17f80 , thread 12749 , mypolls 0 +myconn 0 connecting thr a9f17f80 , thread 12749 , mypolls 0 +thr a9f18100 , status 1 +connecting thr a9f18100 , thread 12750 , mypolls 0 +myconn 0 connecting thr a9f18100 , thread 12750 , mypolls 0 +thr a9f18280 , status 1 +connecting thr a9f18280 , thread 12751 , mypolls 0 +myconn 0 connecting thr a9f18280 , thread 12751 , mypolls 0 +thr a9f18400 , status 1 +connecting thr a9f18400 , thread 12752 , mypolls 0 +myconn 0 connecting thr a9f18400 , thread 12752 , mypolls 0 +thr a9f18580 , status 1 +connecting thr a9f18580 , thread 12753 , mypolls 0 +myconn 0 connecting thr a9f18580 , thread 12753 , mypolls 0 +thr a9f18700 , status 1 +connecting thr a9f18700 , thread 12754 , mypolls 0 +myconn 0 connecting thr a9f18700 , thread 12754 , mypolls 0 +thr a9f18880 , status 1 +connecting thr a9f18880 , thread 12755 , mypolls 0 +myconn 0 connecting thr a9f18880 , thread 12755 , mypolls 0 +thr a9f18a00 , status 1 +connecting thr a9f18a00 , thread 12756 , mypolls 0 +myconn 0 connecting thr a9f18a00 , thread 12756 , mypolls 0 +thr a9f18b80 , status 1 +connecting thr a9f18b80 , thread 12757 , mypolls 0 +myconn 0 connecting thr a9f18b80 , thread 12757 , mypolls 0 +thr a9f18d00 , status 1 +connecting thr a9f18d00 , thread 12758 , mypolls 0 +myconn 0 connecting thr a9f18d00 , thread 12758 , mypolls 0 +thr a9f18e80 , status 1 +connecting thr a9f18e80 , thread 12759 , mypolls 0 +myconn 0 connecting thr a9f18e80 , thread 12759 , mypolls 0 +thr a9d76000 , status 1 +connecting thr a9d76000 , thread 12760 , mypolls 0 +myconn 0 connecting thr a9d76000 , thread 12760 , mypolls 0 +thr a9d76180 , status 1 +connecting thr a9d76180 , thread 12761 , mypolls 0 +myconn 0 connecting thr a9d76180 , thread 12761 , mypolls 0 +thr a9d76300 , status 1 +connecting thr a9d76300 , thread 12762 , mypolls 0 +myconn 0 connecting thr a9d76300 , thread 12762 , mypolls 0 +thr a9d76480 , status 1 +connecting thr a9d76480 , thread 12763 , mypolls 0 +myconn 0 connecting thr a9d76480 , thread 12763 , mypolls 0 +thr a9d76600 , status 1 +connecting thr a9d76600 , thread 12764 , mypolls 0 +myconn 0 connecting thr a9d76600 , thread 12764 , mypolls 0 +thr a9d76780 , status 1 +connecting thr a9d76780 , thread 12765 , mypolls 0 +myconn 0 connecting thr a9d76780 , thread 12765 , mypolls 0 +thr a9d76900 , status 1 +connecting thr a9d76900 , thread 12766 , mypolls 0 +myconn 0 connecting thr a9d76900 , thread 12766 , mypolls 0 +thr a9d76a80 , status 1 +connecting thr a9d76a80 , thread 12767 , mypolls 0 +myconn 0 connecting thr a9d76a80 , thread 12767 , mypolls 0 +thr a9d76c00 , status 1 +connecting thr a9d76c00 , thread 12768 , mypolls 0 +myconn 0 connecting thr a9d76c00 , thread 12768 , mypolls 0 +thr a9d76d80 , status 1 +connecting thr a9d76d80 , thread 12769 , mypolls 0 +myconn 0 connecting thr a9d76d80 , thread 12769 , mypolls 0 +thr a9d76f00 , status 1 +connecting thr a9d76f00 , thread 12770 , mypolls 0 +myconn 0 connecting thr a9d76f00 , thread 12770 , mypolls 0 +thr a9d77080 , status 1 +connecting thr a9d77080 , thread 12771 , mypolls 0 +myconn 0 connecting thr a9d77080 , thread 12771 , mypolls 0 +thr a9d77200 , status 1 +connecting thr a9d77200 , thread 12772 , mypolls 0 +myconn 0 connecting thr a9d77200 , thread 12772 , mypolls 0 +thr a9d77380 , status 1 +connecting thr a9d77380 , thread 12773 , mypolls 0 +myconn 0 connecting thr a9d77380 , thread 12773 , mypolls 0 +thr a9d77500 , status 1 +connecting thr a9d77500 , thread 12774 , mypolls 0 +myconn 0 connecting thr a9d77500 , thread 12774 , mypolls 0 +thr a9d77680 , status 1 +connecting thr a9d77680 , thread 12775 , mypolls 0 +myconn 0 connecting thr a9d77680 , thread 12775 , mypolls 0 +thr a9d77800 , status 1 +connecting thr a9d77800 , thread 12776 , mypolls 0 +myconn 0 connecting thr a9d77800 , thread 12776 , mypolls 0 +thr a9d77980 , status 1 +connecting thr a9d77980 , thread 12777 , mypolls 0 +myconn 0 connecting thr a9d77980 , thread 12777 , mypolls 0 +thr a9d77b00 , status 1 +connecting thr a9d77b00 , thread 12778 , mypolls 0 +myconn 0 connecting thr a9d77b00 , thread 12778 , mypolls 0 +thr a9d77c80 , status 1 +connecting thr a9d77c80 , thread 12779 , mypolls 0 +myconn 0 connecting thr a9d77c80 , thread 12779 , mypolls 0 +thr a9d77e00 , status 1 +connecting thr a9d77e00 , thread 12780 , mypolls 0 +myconn 0 connecting thr a9d77e00 , thread 12780 , mypolls 0 +thr a9d77f80 , status 1 +connecting thr a9d77f80 , thread 12781 , mypolls 0 +myconn 0 connecting thr a9d77f80 , thread 12781 , mypolls 0 +thr a9d78100 , status 1 +connecting thr a9d78100 , thread 12782 , mypolls 0 +myconn 0 connecting thr a9d78100 , thread 12782 , mypolls 0 +thr a9d78280 , status 1 +connecting thr a9d78280 , thread 12783 , mypolls 0 +myconn 0 connecting thr a9d78280 , thread 12783 , mypolls 0 +thr a9d78400 , status 1 +connecting thr a9d78400 , thread 12784 , mypolls 0 +myconn 0 connecting thr a9d78400 , thread 12784 , mypolls 0 +thr a9d78580 , status 1 +connecting thr a9d78580 , thread 12785 , mypolls 0 +myconn 0 connecting thr a9d78580 , thread 12785 , mypolls 0 +thr a9d78700 , status 1 +connecting thr a9d78700 , thread 12786 , mypolls 0 +myconn 0 connecting thr a9d78700 , thread 12786 , mypolls 0 +thr a9d78880 , status 1 +connecting thr a9d78880 , thread 12787 , mypolls 0 +myconn 0 connecting thr a9d78880 , thread 12787 , mypolls 0 +thr a9d78a00 , status 1 +connecting thr a9d78a00 , thread 12788 , mypolls 0 +myconn 0 connecting thr a9d78a00 , thread 12788 , mypolls 0 +thr a9d78b80 , status 1 +connecting thr a9d78b80 , thread 12789 , mypolls 0 +myconn 0 connecting thr a9d78b80 , thread 12789 , mypolls 0 +thr a9d78d00 , status 1 +connecting thr a9d78d00 , thread 12790 , mypolls 0 +myconn 0 connecting thr a9d78d00 , thread 12790 , mypolls 0 +thr a9d78e80 , status 1 +connecting thr a9d78e80 , thread 12791 , mypolls 0 +myconn 0 connecting thr a9d78e80 , thread 12791 , mypolls 0 +thr a9bdf000 , status 1 +connecting thr a9bdf000 , thread 12792 , mypolls 0 +myconn 0 connecting thr a9bdf000 , thread 12792 , mypolls 0 +thr a9bdf180 , status 1 +connecting thr a9bdf180 , thread 12793 , mypolls 0 +myconn 0 connecting thr a9bdf180 , thread 12793 , mypolls 0 +thr a9bdf300 , status 1 +connecting thr a9bdf300 , thread 12794 , mypolls 0 +myconn 0 connecting thr a9bdf300 , thread 12794 , mypolls 0 +thr a9bdf480 , status 1 +connecting thr a9bdf480 , thread 12795 , mypolls 0 +myconn 0 connecting thr a9bdf480 , thread 12795 , mypolls 0 +thr a9bdf600 , status 1 +connecting thr a9bdf600 , thread 12796 , mypolls 0 +myconn 0 connecting thr a9bdf600 , thread 12796 , mypolls 0 +thr a9bdf780 , status 1 +connecting thr a9bdf780 , thread 12797 , mypolls 0 +myconn 0 connecting thr a9bdf780 , thread 12797 , mypolls 0 +thr a9bdf900 , status 1 +connecting thr a9bdf900 , thread 12798 , mypolls 0 +myconn 0 connecting thr a9bdf900 , thread 12798 , mypolls 0 +thr a9bdfa80 , status 1 +connecting thr a9bdfa80 , thread 12799 , mypolls 0 +myconn 0 connecting thr a9bdfa80 , thread 12799 , mypolls 0 +thr a9bdfc00 , status 1 +connecting thr a9bdfc00 , thread 12800 , mypolls 0 +myconn 0 connecting thr a9bdfc00 , thread 12800 , mypolls 0 +thr a9bdfd80 , status 1 +connecting thr a9bdfd80 , thread 12801 , mypolls 0 +myconn 0 connecting thr a9bdfd80 , thread 12801 , mypolls 0 +thr a9bdff00 , status 1 +connecting thr a9bdff00 , thread 12802 , mypolls 0 +myconn 0 connecting thr a9bdff00 , thread 12802 , mypolls 0 +thr a9be0080 , status 1 +connecting thr a9be0080 , thread 12803 , mypolls 0 +myconn 0 connecting thr a9be0080 , thread 12803 , mypolls 0 +thr a9be0200 , status 1 +connecting thr a9be0200 , thread 12804 , mypolls 0 +myconn 0 connecting thr a9be0200 , thread 12804 , mypolls 0 +thr a9be0380 , status 1 +connecting thr a9be0380 , thread 12805 , mypolls 0 +myconn 0 connecting thr a9be0380 , thread 12805 , mypolls 0 +thr a9be0500 , status 1 +connecting thr a9be0500 , thread 12806 , mypolls 0 +myconn 0 connecting thr a9be0500 , thread 12806 , mypolls 0 +thr a9be0680 , status 1 +connecting thr a9be0680 , thread 12807 , mypolls 0 +myconn 0 connecting thr a9be0680 , thread 12807 , mypolls 0 +thr a9be0800 , status 1 +connecting thr a9be0800 , thread 12808 , mypolls 0 +myconn 0 connecting thr a9be0800 , thread 12808 , mypolls 0 +thr a9be0980 , status 1 +connecting thr a9be0980 , thread 12809 , mypolls 0 +myconn 0 connecting thr a9be0980 , thread 12809 , mypolls 0 +thr a9be0b00 , status 1 +connecting thr a9be0b00 , thread 12810 , mypolls 0 +myconn 0 connecting thr a9be0b00 , thread 12810 , mypolls 0 +thr a9be0c80 , status 1 +connecting thr a9be0c80 , thread 12811 , mypolls 0 +myconn 0 connecting thr a9be0c80 , thread 12811 , mypolls 0 +thr a9be0e00 , status 1 +connecting thr a9be0e00 , thread 12812 , mypolls 0 +myconn 0 connecting thr a9be0e00 , thread 12812 , mypolls 0 +thr a9be0f80 , status 1 +connecting thr a9be0f80 , thread 12813 , mypolls 0 +myconn 0 connecting thr a9be0f80 , thread 12813 , mypolls 0 +thr a9be1100 , status 1 +connecting thr a9be1100 , thread 12814 , mypolls 0 +myconn 0 connecting thr a9be1100 , thread 12814 , mypolls 0 +thr a9be1280 , status 1 +connecting thr a9be1280 , thread 12815 , mypolls 0 +myconn 0 connecting thr a9be1280 , thread 12815 , mypolls 0 +thr a9be1400 , status 1 +connecting thr a9be1400 , thread 12816 , mypolls 0 +myconn 0 connecting thr a9be1400 , thread 12816 , mypolls 0 +thr a9be1580 , status 1 +connecting thr a9be1580 , thread 12817 , mypolls 0 +myconn 0 connecting thr a9be1580 , thread 12817 , mypolls 0 +thr a9be1700 , status 1 +connecting thr a9be1700 , thread 12818 , mypolls 0 +myconn 0 connecting thr a9be1700 , thread 12818 , mypolls 0 +thr a9be1880 , status 1 +connecting thr a9be1880 , thread 12819 , mypolls 0 +myconn 0 connecting thr a9be1880 , thread 12819 , mypolls 0 +thr a9be1a00 , status 1 +connecting thr a9be1a00 , thread 12820 , mypolls 0 +myconn 0 connecting thr a9be1a00 , thread 12820 , mypolls 0 +thr a9be1b80 , status 1 +connecting thr a9be1b80 , thread 12821 , mypolls 0 +myconn 0 connecting thr a9be1b80 , thread 12821 , mypolls 0 +thr a9be1d00 , status 1 +connecting thr a9be1d00 , thread 12822 , mypolls 0 +myconn 0 connecting thr a9be1d00 , thread 12822 , mypolls 0 +thr a9be1e80 , status 1 +connecting thr a9be1e80 , thread 12823 , mypolls 0 +myconn 0 connecting thr a9be1e80 , thread 12823 , mypolls 0 +thr a99f9000 , status 1 +connecting thr a99f9000 , thread 12824 , mypolls 0 +myconn 0 connecting thr a99f9000 , thread 12824 , mypolls 0 +thr a99f9180 , status 1 +connecting thr a99f9180 , thread 12825 , mypolls 0 +myconn 0 connecting thr a99f9180 , thread 12825 , mypolls 0 +thr a99f9300 , status 1 +connecting thr a99f9300 , thread 12826 , mypolls 0 +myconn 0 connecting thr a99f9300 , thread 12826 , mypolls 0 +thr a99f9480 , status 1 +connecting thr a99f9480 , thread 12827 , mypolls 0 +myconn 0 connecting thr a99f9480 , thread 12827 , mypolls 0 +thr a99f9600 , status 1 +connecting thr a99f9600 , thread 12828 , mypolls 0 +myconn 0 connecting thr a99f9600 , thread 12828 , mypolls 0 +thr a99f9780 , status 1 +connecting thr a99f9780 , thread 12829 , mypolls 0 +myconn 0 connecting thr a99f9780 , thread 12829 , mypolls 0 +thr a99f9900 , status 1 +connecting thr a99f9900 , thread 12830 , mypolls 0 +myconn 0 connecting thr a99f9900 , thread 12830 , mypolls 0 +thr a99f9a80 , status 1 +connecting thr a99f9a80 , thread 12831 , mypolls 0 +myconn 0 connecting thr a99f9a80 , thread 12831 , mypolls 0 +thr a99f9c00 , status 1 +connecting thr a99f9c00 , thread 12832 , mypolls 0 +myconn 0 connecting thr a99f9c00 , thread 12832 , mypolls 0 +thr a99f9d80 , status 1 +connecting thr a99f9d80 , thread 12833 , mypolls 0 +myconn 0 connecting thr a99f9d80 , thread 12833 , mypolls 0 +thr a99f9f00 , status 1 +connecting thr a99f9f00 , thread 12834 , mypolls 0 +myconn 0 connecting thr a99f9f00 , thread 12834 , mypolls 0 +thr a99fa080 , status 1 +connecting thr a99fa080 , thread 12835 , mypolls 0 +myconn 0 connecting thr a99fa080 , thread 12835 , mypolls 0 +thr a99fa200 , status 1 +connecting thr a99fa200 , thread 12836 , mypolls 0 +myconn 0 connecting thr a99fa200 , thread 12836 , mypolls 0 +thr a99fa380 , status 1 +connecting thr a99fa380 , thread 12837 , mypolls 0 +myconn 0 connecting thr a99fa380 , thread 12837 , mypolls 0 +thr a99fa500 , status 1 +connecting thr a99fa500 , thread 12838 , mypolls 0 +myconn 0 connecting thr a99fa500 , thread 12838 , mypolls 0 +thr a99fa680 , status 1 +connecting thr a99fa680 , thread 12839 , mypolls 0 +myconn 0 connecting thr a99fa680 , thread 12839 , mypolls 0 +thr a99fa800 , status 1 +connecting thr a99fa800 , thread 12840 , mypolls 0 +myconn 0 connecting thr a99fa800 , thread 12840 , mypolls 0 +thr a99fa980 , status 1 +connecting thr a99fa980 , thread 12841 , mypolls 0 +myconn 0 connecting thr a99fa980 , thread 12841 , mypolls 0 +thr a99fab00 , status 1 +connecting thr a99fab00 , thread 12842 , mypolls 0 +myconn 0 connecting thr a99fab00 , thread 12842 , mypolls 0 +thr a99fac80 , status 1 +connecting thr a99fac80 , thread 12843 , mypolls 0 +myconn 0 connecting thr a99fac80 , thread 12843 , mypolls 0 +thr a99fae00 , status 1 +connecting thr a99fae00 , thread 12844 , mypolls 0 +myconn 0 connecting thr a99fae00 , thread 12844 , mypolls 0 +thr a99faf80 , status 1 +connecting thr a99faf80 , thread 12845 , mypolls 0 +myconn 0 connecting thr a99faf80 , thread 12845 , mypolls 0 +thr a99fb100 , status 1 +connecting thr a99fb100 , thread 12846 , mypolls 0 +myconn 0 connecting thr a99fb100 , thread 12846 , mypolls 0 +thr a99fb280 , status 1 +connecting thr a99fb280 , thread 12847 , mypolls 0 +myconn 0 connecting thr a99fb280 , thread 12847 , mypolls 0 +thr a99fb400 , status 1 +connecting thr a99fb400 , thread 12848 , mypolls 0 +myconn 0 connecting thr a99fb400 , thread 12848 , mypolls 0 +thr a99fb580 , status 1 +connecting thr a99fb580 , thread 12849 , mypolls 0 +myconn 0 connecting thr a99fb580 , thread 12849 , mypolls 0 +thr a99fb700 , status 1 +connecting thr a99fb700 , thread 12850 , mypolls 0 +myconn 0 connecting thr a99fb700 , thread 12850 , mypolls 0 +thr a99fb880 , status 1 +connecting thr a99fb880 , thread 12851 , mypolls 0 +myconn 0 connecting thr a99fb880 , thread 12851 , mypolls 0 +thr a99fba00 , status 1 +connecting thr a99fba00 , thread 12852 , mypolls 0 +myconn 0 connecting thr a99fba00 , thread 12852 , mypolls 0 +thr a99fbb80 , status 1 +connecting thr a99fbb80 , thread 12853 , mypolls 0 +myconn 0 connecting thr a99fbb80 , thread 12853 , mypolls 0 +thr a99fbd00 , status 1 +connecting thr a99fbd00 , thread 12854 , mypolls 0 +myconn 0 connecting thr a99fbd00 , thread 12854 , mypolls 0 +thr a99fbe80 , status 1 +connecting thr a99fbe80 , thread 12855 , mypolls 0 +myconn 0 connecting thr a99fbe80 , thread 12855 , mypolls 0 +thr a94b1000 , status 1 +connecting thr a94b1000 , thread 12856 , mypolls 0 +myconn 0 connecting thr a94b1000 , thread 12856 , mypolls 0 +thr a94b1180 , status 1 +connecting thr a94b1180 , thread 12857 , mypolls 0 +myconn 0 connecting thr a94b1180 , thread 12857 , mypolls 0 +thr a94b1300 , status 1 +connecting thr a94b1300 , thread 12858 , mypolls 0 +myconn 0 connecting thr a94b1300 , thread 12858 , mypolls 0 +thr a94b1480 , status 1 +connecting thr a94b1480 , thread 12859 , mypolls 0 +myconn 0 connecting thr a94b1480 , thread 12859 , mypolls 0 +thr a94b1600 , status 1 +connecting thr a94b1600 , thread 12860 , mypolls 0 +myconn 0 connecting thr a94b1600 , thread 12860 , mypolls 0 +thr a94b1780 , status 1 +connecting thr a94b1780 , thread 12861 , mypolls 0 +myconn 0 connecting thr a94b1780 , thread 12861 , mypolls 0 +thr a94b1900 , status 1 +connecting thr a94b1900 , thread 12862 , mypolls 0 +myconn 0 connecting thr a94b1900 , thread 12862 , mypolls 0 +thr a94b1a80 , status 1 +connecting thr a94b1a80 , thread 12863 , mypolls 0 +myconn 0 connecting thr a94b1a80 , thread 12863 , mypolls 0 +thr a94b1c00 , status 1 +connecting thr a94b1c00 , thread 12864 , mypolls 0 +myconn 0 connecting thr a94b1c00 , thread 12864 , mypolls 0 +thr a94b1d80 , status 1 +connecting thr a94b1d80 , thread 12865 , mypolls 0 +myconn 0 connecting thr a94b1d80 , thread 12865 , mypolls 0 +thr a94b1f00 , status 1 +connecting thr a94b1f00 , thread 12866 , mypolls 0 +myconn 0 connecting thr a94b1f00 , thread 12866 , mypolls 0 +thr a94b2080 , status 1 +connecting thr a94b2080 , thread 12867 , mypolls 0 +myconn 0 connecting thr a94b2080 , thread 12867 , mypolls 0 +thr a94b2200 , status 1 +connecting thr a94b2200 , thread 12868 , mypolls 0 +myconn 0 connecting thr a94b2200 , thread 12868 , mypolls 0 +thr a94b2380 , status 1 +connecting thr a94b2380 , thread 12869 , mypolls 0 +myconn 0 connecting thr a94b2380 , thread 12869 , mypolls 0 +thr a94b2500 , status 1 +connecting thr a94b2500 , thread 12870 , mypolls 0 +myconn 0 connecting thr a94b2500 , thread 12870 , mypolls 0 +thr a94b2680 , status 1 +connecting thr a94b2680 , thread 12871 , mypolls 0 +myconn 0 connecting thr a94b2680 , thread 12871 , mypolls 0 +thr a94b2800 , status 1 +connecting thr a94b2800 , thread 12872 , mypolls 0 +myconn 0 connecting thr a94b2800 , thread 12872 , mypolls 0 +thr a94b2980 , status 1 +connecting thr a94b2980 , thread 12873 , mypolls 0 +myconn 0 connecting thr a94b2980 , thread 12873 , mypolls 0 +thr a94b2b00 , status 1 +connecting thr a94b2b00 , thread 12874 , mypolls 0 +myconn 0 connecting thr a94b2b00 , thread 12874 , mypolls 0 +thr a94b2c80 , status 1 +connecting thr a94b2c80 , thread 12875 , mypolls 0 +myconn 0 connecting thr a94b2c80 , thread 12875 , mypolls 0 +thr a94b2e00 , status 1 +connecting thr a94b2e00 , thread 12876 , mypolls 0 +myconn 0 connecting thr a94b2e00 , thread 12876 , mypolls 0 +thr a94b2f80 , status 1 +connecting thr a94b2f80 , thread 12877 , mypolls 0 +myconn 0 connecting thr a94b2f80 , thread 12877 , mypolls 0 +thr a94b3100 , status 1 +connecting thr a94b3100 , thread 12878 , mypolls 0 +myconn 0 connecting thr a94b3100 , thread 12878 , mypolls 0 +thr a94b3280 , status 1 +connecting thr a94b3280 , thread 12879 , mypolls 0 +myconn 0 connecting thr a94b3280 , thread 12879 , mypolls 0 +thr a94b3400 , status 1 +connecting thr a94b3400 , thread 12880 , mypolls 0 +myconn 0 connecting thr a94b3400 , thread 12880 , mypolls 0 +thr a94b3580 , status 1 +connecting thr a94b3580 , thread 12881 , mypolls 0 +myconn 0 connecting thr a94b3580 , thread 12881 , mypolls 0 +thr a94b3700 , status 1 +connecting thr a94b3700 , thread 12882 , mypolls 0 +myconn 0 connecting thr a94b3700 , thread 12882 , mypolls 0 +thr a94b3880 , status 1 +connecting thr a94b3880 , thread 12883 , mypolls 0 +myconn 0 connecting thr a94b3880 , thread 12883 , mypolls 0 +thr a94b3a00 , status 1 +connecting thr a94b3a00 , thread 12884 , mypolls 0 +myconn 0 connecting thr a94b3a00 , thread 12884 , mypolls 0 +thr a94b3b80 , status 1 +connecting thr a94b3b80 , thread 12885 , mypolls 0 +myconn 0 connecting thr a94b3b80 , thread 12885 , mypolls 0 +thr a94b3d00 , status 1 +connecting thr a94b3d00 , thread 12886 , mypolls 0 +myconn 0 connecting thr a94b3d00 , thread 12886 , mypolls 0 +thr a94b3e80 , status 1 +connecting thr a94b3e80 , thread 12887 , mypolls 0 +myconn 0 connecting thr a94b3e80 , thread 12887 , mypolls 0 +thr a9313000 , status 1 +connecting thr a9313000 , thread 12888 , mypolls 0 +myconn 0 connecting thr a9313000 , thread 12888 , mypolls 0 +thr a9313180 , status 1 +connecting thr a9313180 , thread 12889 , mypolls 0 +myconn 0 connecting thr a9313180 , thread 12889 , mypolls 0 +thr a9313300 , status 1 +connecting thr a9313300 , thread 12890 , mypolls 0 +myconn 0 connecting thr a9313300 , thread 12890 , mypolls 0 +thr a9313480 , status 1 +connecting thr a9313480 , thread 12891 , mypolls 0 +myconn 0 connecting thr a9313480 , thread 12891 , mypolls 0 +thr a9313600 , status 1 +connecting thr a9313600 , thread 12892 , mypolls 0 +myconn 0 connecting thr a9313600 , thread 12892 , mypolls 0 +thr a9313780 , status 1 +connecting thr a9313780 , thread 12893 , mypolls 0 +myconn 0 connecting thr a9313780 , thread 12893 , mypolls 0 +thr a9313900 , status 1 +connecting thr a9313900 , thread 12894 , mypolls 0 +myconn 0 connecting thr a9313900 , thread 12894 , mypolls 0 +thr a9313a80 , status 1 +connecting thr a9313a80 , thread 12895 , mypolls 0 +myconn 0 connecting thr a9313a80 , thread 12895 , mypolls 0 +thr a9313c00 , status 1 +connecting thr a9313c00 , thread 12896 , mypolls 0 +myconn 0 connecting thr a9313c00 , thread 12896 , mypolls 0 +thr a9313d80 , status 1 +connecting thr a9313d80 , thread 12897 , mypolls 0 +myconn 0 connecting thr a9313d80 , thread 12897 , mypolls 0 +thr a9313f00 , status 1 +connecting thr a9313f00 , thread 12898 , mypolls 0 +myconn 0 connecting thr a9313f00 , thread 12898 , mypolls 0 From ae915010758a5508a1dfffc8ae24c9c41a8c36e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Mon, 19 Sep 2016 23:19:35 +0000 Subject: [PATCH 06/20] Removed fprintf --- include/MySQL_Session.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/MySQL_Session.h b/include/MySQL_Session.h index 5a7f85d1a..5a0df3db9 100644 --- a/include/MySQL_Session.h +++ b/include/MySQL_Session.h @@ -136,9 +136,6 @@ class MySQL_Session } } } - if (mirror) { - fprintf(stderr,"thr %x , status %d\n", this ,e ); - } status=e; } //MySQL_Protocol myprot_client; From 54c92327caeab20d6d80b77fa81b7a9c832f556b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Mon, 19 Sep 2016 23:21:53 +0000 Subject: [PATCH 07/20] Merge branch 'v1.2.3' --- include/proxysql.h | 2 +- lib/MySQL_Session.cpp | 30 ++++++++++++++++++++++++++++++ lib/MySQL_Thread.cpp | 9 +++++++++ 3 files changed, 40 insertions(+), 1 deletion(-) diff --git a/include/proxysql.h b/include/proxysql.h index 3397ef58d..268337bc1 100644 --- a/include/proxysql.h +++ b/include/proxysql.h @@ -99,7 +99,7 @@ #else #define DEB "" #endif /* DEBUG */ -#define PROXYSQL_VERSION "1.2.3-RC" DEB +#define PROXYSQL_VERSION "1.2.3" DEB #define PROXYSQL_CODENAME "Truls" #ifndef PROXYSQL_FUNC_DEFS diff --git a/lib/MySQL_Session.cpp b/lib/MySQL_Session.cpp index 7d18f534a..f873f7962 100644 --- a/lib/MySQL_Session.cpp +++ b/lib/MySQL_Session.cpp @@ -1572,8 +1572,16 @@ handler_again: case CONNECTING_SERVER: //fprintf(stderr,"CONNECTING_SERVER\n"); + if (mirror) { + mybe->server_myds->connect_retries_on_failure=0; // no try for mirror + mybe->server_myds->wait_until=thread->curtime;; + pause_until=0; + } if (mybe->server_myds->max_connect_time) { if (thread->curtime >= mybe->server_myds->max_connect_time) { + if (mirror) { + PROXY_TRACE(); + } char buf[256]; sprintf(buf,"Max connect timeout reached while reaching hostgroup %d after %llums", current_hostgroup, (thread->curtime - CurrentQuery.start_time)/1000 ); client_myds->myprot.generate_pkt_ERR(true,NULL,NULL,1,1045,(char *)"#28000",buf); @@ -1589,6 +1597,10 @@ handler_again: if (mybe->server_myds->myconn) { //mybe->server_myds->destroy_MySQL_Connection(); mybe->server_myds->destroy_MySQL_Connection_From_Pool(false); + if (mirror) { + PROXY_TRACE(); + NEXT_IMMEDIATE(WAITING_CLIENT_DATA); + } } mybe->server_myds->max_connect_time=0; NEXT_IMMEDIATE(WAITING_CLIENT_DATA); @@ -1596,6 +1608,12 @@ handler_again: } if (mybe->server_myds->myconn==NULL) { handler___client_DSS_QUERY_SENT___server_DSS_NOT_INITIALIZED__get_connection(); + } + if (mybe->server_myds->myconn==NULL) { + if (mirror) { + PROXY_TRACE(); + NEXT_IMMEDIATE(WAITING_CLIENT_DATA); + } } if (mybe->server_myds->myconn==NULL) { pause_until=thread->curtime+mysql_thread___connect_retries_delay*1000; @@ -1622,10 +1640,16 @@ handler_again: /* */ assert(myconn->async_state_machine!=ASYNC_IDLE); rc=myconn->async_connect(myds->revents); + if (mirror) { + PROXY_TRACE(); + } if (myds->mypolls==NULL) { // connection yet not in mypolls myds->assign_fd_from_mysql_conn(); thread->mypolls.add(POLLIN|POLLOUT, mybe->server_myds->fd, mybe->server_myds, curtime); + if (mirror) { + PROXY_TRACE(); + } } switch (rc) { case 0: @@ -1649,6 +1673,9 @@ handler_again: if (myds->connect_retries_on_failure >0 ) { myds->connect_retries_on_failure--; //myds->destroy_MySQL_Connection(); + if (mirror) { + PROXY_TRACE(); + } myds->destroy_MySQL_Connection_From_Pool(false); NEXT_IMMEDIATE(CONNECTING_SERVER); } else { @@ -1671,6 +1698,9 @@ handler_again: previous_status.pop(); } //myds->destroy_MySQL_Connection(); + if (mirror) { + PROXY_TRACE(); + } myds->destroy_MySQL_Connection_From_Pool( myerr ? true : false ); myds->max_connect_time=0; NEXT_IMMEDIATE(WAITING_CLIENT_DATA); diff --git a/lib/MySQL_Thread.cpp b/lib/MySQL_Thread.cpp index 198766370..6d924a924 100644 --- a/lib/MySQL_Thread.cpp +++ b/lib/MySQL_Thread.cpp @@ -4,6 +4,10 @@ #include "cpp.h" #include "MySQL_Thread.h" +#ifdef DEBUG +MySQL_Session *sess_stopat; +#endif + #define PROXYSQL_LISTEN_LEN 1024 extern Query_Processor *GloQPro; @@ -1984,6 +1988,11 @@ void MySQL_Thread::process_all_sessions() { } for (n=0; nlen; n++) { MySQL_Session *sess=(MySQL_Session *)mysql_sessions->index(n); +#ifdef DEBUG + if(sess==sess_stopat) { + sess_stopat=sess; + } +#endif if (sess->mirror==true) { // this is a mirror session if (sess->status==WAITING_CLIENT_DATA) { // the mirror session has completed unregister_session(n); From 7fe5c7f06b702870752dbcf6a83a135f6713bea1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Tue, 20 Sep 2016 09:35:19 +0000 Subject: [PATCH 08/20] Fixed incorrect timeout in mirrored session --- lib/MySQL_Session.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MySQL_Session.cpp b/lib/MySQL_Session.cpp index f873f7962..c2bb9a237 100644 --- a/lib/MySQL_Session.cpp +++ b/lib/MySQL_Session.cpp @@ -1574,7 +1574,7 @@ handler_again: //fprintf(stderr,"CONNECTING_SERVER\n"); if (mirror) { mybe->server_myds->connect_retries_on_failure=0; // no try for mirror - mybe->server_myds->wait_until=thread->curtime;; + mybe->server_myds->wait_until=thread->curtime+mysql_thread___connect_timeout_server*1000; pause_until=0; } if (mybe->server_myds->max_connect_time) { From daf2dd161f79b2c3ddd798272f3a06481753a59e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Tue, 20 Sep 2016 11:06:18 +0000 Subject: [PATCH 09/20] Release note for 1.2.3 --- doc/release_notes/ProxySQL_v1.2.3.md | 37 ++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 doc/release_notes/ProxySQL_v1.2.3.md diff --git a/doc/release_notes/ProxySQL_v1.2.3.md b/doc/release_notes/ProxySQL_v1.2.3.md new file mode 100644 index 000000000..cd1b9c213 --- /dev/null +++ b/doc/release_notes/ProxySQL_v1.2.3.md @@ -0,0 +1,37 @@ +# ProxySQL v1.2.3 + +Release date: 2016-09-20 + +## Performance improvement + +None + + +## Usability improvement + +* Admin: introduced new table `runtime_mysql_users` [#691](../../../../issues/691) +* Compile: new packages avaiable for Fedora24 +* Compile: new packages avaiable for Ubuntu16 +* Doc: updated documentation on passwords +* General: added suppot for systemd (yet not included in binaries) + + +## New features + +* Admin: introduced new variable `admin-hash_passwords` to automatically hash mysql passwords [#676](../../../../issues/676) +* Query Cache: aggressive memory purging when 90% of memory limit is reached [#690](../../../../issues/690) +* Query Processor: added parsing for several SQL commands + + +## Bug fixes + +* Mirroring: fixes several bugs related to errors handling +* Mirroring: fixes crashing bug +* Query Cache: memory used was computed incorrectly +* Connection Pool: a failed `CHANGE_USER` could cause a crash [#682](../../../../issues/682) + + +## Contributors + +Thanks to contributors, in alphabetical order: +* @dveeden From 2150d53c0c5a1c9eca036cd95d35666fd789ff30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Tue, 20 Sep 2016 15:41:44 +0000 Subject: [PATCH 10/20] Merge branch 'master' into v1.2.4 --- Makefile | 18 +++++++++++++- doc/release_notes/ProxySQL_v1.2.3.md | 37 ++++++++++++++++++++++++++++ include/proxysql.h | 2 +- lib/MySQL_Session.cpp | 30 ++++++++++++++++++++++ lib/MySQL_Thread.cpp | 9 +++++++ systemd/proxysql.service | 12 +++++++++ 6 files changed, 106 insertions(+), 2 deletions(-) create mode 100644 doc/release_notes/ProxySQL_v1.2.3.md create mode 100644 systemd/proxysql.service diff --git a/Makefile b/Makefile index fb0c3b2c1..23f948989 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,11 @@ DEBUG=${ALL_DEBUG} #export EXTRALINK CURVER=1.2.3 DISTRO := $(shell gawk -F= '/^NAME/{print $$2}' /etc/os-release) +ifeq ($(wildcard /usr/lib/systemd/systemd), /usr/lib/systemd/systemd) + SYSTEMD=1 +else + SYSTEMD=0 +endif .PHONY: default default: build_deps build_lib build_src @@ -354,8 +359,13 @@ cleanall: install: src/proxysql install -m 0755 src/proxysql /usr/local/bin install -m 0600 etc/proxysql.cnf /etc - install -m 0755 etc/init.d/proxysql /etc/init.d if [ ! -d /var/lib/proxysql ]; then mkdir /var/lib/proxysql ; fi +ifeq ($(SYSTEMD), 1) + install -m 0644 systemd/proxysql.service /usr/lib/systemd/system/ + systemctl daemon-reload + systemctl enable proxysql.service +else + install -m 0755 etc/init.d/proxysql /etc/init.d ifeq ($(DISTRO),"CentOS Linux") chkconfig --level 0123456 proxysql on else @@ -365,12 +375,17 @@ else update-rc.d proxysql defaults endif endif +endif .PHONY: install uninstall: rm /etc/proxysql.cnf rm /usr/local/bin/proxysql rmdir /var/lib/proxysql 2>/dev/null || true +ifeq ($(SYSTEMD), 1) + systemctl stop proxysql.service + rm /usr/lib/systemd/system/proxysql.service +else ifeq ($(DISTRO),"CentOS Linux") chkconfig --level 0123456 proxysql off rm /etc/init.d/proxysql @@ -383,4 +398,5 @@ else update-rc.d proxysql remove endif endif +endif .PHONY: uninstall diff --git a/doc/release_notes/ProxySQL_v1.2.3.md b/doc/release_notes/ProxySQL_v1.2.3.md new file mode 100644 index 000000000..cd1b9c213 --- /dev/null +++ b/doc/release_notes/ProxySQL_v1.2.3.md @@ -0,0 +1,37 @@ +# ProxySQL v1.2.3 + +Release date: 2016-09-20 + +## Performance improvement + +None + + +## Usability improvement + +* Admin: introduced new table `runtime_mysql_users` [#691](../../../../issues/691) +* Compile: new packages avaiable for Fedora24 +* Compile: new packages avaiable for Ubuntu16 +* Doc: updated documentation on passwords +* General: added suppot for systemd (yet not included in binaries) + + +## New features + +* Admin: introduced new variable `admin-hash_passwords` to automatically hash mysql passwords [#676](../../../../issues/676) +* Query Cache: aggressive memory purging when 90% of memory limit is reached [#690](../../../../issues/690) +* Query Processor: added parsing for several SQL commands + + +## Bug fixes + +* Mirroring: fixes several bugs related to errors handling +* Mirroring: fixes crashing bug +* Query Cache: memory used was computed incorrectly +* Connection Pool: a failed `CHANGE_USER` could cause a crash [#682](../../../../issues/682) + + +## Contributors + +Thanks to contributors, in alphabetical order: +* @dveeden diff --git a/include/proxysql.h b/include/proxysql.h index 3397ef58d..268337bc1 100644 --- a/include/proxysql.h +++ b/include/proxysql.h @@ -99,7 +99,7 @@ #else #define DEB "" #endif /* DEBUG */ -#define PROXYSQL_VERSION "1.2.3-RC" DEB +#define PROXYSQL_VERSION "1.2.3" DEB #define PROXYSQL_CODENAME "Truls" #ifndef PROXYSQL_FUNC_DEFS diff --git a/lib/MySQL_Session.cpp b/lib/MySQL_Session.cpp index 375678747..53c2b6954 100644 --- a/lib/MySQL_Session.cpp +++ b/lib/MySQL_Session.cpp @@ -1583,8 +1583,16 @@ handler_again: case CONNECTING_SERVER: //fprintf(stderr,"CONNECTING_SERVER\n"); + if (mirror) { + mybe->server_myds->connect_retries_on_failure=0; // no try for mirror + mybe->server_myds->wait_until=thread->curtime+mysql_thread___connect_timeout_server*1000; + pause_until=0; + } if (mybe->server_myds->max_connect_time) { if (thread->curtime >= mybe->server_myds->max_connect_time) { + if (mirror) { + PROXY_TRACE(); + } char buf[256]; sprintf(buf,"Max connect timeout reached while reaching hostgroup %d after %llums", current_hostgroup, (thread->curtime - CurrentQuery.start_time)/1000 ); client_myds->myprot.generate_pkt_ERR(true,NULL,NULL,1,1045,(char *)"#28000",buf); @@ -1600,6 +1608,10 @@ handler_again: if (mybe->server_myds->myconn) { //mybe->server_myds->destroy_MySQL_Connection(); mybe->server_myds->destroy_MySQL_Connection_From_Pool(false); + if (mirror) { + PROXY_TRACE(); + NEXT_IMMEDIATE(WAITING_CLIENT_DATA); + } } mybe->server_myds->max_connect_time=0; NEXT_IMMEDIATE(WAITING_CLIENT_DATA); @@ -1607,6 +1619,12 @@ handler_again: } if (mybe->server_myds->myconn==NULL) { handler___client_DSS_QUERY_SENT___server_DSS_NOT_INITIALIZED__get_connection(); + } + if (mybe->server_myds->myconn==NULL) { + if (mirror) { + PROXY_TRACE(); + NEXT_IMMEDIATE(WAITING_CLIENT_DATA); + } } if (mybe->server_myds->myconn==NULL) { pause_until=thread->curtime+mysql_thread___connect_retries_delay*1000; @@ -1633,10 +1651,16 @@ handler_again: /* */ assert(myconn->async_state_machine!=ASYNC_IDLE); rc=myconn->async_connect(myds->revents); + if (mirror) { + PROXY_TRACE(); + } if (myds->mypolls==NULL) { // connection yet not in mypolls myds->assign_fd_from_mysql_conn(); thread->mypolls.add(POLLIN|POLLOUT, mybe->server_myds->fd, mybe->server_myds, curtime); + if (mirror) { + PROXY_TRACE(); + } } switch (rc) { case 0: @@ -1660,6 +1684,9 @@ handler_again: if (myds->connect_retries_on_failure >0 ) { myds->connect_retries_on_failure--; //myds->destroy_MySQL_Connection(); + if (mirror) { + PROXY_TRACE(); + } myds->destroy_MySQL_Connection_From_Pool(false); NEXT_IMMEDIATE(CONNECTING_SERVER); } else { @@ -1682,6 +1709,9 @@ handler_again: previous_status.pop(); } //myds->destroy_MySQL_Connection(); + if (mirror) { + PROXY_TRACE(); + } myds->destroy_MySQL_Connection_From_Pool( myerr ? true : false ); myds->max_connect_time=0; NEXT_IMMEDIATE(WAITING_CLIENT_DATA); diff --git a/lib/MySQL_Thread.cpp b/lib/MySQL_Thread.cpp index 198766370..6d924a924 100644 --- a/lib/MySQL_Thread.cpp +++ b/lib/MySQL_Thread.cpp @@ -4,6 +4,10 @@ #include "cpp.h" #include "MySQL_Thread.h" +#ifdef DEBUG +MySQL_Session *sess_stopat; +#endif + #define PROXYSQL_LISTEN_LEN 1024 extern Query_Processor *GloQPro; @@ -1984,6 +1988,11 @@ void MySQL_Thread::process_all_sessions() { } for (n=0; nlen; n++) { MySQL_Session *sess=(MySQL_Session *)mysql_sessions->index(n); +#ifdef DEBUG + if(sess==sess_stopat) { + sess_stopat=sess; + } +#endif if (sess->mirror==true) { // this is a mirror session if (sess->status==WAITING_CLIENT_DATA) { // the mirror session has completed unregister_session(n); diff --git a/systemd/proxysql.service b/systemd/proxysql.service new file mode 100644 index 000000000..7ea7df229 --- /dev/null +++ b/systemd/proxysql.service @@ -0,0 +1,12 @@ +[Unit] +Description=High Performance Advanced Proxy for MySQL +After=network.target + +[Service] +LimitNOFILE=102400 +LimitCORE=1073741824 +ExecStart=/usr/local/bin/proxysql -f +Restart=always + +[Install] +WantedBy=default.target From 8e9bbde6edef837d5d834cac69a5cfc3b8315993 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Tue, 20 Sep 2016 15:59:51 +0000 Subject: [PATCH 11/20] Crash when computing memory usage for mirrored sessions #699 --- lib/MySQL_Protocol.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/MySQL_Protocol.cpp b/lib/MySQL_Protocol.cpp index a760919ad..13293531d 100644 --- a/lib/MySQL_Protocol.cpp +++ b/lib/MySQL_Protocol.cpp @@ -1547,6 +1547,8 @@ unsigned long long MySQL_ResultSet::current_size() { unsigned long long intsize=0; intsize+=sizeof(MySQL_ResultSet); intsize+=RESULTSET_BUFLEN; // size of buffer + if (PSarrayOUT==NULL) // see bug #699 + return intsize; intsize+=sizeof(PtrSizeArray); intsize+=(PSarrayOUT->size*sizeof(PtrSize_t *)); unsigned int i; From 168f573f3f464883fa80756c2907058a36bf4d9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Fri, 23 Sep 2016 20:20:43 +0000 Subject: [PATCH 12/20] Fixes compression bug reported in #297 --- lib/mysql_data_stream.cpp | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/lib/mysql_data_stream.cpp b/lib/mysql_data_stream.cpp index dd26ca89f..8a92bb58d 100644 --- a/lib/mysql_data_stream.cpp +++ b/lib/mysql_data_stream.cpp @@ -598,13 +598,16 @@ void MySQL_Data_Stream::generate_compressed_packet() { while (ilen && total_sizeindex(i); total_size+=p->size; - if (i==0) { - mysql_hdr hdr; - memcpy(&hdr,p->ptr,sizeof(mysql_hdr)); - if (hdr.pkt_id==0) { - myconn->compression_pkt_id=-1; - } - } +// The following 7 lines of code are commented as they seem responsible for bug reported in +// https://github.com/sysown/proxysql/issues/297#issuecomment-247152748 +// They seems logically completely incorrect! +// if (i==0) { +// mysql_hdr hdr; +// memcpy(&hdr,p->ptr,sizeof(mysql_hdr)); +// if (hdr.pkt_id==0) { +// myconn->compression_pkt_id=-1; +// } +// } i++; } if (i>=2) { From 0c577f8d8145a9d2d4015f77042668ba8d960bdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Fri, 23 Sep 2016 20:37:04 +0000 Subject: [PATCH 13/20] Apply patch from CONC-190 #700 --- deps/Makefile | 1 + deps/mariadb-client-library/ma_secure.c.patch | 47 +++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 deps/mariadb-client-library/ma_secure.c.patch diff --git a/deps/Makefile b/deps/Makefile index 081e36eaa..821cdf25a 100644 --- a/deps/Makefile +++ b/deps/Makefile @@ -29,6 +29,7 @@ mariadb-client-library/mariadb_client/include/my_config.h: cd mariadb-client-library/mariadb_client && patch libmariadb/net.c < ../net.c.patch cd mariadb-client-library/mariadb_client && patch libmariadb/mysql_async.c < ../mysql_async.c.patch cd mariadb-client-library/mariadb_client && patch libmariadb/password.c < ../password.c.patch + cd mariadb-client-library/mariadb_client && patch libmariadb/ma_secure.c < ../ma_secure.c.patch cd mariadb-client-library/mariadb_client && patch include/mysql.h < ../mysql.h.patch cd mariadb-client-library/mariadb_client && CC=${CC} CXX=${CXX} ${MAKE} # cd mariadb-client-library/mariadb_client/include && make my_config.h diff --git a/deps/mariadb-client-library/ma_secure.c.patch b/deps/mariadb-client-library/ma_secure.c.patch new file mode 100644 index 000000000..ded95e792 --- /dev/null +++ b/deps/mariadb-client-library/ma_secure.c.patch @@ -0,0 +1,47 @@ +301,338d300 +< static int my_verify_callback(int ok, X509_STORE_CTX *ctx) +< { +< X509 *check_cert; +< SSL *ssl; +< MYSQL *mysql; +< DBUG_ENTER("my_verify_callback"); +< +< ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx()); +< DBUG_ASSERT(ssl != NULL); +< mysql= (MYSQL *)SSL_get_app_data(ssl); +< DBUG_ASSERT(mysql != NULL); +< +< /* skip verification if no ca_file/path was specified */ +< if (!mysql->options.ssl_ca && !mysql->options.ssl_capath) +< { +< ok= 1; +< DBUG_RETURN(1); +< } +< +< if (!ok) +< { +< uint depth; +< if (!(check_cert= X509_STORE_CTX_get_current_cert(ctx))) +< DBUG_RETURN(0); +< depth= X509_STORE_CTX_get_error_depth(ctx); +< if (depth == 0) +< ok= 1; +< } +< +< /* +< my_set_error(mysql, CR_SSL_CONNECTION_ERROR, SQLSTATE_UNKNOWN, +< ER(CR_SSL_CONNECTION_ERROR), +< X509_verify_cert_error_string(ctx->error)); +< */ +< DBUG_RETURN(ok); +< } +< +< +352d313 +< int verify; +372,376d332 +< verify= (!mysql->options.ssl_ca && !mysql->options.ssl_capath) ? +< SSL_VERIFY_NONE : SSL_VERIFY_PEER; +< +< SSL_CTX_set_verify(SSL_context, verify, my_verify_callback); +< SSL_CTX_set_verify_depth(SSL_context, 1); From ea086d8572c3c9a145bdf91e562b84f8b87f573c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Fri, 23 Sep 2016 20:44:12 +0000 Subject: [PATCH 14/20] Preparation for v1.2.4 --- Makefile | 2 +- docker/images/proxysql/centos67-build/proxysql.spec | 2 +- docker/images/proxysql/centos7-build/proxysql.spec | 2 +- docker/images/proxysql/debian-7.8-build/proxysql.ctl | 2 +- docker/images/proxysql/debian-8.2-build/proxysql.ctl | 2 +- docker/images/proxysql/fedora24-build/proxysql.spec | 2 +- docker/images/proxysql/ubuntu-12.04-build/proxysql.ctl | 2 +- docker/images/proxysql/ubuntu-14.04-build/proxysql.ctl | 2 +- docker/images/proxysql/ubuntu-15.10-build/proxysql.ctl | 2 +- docker/images/proxysql/ubuntu-16.04-build/proxysql.ctl | 2 +- include/proxysql.h | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 23f948989..40fb09db1 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ DEBUG=${ALL_DEBUG} #export DEBUG #export OPTZ #export EXTRALINK -CURVER=1.2.3 +CURVER=1.2.4 DISTRO := $(shell gawk -F= '/^NAME/{print $$2}' /etc/os-release) ifeq ($(wildcard /usr/lib/systemd/systemd), /usr/lib/systemd/systemd) SYSTEMD=1 diff --git a/docker/images/proxysql/centos67-build/proxysql.spec b/docker/images/proxysql/centos67-build/proxysql.spec index 694210102..1c1e0c279 100644 --- a/docker/images/proxysql/centos67-build/proxysql.spec +++ b/docker/images/proxysql/centos67-build/proxysql.spec @@ -7,7 +7,7 @@ Summary: A high-performance MySQL proxy Name: proxysql -Version: 1.2.3 +Version: 1.2.4 Release: 1 License: GPL+ Group: Development/Tools diff --git a/docker/images/proxysql/centos7-build/proxysql.spec b/docker/images/proxysql/centos7-build/proxysql.spec index 694210102..1c1e0c279 100644 --- a/docker/images/proxysql/centos7-build/proxysql.spec +++ b/docker/images/proxysql/centos7-build/proxysql.spec @@ -7,7 +7,7 @@ Summary: A high-performance MySQL proxy Name: proxysql -Version: 1.2.3 +Version: 1.2.4 Release: 1 License: GPL+ Group: Development/Tools diff --git a/docker/images/proxysql/debian-7.8-build/proxysql.ctl b/docker/images/proxysql/debian-7.8-build/proxysql.ctl index 8475d93a5..2b2fd3357 100644 --- a/docker/images/proxysql/debian-7.8-build/proxysql.ctl +++ b/docker/images/proxysql/debian-7.8-build/proxysql.ctl @@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com Standards-Version: 3.9.2 Package: proxysql -Version: 1.2.3 +Version: 1.2.4 Maintainer: Rene Cannao Architecture: amd64 # Changelog: CHANGELOG.md diff --git a/docker/images/proxysql/debian-8.2-build/proxysql.ctl b/docker/images/proxysql/debian-8.2-build/proxysql.ctl index 8475d93a5..2b2fd3357 100644 --- a/docker/images/proxysql/debian-8.2-build/proxysql.ctl +++ b/docker/images/proxysql/debian-8.2-build/proxysql.ctl @@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com Standards-Version: 3.9.2 Package: proxysql -Version: 1.2.3 +Version: 1.2.4 Maintainer: Rene Cannao Architecture: amd64 # Changelog: CHANGELOG.md diff --git a/docker/images/proxysql/fedora24-build/proxysql.spec b/docker/images/proxysql/fedora24-build/proxysql.spec index 694210102..1c1e0c279 100644 --- a/docker/images/proxysql/fedora24-build/proxysql.spec +++ b/docker/images/proxysql/fedora24-build/proxysql.spec @@ -7,7 +7,7 @@ Summary: A high-performance MySQL proxy Name: proxysql -Version: 1.2.3 +Version: 1.2.4 Release: 1 License: GPL+ Group: Development/Tools diff --git a/docker/images/proxysql/ubuntu-12.04-build/proxysql.ctl b/docker/images/proxysql/ubuntu-12.04-build/proxysql.ctl index 8475d93a5..2b2fd3357 100644 --- a/docker/images/proxysql/ubuntu-12.04-build/proxysql.ctl +++ b/docker/images/proxysql/ubuntu-12.04-build/proxysql.ctl @@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com Standards-Version: 3.9.2 Package: proxysql -Version: 1.2.3 +Version: 1.2.4 Maintainer: Rene Cannao Architecture: amd64 # Changelog: CHANGELOG.md diff --git a/docker/images/proxysql/ubuntu-14.04-build/proxysql.ctl b/docker/images/proxysql/ubuntu-14.04-build/proxysql.ctl index 8475d93a5..2b2fd3357 100644 --- a/docker/images/proxysql/ubuntu-14.04-build/proxysql.ctl +++ b/docker/images/proxysql/ubuntu-14.04-build/proxysql.ctl @@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com Standards-Version: 3.9.2 Package: proxysql -Version: 1.2.3 +Version: 1.2.4 Maintainer: Rene Cannao Architecture: amd64 # Changelog: CHANGELOG.md diff --git a/docker/images/proxysql/ubuntu-15.10-build/proxysql.ctl b/docker/images/proxysql/ubuntu-15.10-build/proxysql.ctl index 8475d93a5..2b2fd3357 100644 --- a/docker/images/proxysql/ubuntu-15.10-build/proxysql.ctl +++ b/docker/images/proxysql/ubuntu-15.10-build/proxysql.ctl @@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com Standards-Version: 3.9.2 Package: proxysql -Version: 1.2.3 +Version: 1.2.4 Maintainer: Rene Cannao Architecture: amd64 # Changelog: CHANGELOG.md diff --git a/docker/images/proxysql/ubuntu-16.04-build/proxysql.ctl b/docker/images/proxysql/ubuntu-16.04-build/proxysql.ctl index 8475d93a5..2b2fd3357 100644 --- a/docker/images/proxysql/ubuntu-16.04-build/proxysql.ctl +++ b/docker/images/proxysql/ubuntu-16.04-build/proxysql.ctl @@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com Standards-Version: 3.9.2 Package: proxysql -Version: 1.2.3 +Version: 1.2.4 Maintainer: Rene Cannao Architecture: amd64 # Changelog: CHANGELOG.md diff --git a/include/proxysql.h b/include/proxysql.h index 268337bc1..d70a1bebb 100644 --- a/include/proxysql.h +++ b/include/proxysql.h @@ -99,7 +99,7 @@ #else #define DEB "" #endif /* DEBUG */ -#define PROXYSQL_VERSION "1.2.3" DEB +#define PROXYSQL_VERSION "1.2.4.0923" DEB #define PROXYSQL_CODENAME "Truls" #ifndef PROXYSQL_FUNC_DEFS From 505d4acce3e660a8919df600d85ce8bc27f3fbcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Sun, 25 Sep 2016 15:34:17 +0000 Subject: [PATCH 15/20] More metrics related to connectin pool #703 Metrics introduced: * ConnPool_get_conn_failure : connection pool cannot provide any connection * ConnPool_get_conn_immediate : connection is provided from per-thread cache * ConnPool_get_conn_success : the session is able to get a connection, either from per-thread cache or connection pool --- include/MySQL_Thread.h | 6 +++++ lib/MySQL_Session.cpp | 5 ++++ lib/MySQL_Thread.cpp | 60 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 71 insertions(+) diff --git a/include/MySQL_Thread.h b/include/MySQL_Thread.h index cfb2ce1c2..0d72ecb16 100644 --- a/include/MySQL_Thread.h +++ b/include/MySQL_Thread.h @@ -171,6 +171,9 @@ class MySQL_Thread unsigned long long mysql_backend_buffers_bytes; unsigned long long mysql_frontend_buffers_bytes; unsigned long long mysql_session_internal_bytes; + unsigned long long ConnPool_get_conn_immediate; + unsigned long long ConnPool_get_conn_success; + unsigned long long ConnPool_get_conn_failure; unsigned int active_transactions; } status_variables; @@ -368,6 +371,9 @@ class MySQL_Threads_Handler unsigned long long get_mysql_backend_buffers_bytes(); unsigned long long get_mysql_frontend_buffers_bytes(); unsigned long long get_mysql_session_internal_bytes(); + unsigned long long get_ConnPool_get_conn_immediate(); + unsigned long long get_ConnPool_get_conn_success(); + unsigned long long get_ConnPool_get_conn_failure(); iface_info *MLM_find_iface_from_fd(int fd) { return MLM->find_iface_from_fd(fd); } diff --git a/lib/MySQL_Session.cpp b/lib/MySQL_Session.cpp index 53c2b6954..587842c49 100644 --- a/lib/MySQL_Session.cpp +++ b/lib/MySQL_Session.cpp @@ -2170,9 +2170,14 @@ void MySQL_Session::handler___client_DSS_QUERY_SENT___server_DSS_NOT_INITIALIZED mc=thread->get_MyConn_local(mybe->hostgroup_id); // experimental , #644 if (mc==NULL) { mc=MyHGM->get_MyConn_from_pool(mybe->hostgroup_id); + } else { + thread->status_variables.ConnPool_get_conn_immediate++; } if (mc) { mybe->server_myds->attach_connection(mc); + thread->status_variables.ConnPool_get_conn_success++; + } else { + thread->status_variables.ConnPool_get_conn_failure++; } // } proxy_debug(PROXY_DEBUG_MYSQL_CONNECTION, 5, "Sess=%p -- server_myds=%p -- MySQL_Connection %p\n", this, mybe->server_myds, mybe->server_myds->myconn); diff --git a/lib/MySQL_Thread.cpp b/lib/MySQL_Thread.cpp index 6d924a924..a81b21b5b 100644 --- a/lib/MySQL_Thread.cpp +++ b/lib/MySQL_Thread.cpp @@ -2178,6 +2178,9 @@ MySQL_Thread::MySQL_Thread() { status_variables.mysql_backend_buffers_bytes=0; status_variables.mysql_frontend_buffers_bytes=0; status_variables.mysql_session_internal_bytes=0; + status_variables.ConnPool_get_conn_immediate=0; + status_variables.ConnPool_get_conn_success=0; + status_variables.ConnPool_get_conn_failure=0; status_variables.active_transactions=0; } @@ -2405,6 +2408,24 @@ SQLite3_result * MySQL_Threads_Handler::SQL3_GlobalStatus() { result->add_row(pta); } } + { // ConnPool_get_conn_immediate + pta[0]=(char *)"ConnPool_get_conn_immediate"; + sprintf(buf,"%llu",get_ConnPool_get_conn_immediate()); + pta[1]=buf; + result->add_row(pta); + } + { // ConnPool_get_conn_success + pta[0]=(char *)"ConnPool_get_conn_success"; + sprintf(buf,"%llu",get_ConnPool_get_conn_success()); + pta[1]=buf; + result->add_row(pta); + } + { // ConnPool_get_conn_failure + pta[0]=(char *)"ConnPool_get_conn_failure"; + sprintf(buf,"%llu",get_ConnPool_get_conn_failure()); + pta[1]=buf; + result->add_row(pta); + } free(pta); return result; } @@ -2809,3 +2830,42 @@ void MySQL_Thread::return_local_connections() { MyHGM->push_MyConn_to_pool_array(ca); free(ca); } + +unsigned long long MySQL_Threads_Handler::get_ConnPool_get_conn_immediate() { + unsigned long long q=0; + unsigned int i; + for (i=0;istatus_variables.ConnPool_get_conn_immediate,0); + } + } + return q; +} + +unsigned long long MySQL_Threads_Handler::get_ConnPool_get_conn_success() { + unsigned long long q=0; + unsigned int i; + for (i=0;istatus_variables.ConnPool_get_conn_success,0); + } + } + return q; +} + +unsigned long long MySQL_Threads_Handler::get_ConnPool_get_conn_failure() { + unsigned long long q=0; + unsigned int i; + for (i=0;istatus_variables.ConnPool_get_conn_failure,0); + } + } + return q; +} From 4ceb96d5e4d785c9d7a4415069d9b516808dca07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Sun, 25 Sep 2016 16:01:43 +0000 Subject: [PATCH 16/20] Update doc related to #702 --- doc/global_variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/global_variables.md b/doc/global_variables.md index 27195efa7..f55acddff 100644 --- a/doc/global_variables.md +++ b/doc/global_variables.md @@ -298,7 +298,7 @@ This variable controls whether ProxySQL should use a cached (and less accurate) Default value: `true` -### `mysql-ping_interval_server` +### `mysql-ping_interval_server_msec` The interval at which the proxy should ping backend connections in order to maintain them alive, even though there is no outgoing traffic. The purpose here is to keep some connections alive in order to reduce the latency of new queries towards a less frequently used destination backend server. From 0c11ad94c22e74c306497501171de0028bf21531 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Sun, 25 Sep 2016 21:41:16 +0000 Subject: [PATCH 17/20] Do not print "set autocommit" in error log for Admin --- lib/ProxySQL_Admin.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ProxySQL_Admin.cpp b/lib/ProxySQL_Admin.cpp index 61aff584c..811d487b7 100644 --- a/lib/ProxySQL_Admin.cpp +++ b/lib/ProxySQL_Admin.cpp @@ -534,7 +534,9 @@ bool is_valid_global_variable(const char *var_name) { bool admin_handler_command_set(char *query_no_space, unsigned int query_no_space_length, MySQL_Session *sess, ProxySQL_Admin *pa, char **q, unsigned int *ql) { if (!strstr(query_no_space,(char *)"password")) { // issue #599 proxy_debug(PROXY_DEBUG_ADMIN, 4, "Received command %s\n", query_no_space); - proxy_info("Received command %s\n", query_no_space); + if (strcmp(query_no_space,(char *)"set autocommit=0")) { + proxy_info("Received command %s\n", query_no_space); + } } // Get a pointer to the beginnig of var=value entry and split to get var name and value char *set_entry = query_no_space + strlen("SET "); From f733d1fb5caf55ff813dedc1700f26c0b9ca18bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Sun, 25 Sep 2016 23:47:31 +0000 Subject: [PATCH 18/20] DELETE of entries in monitor tables was incorrect Time was incorrectly computed --- lib/MySQL_Monitor.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lib/MySQL_Monitor.cpp b/lib/MySQL_Monitor.cpp index 91d9cd008..f57b771e0 100644 --- a/lib/MySQL_Monitor.cpp +++ b/lib/MySQL_Monitor.cpp @@ -942,7 +942,8 @@ __end_monitor_connect_loop: if (mysql_thread___monitor_ping_interval < 3600000) mysql_thread___monitor_history = mysql_thread___monitor_ping_interval * (mysql_thread___monitor_ping_max_failures + 1 ); } - rc=sqlite3_bind_int64(statement, 1, start_time-mysql_thread___monitor_history*1000); assert(rc==SQLITE_OK); + unsigned long long time_now=realtime_time(); + rc=sqlite3_bind_int64(statement, 1, time_now-mysql_thread___monitor_history*1000); assert(rc==SQLITE_OK); SAFE_SQLITE3_STEP(statement); rc=sqlite3_clear_bindings(statement); assert(rc==SQLITE_OK); rc=sqlite3_reset(statement); assert(rc==SQLITE_OK); @@ -1052,7 +1053,8 @@ __end_monitor_ping_loop: if (mysql_thread___monitor_ping_interval < 3600000) mysql_thread___monitor_history = mysql_thread___monitor_ping_interval * (mysql_thread___monitor_ping_max_failures + 1 ); } - rc=sqlite3_bind_int64(statement, 1, start_time-mysql_thread___monitor_history*1000); assert(rc==SQLITE_OK); + unsigned long long time_now=realtime_time(); + rc=sqlite3_bind_int64(statement, 1, time_now-mysql_thread___monitor_history*1000); assert(rc==SQLITE_OK); SAFE_SQLITE3_STEP(statement); rc=sqlite3_clear_bindings(statement); assert(rc==SQLITE_OK); rc=sqlite3_reset(statement); assert(rc==SQLITE_OK); @@ -1271,7 +1273,8 @@ __end_monitor_read_only_loop: if (mysql_thread___monitor_ping_interval < 3600000) mysql_thread___monitor_history = mysql_thread___monitor_ping_interval * (mysql_thread___monitor_ping_max_failures + 1 ); } - rc=sqlite3_bind_int64(statement, 1, start_time-mysql_thread___monitor_history*1000); assert(rc==SQLITE_OK); + unsigned long long time_now=realtime_time(); + rc=sqlite3_bind_int64(statement, 1, time_now-mysql_thread___monitor_history*1000); assert(rc==SQLITE_OK); SAFE_SQLITE3_STEP(statement); rc=sqlite3_clear_bindings(statement); assert(rc==SQLITE_OK); rc=sqlite3_reset(statement); assert(rc==SQLITE_OK); @@ -1386,7 +1389,8 @@ __end_monitor_replication_lag_loop: if (mysql_thread___monitor_ping_interval < 3600000) mysql_thread___monitor_history = mysql_thread___monitor_ping_interval * (mysql_thread___monitor_ping_max_failures + 1 ); } - rc=sqlite3_bind_int64(statement, 1, start_time-mysql_thread___monitor_history*1000); assert(rc==SQLITE_OK); + unsigned long long time_now=realtime_time(); + rc=sqlite3_bind_int64(statement, 1, time_now-mysql_thread___monitor_history*1000); assert(rc==SQLITE_OK); SAFE_SQLITE3_STEP(statement); rc=sqlite3_clear_bindings(statement); assert(rc==SQLITE_OK); rc=sqlite3_reset(statement); assert(rc==SQLITE_OK); From 9af38423245ff275fea2ec6d4123d07c475f4858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Sun, 25 Sep 2016 23:49:24 +0000 Subject: [PATCH 19/20] Added ProxySQL collector for diamond --- diamond/ProxySQLCollector.conf | 7 ++ diamond/proxysqlstat.py | 191 +++++++++++++++++++++++++++++++++ 2 files changed, 198 insertions(+) create mode 100644 diamond/ProxySQLCollector.conf create mode 100644 diamond/proxysqlstat.py diff --git a/diamond/ProxySQLCollector.conf b/diamond/ProxySQLCollector.conf new file mode 100644 index 000000000..12ddccf00 --- /dev/null +++ b/diamond/ProxySQLCollector.conf @@ -0,0 +1,7 @@ +enabled=True +db = None +host = 127.0.0.1 +passwd = stats +port = 6032 +user = stats + diff --git a/diamond/proxysqlstat.py b/diamond/proxysqlstat.py new file mode 100644 index 000000000..e74413cd5 --- /dev/null +++ b/diamond/proxysqlstat.py @@ -0,0 +1,191 @@ +# coding=utf-8 + +import diamond.collector +from diamond.collector import str_to_bool +import re +import time + +try: + import MySQLdb + from MySQLdb import MySQLError +except ImportError: + MySQLdb = None + MySQLError = ValueError + + +class ProxySQLCollector(diamond.collector.Collector): + + _GAUGE_KEYS = [ + 'Active_Transactions', + 'Client_Connections_connected', + 'ConnPool_memory_bytes', + 'MySQL_Monitor_Workers', + 'MySQL_Thread_Workers', + 'Query_Cache_Entries', + 'Query_Cache_Memory_bytes', + 'SQLite3_memory_bytes', + 'Server_Connections_connected', + 'mysql_backend_buffers_bytes', + 'mysql_frontend_buffers_bytes', + 'mysql_session_internal_bytes', + ] + + def __init__(self, *args, **kwargs): + super(ProxySQLCollector, self).__init__(*args, **kwargs) + + def process_config(self): + super(ProxySQLCollector, self).process_config() + if self.config['hosts'].__class__.__name__ != 'list': + self.config['hosts'] = [self.config['hosts']] + + # Move legacy config format to new format + if 'host' in self.config: + hoststr = "%s:%s@%s:%s/%s" % ( + self.config['user'], + self.config['passwd'], + self.config['host'], + self.config['port'], + self.config['db'], + ) + self.config['hosts'].append(hoststr) + + self.db = None + + def get_default_config_help(self): + config_help = super(ProxySQLCollector, self).get_default_config_help() + config_help.update({ + 'publish': + "Which rows of 'SHOW MYSQL STATUS' you would " + + "like to publish. Leave unset to publish all", + 'hosts': 'List of hosts to collect from. Format is ' + + 'yourusername:yourpassword@host:port/db[/nickname]' + + 'use db "None" to avoid connecting to a particular db' + }) + return config_help + + def get_default_config(self): + """ + Returns the default collector settings + """ + config = super(ProxySQLCollector, self).get_default_config() + config.update({ + 'path': 'proxysql', + # Connection settings + 'hosts': [], + + }) + return config + + def get_db_stats(self, query): + cursor = self.db.cursor(cursorclass=MySQLdb.cursors.DictCursor) + + try: + cursor.execute(query) + return cursor.fetchall() + except MySQLError, e: + self.log.error('ProxySQLCollector could not get db stats', e) + return () + + def connect(self, params): + try: + self.db = MySQLdb.connect(**params) + self.log.debug('ProxySQLCollector: Connected to database.') + except MySQLError, e: + self.log.error('ProxySQLCollector couldnt connect to database %s', e) + return False + return True + + def disconnect(self): + self.db.close() + + def get_db_global_status(self): + return self.get_db_stats('SHOW MYSQL STATUS') + + def get_stats(self, params): + metrics = {'status': {}} + + if not self.connect(params): + return metrics + + rows = self.get_db_global_status() + for row in rows: + try: + metrics['status'][row['Variable_name']] = float(row['Value']) + except: + pass + + self.disconnect() + + return metrics + + def _publish_stats(self, nickname, metrics): + + for key in metrics: + for metric_name in metrics[key]: + metric_value = metrics[key][metric_name] + + if type(metric_value) is not float: + continue + + if metric_name not in self._GAUGE_KEYS: + metric_value = self.derivative(nickname + metric_name, + metric_value) + if key == 'status': + if (('publish' not in self.config or + metric_name in self.config['publish'])): + self.publish(nickname + metric_name, metric_value) + else: + self.publish(nickname + metric_name, metric_value) + + def collect(self): + + if MySQLdb is None: + self.log.error('Unable to import MySQLdb') + return False + + for host in self.config['hosts']: + matches = re.search( + '^([^:]*):([^@]*)@([^:]*):?([^/]*)/([^/]*)/?(.*)', host) + + if not matches: + self.log.error( + 'Connection string not in required format, skipping: %s', + host) + continue + + params = {} + + params['host'] = matches.group(3) + try: + params['port'] = int(matches.group(4)) + except ValueError: + params['port'] = 3306 + params['db'] = matches.group(5) + params['user'] = matches.group(1) + params['passwd'] = matches.group(2) + + nickname = matches.group(6) + if len(nickname): + nickname += '.' + + if params['db'] == 'None': + del params['db'] + + try: + metrics = self.get_stats(params=params) + except Exception, e: + try: + self.disconnect() + except MySQLdb.ProgrammingError: + pass + self.log.error('Collection failed for %s %s', nickname, e) + continue + + # Warn if publish contains an unknown variable + if 'publish' in self.config and metrics['status']: + for k in self.config['publish'].split(): + if k not in metrics['status']: + self.log.error("No such key '%s' available, issue " + + "'show global status' for a full " + + "list", k) + self._publish_stats(nickname, metrics) From 7becdf42dde1a888d7b1bc31e0478fdf0a2f8ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Wed, 28 Sep 2016 16:48:37 +0000 Subject: [PATCH 20/20] Updating docs --- doc/admin_tables.md | 4 ++-- doc/scheduler.md | 48 ++++++++++++++++++++++++--------------------- 2 files changed, 28 insertions(+), 24 deletions(-) diff --git a/doc/admin_tables.md b/doc/admin_tables.md index 01bdbf507..65580d90e 100644 --- a/doc/admin_tables.md +++ b/doc/admin_tables.md @@ -155,13 +155,13 @@ CREATE TABLE mysql_replication_hostgroups ( ``` Each row in `mysql_replication_hostgroups` represent a pair of *writer_hostgroup* and *reader_hostgroup* . -ProxySQL will monitor the value of read_only for all the servers in specified hostgroups, and based on the value of read_only will assign the server to the writer or reader hostgroups. +ProxySQL will monitor the value of `read_only` for all the servers in specified hostgroups, and based on the value of `read_only` will assign the server to the writer or reader hostgroups. The field `comment` can be used to store any arbitrary data. ## mysql_query_rules -Here is the statement used to create the `mysql_users` table: +Here is the statement used to create the `mysql_query_rules` table: ```sql CREATE TABLE mysql_query_rules ( diff --git a/doc/scheduler.md b/doc/scheduler.md index ab9937f31..be6e9141b 100644 --- a/doc/scheduler.md +++ b/doc/scheduler.md @@ -1,6 +1,6 @@ # Scheduler -Scheduler is a feature introduced in v1.2.0. +Scheduler is a feature introduced in v1.2.0 . Scheduler is a cron-like implementation integrated inside ProxySQL with millisecond granularity. It is possible to be configured only through the Admin interface: configuration from config file is not supported yet and not in the roadmap. @@ -28,44 +28,48 @@ To enter into details: Table `scheduler` has the following structure: -```sql +```mysql Admin> SHOW CREATE TABLE scheduler\G *************************** 1. row *************************** table: scheduler Create Table: CREATE TABLE scheduler ( -id INTEGER NOT NULL, -interval_ms INTEGER CHECK (interval_ms>=100 AND interval_ms<=100000000) NOT NULL, -filename VARCHAR NOT NULL, -arg1 VARCHAR, -arg2 VARCHAR, -arg3 VARCHAR, -arg4 VARCHAR, -arg5 VARCHAR, -PRIMARY KEY(id)) + id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, + active INT CHECK (active IN (0,1)) NOT NULL DEFAULT 1, + interval_ms INTEGER CHECK (interval_ms>=100 AND interval_ms<=100000000) NOT NULL, + filename VARCHAR NOT NULL, + arg1 VARCHAR, + arg2 VARCHAR, + arg3 VARCHAR, + arg4 VARCHAR, + arg5 VARCHAR, + comment VARCHAR NOT NULL DEFAULT '') 1 row in set (0.00 sec) ``` In details: * `id` : unique identifier of the scheduler job +* `active` : if set to 1, the job is active. Otherwise is not * `interval_ms` : how often (in millisecond) the job will be started. Minimum interval_ms is 100 milliseconds * `filename` : full path of the executable to be executed * `arg1` to `arg5` : arguments (maximum 5) that can be passed to the job +* `comment` : an free form text field to annotate the purpose of the job -For reference only, table `runtime_scheduler` has the same identical tructure: +For reference only, table `runtime_scheduler` has the same identical structure: ```sql Admin> SHOW CREATE TABLE runtime_scheduler\G *************************** 1. row *************************** table: runtime_scheduler Create Table: CREATE TABLE runtime_scheduler ( -id INTEGER NOT NULL, -interval_ms INTEGER CHECK (interval_ms>=100 AND interval_ms<=100000000) NOT NULL, -filename VARCHAR NOT NULL, -arg1 VARCHAR, -arg2 VARCHAR, -arg3 VARCHAR, -arg4 VARCHAR, -arg5 VARCHAR, -PRIMARY KEY(id)) + id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, + active INT CHECK (active IN (0,1)) NOT NULL DEFAULT 1, + interval_ms INTEGER CHECK (interval_ms>=100 AND interval_ms<=100000000) NOT NULL, + filename VARCHAR NOT NULL, + arg1 VARCHAR, + arg2 VARCHAR, + arg3 VARCHAR, + arg4 VARCHAR, + arg5 VARCHAR, + comment VARCHAR NOT NULL DEFAULT '') 1 row in set (0.00 sec) ``` @@ -76,4 +80,4 @@ For this reason ProxySQL has new commands to support Scheduler: * `SAVE SCHEDULER FROM RUNTIME` and `SAVE SCHEDULER TO MEMORY` : save the configuration from runtime to `main`.`scheduler`; * `SAVE SCHEDULER FROM MEMORY` and `SAVE SCHEDULER TO DISK` : save the configuration from `main`.`scheduler` to `disk`.`scheduler`, and becomes persistent across restart. -The scheduler is implemented calling `fork()` and then `excve()`. If `execve()` fails the error is reported into error log. +The scheduler is implemented calling `fork()` and then `execve()`. If `execve()` fails the error is reported into error log.